/* ============================================================
   HARRY SANDERS — SHARED STYLES
   HubSpot-compatible | StudioHawk visual style | Wasif Kasim touches
   ============================================================ */

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

:root {
    /* StudioHawk dark + cyan palette */
    --black:       #000000;
    --navy:        #000000;
    --navy-95:     rgba(0, 0, 0, 0.95);
    --dark:        #111111;
    --cyan:        #00E5FF;
    --cyan-dark:   #00B8D4;
    --cyan-glow:   rgba(0, 229, 255, 0.2);
    --blue:        #00E5FF;
    --blue-light:  #00E5FF;
    --blue-dark:   #00B8D4;
    --blue-glow:   rgba(0, 229, 255, 0.15);
    --lavender:    #adbaff;
    --lavender-dim: rgba(173, 186, 255, 0.15);
    --lavender-mid: rgba(173, 186, 255, 0.4);
    --gradient-brand: linear-gradient(140deg, #adbaff 4%, #01ffff 100%);
    --gradient-text: linear-gradient(to right, #3db8ea, #01ffff 80%);
    --white:       #ffffff;
    --off-white:   #f5f5f5;
    --gray-50:     #f5f5f5;
    --gray-100:    #e5e7eb;
    --gray-200:    #d1d5db;
    --gray-400:    #9ca3af;
    --gray-500:    #6b7280;
    --gray-600:    #9ca3af;
    --gray-700:    #374151;
    --gray-800:    #1f1f1f;
    --gray-900:    #111111;
    --green:       #10b981;
    --gold:        #f59e0b;
    --red:         #ef4444;

    /* Typography */
    --font-heading: 'Khand', sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    /* Layout */
    --section-y:  100px;
    --container:  1200px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--gray-400);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
strong { color: var(--white); }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-logo {
    display: inline-block;
}

.nav-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.nav-links > li > a:hover { color: var(--cyan); }
.nav-links > li > a.active { color: var(--cyan); font-weight: 600; }

/* Nav CTA button — gradient pill */
.nav-cta {
    background: linear-gradient(to right, #3db8ea, #01ffff 80%);
    color: var(--black) !important;
    padding: 10px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-cta:hover {
    opacity: 0.9;
    color: var(--black) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(173, 186, 255, 0.3);
}

.nav-cta::after { display: none; }

/* Dropdown caret */
.nav-caret {
    width: 12px; height: 12px;
    transition: transform 0.3s;
    color: var(--gray-400);
}

/* Dropdown menu */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 200px;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown-parent:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-parent:hover .nav-caret { transform: rotate(180deg); }

.nav-dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-dropdown li a:hover {
    background: rgba(0, 229, 255, 0.08);
    color: var(--cyan);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-hamburger span {
    width: 24px; height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
    display: block;
}

/* Mobile nav */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-mobile-overlay.open { display: flex; }

.nav-mobile-overlay a {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 12px 24px;
    transition: color 0.2s;
}

.nav-mobile-overlay a:hover { color: var(--cyan); }

.nav-mobile-overlay .mobile-sub {
    font-size: 22px;
    color: var(--gray-400);
    padding-left: 40px;
}

.nav-mobile-overlay .mobile-cta {
    margin-top: 16px;
    padding: 14px 40px;
    background: var(--gradient-brand);
    border-radius: 50px;
    font-size: 20px;
    color: var(--white) !important;
}

.nav-mobile-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile-close svg {
    width: 28px; height: 28px;
    color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: var(--lavender);
    color: var(--black);
    border-color: var(--lavender);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(173, 186, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--lavender);
}

.btn-outline:hover {
    background: var(--lavender);
    color: var(--black);
    border-color: var(--lavender);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn svg {
    width: 18px; height: 18px;
    transition: transform 0.3s;
}

.btn:hover svg { transform: translateX(4px); }

/* ===== HERO (Home) ===== */
.hero {
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(173, 186, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(rgba(41, 42, 42, 0.6) 1.4px, transparent 0) 0 0 / 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.hero .container { z-index: 1; }

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lavender-dim);
    border: 1px solid rgba(173, 186, 255, 0.25);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lavender);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--lavender);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.hero h1 .highlight { color: var(--blue-light); }

.hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-glow {
    position: absolute;
    inset: -3px;
    border-radius: 26px;
    background: var(--gradient-brand);
    z-index: -1;
    opacity: 0.5;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* Hero decorative floating dots */
.hero-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}
.hero-dot--gold {
    width: 48px; height: 48px;
    background: var(--gold);
    top: 15%; right: 5%;
    opacity: 0.7;
}
.hero-dot--lavender {
    width: 20px; height: 20px;
    background: var(--lavender);
    bottom: 20%; left: 3%;
    opacity: 0.5;
}
.hero-dot--cyan {
    width: 14px; height: 14px;
    background: var(--cyan);
    top: 40%; left: 45%;
    opacity: 0.4;
}

/* Highlight underline swoosh */
.highlight {
    position: relative;
    display: inline-block;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-brand);
    border-radius: 4px;
    opacity: 0.5;
}

/* ===== PAGE HERO (inner pages — dark banner) ===== */
.page-hero {
    background: var(--navy);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%; right: -15%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(173, 186, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(rgba(41, 42, 42, 0.6) 1.4px, transparent 0) 0 0 / 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }

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

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

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lavender-dim);
    border: 1px solid rgba(173, 186, 255, 0.25);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lavender);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.page-hero h1 .highlight { color: var(--blue-light); }

.page-hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.page-hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-image .hero-image-glow {
    position: absolute;
    inset: -3px;
    border-radius: 26px;
    background: var(--gradient-brand);
    z-index: 0;
    opacity: 0.5;
}

.page-hero-image .hero-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-hero-image .hero-image-wrapper img {
    width: 100%;
    max-height: 440px;
    height: auto;
    display: block;
    object-fit: cover;
}


.page-hero-image img {
    max-height: 420px;
    max-width: 100%;
    width: auto;
    border-radius: 20px;
    object-fit: contain;
}

/* ===== SECTIONS ===== */
.section { padding: var(--section-y) 0; }

/* Dark alt — subtle dot grid */
.section-alt {
    background: var(--gray-900);
    position: relative;
}
.section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(rgba(41, 42, 42, 0.8) 1.4px, transparent 0) 0 0 / 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.section-alt > * { position: relative; z-index: 1; }

/* Full dark with dot grid */
.section-dark {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(rgba(41, 42, 42, 0.8) 1.4px, transparent 0) 0 0 / 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.section-dark > * { position: relative; z-index: 1; }

/* Light section — off-white with dark text */
.section-light {
    background: var(--off-white);
    color: var(--gray-700);
}
.section-light h2, .section-light h3, .section-light h4 { color: var(--black); }
.section-light p { color: rgba(0, 0, 0, 0.6); }
.section-light .section-subtitle { color: rgba(0, 0, 0, 0.5); }
.section-light .card {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.section-light .card:hover {
    border-color: var(--lavender);
    box-shadow: 0 12px 40px rgba(173, 186, 255, 0.15);
}
.section-light .card p { color: rgba(0, 0, 0, 0.55); }
.section-light .testimonial-card {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.08);
}
.section-light .testimonial-card:hover {
    border-color: var(--lavender);
    box-shadow: 0 12px 40px rgba(173, 186, 255, 0.15);
}
.section-light .testimonial-text { color: rgba(0, 0, 0, 0.6); font-style: italic; }
.section-light .testimonial-name { color: var(--black); }
.section-light .testimonial-role { color: rgba(0, 0, 0, 0.45); }
.section-light .testimonial-author { border-top-color: rgba(0, 0, 0, 0.08); }
.section-light .outcome-card {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.08);
}
.section-light .outcome-card:hover {
    border-color: var(--lavender);
    background: var(--white);
}
.section-light .outcome-card p { color: rgba(0, 0, 0, 0.55); }
.section-light .outcome-card h3 { color: var(--black); }
.section-light .faq-item {
    background: var(--white);
    border-color: rgba(0, 0, 0, 0.08);
}
.section-light .faq-item.open { border-color: var(--lavender); }
.section-light .faq-question { color: var(--black); }
.section-light .faq-question:hover { color: var(--lavender); }
.section-light .faq-question svg { color: rgba(0, 0, 0, 0.3); }
.section-light .faq-item.open .faq-question svg { color: var(--lavender); }
.section-light .faq-answer-inner { color: rgba(0, 0, 0, 0.55); }
.section-light .credential-tag {
    background: rgba(173, 186, 255, 0.1);
    border-color: rgba(173, 186, 255, 0.25);
    color: #5a65a0;
}
.section-light .credential-tag:hover {
    background: rgba(173, 186, 255, 0.2);
    border-color: var(--lavender);
    color: #3a4580;
}
.section-light .credential-tag svg { color: var(--gold); fill: var(--gold); }
.section-light .btn-primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.section-light .btn-primary:hover {
    background: var(--lavender);
    color: var(--black);
    border-color: var(--lavender);
}
.section-light .btn-outline {
    border-color: var(--black);
    color: var(--black);
}
.section-light .btn-outline:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.section-light .section-label {
    background: linear-gradient(to right, #3a4580, #0c8c9c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-light .section-label::before {
    background: linear-gradient(to right, #3a4580, #0c8c9c);
}
.section-light .split-content p { color: rgba(0, 0, 0, 0.6); }
.section-light strong { color: var(--black); }
.section-light .contact-info h3 { color: var(--black); }
.section-light .contact-info > p { color: rgba(0, 0, 0, 0.6); }
.section-light .contact-link { color: rgba(0, 0, 0, 0.7); border-color: rgba(0, 0, 0, 0.1); }
.section-light .contact-link:hover { color: var(--black); border-color: var(--lavender); }
.section-light .contact-link-icon { background: rgba(173, 186, 255, 0.1); color: #5a65a0; }
.section-light .contact-form { background: var(--white); border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 20px; padding: 40px; }
.section-light .form-group label { color: var(--black); }
.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea { background: var(--off-white); color: var(--black); border-color: rgba(0, 0, 0, 0.1); }
.section-light .form-group input:focus,
.section-light .form-group select:focus,
.section-light .form-group textarea:focus { border-color: var(--lavender); }
.section-light .form-group input::placeholder,
.section-light .form-group textarea::placeholder { color: rgba(0, 0, 0, 0.35); }
.section-light .section-title { color: var(--black); }
.section-light .section-subtitle { color: rgba(0, 0, 0, 0.55); }
.section-light .testimonial-card { background: var(--white); border-color: rgba(0, 0, 0, 0.08); }
.section-light .testimonial-card:hover { border-color: var(--lavender); box-shadow: 0 12px 40px rgba(173, 186, 255, 0.15); }
.section-light .testimonial-text { color: rgba(0, 0, 0, 0.6); }
.section-light .testimonial-name { color: var(--black); }
.section-light .testimonial-role { color: rgba(0, 0, 0, 0.5); }
.section-light .testimonial-author { border-top-color: rgba(0, 0, 0, 0.08); }

/* Tinted dark — lavender tint */
.section-tinted {
    background: #0c0c1a;
    position: relative;
}
.section-tinted::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(rgba(55, 52, 80, 0.6) 1.4px, transparent 0) 0 0 / 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.section-tinted > * { position: relative; z-index: 1; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-label {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-dark .section-label::before { background: var(--gradient-brand); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 32px; height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 640px;
    line-height: 1.8;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== MEDIA BAR ===== */
.media-bar {
    padding: 48px 0;
    background: var(--gradient-brand);
    border: none;
}

.media-bar-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

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

.media-logo {
    height: 40px;
    width: auto;
    opacity: 0.85;
    filter: grayscale(1);
    mix-blend-mode: multiply;
    transition: all 0.3s;
}

/* Hero-inline media logos (larger, no section background) */
.hero-media-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(173, 186, 255, 0.1);
}

.hero-media-logos .media-logo {
    height: 32px;
    opacity: 0.9;
    filter: grayscale(1) invert(1) brightness(1.5);
    mix-blend-mode: screen;
}

.hero-media-logos .media-logo:hover {
    opacity: 1;
    filter: grayscale(1) invert(1) brightness(2);
    mix-blend-mode: screen;
}

.media-logo:hover { opacity: 1; filter: grayscale(0); mix-blend-mode: multiply; }

.media-logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

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

/* ===== CARDS ===== */
.card {
    background: rgba(173, 186, 255, 0.04);
    border: 1px solid rgba(173, 186, 255, 0.08);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(173, 186, 255, 0.15);
    border-color: rgba(173, 186, 255, 0.25);
}

.card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--lavender), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 26px; height: 26px;
    color: var(--black);
}

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

.card p {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.8;
}

.card p + p { margin-top: 12px; }

/* Dark cards (for dark sections) */
.section-dark .card {
    background: rgba(173, 186, 255, 0.05);
    border-color: rgba(173, 186, 255, 0.08);
}

.section-dark .card:hover {
    background: rgba(173, 186, 255, 0.08);
    border-color: rgba(173, 186, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

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

/* ===== CREDENTIAL TAGS ===== */
.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    margin-bottom: 32px;
}

.credential-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lavender-dim);
    border: 1px solid rgba(173, 186, 255, 0.15);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--lavender);
    transition: all 0.3s;
}

.credential-tag:hover {
    border-color: var(--lavender);
    background: rgba(173, 186, 255, 0.2);
    color: var(--white);
}

.credential-tag svg {
    width: 14px; height: 14px;
    color: var(--gold);
    fill: var(--gold);
}

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

.testimonial-card {
    background: rgba(173, 186, 255, 0.04);
    border: 1px solid rgba(173, 186, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(173, 186, 255, 0.25);
}

.section-dark .testimonial-card {
    background: rgba(173, 186, 255, 0.05);
    border-color: rgba(173, 186, 255, 0.08);
}

.section-dark .testimonial-card:hover {
    border-color: rgba(173, 186, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 16px; height: 16px;
    color: var(--gold);
    fill: var(--gold);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}

.section-dark .testimonial-text { color: rgba(255, 255, 255, 0.7); }

/* Video Testimonials */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-testimonial {
    position: relative;
    aspect-ratio: 9 / 16;
    background: rgba(173, 186, 255, 0.04);
    border: 1px solid rgba(173, 186, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-testimonial:hover {
    border-color: var(--lavender);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.video-testimonial-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 24px;
}

.video-testimonial-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
}

.video-testimonial-placeholder span {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.video-testimonial video,
.video-testimonial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-testimonial .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-testimonial:hover .play-overlay {
    opacity: 1;
}

.video-testimonial .play-overlay svg {
    width: 48px;
    height: 48px;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Credibility strip */
.credibility-strip {
    padding: 48px 0;
    background: var(--dark);
    border-top: 1px solid rgba(173, 186, 255, 0.06);
    border-bottom: 1px solid rgba(173, 186, 255, 0.06);
}

.credibility-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.credibility-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    fill: var(--gold);
    flex-shrink: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-dark .testimonial-author { border-top-color: rgba(255, 255, 255, 0.08); }

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.testimonial-avatar-initials {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--blue-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

.section-dark .testimonial-name { color: var(--white); }

.testimonial-role {
    font-size: 13px;
    color: var(--gray-400);
}

/* ===== CHARITY BANNER ===== */
.charity-banner {
    background: var(--gradient-brand);
    border-radius: 20px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    color: var(--black);
}

.charity-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.charity-banner h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    margin-bottom: 16px;
    position: relative;
    color: var(--black);
}

.charity-banner p {
    font-size: 17px;
    color: rgba(0, 0, 0, 0.7);
    max-width: 680px;
    line-height: 1.8;
    position: relative;
    margin-bottom: 12px;
}

.charity-banner .charity-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.charity-banner .charity-image {
    width: 200px;
    height: auto;
    border-radius: 16px;
}

.charity-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-top: 20px;
    position: relative;
}

.charity-highlight svg {
    width: 18px; height: 18px;
    color: var(--green);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-info > p {
    font-size: 17px;
    color: var(--gray-500);
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gray-400);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-link:hover { color: var(--lavender); }

.contact-link-icon {
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.contact-link:hover .contact-link-icon {
    border-color: var(--lavender);
    background: var(--lavender-dim);
}

.contact-link-icon svg {
    width: 20px; height: 20px;
    color: var(--blue);
}

.contact-form {
    background: rgba(173, 186, 255, 0.04);
    border: 1px solid rgba(173, 186, 255, 0.08);
    border-radius: 20px;
    padding: 40px 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-glow);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

.cf-turnstile {
    margin: 8px 0;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.9;
}

.hero-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}
.hero-social-icon svg {
    width: 20px;
    height: 20px;
}
.hero-social-icon:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(1, 255, 255, 0.08);
}

/* ===== LOGO STRIP (speaking orgs) ===== */
.org-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 16px 0;
    max-width: 900px;
    margin: 0 auto;
}

.org-logo {
    width: 100%;
    height: 72px;
    object-fit: contain;
    opacity: 0.9;
    filter: grayscale(1) invert(1) brightness(1.5);
    mix-blend-mode: screen;
    transition: all 0.3s;
}

.org-logo:hover { opacity: 1; filter: grayscale(1) invert(1) brightness(2); mix-blend-mode: screen; }

.org-logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.5;
    transition: all 0.3s;
}

.org-logo-text:hover { opacity: 1; color: var(--white); }

/* ===== SPLIT CONTENT ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-image {
    border-radius: 20px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== VIDEO ===== */
.video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray-900);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.video-wrapper:hover { transform: scale(1.01); }

.play-button {
    width: 72px; height: 72px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.play-button svg {
    width: 28px; height: 28px;
    color: var(--black);
    margin-left: 4px;
}

.video-wrapper:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(173, 186, 255, 0.4);
}

/* ===== TOPIC LIST ===== */
.topic-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
    margin-bottom: 28px;
}

.topic-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.6;
}

.topic-list li svg {
    width: 20px; height: 20px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ===== STATS ROW ===== */
.stats-row {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.section-dark .stat-number { color: var(--white); }

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 6px;
}

.section-dark .stat-label { color: rgba(255, 255, 255, 0.5); }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: 60px 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-left a { color: var(--blue-light); }

.footer-logo {
    margin-bottom: 12px;
}

.footer-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

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

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

.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--lavender);
    background: var(--lavender-dim);
}

.footer-social svg {
    width: 17px; height: 17px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social a:hover svg { color: var(--white); }

.about-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}
.about-social-icon svg {
    width: 20px;
    height: 20px;
}
.about-social-icon:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* ===== OUTCOMES / WHAT YOU'LL LEARN ===== */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.outcome-card {
    background: rgba(173, 186, 255, 0.04);
    border: 1px solid rgba(173, 186, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s;
}

.outcome-card:hover {
    transform: translateY(-4px);
    border-color: rgba(173, 186, 255, 0.25);
    background: rgba(173, 186, 255, 0.06);
}

.outcome-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--lavender), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.outcome-icon svg {
    width: 28px; height: 28px;
    color: var(--black);
}

.outcome-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.outcome-card p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
}

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lavender-mid), transparent);
}

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

