/* ===================================================
   ZUKE STUDENTS - SHARED STYLESHEET
   business.zuke.co.za
   =================================================== */

/* ===================================================
   1. CSS VARIABLES & ROOT
   =================================================== */
:root {
    /* Brand Colors */
    --primary-orange: #ff8b00;
    --secondary-orange: #ff7b00;
    --dark-orange: #e67a00;
    
    /* Dark Grays */
    --dark-gray-1: #2d2d2d;
    --dark-gray-2: #2b2b2b;
    --dark-gray-3: #2f2f2f;
    --dark-gray-4: #1a1a1a;
    
    /* Light Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --medium-gray: #e8e8e8;
    --border-gray: #e0e0e0;
    
    /* Text Colors */
    --text-dark: #2d2d2d;
    --text-gray: #666666;
    --text-light: #999999;
    
    /* Accent Colors */
    --light-green: #e8f5e9;
    --accent-green: #c8e6c9;
    --success-green: #4caf50;
    --light-orange: #fff3e0;
    --light-blue: #e3f2fd;
    
    /* Gradients */
    --gradient-orange: linear-gradient(135deg, #ff8b00 0%, #ff7b00 100%);
    --gradient-dark: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    --gradient-green: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    
    /* Border Radius */
    --radius-xs: 6px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
    --radius-circle: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
    --shadow-orange: 0 15px 50px rgba(255, 139, 0, 0.3);
    --shadow-card: 0 10px 40px rgba(0,0,0,0.08);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-sm: 60px 0;
    
    /* Typography */
    --font-family: 'Hanken Grotesk', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===================================================
   2. RESET & BASE STYLES
   =================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ===================================================
   3. UTILITY CLASSES
   =================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.gap-sm {
    gap: 8px;
}

.gap-md {
    gap: 16px;
}

.gap-lg {
    gap: 24px;
}

.gap-xl {
    gap: 40px;
}

.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mt-xl { margin-top: 60px; }

.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }
.mb-xl { margin-bottom: 60px; }

/* ===================================================
   4. TYPOGRAPHY
   =================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(32px, 5vw, 52px);
}

h2 {
    font-size: clamp(28px, 4vw, 40px);
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
}

h4 {
    font-size: clamp(18px, 2vw, 22px);
}

p {
    font-family: var(--font-body);
    color: var(--text-gray);
    line-height: 1.7;
}

.text-gradient {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-orange {
    color: var(--primary-orange);
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--text-light);
}

/* ===================================================
   5. BUTTONS
   =================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(255, 139, 0, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--border-gray);
}

.btn-secondary:hover {
    border-color: var(--text-dark);
    background: var(--light-gray);
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-dark {
    background: var(--dark-gray-1);
    color: var(--white);
    border-color: var(--dark-gray-1);
}

.btn-dark:hover {
    background: var(--dark-gray-4);
}

.btn-white {
    background: var(--white);
    color: var(--dark-gray-1);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--light-gray);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-block {
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-group.centered {
    justify-content: center;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===================================================
   6. BADGES & TAGS
   =================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
}

.badge-light {
    background: var(--light-green);
    color: var(--text-dark);
}

.badge-orange {
    background: var(--light-orange);
    color: var(--primary-orange);
}

.badge-dark {
    background: var(--dark-gray-1);
    color: var(--white);
}

.badge-white {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-gray);
}

.badge-success {
    background: var(--light-green);
    color: var(--success-green);
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-free {
    background: var(--light-green);
    color: var(--success-green);
}

.tag-popular {
    background: var(--primary-orange);
    color: var(--white);
}

.tag-new {
    background: var(--light-blue);
    color: #1976d2;
}

/* ===================================================
   7. NAVIGATION
   =================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark-gray-1);
    border-radius: var(--radius-full);
    padding: 10px 18px 10px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.logo-image {
    height: 32px;
    width: auto;
    display: block;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.logo-badge {
    font-size: 10px;
    background: var(--primary-orange);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 4px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a.active {
    color: var(--primary-orange);
}

.nav-cta {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: scale(1.02);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    color: var(--white);
    font-size: 24px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-gray-1);
    z-index: 1001;
    padding: 80px 20px 40px;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    font-size: 24px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    color: var(--white);
    font-size: 32px;
}

/* ===================================================
   8. HERO SECTION - MINIMAL FULL PAGE
   =================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 0 0;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    max-width: 800px;
    margin: 0 auto 24px;
    font-size: clamp(40px, 6vw, 72px);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 650px;
    margin: 0 auto 40px;
    color: var(--text-gray);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

/* Trust Indicators */
.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
    opacity: 0.7;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 13px;
    color: var(--text-gray);
}

