:root {
    --bg-primary: #0F1117;
    --bg-secondary: #161822;
    --bg-card: #1a1d2b;
    --text-primary: #EAECF0;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --accent: #22C55E;
    --accent-glow: rgba(34, 197, 94, 0.25);
    --accent-glow-strong: rgba(34, 197, 94, 0.45);
    --accent-dark: #16A34A;
    --border: #252836;
    --border-light: #2E3140;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(15, 17, 23, 0.6);
    --glass-border: rgba(34, 197, 94, 0.2);
    --glass-blur: blur(14px);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    letter-spacing: -0.01em;
}

/* ─── FLOWING BACKGROUND DESIGN ─── */
.bg-flow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(34, 197, 94, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 20%, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    animation: flowDrift 20s ease-in-out infinite alternate;
    opacity: 0.9;
}

@keyframes flowDrift {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.08) translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: scale(1.02) translateY(10px);
        opacity: 0.85;
    }
}

/* ─── AMBIENT ORBS ─── */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    animation: orbDrift 18s ease-in-out infinite;
}
.bg-orb--primary {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, transparent 70%);
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}
.bg-orb--secondary {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.10) 0%, transparent 70%);
    top: 300px;
    right: -100px;
    animation-delay: -8s;
    animation-duration: 22s;
}
.bg-orb--tertiary {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    animation-delay: -14s;
    animation-duration: 20s;
}

@keyframes orbDrift {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
    25% { transform: translateX(-48%) translateY(-30px) scale(1.06); }
    50% { transform: translateX(-52%) translateY(10px) scale(0.94); }
    75% { transform: translateX(-47%) translateY(-15px) scale(1.03); }
}
.bg-orb--secondary { animation-name: orbDriftSecondary; }
.bg-orb--tertiary { animation-name: orbDriftTertiary; }

@keyframes orbDriftSecondary {
    0%, 100% { transform: translateY(0) scale(1); }
    33% { transform: translateY(-40px) scale(1.08); }
    66% { transform: translateY(25px) scale(0.93); }
}
@keyframes orbDriftTertiary {
    0%, 100% { transform: translateY(0) scale(1); }
    33% { transform: translateY(35px) scale(1.05); }
    66% { transform: translateY(-20px) scale(0.95); }
}

/* ─── GRID OVERLAY ─── */
.grid-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, black 20%, transparent 70%);
}

/* ─── MAIN WRAPPER ─── */
.page-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 0 24px;
}

/* ─── NAVBAR (GLASS EFFECT ON SCROLL) ─── */
.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
}

.navbar--scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    transition: opacity var(--transition-fast);
}
.navbar__logo:hover { opacity: 0.8; }

.navbar__logo-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

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

.navbar__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.925rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    padding: 8px 4px;
    letter-spacing: -0.01em;
}
.navbar__link:hover { color: var(--text-primary); }

/* ─── BUTTONS (GLASS UPDATE + LOAD ANIMATION) ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    padding: 10px 22px;
    transition: all var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    animation: fadeInButton 0.6s ease-out both;
}

.navbar .btn {
    animation-delay: 0.2s;
}

@keyframes fadeInButton {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.btn--primary {
    background: rgba(34, 197, 94, 0.12);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #fff;
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.12);
}
.btn--primary:hover {
    background: rgba(34, 197, 94, 0.22);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.25);
    transform: translateY(-2px);
}
.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.28);
}

.btn--outline {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(234, 236, 240, 0.15);
    color: var(--text-primary);
    box-shadow: none;
}
.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.1);
    transform: translateY(-1px);
    background: rgba(34, 197, 94, 0.06);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius-full);
}

/* ─── HERO SECTION ─── */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 70px 20px 50px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge__dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-glow-strong);
    animation: dotBlink 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2); }
    50% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}
@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.hero__headline {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.hero__headline-highlight {
    display: block;
    background: linear-gradient(135deg, #22C55E 0%, #4ADE80 50%, #22C55E 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 0 28px rgba(34, 197, 94, 0.35));
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__subtext {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.65;
    letter-spacing: -0.01em;
}

/* ─── WAITLIST FORM ─── */
.waitlist-form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 5px 6px 5px 22px;
    transition: all var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.waitlist-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.08), 0 8px 32px rgba(0, 0, 0, 0.5);
}
.waitlist-form__icon {
    color: var(--text-muted);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: color var(--transition-fast);
}
.waitlist-form:focus-within .waitlist-form__icon { color: var(--accent); }

.waitlist-form__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 12px 0;
    min-width: 0;
    letter-spacing: -0.01em;
}
.waitlist-form__input::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.waitlist-form .btn--primary {
    flex-shrink: 0;
    border-radius: var(--radius-full);
    padding: 13px 26px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ─── TRUST / SOCIAL PROOF ─── */
.trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-row__text {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 500;
}
.trust-row__avatars { display: flex; align-items: center; }
.trust-row__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border-light);
    border: 2px solid var(--bg-primary);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}
.trust-row__avatar:first-child { margin-left: 0; }
.trust-row__avatar:hover { transform: translateY(-3px); z-index: 2; }
.trust-row__avatar--accent {
    background: rgba(34, 197, 94, 0.2);
    color: var(--accent);
    font-size: 0.65rem;
    border-color: rgba(34, 197, 94, 0.3);
}

