/* SelfLink Design System - Modern Design Tokens */
:root {
  /* 🎨 Brand Colors */
  --brand-primary:         #5C2AA9;
  --brand-primary-light:   #8357C2;
  --brand-primary-lighter: #C5ABE4;
  --brand-primary-subtle:  #F3EFFD;
  
  --brand-secondary:       #D8610C;
  --brand-secondary-light: #E6783A;

  /* 🌈 Semantic Colors */
  --color-success:    #059669;
  --color-success-bg: #ECFDF5;
  --color-warning:    #D97706;
  --color-warning-bg: #FFFBEB;
  --color-error:      #DC2626;
  --color-error-bg:   #FEF2F2;
  --color-info:       #2563EB;
  --color-info-bg:    #EFF6FF;

  /* 🔘 Neutral Scale */
  --neutral-900: #1F1B2E;
  --neutral-800: #2D2541;
  --neutral-700: #4C4664;
  --neutral-600: #6B7280;
  --neutral-500: #8B8B9F;
  --neutral-400: #9CA3AF;
  --neutral-300: #C5C5D1;
  --neutral-200: #E5E7EB;
  --neutral-100: #F1F1F5;
  --neutral-50:  #F8F8FB;
  --neutral-0:   #FFFFFF;

  /* 🎯 Typography System */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --font-size-xs:   12px;
  --font-size-sm:   14px;
  --font-size-base: 16px;
  --font-size-lg:   18px;
  --font-size-xl:   20px;
  --font-size-2xl:  24px;
  --font-size-3xl:  32px;
  --font-size-4xl:  48px;
  --font-size-5xl:  64px;

  --font-weight-light:   300;
  --font-weight-normal:  400;
  --font-weight-medium:  500;
  --font-weight-semibold: 600;
  --font-weight-bold:    700;
  --font-weight-black:   800;

  --line-height-tight:   1.2;
  --line-height-snug:    1.375;
  --line-height-normal:  1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose:   1.75;

  /* 📐 Spacing Scale */
  --space-0:   0;
  --space-1:   0.25rem;  /* 4px */
  --space-2:   0.5rem;   /* 8px */
  --space-3:   0.75rem;  /* 12px */
  --space-4:   1rem;     /* 16px */
  --space-5:   1.25rem;  /* 20px */
  --space-6:   1.5rem;   /* 24px */
  --space-8:   2rem;     /* 32px */
  --space-10:  2.5rem;   /* 40px */
  --space-12:  3rem;     /* 48px */
  --space-16:  4rem;     /* 64px */
  --space-20:  5rem;     /* 80px */
  --space-24:  6rem;     /* 96px */
  --space-32:  8rem;     /* 128px */

  /* 🎨 Elevation (Shadows) */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

  /* 🎭 Border Radius */
  --radius-none: 0;
  --radius-sm:   0.25rem;  /* 4px */
  --radius-base: 0.375rem; /* 6px */
  --radius-md:   0.5rem;   /* 8px */
  --radius-lg:   0.75rem;  /* 12px */
  --radius-xl:   1rem;     /* 16px */
  --radius-2xl:  1.25rem;  /* 20px */
  --radius-full: 9999px;

  /* ⚡ Animation & Transitions */
  --transition-fast:   150ms ease-out;
  --transition-base:   300ms ease-out;
  --transition-slow:   500ms ease-out;
  --transition-bounce: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* 📱 Responsive Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;

  /* Legacy Variables for Backward Compatibility */
  --color-primary: var(--brand-primary);
  --color-primary-70: var(--brand-primary-light);
  --color-primary-30: var(--brand-primary-lighter);
  --color-primary-10: var(--brand-primary-subtle);
  --color-secondary: var(--brand-secondary);
  --color-secondary-70: var(--brand-secondary-light);
  --color-gray-900: var(--neutral-900);
  --color-gray-800: var(--neutral-800);
  --color-gray-700: var(--neutral-700);
  --color-gray-500: var(--neutral-500);
  --color-gray-300: var(--neutral-300);
  --color-gray-100: var(--neutral-100);
  --color-gray-50: var(--neutral-50);
  --color-danger: var(--color-error);
  --font-size-h1: var(--font-size-4xl);
  --font-size-h2: var(--font-size-3xl);
  --font-size-h3: var(--font-size-2xl);
  --font-size-h4: var(--font-size-lg);
  --font-size-body: var(--font-size-base);
  --font-size-small: var(--font-size-sm);
  --line-height-tight: var(--line-height-tight);
  --line-height-normal: var(--line-height-normal);
  --line-height-relaxed: var(--line-height-relaxed);
  --transition-fast: var(--transition-fast);
  --transition-normal: var(--transition-base);
  --transition-slow: var(--transition-slow);
}