.trust-text strong {
    color: var(--text-dark);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    max-width: 650px;
    margin: 60px auto 0;
    padding: 20px;
}

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: var(--gradient-green);
    border-radius: 50%;
    z-index: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    width: 400px;
    height: 400px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: -2s;
}

.floating-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-card.top-left {
    top: 15%;
    left: -5%;
}

.floating-card.bottom-left {
    bottom: 20%;
    left: 0;
}

.floating-card.right {
    top: 25%;
    right: -10%;
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.floating-card .card-icon.blue {
    background: var(--light-blue);
    color: #1976d2;
}

.floating-card .card-icon.green {
    background: var(--light-green);
    color: var(--success-green);
}

.floating-card .card-icon.orange {
    background: var(--light-orange);
    color: var(--primary-orange);
}

.floating-card .card-label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.floating-card .card-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-card .stars {
    color: #ffc107;
    font-size: 12px;
}

.floating-card.stat-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
}

.floating-card .stat-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.floating-card .stat-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.floating-card .stat-actions span {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

.floating-card .stat-badge {
    background: var(--dark-gray-1);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* SIM Card Styles */
.sim-card {
    position: absolute;
    width: 280px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: var(--radius-md);
    padding: 50px 10px 10px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 3;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 35px, 100% 100%, 0 100%);
    animation: float 6s ease-in-out infinite;
}

.sim-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.sim-card-1 {
    top: 8%;
    left: -5%;
}

.sim-card-2 {
    bottom: 15%;
    left: -3%;
    animation-delay: -2s;
}

.sim-card-3 {
    top: 30%;
    right: -12%;
    animation-delay: -4s;
}

.sim-card-icon {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1d1d1d;
}

.sim-card-content {
    margin-top: 20px;
}

.sim-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.sim-card-desc {
    font-size: 14px;
    color: #9a9a9a;
    line-height: 1.5;
    margin: 0;
}

.sim-card-action {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.sim-card-action:hover {
    background: #ff5722;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    transform: rotate(-45deg) scale(1.1);
}

.sim-card-action i {
    transform: rotate(45deg);
}

/* ===================================================
   9. PARTNERS/LOGOS SECTION
   =================================================== */
.partners {
    padding: var(--section-padding-sm);
    background: var(--white);
}

.partners-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 30px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition-normal);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* University Logos */
.university-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.university-logo {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.university-logo:hover {
    color: var(--primary-orange);
}

/* ===================================================
   10. SECTION STYLES
   =================================================== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-light {
    background: var(--white);
}

.section-gray {
    background: var(--light-gray);
}

.section-green {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-green) 100%);
}

.section-green-full {
    background: var(--light-green);
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255,255,255,0.8);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
}

/* Section Decorations */
.section-blob {
    position: absolute;
    width: 500px;
    height: 600px;
    background: var(--gradient-green);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.section-blob.right {
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50% 0 0 50%;
}

.section-blob.left {
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 50% 50% 0;
}

.section-content {
    position: relative;
    z-index: 1;
}

/* ===================================================
   11. FEATURES SECTION
   =================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--medium-gray);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--light-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--success-green);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-orange);
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    margin-bottom: 24px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
}

.feature-link:hover {
    gap: 12px;
}

/* Feature Card Variants */
.feature-card.has-image {
    padding: 0;
    overflow: hidden;
}

.feature-card.has-image .feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card.has-image .feature-content {
    padding: 28px;
}

/* Large Feature Card */
.feature-card-lg {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 50px;
}

.feature-card-lg .feature-image {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* ===================================================
   12. PROBLEM SECTION - NEGATIVE EMOTION EMPHASIS
   =================================================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    text-align: center;
    padding: 48px 32px;
    background: #fff5f5;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    border: 2px solid #ffebee;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef5350, #e53935);
}

.problem-card:hover {
    background: #ffebee;
    transform: translateY(-4px);
    border-color: #ef5350;
    box-shadow: 0 8px 30px rgba(239, 83, 80, 0.15);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 4px 20px rgba(239, 83, 80, 0.2);
    font-size: 32px;
    color: #d32f2f;
    transition: var(--transition-normal);
}

.problem-card:hover .problem-icon {
    background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(239, 83, 80, 0.3);
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #c62828;
}

.problem-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.transition-text {
    text-align: center;
    margin-top: 60px;
    font-size: 24px;
    font-weight: 700;
    color: var(--success-green);
    background: linear-gradient(135deg, var(--success-green) 0%, #66bb6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================================
   13. SOLUTION SECTION
   =================================================== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--medium-gray);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-sm);
}

.benefit-check {
    width: 28px;
    height: 28px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 12px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.support-card {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.support-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.support-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.support-icon-tools {
    background: var(--light-orange);
    color: var(--primary-orange);
}

.support-icon-mentor {
    background: var(--light-green);
    color: var(--success-green);
}

.support-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.support-card p {
    font-size: 14px;
    margin-bottom: 16px;
}

.support-list {
    display: grid;
    gap: 10px;
}

.support-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text-gray);
    font-size: 14px;
}

.support-list i {
    color: var(--success-green);
    margin-top: 4px;
}

/* ===================================================
   SOLUTION SECTION - REDESIGNED
   =================================================== */
.solution-section {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1a472a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.solution-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.solution-intro .badge {
    margin-bottom: 20px;
}

.solution-intro h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.solution-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.solution-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.solution-pillar {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition-normal);
    position: relative;
}

.solution-pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--light-orange);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.pillar-icon-green {
    background: var(--light-green);
    color: var(--success-green);
}

.pillar-icon-dark {
    background: var(--dark-gray-1);
    color: var(--white);
}

.solution-pillar h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pillar-desc {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--light-gray);
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pillar-list li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--lightest-gray);
    position: relative;
    padding-left: 28px;
}