/* ─── FEATURE CARDS (GLASS + LOAD ANIMATION) ─── */
.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 750px;
    margin-top: 70px;
    padding: 0 10px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition-smooth);
    cursor: default;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.25s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }

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

.feature-card:hover {
    border-color: rgba(34, 197, 94, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.1);
    background: rgba(15, 17, 23, 0.75);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all var(--transition-smooth);
}
.feature-card:hover::before {
    width: 120px;
    height: 120px;
    top: -60px;
    right: -60px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
}

.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(34, 197, 94, 0.1);
    margin-bottom: 14px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    color: var(--accent);
}

.feature-card__title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    color: var(--text-primary);
}

.feature-card__desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ─── FAQ SECTION ─── */
.faq-section {
    width: 100%;
    max-width: 700px;
    margin-top: 90px;
    padding: 0 10px;
}

.faq-section__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.faq-section__icon {
    color: var(--accent);
    flex-shrink: 0;
}

.faq-section__title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.faq-item:hover {
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 20px rgba(34, 197, 94, 0.05);
}

.faq-item__question {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color var(--transition-fast);
}

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

.faq-item__question:hover {
    color: var(--accent);
}

.faq-item__chevron {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform var(--transition-smooth);
}

.faq-item[open] .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 20px 18px 48px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ─── CONTACT SECTION ─── */
.contact-section {
    width: 100%;
    max-width: 500px;
    margin-top: 80px;
    padding: 0 10px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-smooth);
}

.contact-card:hover {
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 30px rgba(34, 197, 94, 0.08);
}

.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent);
    margin-bottom: 18px;
}

.contact-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-card__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 22px;
    line-height: 1.5;
}

.contact-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* ─── FOOTER ─── */
.footer {
    width: 100%;
    text-align: center;
    padding: 48px 0 28px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 2;
    margin-top: auto;
}
.footer__brand {
    color: var(--text-secondary);
    font-weight: 600;
}

/* ─── DECORATIVE CODE ACCENTS ─── */
.code-accent {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(34, 197, 94, 0.25);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: 0.04em;
    line-height: 1.8;
    white-space: nowrap;
}
.code-accent--left {
    left: -20px;
    top: 35%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left center;
    text-align: right;
}
.code-accent--right {
    right: -10px;
    top: 45%;
    transform: rotate(90deg) translateX(-50%);
    transform-origin: right center;
    text-align: left;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero {
        padding: 50px 12px 30px;
    }
    .hero__headline {
        font-size: 2.2rem;
    }
    .hero__subtext {
        font-size: 1rem;
        max-width: 360px;
    }
    .waitlist-form {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 8px;
        gap: 8px;
        max-width: 400px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .waitlist-form:focus-within { box-shadow: none; }
    .waitlist-form__input {
        width: 100%;
        background: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-full);
        padding: 14px 18px;
        text-align: center;
    }
    .waitlist-form__input:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.06);
    }
    .waitlist-form .btn--primary {
        width: 100%;
        border-radius: var(--radius-full);
        justify-content: center;
    }
    .waitlist-form__icon { display: none; }
    .features-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 10px;
        margin-top: 50px;
    }
    .feature-card {
        padding: 20px 18px;
    }
    .faq-section {
        margin-top: 60px;
        padding: 0;
    }
    .faq-section__title {
        font-size: 1.3rem;
    }
    .faq-item__question {
        font-size: 0.875rem;
        padding: 16px 18px;
    }
    .faq-item__answer {
        padding: 0 18px 16px 46px;
        font-size: 0.8rem;
    }
    .contact-section {
        margin-top: 60px;
        padding: 0;
    }
    .contact-card {
        padding: 28px 20px;
    }
    .contact-card__title {
        font-size: 1.15rem;
    }
    .code-accent { display: none; }
    .navbar {
        padding: 14px 0;
    }
    .navbar__logo {
        font-size: 1.15rem;
    }
    .navbar__logo-icon {
        width: 28px;
        height: 28px;
    }
    .btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
    .btn--lg {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    .trust-row {
        gap: 14px;
        margin-top: 28px;
    }
    .bg-orb--primary {
        width: 350px;
        height: 350px;
        top: -100px;
    }
    .bg-orb--secondary,
    .bg-orb--tertiary {
        display: none;
    }
}

@media (max-width: 400px) {
    .hero__headline {
        font-size: 1.8rem;
    }
    .hero__subtext {
        font-size: 0.9rem;
    }
    .navbar__link {
        display: none;
    }
    .btn--outline {
        padding: 7px 14px;
        font-size: 0.78rem;
    }
    .btn--primary {
        padding: 7px 14px;
        font-size: 0.78rem;
    }
    .features-row {
        margin-top: 40px;
    }
    .faq-section {
        margin-top: 48px;
    }
    .faq-section__title {
        font-size: 1.15rem;
    }
    .faq-item__question {
        font-size: 0.82rem;
    }
    .faq-item__answer {
        padding-left: 40px;
        font-size: 0.75rem;
    }
    .contact-section {
        margin-top: 48px;
    }
    .contact-card {
        padding: 24px 16px;
    }
    .contact-card__title {
        font-size: 1.05rem;
    }
    .contact-card__desc {
        font-size: 0.8rem;
    }
}
