@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sticky Top Navigation */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand:hover {
    color: var(--color-accent-1);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--color-primary);
    background: rgba(30, 42, 56, 0.08);
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-cta {
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--accent-gradient);
    color: white !important;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-accent);
    transition: all 0.3s ease;
    border: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 182, 125, 0.4);
    background: linear-gradient(135deg, var(--color-accent-2) 0%, #22C55E 100%);
}

.lang-select {
    padding: 8px 12px;
    border: 1px solid rgba(30, 42, 56, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-select:hover {
    border-color: var(--color-accent-1);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(255, 183, 0, 0.15);
    transform: translateY(-1px);
}

.lang-select:focus {
    outline: none;
    border-color: var(--color-accent-1);
    box-shadow: 0 0 0 3px rgba(255, 183, 0, 0.1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Alinea Brand Palette */
    --color-primary: #1E2A38; /* Navy Blue - trust, stability */
    --color-accent-1: #FFB700; /* Amber Gold - energy, ambition */
    --color-accent-2: #2EB67D; /* Emerald Green - growth, success */
    --color-background: #F9FAFB; /* Soft White */
    --color-text: #333333; /* Charcoal */
    --color-text-muted: #6B7280; /* Cool Gray */
    --color-cta: #FF8A00; /* Deep Amber */
    --color-hover: #3F4E63; /* Slate Blue */
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Derived tokens */
    --primary-gradient: linear-gradient(135deg, var(--color-primary) 0%, #2A3A4A 100%);
    --accent-gradient: linear-gradient(135deg, var(--color-accent-2) 0%, #22C55E 100%);
    --success-gradient: linear-gradient(135deg, var(--color-accent-2) 0%, #22C55E 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: var(--color-text);
    --text-secondary: var(--color-text-muted);
    --shadow-soft: 0 4px 20px rgba(30, 42, 56, 0.08);
    --shadow-strong: 0 8px 40px rgba(30, 42, 56, 0.12);
    --shadow-accent: 0 4px 20px rgba(46, 182, 125, 0.25);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--color-background);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(11, 61, 145, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(20, 184, 166, 0.10) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(20px) translateY(10px); }
    75% { transform: translateX(-10px) translateY(20px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Modern Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(30, 42, 56, 0.02) 100%);
    border-radius: 0 0 32px 32px;
    margin-bottom: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: gridMove 20s linear infinite;
    z-index: -1;
}

@keyframes gridMove {
    0% { transform: translate(-50%, -50%) rotate(45deg) translateX(0); }
    100% { transform: translate(-50%, -50%) rotate(45deg) translateX(50px); }
}

.hero-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-strong);
    animation: heroEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

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

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

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Brand Logo Styles */
.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.brand-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo-name {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--color-primary);
    line-height: 1;
}

.brand-logo-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin: 0.5rem 0;
}

.brand-logo-line {
    width: 120px;
    height: 6px;
    color: var(--color-text-muted);
    opacity: 0.6;
}

.brand-logo-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.brand-logo-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-text-muted);
    opacity: 0.6;
}

.brand-logo-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Dark mode adjustments for logo */
@media (prefers-color-scheme: dark) {
    .brand-logo-name {
        color: #ffffff;
    }
    .brand-logo-line {
        color: rgba(255, 255, 255, 0.6);
    }
    .brand-logo-dot {
        background: rgba(255, 255, 255, 0.6);
    }
    .brand-logo-tagline {
        color: rgba(255, 255, 255, 0.7);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-hover) 50%, var(--color-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.1); }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.proof-bar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #E5E7EB;
}

.how-link {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Modern Buttons */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.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 0.5s;
}

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

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-accent);
    border: 1px solid rgba(46, 182, 125, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(46, 182, 125, 0.5);
    background: linear-gradient(135deg, var(--color-accent-2) 0%, #22C55E 100%);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(30, 42, 56, 0.1);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 42, 56, 0.2);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.02);
}

/* How It Works Section - Compact Version for Main Site */
.how-it-works-compact {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    margin: 2rem 0;
}

.steps-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .steps-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-compact {
        padding: 1.2rem 1rem;
    }
}

.step-compact {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 42, 56, 0.08);
    transition: all 0.3s ease;
}

.step-compact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.step-icon-compact {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.step-compact h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
}

.step-compact p {
    color: var(--color-text-muted);
    line-height: 1.4;
    font-size: 0.9rem;
}

.how-cta-compact {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.proof-stats-compact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number-compact {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent-2);
    line-height: 1;
}

.stat-label-compact {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.3rem;
}

/* How It Works Section - Full Version for Subsite */
.how-it-works {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    margin: 2rem 0;
}

.how-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 42, 56, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--accent-gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-accent);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(46, 182, 125, 0.1);
    color: var(--color-accent-2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(46, 182, 125, 0.2);
}

.how-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 42, 56, 0.08);
}

.how-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.how-cta p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent-2);
    line-height: 1;
}

.stat-label {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* How It Works Page Styles */
.how-it-works-page {
    padding-top: 2rem;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-hover) 50%, var(--color-text) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.detailed-steps {
    margin-bottom: 6rem;
}

.step-detailed {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 42, 56, 0.08);
    transition: all 0.3s ease;
}

.step-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-number-large {
    background: var(--accent-gradient);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    box-shadow: var(--shadow-accent);
    flex-shrink: 0;
}

.step-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.step-description {
    margin-bottom: 3rem;
}

.step-description p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.7;
    max-width: 800px;
}