.pillar-list li:last-child {
    border-bottom: none;
}

.pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
}

.solution-pillar:nth-child(2) .pillar-list li::before {
    background: var(--success-green);
}

.solution-pillar:nth-child(3) .pillar-list li::before {
    background: var(--dark-gray-1);
}

.solution-pillar-cta {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-orange);
}

.pillar-btn {
    margin-top: 28px;
    width: 100%;
}

.solution-footer {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tech-powered {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 18px 32px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 15px;
}

.tech-powered i {
    font-size: 20px;
    color: var(--primary-orange);
}

@media (max-width: 1024px) {
    .solution-pillars {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .solution-intro h2 {
        font-size: 36px;
    }
    
    .solution-section {
        padding: 80px 0;
    }
}

@media (max-width: 600px) {
    .solution-intro h2 {
        font-size: 28px;
    }
    
    .solution-lead {
        font-size: 17px;
    }
    
    .solution-pillar {
        padding: 32px 24px;
    }
    
    .pillar-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }
    
    .tech-powered {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
    }
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-gray-1);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    margin: 40px auto;
}

.tech-badge i {
    color: var(--primary-orange);
}

/* ===================================================
   14. HOW IT WORKS SECTION
   =================================================== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--gradient-orange);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 120px;
    height: 120px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: var(--shadow-orange);
    font-size: 44px;
    color: var(--white);
    position: relative;
}

.step-number::after {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-orange);
    box-shadow: var(--shadow-sm);
}

.step-time {
    display: inline-block;
    background: var(--light-green);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--success-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.step p {
    font-size: 15px;
    max-width: 280px;
    margin: 0 auto;
}

.result-box {
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    padding: 36px 48px;
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.result-box p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.result-box span {
    color: var(--primary-orange);
}

/* ===================================================
   15. HUBS SECTION
   =================================================== */