/* Reset and Base Configuration */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    line-height: var(--line-height-normal);
    color: var(--neutral-900);
    background-color: var(--neutral-0);
    font-size: var(--font-size-base);
}

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

/* Typography System */
h1, .h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    line-height: var(--line-height-tight);
    color: var(--color-gray-900);
}

h2, .h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: var(--line-height-tight);
    color: var(--color-gray-900);
}

h3, .h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    line-height: var(--line-height-normal);
    color: var(--color-gray-900);
}

h4, .h4 {
    font-size: var(--font-size-h4);
    font-weight: 500;
    line-height: var(--line-height-normal);
    color: var(--color-gray-700);
}

/* Header - Enhanced Design */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-primary-30);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 20px rgba(92, 42, 169, 0.08);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px rgba(92, 42, 169, 0.12);
    border-bottom-color: var(--color-primary-50);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    min-height: 70px;
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-fast);
}

.logo img:hover {
    transform: scale(1.02);
}

/* Enhanced Navigation System */
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-main a {
    text-decoration: none;
    color: var(--color-gray-700);
    font-weight: 500;
    font-size: var(--font-size-body);
    transition: all var(--transition-fast);
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.nav-main a:hover {
    color: var(--color-primary);
    background: var(--color-primary-10);
    transform: translateY(-1px);
}

.nav-main a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.nav-main a:not(.btn):hover::after {
    width: 80%;
}

/* Enhanced Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.language-select {
    border: 1px solid var(--color-primary-30);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--color-gray-700);
    background: white;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 4px rgba(92, 42, 169, 0.05);
    min-width: 140px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    padding-right: 36px;
}

.language-select:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 8px rgba(92, 42, 169, 0.1);
    transform: translateY(-1px);
}

.language-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(92, 42, 169, 0.1);
}

.language-select option {
    padding: 8px 12px;
    font-size: 14px;
    color: var(--color-gray-700);
}

/* Enhanced More Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    text-decoration: none;
    color: var(--color-gray-700);
    font-weight: 500;
    font-size: var(--font-size-body);
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 8px 12px;
    border-radius: 6px;
}

.dropdown-trigger:hover {
    color: var(--color-primary);
    background: var(--color-primary-10);
    transform: translateY(-1px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--color-primary-30);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(92, 42, 169, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-fast);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--color-gray-700);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    border-radius: 8px;
    margin: 4px 8px;
}

.dropdown-menu a:hover {
    background-color: var(--color-primary-10);
    color: var(--color-primary);
    transform: translateX(4px);
}

/* Modern Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    line-height: var(--line-height-tight);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
    outline: none;
}

/* Primary Button - Filled */
.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    color: var(--neutral-0) !important;
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
    border-color: var(--brand-primary-light);
    color: var(--neutral-0) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(92, 42, 169, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Secondary Button - Outlined */
.btn-secondary {
    background: var(--neutral-0);
    color: var(--brand-primary);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    background: var(--brand-primary-subtle);
    color: var(--brand-primary);
    border-color: var(--brand-primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(92, 42, 169, 0.2);
}

/* Tertiary Button - Orange accent for support actions */
.btn-tertiary {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-light) 100%);
    color: var(--neutral-0);
    border-color: var(--brand-secondary);
    box-shadow: var(--shadow-sm);
}

.btn-tertiary:hover {
    background: linear-gradient(135deg, var(--brand-secondary-light) 0%, var(--brand-secondary) 100%);
    border-color: var(--brand-secondary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Button Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    gap: var(--space-1);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
    gap: var(--space-3);
}

/* Disabled state */
.btn:disabled {
    background: var(--color-gray-300);
    color: var(--color-gray-500);
    border-color: var(--color-gray-300);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn:disabled:hover {
    background: var(--color-gray-300);
    color: var(--color-gray-500);
    border-color: var(--color-gray-300);
    transform: none;
}

/* Micro-interactions for buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    margin: 2px 0;
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-menu-btn:hover span {
    background: var(--color-primary);
}

/* Hero Section - Enhanced Typography */
.hero {
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-primary-10) 100%);
    padding: 100px 0 50px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Enhanced Hero Headlines */
.headline {
    font-size: var(--font-size-h1);
    font-weight: 700;
    line-height: var(--line-height-tight);
    color: var(--color-gray-900);
    margin-bottom: 24px;
}

.headline-highlight {
    color: var(--color-primary);
}

.subheadline {
    font-size: 20px;
    color: var(--color-gray-700);
    margin-bottom: 32px;
    line-height: var(--line-height-relaxed);
    font-weight: 400;
}

/* Hero Stats - Card Design */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    background: white;
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-300);
    transition: all var(--transition-normal);
    min-width: 100px;
    flex: 1;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 12px;
    color: var(--color-gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    align-items: center;
}

.hero-note {
    color: var(--color-success);
    font-weight: 500;
    font-size: var(--font-size-small);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-image-container {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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









/* Timeline Steps - Modern Design */
.how-it-works {
    padding: var(--space-20) 0;
    background: var(--brand-primary-subtle);
}

.how-it-works h2 {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--neutral-900);
    margin-bottom: var(--space-16);
}

.timeline-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.timeline-step {
    background: var(--neutral-0);
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-2xl);
    text-align: center;
    max-width: 280px;
    flex: 1;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
    position: relative;
    backdrop-filter: blur(10px);
}

.timeline-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--brand-primary-light);
}

