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

:root {
    --navy-950: #1C1917;
    --navy-900: #292524;
    --navy-800: #44403C;
    --navy-700: #57534E;
    --navy-600: #78716C;
    --navy-100: #E7E5E4;
    --navy-50: #F5F5F4;
    --accent-600: #EA580C;
    --accent-500: #F97316;
    --accent-400: #FB923C;
    --accent-200: #FED7AA;
    --accent-100: #FFEDD5;
    --accent-50: #FFF7ED;
    --slate-50: #FAFAF9;
    --slate-100: #F5F5F4;
    --slate-200: #E7E5E4;
    --slate-300: #D6D3D1;
    --slate-400: #A8A29E;
    --slate-500: #78716C;
    --slate-600: #57534E;
    --green-100: #D1FAE5;
    --green-600: #059669;
    --red-100: #FEE2E2;
    --red-500: #EF4444;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1E293B;
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.hidden {
    display: none !important;
}

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 640px) {
    .container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2.5rem; }
}

/* ===== Inline Links ===== */
.inline-link {
    color: var(--accent-600);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--accent-200);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
}
.inline-link:hover {
    text-decoration-color: var(--accent-500);
}

.inline-link-light {
    color: var(--accent-400);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(251, 146, 60, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
}
.inline-link-light:hover {
    text-decoration-color: var(--accent-400);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.625rem;
    padding: 0.625rem 1.25rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--white);
    background: var(--accent-500);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
}
.btn-primary:hover {
    background: var(--accent-600);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.btn-outline {
    color: var(--navy-800);
    background: var(--white);
    border: 1.5px solid var(--slate-200);
}
.btn-outline:hover {
    border-color: var(--accent-400);
    background: var(--accent-50);
    color: var(--accent-600);
}

.btn-outline-light {
    color: var(--white);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
    border-color: var(--accent-400);
    background: rgba(255, 255, 255, 0.05);
}

.btn-white {
    color: var(--navy-900);
    background: var(--white);
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.btn-white:hover {
    background: var(--slate-50);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-sm {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
}

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

.btn-full {
    width: 100%;
    padding: 0.875rem 1.5rem;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 1024px) {
    .navbar-inner { height: 4.5rem; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 2rem;
    width: auto;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--accent-500);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.logo-icon-accent {
    background: var(--accent-500);
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.2;
}

.logo-accent {
    color: var(--accent-600);
    font-weight: 500;
    font-size: 0.75rem;
    display: block;
}

.logo-accent-light {
    color: var(--accent-400);
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-600);
}

.nav-cta {
    display: none;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--slate-600);
    cursor: pointer;
}

.mobile-menu-btn:hover {
    color: var(--navy-800);
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    padding: 0.75rem 1.25rem 1.25rem;
    border-top: 1px solid var(--slate-100);
    background: var(--white);
}

.mobile-menu .mobile-link {
    display: block;
    padding: 0.625rem 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.mobile-menu .mobile-link:hover {
    color: var(--accent-600);
    background: var(--accent-50);
}

.mobile-menu .mobile-cta {
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .nav-cta { display: flex; align-items: center; gap: 0.75rem; }
    .mobile-menu-btn { display: none; }
    .mobile-menu { display: none !important; }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero { padding-top: 7.5rem; padding-bottom: 5rem; }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--accent-50) 0%, var(--white) 40%, var(--slate-50) 100%);
}

.hero-grid {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    max-width: 36rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--accent-50);
    border: 1px solid var(--accent-200);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent-500);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

@media (min-width: 640px) {
    .hero-title { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 3.25rem; }
}

.text-accent {
    color: var(--accent-600);
}

.hero-description {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
    color: var(--slate-600);
    line-height: 1.75;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .hero-actions { flex-direction: row; }
}

.trust-indicators {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-stat {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
}

.trust-label {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

/* Hero Visual */
.hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual { display: block; }
}

/* ===== Image Carousels ===== */
.image-carousel {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    background: var(--slate-100);
}

.image-carousel-wide {
    border-radius: 1rem;
}

.carousel-img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease;
    min-height: 200px;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .carousel-img { min-height: 280px; }
    .image-carousel-wide .carousel-img { min-height: 300px; }
}

/* ===== Section Commons ===== */
.section {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .section { padding: 7rem 0; }
}