.hubs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hub-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 2px solid var(--medium-gray);
    transition: var(--transition-normal);
    position: relative;
}

.hub-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.hub-card.highlighted {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
}

.hub-card.highlighted::before {
    content: attr(data-badge);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: var(--white);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.hub-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 32px;
    color: var(--white);
}

.hub-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.hub-desc {
    font-size: 15px;
    margin-bottom: 28px;
}

.hub-features {
    margin-bottom: 24px;
}

.hub-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--light-gray);
}

.hub-features li:last-child {
    border-bottom: none;
}

.hub-features li i {
    color: var(--success-green);
    font-size: 14px;
}

.hub-tech {
    display: inline-block;
    font-size: 12px;
    color: var(--text-gray);
    background: var(--light-gray);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.hub-link {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hub-link:hover {
    gap: 12px;
}

.hub-cta {
    margin-top: 20px;
}

/* ===================================================
   16. TECHNOLOGY SECTION
   =================================================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.tech-column h3 {
    font-size: 18px;
    margin-bottom: 28px;
    color: var(--primary-orange);
}

.tech-item {
    background: var(--dark-gray-2);
    border-radius: var(--radius-sm);
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-normal);
}

.tech-item:hover {
    border-color: var(--primary-orange);
    transform: translateX(8px);
}

.tech-item h4 {
    font-size: 17px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.tech-item h4 i {
    color: var(--primary-orange);
}

.tech-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.tech-trust {
    background: rgba(255, 139, 0, 0.1);
    border: 1px solid rgba(255, 139, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: 28px 40px;
    text-align: center;
    margin-top: 50px;
}

.tech-trust p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
}

.tech-trust i {
    color: var(--primary-orange);
    margin-right: 10px;
}

.tech-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.tech-logos img {
    height: 36px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: var(--transition-normal);
}

.tech-logos img:hover {
    opacity: 1;
}

/* ===================================================
   17. TESTIMONIALS SECTION
   =================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    border: 1px solid var(--medium-gray);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 24px;
    left: 36px;
    font-size: 72px;
    color: var(--primary-orange);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-metric {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-gray);
}

/* ===================================================
   18. PRICING SECTION
   =================================================== */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.pricing-tab {
    padding: 14px 36px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-gray);
    background: var(--white);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.pricing-tab:hover {
    border-color: var(--primary-orange);
}

.pricing-tab.active {
    background: var(--dark-gray-1);
    color: var(--white);
    border-color: var(--dark-gray-1);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pay As You Go Table */
.payg-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.payg-table table {
    width: 100%;
    border-collapse: collapse;
}

.payg-table th {
    background: var(--dark-gray-1);
    color: var(--white);
    padding: 20px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}

.payg-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
    vertical-align: middle;
}

.payg-table tr:last-child td {
    border-bottom: none;
}

.payg-table tr:hover {
    background: var(--off-white);
}

.payg-table .price {
    font-weight: 700;
    color: var(--primary-orange);
    font-size: 16px;
}

.payg-table .free-tag {
    background: var(--light-green);
    color: var(--success-green);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13px;
}

.payg-value {
    text-align: center;
    margin-top: 30px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

.payg-value span {
    color: var(--primary-orange);
}

/* Subscription Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 2px solid var(--medium-gray);
    position: relative;
    transition: var(--transition-normal);
}

.plan-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.plan-card.popular {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.plan-card.popular:hover {
    transform: scale(1.04);
}

.plan-card::before {
    content: attr(data-badge);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-gray);
    color: var(--text-gray);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.plan-card.popular::before {
    background: var(--gradient-orange);
    color: var(--white);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 10px;
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 4px;
}

.plan-price span {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-gray);
}

.plan-ideal {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.plan-features {
    margin-bottom: 28px;
    min-height: 280px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.plan-features li i {
    color: var(--success-green);
    margin-top: 3px;
}

.plan-cta {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    font-size: 15px;
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ===================================================
   19. FAQ SECTION
   =================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--medium-gray);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-question i {
    color: var(--primary-orange);
    transition: transform var(--transition-normal);
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 28px;
    font-size: 15px;
    line-height: 1.8;
}

.faq-help {
    text-align: center;
    margin-top: 60px;
    padding: 32px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.faq-help p {
    font-size: 16px;
    color: var(--text-dark);
}

.faq-help a {
    color: var(--primary-orange);
    font-weight: 600;
}

/* ===================================================
   20. FINAL CTA SECTION
   =================================================== */
.final-cta {
    padding: 120px 0;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 139, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 139, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    color: var(--white);
}

.final-cta .subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto 20px;
}

.final-cta .value-text {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
}

.cta-trust li i {
    color: var(--success-green);
}

.cta-social-proof {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 20px;
}

/* ===================================================
   21. FOOTER
   =================================================== */
.footer {
    background: var(--dark-gray-4);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    margin-bottom: 70px;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition-normal);
}

.footer-column ul li a:hover {
    color: var(--primary-orange);
}

.footer-column.tech-col ul li {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.footer-column.tech-col strong {
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 8px;
    margin-top: 16px;
}

.footer-column.tech-col strong:first-child {
    margin-top: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-orange);
    transform: translateY(-4px);
}

.footer-location {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-tech-badge {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.footer-tech-badge i {
    margin-right: 8px;
    color: var(--primary-orange);
}

/* ===================================================
   22. ADDITIONAL COMPONENTS
   =================================================== */

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Icon Grid */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.icon-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--medium-gray);
    transition: var(--transition-normal);
}

.icon-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-4px);
}