.timeline-step.active {
    border-color: var(--color-success);
    background: linear-gradient(135deg, var(--neutral-0) 0%, var(--color-success-bg) 100%);
}

.timeline-step.in-progress {
    border-color: var(--color-warning);
    background: linear-gradient(135deg, var(--neutral-0) 0%, var(--color-warning-bg) 100%);
}



.step-number {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    color: var(--neutral-0);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xl);
    margin: 0 auto var(--space-4);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.timeline-step.active .step-number {
    background: var(--color-success);
}

.timeline-step.in-progress .step-number {
    background: var(--color-warning);
}



.step-status {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.timeline-step.active .step-status {
    background: var(--color-success);
    color: white;
}

.timeline-step.in-progress .step-status {
    background: var(--color-warning);
    color: white;
}



.step-content h3 {
    font-size: var(--font-size-h4);
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.step-content p {
    color: var(--color-gray-700);
    font-size: var(--font-size-small);
    line-height: var(--line-height-relaxed);
    margin-bottom: 16px;
}

.step-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.feature-tag {
    background: var(--color-primary-10);
    color: var(--color-primary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.step-cta {
    text-align: center;
    margin-top: 12px;
}

.step-cta .btn {
    font-size: 12px;
    padding: 6px 12px;
}

.timeline-arrow {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: bold;
    transition: color var(--transition-normal);
}

.timeline-arrow:hover {
    color: var(--color-secondary);
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: var(--color-gray-50);
}

.impact h2 {
    text-align: center;
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 60px;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.impact-challenges h3,
.impact-results h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
}

.impact-challenges h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-error);
    border-radius: 2px;
}

.impact-results h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-success);
    border-radius: 2px;
}

.challenge-list,
.result-list {
    list-style: none;
    padding: 0;
}

.challenge-list li,
.result-list li {
    background: white;
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 16px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.challenge-list li {
    border-left: 4px solid var(--color-error);
}

.result-list li {
    border-left: 4px solid var(--color-success);
}

.challenge-list li:hover,
.result-list li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary-light);
}

.challenge-list li:hover .impact-icon,
.result-list li:hover .impact-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.impact-icon {
    min-width: 56px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.challenge-icon {
    background: linear-gradient(135deg, var(--color-error) 0%, #e74c3c 100%);
    color: white;
}

.result-icon {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    color: white;
}

.impact-icon i {
    font-size: 20px;
}

.impact-content {
    flex: 1;
    min-width: 0;
}

.impact-content strong {
    color: var(--neutral-900);
    font-weight: 600;
    font-size: var(--font-size-base);
    display: block;
    margin-bottom: 8px;
}

.impact-content br {
    margin-bottom: 8px;
}

.source-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.source-link:hover {
    color: var(--brand-primary-light);
    text-decoration: underline;
}

/* Current Offering Section */
.current-offering {
    padding: 80px 0;
    background: white;
}

.offering-content h2 {
    text-align: center;
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 16px;
}

.offering-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-gray-700);
    margin-bottom: 60px;
    line-height: var(--line-height-relaxed);
}

.offering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--color-gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    transition: all var(--transition-normal);
}

.benefit-list li:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.benefit-list li i {
    color: var(--color-primary);
    font-size: 20px;
}

.benefit-list li span {
    font-size: var(--font-size-body);
    font-weight: 500;
    color: var(--color-gray-900);
}