.bg-white { background: var(--white); }
.bg-slate { background: var(--slate-50); }
.bg-navy { background: #111827; }

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

.section-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.section-label-light {
    color: var(--accent-400);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.03em;
    text-align: center;
    line-height: 1.15;
}

@media (min-width: 640px) {
    .section-title { font-size: 2.25rem; }
}

.section-description {
    margin-top: 1rem;
    font-size: 1.0625rem;
    color: var(--slate-500);
    line-height: 1.75;
}

.text-white { color: var(--white) !important; }
.text-slate-300 { color: var(--slate-300) !important; }

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== Feature Rows ===== */
.feature-row {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .feature-row {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .feature-row-reverse .feature-text {
        order: 2;
    }

    .feature-row-reverse .feature-screenshot {
        order: 1;
    }
}

.feature-icon-wrap {
    width: 3rem;
    height: 3rem;
    background: var(--accent-50);
    color: var(--accent-600);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

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

.feature-list li {
    font-size: 0.875rem;
    color: var(--slate-600);
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent-500);
    border-radius: 50%;
}

.feature-screenshot {
    display: flex;
    align-items: center;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: var(--accent-500);
    padding: 0;
}

.cta-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 3.5rem 0;
}

@media (min-width: 768px) {
    .cta-banner-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding: 4rem 0;
    }
}

.cta-banner-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.cta-banner-actions {
    flex-shrink: 0;
}

/* ===== Comparison Grid ===== */
.comparison-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .comparison-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.comparison-card {
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--slate-200);
}

.comparison-old {
    background: var(--slate-50);
}

.comparison-new {
    background: var(--accent-50);
    border-color: var(--accent-200);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.comparison-old .comparison-header svg {
    color: var(--red-500);
}

.comparison-new .comparison-header svg {
    color: var(--accent-500);
}

.comparison-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.comparison-list li {
    font-size: 0.9375rem;
    color: var(--slate-600);
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.5;
}

.comparison-old .comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.375rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--red-100);
    border: 2px solid var(--red-500);
}

.comparison-new .comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.375rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--accent-100);
    border: 2px solid var(--accent-500);
}

/* ===== Benefits Row ===== */
.benefits-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-row { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--accent-50);
    color: var(--accent-500);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ===== Ecosystem Grid ===== */
.ecosystem-grid {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .ecosystem-grid {
        grid-template-columns: 1fr auto 1fr;
        gap: 2rem;
    }
}

.ecosystem-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: background 0.3s;
}

.ecosystem-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ecosystem-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-400);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.ecosystem-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.ecosystem-for {
    font-size: 0.8125rem;
    color: var(--accent-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.ecosystem-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    text-align: left;
}

.ecosystem-list li {
    font-size: 0.875rem;
    color: var(--slate-300);
    padding-left: 1.5rem;
    position: relative;
}

.ecosystem-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.375rem;
    height: 0.375rem;
    background: var(--accent-400);
    border-radius: 50%;
}

.ecosystem-connector {
    display: none;
}

@media (min-width: 768px) {
    .ecosystem-connector {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .connector-line {
        width: 2px;
        height: 2rem;
        background: rgba(255, 255, 255, 0.15);
    }

    .connector-icon {
        width: 3rem;
        height: 3rem;
        background: rgba(249, 115, 22, 0.2);
        color: var(--accent-400);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===== Feedback Banner ===== */
.feedback-banner {
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.feedback-inner {
    text-align: center;
    padding: 4rem 0;
    max-width: 36rem;
    margin: 0 auto;
}

.feedback-inner h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.feedback-inner p {
    color: var(--slate-500);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.feedback-actions {
    display: flex;
    justify-content: center;
}

/* ===== Early Access ===== */
.early-access-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .early-access-grid { grid-template-columns: repeat(3, 1fr); }
}

.early-access-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--slate-200);
    transition: box-shadow 0.3s, transform 0.3s;
}

.early-access-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.early-access-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
    margin-top: 0.25rem;
}

.early-access-card p {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.early-access-number {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--accent-500);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.early-access-preview {
    margin-bottom: 0.5rem;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 42rem;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--slate-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--slate-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-900);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--slate-400);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-500);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
    padding: 0 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 0 1.25rem;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.75;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.contact-description {
    margin-top: 1rem;
    font-size: 1.0625rem;
    color: var(--slate-500);
    line-height: 1.75;
}

.contact-highlights {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-highlight svg {
    color: var(--accent-500);
    flex-shrink: 0;
}

.contact-highlight span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy-900);
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-50);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-600);
}

.contact-item-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
}

.contact-item-value {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--slate-200);
    padding: 2rem;
}

@media (min-width: 640px) {
    .contact-form-wrapper { padding: 2.5rem; }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy-900);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--slate-200);
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-family: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
    outline: none;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-400);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.form-group textarea {
    resize: none;
}

.form-error {
    font-size: 0.8125rem;
    color: #dc2626;
    text-align: center;
    line-height: 1.5;
    padding: 0.75rem;
    background: #fef2f2;
    border-radius: 0.5rem;
    border: 1px solid #fecaca;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--slate-400);
    text-align: center;
    line-height: 1.5;
}

/* ===== Footer ===== */
.footer {
    background: #0f172a;
    color: var(--slate-400);
}