.step-features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(46, 182, 125, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(46, 182, 125, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(46, 182, 125, 0.08);
    transform: translateY(-2px);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Success Stories */
.success-stories {
    margin-bottom: 6rem;
}

.success-stories h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 42, 56, 0.08);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.story-avatar {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.story-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-goal {
    background: rgba(46, 182, 125, 0.1);
    color: var(--color-accent-2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(46, 182, 125, 0.2);
}

.story-time {
    background: rgba(30, 42, 56, 0.1);
    color: var(--color-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(30, 42, 56, 0.2);
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(30, 42, 56, 0.08);
    text-align: center;
    margin-bottom: 4rem;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    margin: 0;
    opacity: 0.9;
}

.feature {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--color-text);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    animation: featureSlideIn 0.8s ease-out;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:nth-child(1) {
    animation-delay: 0.1s;
}

.feature:nth-child(2) {
    animation-delay: 0.3s;
}

.feature:nth-child(3) {
    animation-delay: 0.5s;
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: rgba(255, 255, 255, 0.3);
}

@keyframes featureSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.feature h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* Modern Footer */
.footer {
    text-align: center;
    padding: 4rem 0 2rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--accent-gradient);
}

.footer p {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Section styling to match site */
.section {
    padding: 6rem 0;
    border-radius: 24px;
    margin: 2rem 0;
}

.section:nth-of-type(even) {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-section {
    background: transparent;
    border: none;
}

.input {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: #fff;
    color: var(--color-text);
    width: 100%;
    max-width: 340px;
}

.signup-form, .contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-form textarea.input {
    min-height: 120px;
}

.fine-print {
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.7);
    margin-top: 0.5rem;
}

/* Founders */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.founder-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 1.25rem;
    text-align: left;
}

.founder-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.founder-name { font-size: 1.25rem; font-weight: 700; }
.founder-role { color: rgba(15,23,42,0.7); margin-bottom: 0.5rem; }
.founder-bio { color: rgba(15,23,42,0.85); }
.founder-links a { color: var(--color-accent); text-decoration: underline; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 1.25rem;
    text-align: left;
}

.testimonial-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 9999px; object-fit: cover; }
.testimonial-name { font-weight: 700; }
.testimonial-meta { color: rgba(15,23,42,0.7); font-size: 0.9rem; }
.testimonial-quote { color: rgba(15,23,42,0.9); margin-top: 0.25rem; }

/* Vision & Mission cards */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.vm-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vm-icon { font-size: 1.75rem; }
.vm-title { font-size: 1.25rem; font-weight: 700; margin-top: 0.5rem; color: var(--color-primary); }
.vm-text { color: rgba(15,23,42,0.85); margin-top: 0.5rem; }

/* Social embeds */
.social-embeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.embed-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 1rem;
}

.embed-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

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

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Floating elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

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

/* Pulse effect */
.pulse {
    animation: pulse 2s infinite;
}

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

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-inner {
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 0.25rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        z-index: 49;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.875rem 1rem;
        text-align: left;
        border-radius: 12px;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .nav-links a:hover {
        background: rgba(30, 42, 56, 0.1);
        transform: none;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .lang-select {
        width: 100%;
        margin-top: 0.5rem;
        min-height: 44px;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 2rem 0;
        margin-bottom: 1rem;
    }
    
    .hero-content {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: none;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    /* Brand Logo */
    .brand-logo-name {
        font-size: 2.5rem;
    }
    
    .brand-logo-tagline {
        font-size: 0.65rem;
    }
    
    /* Sections */
    .section {
        padding: 3rem 0;
        margin: 1rem 0;
    }
    
    .section h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .section-inner {
        padding: 0 1rem;
    }
    
    .section-intro {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* How It Works Compact */
    .how-it-works-compact {
        padding: 2.5rem 0;
        margin: 1rem 0;
    }
    
    .how-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .steps-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .step-compact {
        padding: 1.5rem 1rem;
    }
    
    .step-icon-compact {
        font-size: 1.75rem;
    }
    
    .step-compact h3 {
        font-size: 1rem;
    }
    
    .step-compact p {
        font-size: 0.9rem;
    }
    
    .how-cta-compact {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .proof-stats-compact {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .stat-compact {
        width: 100%;
    }
    
    /* VM Grid (Vision & Mission, Programs, etc.) */
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .vm-card {
        padding: 1.25rem;
    }
    
    .vm-icon {
        font-size: 1.5rem;
    }
    
    .vm-title {
        font-size: 1.1rem;
    }
    
    .vm-text {
        font-size: 0.95rem;
    }
    
    /* Forms */
    .signup-form,
    .contact-form {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .input {
        max-width: none;
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .contact-form textarea.input {
        min-height: 140px;
        resize: vertical;
    }
    
    .fine-print {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .footer p {
        font-size: 0.85rem;
    }
    
    /* Features (if exists) */
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature h3 {
        font-size: 1.25rem;
    }
    
    /* Founders & Testimonials */
    .founders-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .founder-card,
    .testimonial-card {
        padding: 1.25rem;
    }
    
    /* Social Embeds */
    .social-embeds {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-inner {
        padding: 0 1rem;
    }
    
    .brand {
        font-size: 1.25rem;
    }
    
    .hero-content {
        padding: 2rem 1.25rem;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
    }
    
    .brand-logo-name {
        font-size: 2rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }
    
    .step-compact {
        padding: 1.25rem 0.75rem;
    }
    
    .vm-card {
        padding: 1rem;
    }
    
    .feature {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .input {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
}