.icon-item i {
    font-size: 36px;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.icon-item h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.icon-item p {
    font-size: 13px;
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-orange);
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    margin: 60px 0;
}

.cta-banner h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.cta-banner .btn {
    flex-shrink: 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--medium-gray);
    transition: var(--transition-normal);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 20px;
}

.product-category {
    font-size: 11px;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-orange);
}

.product-seller {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-seller img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--medium-gray);
    transition: var(--transition-normal);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

.service-badge {
    display: inline-block;
    background: var(--light-orange);
    color: var(--primary-orange);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
}

.service-seller {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.service-seller img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.service-seller-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.service-seller-info span {
    font-size: 12px;
    color: var(--text-gray);
}

.service-rating {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffc107;
    font-size: 14px;
}

.service-rating span {
    color: var(--text-dark);
    font-weight: 600;
}

/* Comparison Table */
.comparison-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--dark-gray-1);
    color: var(--white);
    padding: 20px;
    font-size: 15px;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
    font-size: 14px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: var(--success-green);
    font-size: 18px;
}

.comparison-table .cross {
    color: #ef5350;
    font-size: 18px;
}

.comparison-table .highlight-col {
    background: var(--light-orange);
}

.comparison-table thead .highlight-col {
    background: var(--primary-orange);
}

/* ===================================================
   23. USE CASE SPECIFIC COMPONENTS
   =================================================== */

/* For Projects Page - Project Showcase */
.project-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.project-showcase.reverse {
    direction: rtl;
}

.project-showcase.reverse > * {
    direction: ltr;
}

.project-showcase-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.project-showcase-image img {
    width: 100%;
    height: auto;
}

.project-showcase-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.project-showcase-content p {
    font-size: 16px;
    margin-bottom: 24px;
}

.project-showcase-content ul {
    margin-bottom: 28px;
}

.project-showcase-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
}