.footer-cta {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 1024px) {
    .footer-cta-inner {
        flex-direction: row;
        text-align: left;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.footer-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-cta-content p {
    color: var(--slate-400);
}

.footer-main {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 1024px) {
    .footer-main { padding-top: 4rem; padding-bottom: 4rem; }
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand {
    grid-column: span 1;
}

@media (min-width: 640px) {
    .footer-brand { grid-column: span 2; }
}

@media (min-width: 1024px) {
    .footer-brand { grid-column: span 1; }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand-description {
    font-size: 0.875rem;
    color: var(--slate-400);
    line-height: 1.75;
    max-width: 20rem;
}

.footer-links-group h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-group li,
.footer-links-group a {
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links-group a:hover {
    color: var(--accent-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* ===== Feature Illustrations ===== */
.feature-illustration {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    background: var(--slate-50);
    padding: 0;
}

.feature-illustration svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-illustration {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ===== Trial Highlight ===== */
.trial-highlight {
    background: var(--accent-50);
    border: 1px solid var(--accent-200);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.trial-highlight p {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.75;
}

/* ===== Poll Section ===== */
.poll-container {
    max-width: 48rem;
    margin: 0 auto;
}

.poll-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .poll-grid { grid-template-columns: repeat(3, 1fr); }
}

.poll-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: 1rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.poll-option:hover {
    border-color: var(--accent-400);
    background: var(--accent-50);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.poll-option.selected {
    border-color: var(--accent-500);
    background: var(--accent-50);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.poll-option svg {
    color: var(--accent-500);
    flex-shrink: 0;
}

.poll-option span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--navy-800);
    line-height: 1.3;
}

.poll-followup {
    margin-top: 2rem;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 1.5rem;
}

.poll-followup-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 1rem;
}

.poll-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.poll-form textarea,
.poll-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--slate-200);
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-family: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
    outline: none;
    background: var(--white);
    resize: none;
}

.poll-form textarea:focus,
.poll-form input[type="email"]:focus {
    border-color: var(--accent-400);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

/* ===== Social Proof ===== */
.social-proof {
    background: var(--accent-50);
    border-bottom: 1px solid var(--accent-200);
    padding: 0.5rem 0;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .social-proof { margin-top: 4.5rem; }
}

.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-proof-inner svg {
    color: var(--accent-500);
    flex-shrink: 0;
}

.social-proof-inner p {
    font-size: 0.8125rem;
    color: var(--accent-600);
    font-weight: 500;
}

/* ===== Mobile CTA Bar ===== */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 1rem;
    transition: transform 0.3s ease;
}

.mobile-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: var(--accent-500);
    color: var(--white);
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
}

.mobile-cta-link:hover {
    background: var(--accent-600);
}

.mobile-cta-link svg {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .mobile-cta-bar { display: none !important; }
}

/* ===== Success Modal ===== */
.success-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.success-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.success-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2.5rem;
    max-width: 28rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: var(--accent-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-500);
}

.success-modal-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
}

.success-modal-content p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.success-detail {
    font-size: 0.8125rem !important;
    color: var(--slate-400) !important;
    margin-bottom: 1.5rem !important;
}

.success-modal-content .btn {
    margin-top: 0.5rem;
}

/* ===== Footer Email Capture (simplified) ===== */
.footer-email-capture {
    margin-top: 1.25rem;
}

.footer-email-label {
    font-size: 0.8125rem;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
}

.footer-email-value {
    font-size: 0.875rem;
    color: var(--accent-400);
    font-weight: 500;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 767px) {
    .hero { padding-top: 5rem; padding-bottom: 3rem; }

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

    .hero-description { font-size: 0.9375rem; }

    .trust-indicators { gap: 1.25rem; }

    .trust-stat { font-size: 0.875rem; }

    .section { padding: 3.5rem 0; }

    .section-title { font-size: 1.5rem; }

    .section-description { font-size: 0.9375rem; }

    .feature-row { gap: 1.5rem; }

    .feature-title { font-size: 1.25rem; }

    .cta-banner-content h2 { font-size: 1.25rem; }

    .comparison-grid { gap: 1rem; }

    .benefits-row { gap: 1rem; }

    .benefit-card { padding: 1.5rem; }

    .ecosystem-grid { gap: 1.25rem; }

    .ecosystem-card { padding: 1.5rem; }

    .early-access-grid { gap: 1rem; }

    .early-access-card { padding: 1.5rem; }

    .contact-form-wrapper { padding: 1.5rem; }

    .feedback-inner { padding: 3rem 0; }

    .feedback-inner h2 { font-size: 1.25rem; }

    .footer-cta-inner { padding-top: 2rem; padding-bottom: 2rem; }

    .footer-cta-content h3 { font-size: 1.25rem; }

    /* Add bottom padding for sticky CTA */
    .footer-bottom { padding-bottom: 5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }

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

    .poll-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }

    .poll-option { padding: 1rem 0.75rem; gap: 0.5rem; }

    .poll-option svg { width: 20px; height: 20px; }

    .poll-option span { font-size: 0.75rem; }

    .btn-lg { font-size: 0.875rem; padding: 0.75rem 1.25rem; }

    .success-modal-content { padding: 1.75rem; }

    .success-modal-content h2 { font-size: 1.125rem; }
}