.cta-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-70) 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card h3 {
    font-size: var(--font-size-h3);
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-card p {
    font-size: var(--font-size-body);
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: var(--line-height-relaxed);
}

.cta-card .btn {
    background: white;
    color: var(--color-primary) !important;
    border-color: white;
}

.cta-card .btn:hover {
    background: var(--color-gray-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--color-gray-50);
}

.pricing h2 {
    text-align: center;
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 16px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-gray-700);
    margin-bottom: 60px;
    line-height: var(--line-height-relaxed);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid var(--color-gray-300);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.pricing-card.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-10) 100%);
}





.plan-header {
    margin-bottom: 32px;
}

.plan-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary-subtle) 0%, var(--brand-primary-lighter) 100%);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.plan-icon i {
    font-size: 28px;
    color: var(--brand-primary);
    transition: all var(--transition-base);
}

.pricing-card:hover .plan-icon {
    background: linear-gradient(135deg, var(--brand-primary-lighter) 0%, var(--brand-primary-light) 100%);
    transform: scale(1.1);
}

.pricing-card:hover .plan-icon i {
    color: var(--brand-primary-light);
    transform: scale(1.1);
}

.plan-header h3 {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.plan-status {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.pricing-card.active .plan-status {
    background: var(--color-success);
    color: white;
}



.plan-price {
    margin-bottom: 32px;
}

.plan-price .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

.plan-price .period {
    font-size: var(--font-size-small);
    color: var(--color-gray-500);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: var(--font-size-body);
    color: var(--color-gray-700);
}

.plan-features li i {
    color: var(--color-success);
    font-size: 16px;
}

.plan-best-for {
    background: var(--color-gray-100);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-size: var(--font-size-small);
    color: var(--color-gray-700);
    line-height: var(--line-height-relaxed);
}

.plan-best-for strong {
    color: var(--color-gray-900);
}

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

/* What's Next Section */
.whats-next {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 100%);
    color: white;
    text-align: center;
}

.whats-next-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.whats-next-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: var(--line-height-relaxed);
}

.waitlist-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.waitlist-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-body);
    color: white;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.waitlist-features .feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.waitlist-features .feature i {
    color: var(--color-secondary);
}

/* Final CTA Section - Enhanced Design */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-70) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    line-height: var(--line-height-relaxed);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-buttons {
    margin-bottom: 40px;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--color-primary) !important;
    border-color: white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-primary:hover {
    background: var(--color-gray-50);
    color: var(--color-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.feature {
    font-size: var(--font-size-body);
    color: white;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



/* Micro-interactions and Animations */
@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 228, 181, 0.4);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.01);
        box-shadow: 0 0 0 8px rgba(255, 228, 181, 0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Footer - Clean & Professional */
.footer {
    background: var(--color-gray-900);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--color-gray-300);
    line-height: var(--line-height-relaxed);
    margin-bottom: 20px;
}

.footer-locations {
    margin-top: 20px;
}

.footer-locations span {
    font-size: 20px;
    margin-bottom: 8px;
    display: block;
}

.footer-locations small {
    color: var(--color-gray-500);
    font-size: 13px;
}

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

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--color-gray-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-700);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-500);
    margin: 0;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Enhanced Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInScale {
    animation: fadeInScale 0.5s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Hover Micro-interactions */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

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

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

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

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(92, 42, 169, 0.3);
}

/* Focus and Active States */
.focus-ring:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(92, 42, 169, 0.3);
}

.active-bounce:active {
    transform: scale(0.98);
}

/* Stagger Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Lazy Loading Image Placeholder */
.lazy-image {
    background: var(--color-gray-100);
    position: relative;
    overflow: hidden;
}

