/* ═══════════════════════════════════════════════════════
   LegalFlow Marketing — Styles v4
   Color System: Black (#1a1a1a) + Navy (#1e293b) + White
   Typography: Inter
   ═══════════════════════════════════════════════════════ */

/* ─── Reset & Base ─── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 32px;
    top: 24px;
    width: auto;
    height: auto;
    padding: 0.5rem 0.9rem;
    border-radius: 980px;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    z-index: 200;
}

/* ─── Navigation ─── */
nav {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.04);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    opacity: 0.6;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.7;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.nav-buttons {
    display: flex;
    gap: 0.625rem;
    align-items: center;
}

/* ─── Mobile Menu (Hamburger) ─── */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.menu-open .mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

body.menu-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

body.menu-open .mobile-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 60px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 99;
    padding: 2rem 1.5rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.menu-open .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
}

.mobile-menu a:not(.btn) {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
    transition: opacity 0.2s;
}

.mobile-menu a:not(.btn):hover {
    opacity: 0.6;
}

.mobile-menu .mobile-menu-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu .mobile-menu-cta .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
    text-align: center;
    width: 100%;
    justify-content: center;
}

.mobile-menu .mobile-menu-cta .btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.mobile-menu .mobile-menu-cta .btn-secondary {
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
}

/* ─── Buttons ─── */
.btn {
    padding: 0.625rem 1.375rem;
    border-radius: 980px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
    background: #2d2d2d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
}

.btn-lg {
    padding: 0.875rem 2.25rem;
    font-size: 1.0625rem;
}

.btn-navy {
    background: #1e293b;
    color: white;
    box-shadow: 0 1px 2px rgba(30, 41, 59, 0.2);
}

.btn-navy:hover {
    background: #334155;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.25);
    transform: translateY(-1px);
}

.text-link {
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: none;
}

.text-link:hover {
    opacity: 0.7;
}

/* ─── Hero ─── */
.hero {
    background: #ffffff;
    padding: 8rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.45;
    z-index: 0;
}

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

