/* ===========================
   DESIGN SYSTEM
   =========================== */
:root {
    /* Colors */
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-900: #1e3a5f;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --green-500: #10b981;
    --purple-500: #8b5cf6;
    --amber-500: #f59e0b;
    --coral-400: #f87171;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1d4ed8, #0d9488);
    --gradient-hero: linear-gradient(160deg, #0f172a 0%, #1e3a5f 40%, #0d3b66 100%);
    --gradient-dark: linear-gradient(160deg, #0f172a, #1a1a2e);
    --gradient-cta: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 50%, #0d9488 100%);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 6rem 0;
    --container-max: 1200px;

    /* Misc */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: var(--blue-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--blue-700);
}

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

ul {
    list-style: none;
}

/* ===========================
   CONTAINER
   =========================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--slate-900);
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-be {
    color: var(--blue-600);
}

.brand-ai {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    color: var(--slate-600);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--slate-900);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
    color: var(--white) !important;
}

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

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.35);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.hero-inner-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-bg-effect {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 50%, rgba(29, 78, 216, 0.15), transparent),
        radial-gradient(ellipse 600px 400px at 70% 30%, rgba(13, 148, 136, 0.12), transparent),
        radial-gradient(ellipse 400px 300px at 80% 80%, rgba(124, 58, 237, 0.08), transparent);
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.375rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    width: fit-content;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-title .brand-be,
.hero-title .brand-ai {
    -webkit-text-fill-color: unset;
    background: none;
}

.hero-title .brand-be {
    color: #60a5fa;
}

.hero-title .brand-ai {
    background: linear-gradient(135deg, #60a5fa, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
    max-width: 500px;
}

/* Hero visual - ecosystem image */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ecosystem-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.2));
}

.hero-orbit {
    position: relative;
    width: 100%;
    height: 100%;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 180px;
    height: 180px;
}

.ring-2 {
    width: 300px;
    height: 300px;
    border-color: rgba(255, 255, 255, 0.04);
}

.ring-3 {
    width: 420px;
    height: 420px;
    border-color: rgba(255, 255, 255, 0.03);
}

.orbit-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.orbit-dot {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: float-orbit 6s ease-in-out infinite;
}

.orbit-dot img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
}

.dot-1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.dot-2 {
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.dot-3 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

.dot-4 {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    animation-delay: 4.5s;
}

@keyframes float-orbit {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(calc(-50% - 8px)) translateX(4px);
    }
}

.dot-1 {
    animation-name: float-orbit-v;
}

@keyframes float-orbit-v {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.dot-3 {
    animation-name: float-orbit-v;
}

.cmind-placeholder,
.cmind-placeholder-card {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: 0.05em;
}

/* ===========================
   SECTIONS
   =========================== */
.section {
    padding: var(--section-pad);
    position: relative;
}

.section-alt {
    background: var(--slate-50);
}

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

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

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-header-light .section-title,
.section-header-light .section-desc {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    padding: 0.25rem 0.875rem;
    background: rgba(59, 130, 246, 0.08);
    color: var(--blue-600);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.tag-light {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.section-desc {
    color: var(--slate-500);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.section-footer-note {
    text-align: center;
    color: var(--slate-400);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2.5rem;
}

/* ===========================
   FEATURES GRID (About)
   =========================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.feature-card p {
    color: var(--slate-500);
    font-size: 0.925rem;
    line-height: 1.6;
}

/* ===========================
   WHY GRID
   =========================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    transition: all var(--transition-base);
}

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

.why-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(13, 148, 136, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.why-card p {
    color: var(--slate-500);
    font-size: 0.925rem;
    line-height: 1.6;
}

.why-tagline {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.0625rem;
    color: var(--slate-600);
    font-weight: 500;
    font-style: italic;
}

/* ===========================
   STEPS (How it Works)
   =========================== */
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

.step-ask {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.step-understand {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step-act {
    background: linear-gradient(135deg, #10b981, #059669);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--slate-100);
    color: var(--slate-500);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--slate-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 5.5rem;
    color: var(--slate-300);
    flex-shrink: 0;
}

.behind-scenes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: var(--slate-500);
}

.behind-scenes svg {
    flex-shrink: 0;
    color: var(--teal-500);
}

/* ===========================
   TOOLS GRID
   =========================== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.tool-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.tool-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.tool-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cmind-placeholder-card {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.tool-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
}

.tool-category {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--teal-400);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tool-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--teal-400) !important;
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap var(--transition-fast);
}

.tool-link:hover {
    gap: 0.625rem;
    color: var(--teal-400) !important;
}

/* ===========================
   SAFETY GRID
   =========================== */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.safety-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    transition: all var(--transition-base);
}

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

.safety-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--slate-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.safety-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.safety-card p {
    color: var(--slate-500);
    font-size: 0.925rem;
    line-height: 1.6;
}

/* ===========================
   AUDIENCE GRID
   =========================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.audience-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    transition: all var(--transition-base);
}

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

.audience-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(13, 148, 136, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--blue-600);
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.audience-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.audience-card li {
    font-size: 0.925rem;
    color: var(--slate-500);
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.audience-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-500);
}

/* ===========================
   TRAINING
   =========================== */
.training-grid {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.training-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.training-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.training-check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(13, 148, 136, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-500);
}

.training-item h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
    color: var(--slate-900);
}

.training-item p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.6;
}

.training-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--slate-500);
    font-style: italic;
}

.training-note svg {
    flex-shrink: 0;
    color: var(--blue-500);
}

/* ===========================
   CTA / WAITLIST
   =========================== */
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta-text .section-title {
    color: var(--white);
    text-align: left;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.cta-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.form-group select option {
    color: var(--slate-800);
    background: var(--white);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.form-note a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.form-note a:hover {
    color: var(--white) !important;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--blue-500);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--slate-800);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--slate-400);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--blue-500);
}

.faq-item[open] {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 1px var(--blue-500);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--slate-500);
    font-size: 0.925rem;
    line-height: 1.7;
}

.faq-item p a {
    color: var(--blue-600);
    font-weight: 500;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--slate-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 320px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white) !important;
}

.footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
    max-width: 600px;
}

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

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

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero-inner-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-visual {
        max-width: 340px;
        order: -1;
    }

    .hero-container {
        max-width: 680px;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-disclaimer {
        margin: 1rem auto 0;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-text .section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 4rem 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

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

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-bottom {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-title-sub {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .features-grid,
    .why-grid,
    .safety-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
}