.lazy-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Mobile Design */
@media (max-width: 768px) {
    /* Touch-optimized Navigation */
    .nav-main {
        display: none;
    }
    
    .language-switcher {
        margin-right: var(--space-2);
        order: -1;
    }
    
    .language-select {
        min-width: 120px;
        font-size: var(--font-size-sm);
        padding: var(--space-2) var(--space-3);
        padding-right: var(--space-8);
        touch-action: manipulation;
    }
    
    .mobile-menu-btn {
        display: flex;
        padding: var(--space-3);
        min-height: 44px; /* iOS touch target minimum */
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Mobile Typography Scale */
    h1, .h1 {
        font-size: var(--font-size-3xl);
        line-height: var(--line-height-tight);
    }
    
    h2, .h2 {
        font-size: var(--font-size-2xl);
        line-height: var(--line-height-snug);
    }
    
    h3, .h3 {
        font-size: var(--font-size-xl);
        line-height: var(--line-height-snug);
    }
    
    /* Mobile Hero */
    .hero {
        padding: var(--space-24) 0 var(--space-12);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        text-align: center;
    }
    
    .subheadline {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-8);
    }
    
    /* Mobile CTAs with touch-friendly spacing */
    .hero-cta {
        flex-direction: column;
        gap: var(--space-4);
        margin-bottom: var(--space-8);
    }
    
    .hero-cta .btn {
        min-height: 48px; /* Touch target minimum */
        padding: var(--space-4) var(--space-6);
        font-size: var(--font-size-base);
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-4);
        margin-bottom: var(--space-6);
    }
    
    .stat {
        min-width: 100px;
        padding: var(--space-4) var(--space-3);
        border-radius: var(--radius-xl);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    /* Hide hero image on mobile for performance */
    .hero-visual {
        display: none;
    }
    

    

    
    /* Mobile Timeline */
    .timeline-steps {
        flex-direction: column;
        gap: var(--space-6);
        padding: 0 var(--space-4);
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        font-size: var(--font-size-lg);
        margin: var(--space-2) 0;
    }
    
    .timeline-step {
        max-width: 100%;
        min-width: auto;
        padding: var(--space-6) var(--space-5);
    }
    
    /* Mobile Sections */
    .impact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .impact-challenges h3,
    .impact-results h3 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-6);
    }
    
    .challenge-list li,
    .result-list li {
        padding: var(--space-5);
        margin-bottom: var(--space-4);
        gap: var(--space-4);
    }
    
    .impact-icon {
        min-width: 48px;
        width: 48px;
        height: 48px;
    }
    
    .impact-icon i {
        font-size: 18px;
    }
    
    .offering-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .benefit-list li {
        padding: var(--space-4);
        margin-bottom: var(--space-4);
    }
    
    /* Mobile Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        padding: 0 var(--space-4);
    }
    
    .pricing-card {
        padding: var(--space-8) var(--space-6);
        margin: 0 auto;
        max-width: 400px;
    }
    
    .pricing-card .btn {
        width: 100%;
        min-height: 48px;
    }
    
    /* Features */
    .waitlist-features,
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
    

    

    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile Container with better touch margins */
    .container {
        padding: 0 var(--space-4);
        max-width: 100%;
    }
    
    /* Ensure all interactive elements have proper touch targets */
    a, button, input, select {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Improve readability on mobile */
    p, li {
        line-height: var(--line-height-relaxed);
    }
}

@media (max-width: 480px) {
    /* Small mobile optimization */
    h1, .h1 {
        font-size: var(--font-size-2xl);
        line-height: var(--line-height-tight);
    }
    
    h2, .h2 {
        font-size: var(--font-size-xl);
        line-height: var(--line-height-snug);
    }
    
    .subheadline {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-6);
    }
    
    /* Compact hero for small screens */
    .hero {
        padding: var(--space-20) 0 var(--space-10);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-3);
        margin-bottom: var(--space-6);
    }
    
    .stat {
        padding: var(--space-3) var(--space-2);
        min-width: auto;
    }
    
    .stat-number {
        font-size: var(--font-size-xl);
    }
    
    /* Touch-friendly buttons */
    .btn {
        padding: var(--space-3) var(--space-5);
        font-size: var(--font-size-sm);
        min-height: 48px;
    }
    
    .btn-lg {
        padding: var(--space-4) var(--space-6);
        font-size: var(--font-size-base);
        min-height: 52px;
    }
    
    /* Impact section for small screens */
    .challenge-list li,
    .result-list li {
        padding: var(--space-4);
        gap: var(--space-3);
        flex-direction: column;
        text-align: center;
    }
    
    .impact-icon {
        align-self: center;
        min-width: 44px;
        width: 44px;
        height: 44px;
    }
    
    .impact-icon i {
        font-size: 16px;
    }
    
    /* Smaller containers for tiny screens */
    .container {
        padding: 0 var(--space-3);
    }
    
    /* Pricing adjustments */
    .pricing-card {
        padding: 24px 20px;
    }
    
    .plan-price .price {
        font-size: 40px;
    }
    
    /* Footer Small Screens */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-logo {
        height: 50px;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-btn,
    .btn,
    .hero-visual,
    .final-cta {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
    }
    
    h1, h2, h3, h4 {
        color: black;
        page-break-after: avoid;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
} 