.project-showcase-content ul li i {
    color: var(--success-green);
}

/* Competition Cards */
.competition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.competition-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--medium-gray);
    transition: var(--transition-normal);
}

.competition-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
}

.competition-header {
    background: var(--gradient-orange);
    padding: 24px;
    color: var(--white);
    text-align: center;
}

.competition-header h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
}

.competition-header p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.competition-body {
    padding: 28px;
}

.competition-prize {
    text-align: center;
    padding: 20px;
    background: var(--light-green);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.competition-prize span {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.competition-prize strong {
    font-size: 32px;
    font-weight: 800;
    color: var(--success-green);
}

.competition-details {
    margin-bottom: 20px;
}

.competition-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--light-gray);
}

.competition-details li:last-child {
    border-bottom: none;
}

.competition-details li i {
    color: var(--primary-orange);
    width: 20px;
}

/* For Hustles Page - Seller Profile Cards */
.seller-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.seller-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--medium-gray);
    transition: var(--transition-normal);
}

.seller-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.seller-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--light-orange);
}

.seller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seller-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.seller-card .seller-university {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.seller-card .seller-service {
    display: inline-block;
    background: var(--light-orange);
    color: var(--primary-orange);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.seller-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.seller-stats div {
    text-align: center;
}

.seller-stats strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
}

.seller-stats span {
    font-size: 11px;
    color: var(--text-gray);
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 24px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 2px solid var(--border-gray);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.category-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.category-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

/* Earnings Calculator */
.calculator-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.calculator-box h3 {
    text-align: center;
    margin-bottom: 32px;
}

.calculator-input {
    margin-bottom: 24px;
}

.calculator-input label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.calculator-input input,
.calculator-input select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-normal);
}

.calculator-input input:focus,
.calculator-input select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.calculator-result {
    background: var(--light-green);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    margin-top: 32px;
}

.calculator-result span {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.calculator-result strong {
    font-size: 48px;
    font-weight: 800;
    color: var(--success-green);
}

.calculator-result p {
    font-size: 13px;
    margin-top: 12px;
}

/* Success Stories Carousel */
.stories-carousel {
    position: relative;
    overflow: hidden;
}

.stories-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.story-card {
    min-width: 400px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.story-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-content {
    padding: 28px;
}

.story-metric {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.story-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.story-content p {
    font-size: 14px;
    margin-bottom: 20px;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.story-author-info h5 {
    font-size: 14px;
    font-weight: 600;
}

.story-author-info span {
    font-size: 12px;
    color: var(--text-gray);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.carousel-btn:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

/* ===================================================
   24. INTERACTIVE ELEMENTS
   =================================================== */

/* Accordion */
.accordion-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--medium-gray);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-normal);
}

.accordion-header:hover {
    background: var(--off-white);
}

.accordion-header i {
    transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content-inner {
    padding: 0 24px 24px;
}

/* Tabs */
.tabs-container {
    margin-bottom: 40px;
}

.tabs-nav {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 14px 28px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
    transition: var(--transition-normal);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    color: var(--primary-orange);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--light-gray);
}

.modal-header h3 {
    font-size: 20px;
}

.modal-close {
    background: none;
    font-size: 24px;
    color: var(--text-gray);
    transition: var(--transition-normal);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 28px;
}

.modal-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    background: var(--dark-gray-1);
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    position: absolute;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.tooltip .tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--dark-gray-1) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ===================================================
   25. FORM ELEMENTS
   =================================================== */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 139, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
}

.form-error {
    font-size: 13px;
    color: #ef5350;
    margin-top: 8px;
}

.form-input.error {
    border-color: #ef5350;
}

/* Checkbox & Radio */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.form-check input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-orange);
    margin-top: 2px;
}

.form-check label {
    font-size: 14px;
    color: var(--text-dark);
}

/* Search Box */
.search-box {
    position: relative;
    max-width: 500px;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-full);
    font-size: 15px;
    transition: var(--transition-normal);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 18px;
}

.search-box button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
}