.hero-compact {
    padding: 6rem 0 4rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.045em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-compact h1 {
    font-size: 3.25rem;
}

.hero p {
    font-size: 1.3rem;
    color: #6e6e73;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-compact p {
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-product-shot {
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.hero-product-shot img {
    width: 100%;
    display: block;
}

/* Hero Screenshot Grid — 2x2 */
.hero-screenshots {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.screenshot-card {
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}

.screenshot-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.screenshot-card img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top left;
}

.screenshot-label {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6e6e73;
    letter-spacing: -0.01em;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-top: 0.5px solid rgba(0, 0, 0, 0.04);
}

.screenshot-placeholder {
    background: #f0f4f8;
}

.screenshot-placeholder-inner {
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9375rem;
    font-weight: 500;
}

.screenshot-placeholder-inner span:first-child {
    font-size: 2rem;
    opacity: 0.6;
}

/* ─── Eyebrow ─── */
.eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6e6e73;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* ─── Sections (shared) ─── */
.section {
    padding: 7rem 0;
    background: #ffffff;
}

.section-muted {
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.2rem;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

/* ─── Pain Section (Dark) ─── */
.section-dark {
    background: #0a0e17;
    padding: 7rem 0;
}

.section-dark .section-header h2 {
    color: #ffffff;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.55);
}

.section-dark .eyebrow {
    color: rgba(255, 255, 255, 0.4);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.pain-card {
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.pain-card .pain-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.pain-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.pain-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.pain-transition {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.02em;
}

/* ─── Feature Showcase (Alternating Layout) ─── */
.feature-showcase {
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.feature-showcase + .feature-showcase {
    padding-top: 0;
}

.feature-showcase-muted {
    background: #f8fafc;
}

.feature-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-showcase-text .eyebrow {
    color: #1e293b;
    font-weight: 600;
}

.feature-showcase-text h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.feature-showcase-text p {
    font-size: 1.125rem;
    color: #6e6e73;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.feature-chips span {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    border-radius: 980px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1e293b;
    background: rgba(30, 41, 59, 0.06);
    border: 0.5px solid rgba(30, 41, 59, 0.1);
    letter-spacing: -0.01em;
}

/* Feature Demo Cards (mock UI) */
.feature-demo {
    border-radius: 16px;
    background: #f8fafc;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.feature-demo-header {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-demo-header .demo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.feature-demo-header .demo-title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6e6e73;
}

.feature-demo-body {
    padding: 1.5rem;
}

.demo-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.04);
}

.demo-row:last-child {
    border-bottom: none;
}

.demo-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6e6e73;
    letter-spacing: -0.01em;
}

.demo-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    text-align: right;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 600;
}

.demo-badge-green {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.demo-badge-amber {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.demo-badge-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.demo-provision {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: rgba(30, 41, 59, 0.04);
    margin-bottom: 0.625rem;
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.demo-provision:last-child {
    margin-bottom: 0;
}

.demo-check {
    color: #16a34a;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.demo-provision-text {
    font-size: 0.8125rem;
    color: #334155;
    line-height: 1.5;
}

.demo-provision-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* ─── Market Insight Stats ─── */
.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.insight-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    background: #ffffff;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
}

.insight-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.insight-label {
    font-size: 0.9375rem;
    color: #6e6e73;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

/* ─── AI Showcase Cards (preserved from v3) ─── */
.ai-showcase {
    padding: 7rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.ai-showcase::before {
    content: "";
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 35%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.ai-showcase .section-header {
    position: relative;
    z-index: 1;
}

.ai-eyebrow {
    color: #6e6e73 !important;
}

.ai-headline {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a !important;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.ai-subhead {
    font-size: 1.2rem;
    color: #6e6e73 !important;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.ai-cards-3d {
    display: flex;
    gap: 1.5rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.card-3d {
    flex: 1;
    max-width: 380px;
    position: relative;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.card-3d-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.card-3d-featured {
    border-color: rgba(0, 0, 0, 0.08);
}

.card-3d-icon {
    margin-bottom: 1.5rem;
}

.card-3d-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin-bottom: 0.375rem;
}

.card-3d-tagline {
    font-size: 0.9375rem;
    color: #6e6e73;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.card-3d-desc {
    color: #6e6e73;
    line-height: 1.65;
    font-size: 0.9375rem;
    flex: 1;
}

.card-3d-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 0.5px solid rgba(0, 0, 0, 0.06);
}

.card-3d-chips span {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6e6e73;
    background: rgba(0, 0, 0, 0.03);
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    letter-spacing: -0.01em;
}

/* ─── Stats Row ─── */
.ai-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 0.5px solid rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

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

.ai-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.ai-stat-label {
    display: block;
    font-size: 0.875rem;
    color: #6e6e73;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.ai-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(0, 0, 0, 0.06);
}

/* ─── Features Grid ─── */
.features {
    padding: 7rem 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    padding: 2.25rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.02),
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: #6e6e73;
    line-height: 1.6;
    font-size: 0.9375rem;
    font-weight: 400;
}

.feature-card-ai {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.08);
}

.feature-card-ai:hover {
    border-color: rgba(0, 0, 0, 0.12);
}

/* Feature Groups (All Features) */
.feature-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.feature-group {
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 0.5px solid rgba(0, 0, 0, 0.06);
}

.feature-group h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-group ul {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.feature-group li {
    color: #6e6e73;
    font-size: 0.9375rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.2rem;
}

.feature-group li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: #1a1a1a;
    opacity: 0.5;
}

.feature-group-highlight {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.08);
}

/* ─── Benefits ─── */
.benefits {
    padding: 6rem 0;
    background: #ffffff;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
}

.benefit-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.benefit-label {
    font-size: 0.9375rem;
    color: #6e6e73;
    font-weight: 400;
    margin-top: 0.5rem;
    letter-spacing: -0.01em;
}

/* ─── India Section ─── */
.india-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.india-list {
    list-style: none;
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.india-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: #6e6e73;
    line-height: 1.5;
}

.india-list li span {
    flex-shrink: 0;
    font-size: 1.25rem;
}

/* ─── Security ─── */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.security-card {
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.security-card .security-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.security-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.375rem;
}

.security-card p {
    font-size: 0.875rem;
    color: #6e6e73;
    line-height: 1.5;
}

/* ─── Early Access ─── */
.early-access {
    padding: 7rem 0;
    background: #0a0e17;
    text-align: center;
}

.early-access h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.early-access .eyebrow {
    color: rgba(255, 255, 255, 0.4);
}

.early-access p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}

.early-access .btn-primary {
    background: #ffffff;
    color: #0a0e17;
}

.early-access .btn-primary:hover {
    background: #f0f0f0;
}

.early-access-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.early-access-features span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.early-access-features span::before {
    content: "✓";
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* ─── Roadmap ─── */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.roadmap-card {
    padding: 2rem;
    border-radius: 16px;
    background: #ffffff;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.roadmap-card .roadmap-status {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 980px;
}

.roadmap-status-live {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.roadmap-status-soon {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.roadmap-status-planned {
    background: rgba(0, 0, 0, 0.04);
    color: #6e6e73;
}

.roadmap-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.375rem;
}

.roadmap-card p {
    font-size: 0.875rem;
    color: #6e6e73;
    line-height: 1.5;
}

/* ─── Steps ─── */
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    counter-reset: step;
}

.steps li {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    position: relative;
    counter-increment: step;
}

.steps li::before {
    content: "0" counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1e293b;
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

.steps h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.steps p {
    color: #6e6e73;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* ─── Checklist ─── */
.checklist {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.checklist li {
    position: relative;
    padding-left: 1.75rem;
    color: #6e6e73;
    font-size: 1rem;
}

.checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #1e293b;
    font-weight: 600;
}

/* ─── Split Grid & Info Card ─── */
.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.info-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 0.5px solid rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.info-card p {
    color: #6e6e73;
    line-height: 1.6;
    font-size: 1rem;
}

/* ─── FAQ ─── */
.faq-list {
    display: grid;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list details {
    padding: 1.375rem 1.5rem;
    border-radius: 14px;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    transition: border-color 0.2s;
}

.faq-list details[open] {
    border-color: rgba(0, 0, 0, 0.1);
}

.faq-list summary {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.faq-list summary::marker {
    color: #6e6e73;
}

.faq-list p {
    margin-top: 0.75rem;
    color: #6e6e73;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ─── CTA ─── */
.cta {
    padding: 7rem 0;
    background: #f8fafc;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #6e6e73;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.btn-cta {
    background: #1a1a1a;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ─── Shiny AI Text — Liquid Metal (preserved) ─── */
.shiny-ai {
    display: inline-block;
    background: linear-gradient(
        120deg,
        #888 0%,
        #aaa 20%,
        #888 35%,
        #fff 50%,
        #888 65%,
        #aaa 80%,
        #888 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shiny-sweep 3s ease-in-out infinite;
}

@keyframes shiny-sweep {
    0% { background-position: 100% center; }
    100% { background-position: -100% center; }
}

/* Nav AI Glow — Subtle Silver (preserved) */
.nav-ai-glow {
    color: #1a1a1a !important;
    opacity: 1 !important;
    font-weight: 600 !important;
    background: linear-gradient(120deg, #555 0%, #555 35%, #fff 50%, #555 65%, #555 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shiny-sweep 3s ease-in-out infinite;
}

/* ─── Footer ─── */
footer {
    background: #0a0e17;
    color: rgba(255, 255, 255, 0.5);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9375rem;
}

.footer-section a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 0.5px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ─── Policy Pages ─── */
.policy-meta {
    font-size: 0.95rem;
    color: #6e6e73;
    max-width: 720px;
    margin: -1.5rem auto 2.5rem;
    letter-spacing: -0.01em;
}

.policy-content {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

.policy-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.policy-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    color: #1a1a1a;
}

.policy-content p {
    color: #6e6e73;
    font-size: 1rem;
    line-height: 1.7;
}

.policy-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    display: grid;
    gap: 0.5rem;
    color: #6e6e73;
}

.policy-content li {
    line-height: 1.6;
}

.policy-card {
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 0.5px solid rgba(0, 0, 0, 0.06);
}

.policy-card p {
    color: #6e6e73;
    font-size: 0.98rem;
    line-height: 1.6;
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* On tablet: hide Client Portal + Sign In, keep Get Started */
    .nav-buttons .btn-secondary {
        display: none;
    }

    .feature-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-showcase-grid[style*="direction:rtl"] {
        direction: ltr !important;
    }

    .feature-showcase-grid[style*="direction:rtl"] .feature-showcase-text {
        direction: ltr !important;
    }

    .feature-showcase-grid[style*="direction:rtl"] .feature-demo {
        direction: ltr !important;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-compact h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-product-shot {
        border-radius: 10px;
        margin-top: 2.5rem;
    }

    .hero-screenshots {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-top: 2.5rem;
    }

    .screenshot-card {
        border-radius: 10px;
    }

    .screenshot-label {
        font-size: 0.75rem;
        padding: 0.5rem 0.625rem;
    }

    .screenshot-placeholder-inner {
        font-size: 0.8125rem;
    }

    .screenshot-placeholder-inner span:first-child {
        font-size: 1.5rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .section-dark {
        padding: 4.5rem 0;
    }

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

    .feature-showcase {
        padding: 4rem 0;
    }

    .feature-showcase-text h2 {
        font-size: 2rem;
    }

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

    .ai-cards-3d {
        flex-direction: column;
        align-items: center;
    }

    .card-3d {
        max-width: 100%;
    }

    .ai-headline {
        font-size: 2.25rem;
    }

    .ai-stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .ai-stat-divider {
        width: 48px;
        height: 1px;
    }

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

    .insight-number {
        font-size: 2.5rem;
    }

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

    .early-access {
        padding: 4.5rem 0;
    }

    .early-access h2 {
        font-size: 2.25rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta h2 {
        font-size: 2.25rem;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-screenshots {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .early-access-features {
        flex-direction: column;
        align-items: center;
    }
}