.process-number {
    width: 88px; height: 88px;
    background: var(--black);
    border: 2px solid var(--lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--lavender);
    transition: all 0.3s;
}

.process-step:hover .process-number {
    background: var(--lavender);
    color: var(--black);
    transform: scale(1.05);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(173, 186, 255, 0.04);
    border: 1px solid rgba(173, 186, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(173, 186, 255, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.2s;
}

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

.faq-question svg {
    width: 20px; height: 20px;
    color: var(--gray-400);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--cyan);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ===== IMPACT NUMBERS STRIP ===== */
.impact-strip {
    padding: 64px 0;
    background: var(--gradient-brand);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.impact-item {}

.impact-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    margin-bottom: 6px;
}

.impact-label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ===== EVENT PHOTOS ===== */
.event-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.event-photo {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.event-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

/* ===== SPEAKER KIT DOWNLOAD ===== */
.speaker-kit {
    display: flex;
    align-items: center;
    gap: 32px;
    background: rgba(173, 186, 255, 0.04);
    border: 1px solid rgba(173, 186, 255, 0.1);
    border-radius: 20px;
    padding: 36px 40px;
    transition: border-color 0.3s;
}

.speaker-kit:hover {
    border-color: rgba(173, 186, 255, 0.25);
}

.speaker-kit-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--lavender), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.speaker-kit-icon svg {
    width: 32px; height: 32px;
    color: var(--black);
}

.speaker-kit-content h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.speaker-kit-content p {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

/* ===== LIGHTHOUSE IMPACT (Founder's Story) ===== */
.impact-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impact-showcase-image {
    border-radius: 20px;
    overflow: hidden;
}

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

.impact-stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.impact-stat-card {
    background: rgba(173, 186, 255, 0.06);
    border: 1px solid rgba(173, 186, 255, 0.12);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: border-color 0.3s;
}

.impact-stat-card:hover {
    border-color: rgba(173, 186, 255, 0.3);
}

.impact-stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
}

.impact-stat-card .stat-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 6px;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 991px) {
    .outcomes-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .event-photos-grid { grid-template-columns: repeat(2, 1fr); }
    .speaker-kit { flex-direction: column; text-align: center; }
    .impact-showcase { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .impact-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .impact-number { font-size: 40px; }
    .event-photos-grid { grid-template-columns: 1fr; }
    .impact-stats-mini { grid-template-columns: 1fr; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    :root { --section-y: 72px; }

    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-text { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { display: none; }

    .page-hero .container { grid-template-columns: 1fr; }
    .page-hero-image { display: none; }

    .split { grid-template-columns: 1fr; gap: 40px; }
    .split.reverse { direction: ltr; }

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

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

    .charity-banner { padding: 36px 24px; }
    .charity-banner .charity-grid { grid-template-columns: 1fr; }

    .org-logos { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .hero-media-logos { justify-content: center; }

    .credibility-items { gap: 24px; }
}

@media (max-width: 600px) {
    .grid-4 { grid-template-columns: 1fr; }

    .hero h1 { font-size: 40px; }

    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .stats-row { flex-direction: column; gap: 24px; align-items: center; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }

    .media-logos { gap: 24px; }
    .video-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-media-logos { gap: 20px; }
    .credibility-items { flex-direction: column; gap: 12px; align-items: flex-start; }

    .footer .container { flex-direction: column; text-align: center; }
    .footer-nav { justify-content: center; flex-wrap: wrap; }
    .footer-social { justify-content: center; }

    .credentials { justify-content: center; }
    .page-hero { padding: 130px 0 60px; }
}