/* ===================================================
   26. ANIMATIONS
   =================================================== */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Hover animations */
.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hover-scale {
    transition: transform var(--transition-normal);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow var(--transition-normal);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(255, 139, 0, 0.3);
}

/* ===================================================
   27. RESPONSIVE BREAKPOINTS
   =================================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .features-grid,
    .problem-grid,
    .hubs-grid,
    .testimonials-grid,
    .service-grid,
    .competition-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-grid,
    .seller-grid,
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-card-lg {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }

    .project-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-showcase.reverse {
        direction: ltr;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .steps-container::before {
        display: none;
    }
}

/* Tablets */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
        --section-padding-sm: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        min-height: 100vh;
        padding: 0 20px;
    }

    .hero-blob {
        display: none;
    }

    .hero-image {
        display: none;
    }

    .floating-card {
        display: none;
    }

    .features-grid,
    .problem-grid,
    .hubs-grid,
    .testimonials-grid,
    .service-grid,
    .competition-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.popular {
        transform: none;
    }

    .icon-grid,
    .seller-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .partners-logos {
        gap: 30px;
    }

    .stats-row {
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .calculator-box {
        padding: 30px 20px;
    }

    .story-card {
        min-width: 100%;
    }

    .payg-table {
        overflow-x: auto;
    }

    .payg-table table {
        min-width: 600px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 700px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
        --section-padding-sm: 40px 0;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    .nav-container {
        padding: 8px 12px 8px 16px;
    }

    .logo {
        font-size: 14px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 28px;
    }

    .hero-image {
        width: 240px;
        height: 240px;
    }

    .hero-blob {
        width: 280px;
        height: 280px;
    }

    .icon-grid,
    .seller-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .problem-card,
    .hub-card,
    .testimonial-card,
    .plan-card {
        padding: 28px 24px;
    }

    .step-number {
        width: 100px;
        height: 100px;
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }

    .pricing-tab {
        width: 100%;
        text-align: center;
    }

    .category-filter {
        flex-direction: column;
        align-items: center;
    }

    .category-btn {
        width: 100%;
        text-align: center;
    }

    .trust-row {
        flex-direction: column;
        gap: 16px;
    }

    .university-logos {
        flex-direction: column;
        gap: 16px;
    }

    .final-cta {
        padding: 80px 0;
    }

    .final-cta h2 {
        font-size: 28px;
    }
}

/* ===================================================
   28. PRINT STYLES
   =================================================== */
@media print {
    .navbar,
    .floating-cta,
    .footer,
    .btn,
    .cta-banner {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    .section {
        padding: 30px 0;
        page-break-inside: avoid;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    a {
        text-decoration: underline;
    }

    .hero {
        padding-top: 0;
    }
}

/* ===================================================
   29. ACCESSIBILITY
   =================================================== */

/* Focus states */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(255, 139, 0, 0.5);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-orange: #ff6600;
        --text-gray: #444444;
        --border-gray: #666666;
    }
}

/* ===================================================
   30. DARK MODE (Optional)
   =================================================== */
@media (prefers-color-scheme: dark) {
    /* Uncomment below for automatic dark mode support */
    /*
    :root {
        --white: #1a1a1a;
        --off-white: #222222;
        --light-gray: #2d2d2d;
        --medium-gray: #3d3d3d;
        --border-gray: #4d4d4d;
        --text-dark: #ffffff;
        --text-gray: #b0b0b0;
        --text-light: #808080;
        --light-green: #1e3a1e;
        --accent-green: #2d4a2d;
        --light-orange: #3d2a1a;
        --light-blue: #1a2d3d;
    }

    body {
        background-color: #121212;
    }

    .navbar.scrolled {
        background: rgba(26, 26, 26, 0.95);
    }

    .feature-card,
    .problem-card,
    .hub-card,
    .testimonial-card,
    .plan-card,
    .service-card,
    .product-card,
    .seller-card {
        background: #1e1e1e;
    }
    */
}