/*

TemplateMo 618 The Catalyst

https://templatemo.com/tm-618-the-catalyst

Silver & Acid Light-Mode SaaS Landing Page

*/


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
    /* CodeBiomes Futuristic Palette */
    --bg:           oklch(0.14 0.02 260);
    --surface:      oklch(0.18 0.025 260);
    --surface-elevated: oklch(0.22 0.03 260);
    --text:         oklch(0.96 0.005 260);
    --text-muted:   oklch(0.68 0.02 250);
    --text-dim:     oklch(0.5 0.02 250);
    --accent:       oklch(0.88 0.22 155); /* Neon Green #00FFA3 */
    --accent-hover: oklch(0.92 0.25 155);
    --electric:     oklch(0.78 0.18 230); /* Electric Blue #00C2FF */
    --border:       oklch(0.28 0.03 260 / 30%);
    --border-light: oklch(0.28 0.03 260 / 15%);
    --white:        rgba(255, 255, 255, 0.05);
    
    --gradient-brand: linear-gradient(135deg, var(--accent), var(--electric));
    --grid:          oklch(1 0 0 / 5%);
    --shadow-glow: 0 10px 40px -10px oklch(0.88 0.22 155 / 20%);

    /* Spacing */
    --section-pad: clamp(60px, 8vw, 100px);
    --container:   1200px;
    --gap:         24px;
}

html {

    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    background-image: 
        radial-gradient(circle at 10% 20%, oklch(0.88 0.22 155 / 4%), transparent 40%),
        radial-gradient(circle at 90% 80%, oklch(0.78 0.18 230 / 4%), transparent 40%),
        linear-gradient(to right, var(--grid) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    background-position: center;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ambient Orbs */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    animation: float 20s infinite ease-in-out alternate;
}
.orb-1 {
    top: -10%; left: -10%; width: 40vw; height: 40vw;
    background: oklch(0.88 0.22 155 / 8%);
}
.orb-2 {
    bottom: -10%; right: -10%; width: 50vw; height: 50vw;
    background: oklch(0.78 0.18 230 / 8%);
    animation-delay: -10s;
}
@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

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

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Optimized Inline Noise Texture - No 404s */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
    filter: contrast(150%) brightness(150%);
}

h1, h2, h3, h4, .nav-logo {
    font-family: 'Sora', sans-serif;
}

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

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

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

section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}

/* ===== Machined Silver Card System ===== */
.card {
    background: linear-gradient(135deg, oklch(1 0 0 / 3%), oklch(1 0 0 / 1%));
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 24px -1px oklch(0 0 0 / 20%);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px) scale(1.005);
    border-color: oklch(0.88 0.22 155 / 40%);
    background: var(--surface-elevated);
    box-shadow: 0 40px 80px -20px oklch(0 0 0 / 60%), var(--shadow-glow);
}

.bento-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ===== Acid Button System ===== */
.btn-acid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--accent);
    color: #000;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 20px -4px oklch(0.88 0.22 155 / 40%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    position: relative;
    overflow: hidden;
}

.btn-acid::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.btn-acid:hover::after {
    left: 150%;
}

.btn-acid:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px -4px oklch(0.88 0.22 155 / 60%);
    filter: brightness(1.1);
}

.btn-acid:active {
    transform: translateY(0) scale(0.98);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-muted);
}

/* ===== NAVIGATION ===== */
/* Top Banner */
@keyframes bannerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes iconPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255,255,255,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.top-banner {
    background: linear-gradient(135deg, #0e7490, #14b8a6, #0284c7, #14b8a6);
    background-size: 300% 300%;
    animation: bannerGradient 8s ease infinite;
    height: 48px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(14, 116, 144, 0.3);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.top-banner-inner {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--gap);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 12px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0e7490;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: iconPulse 2s infinite;
}

.banner-icon svg {
    width: 14px;
    height: 14px;
}

.banner-highlight {
    background: #ffffff;
    color: #0e7490;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 800;
    margin: 0 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-shadow: none;
}

.top-banner-contact {
    display: flex;
    gap: 24px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    background: rgba(0,0,0,0.15);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.contact-link:hover {
    background: rgba(0,0,0,0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-link img {
    height: 14px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .top-banner-contact {
        display: none !important;
    }
    .top-banner-inner {
        justify-content: center !important;
    }
    .banner-text {
        font-size: 11px !important;
        text-align: center;
    }
    .nav {
        top: 48px !important;
    }
}

.nav {
    position: fixed;
    top: 48px !important;
    left: 0;
    right: 0;
    z-index: 9998 !important;
    background: oklch(0.14 0.02 260 / 60%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: oklch(0.14 0.02 260 / 70%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.nav-logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--gradient-brand);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px -5px var(--accent);
}

.nav-logo-mark svg {
    width: 16px;
    height: 16px;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta .btn-acid {
    padding: 10px 22px;
    font-size: 14px;
}

.nav-cta .btn-ghost {
    padding: 10px 22px;
    font-size: 14px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: background 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.active span::after  { transform: rotate(-45deg); top: 0; }

/* ===== SECTION 1: HERO ===== */
.hero {
    padding-top: 140px;
    padding-bottom: 0;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(32px, 8vw, 80px);
    font-family: 'Sora', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }
    .hero-sub {
        font-size: 16px;
        padding: 0 20px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }
    .hero-actions .btn-acid, .hero-actions .btn-ghost {
        width: 100%;
    }
}

.text-gradient, .accent-word {
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 8px;
}

.hero-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 72px;
}

/* Dashboard Mockup */
.hero-dashboard {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-dashboard {
        margin-top: 40px;
        padding: 0 10px;
    }
    .dashboard-toolbar-tabs {
        display: none;
    }
}

.hero-dashboard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

.dashboard-frame {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 40px 100px -20px oklch(0 0 0 / 70%), var(--shadow-glow);
    overflow: hidden;
    position: relative;
}

.dashboard-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    z-index: 10;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .service-card {
        padding: 24px;
        gap: 16px;
    }
    .service-card-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .dash-stat-card {
        padding: 16px;
    }
    .dash-stat-value {
        font-size: 20px;
    }
}

.roi-badge {
    position: absolute;
    bottom: 60px;
    right: -20px;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    padding: 16px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px -10px oklch(0 0 0 / 50%), var(--shadow-glow);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.roi-badge-icon {
    font-size: 24px;
}

.roi-badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.roi-val {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.roi-lab {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-top: 4px;
}

.dashboard-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.dashboard-dots {
    display: flex;
    gap: 7px;
}

.dashboard-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
}

.dashboard-toolbar-tabs {
    display: flex;
    gap: 2px;
}

.dashboard-toolbar-tabs span {
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 6px;
    cursor: default;
}

.dashboard-toolbar-tabs span.active {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.dashboard-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.dash-stat-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: inset 0 1px 0 var(--white);
}

.dash-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.dash-stat-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.dash-stat-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #22C55E;
}

.dash-stat-change.down { color: #EF4444; }

/* Data Table inside dashboard */
.dashboard-table-area {
    grid-column: 1 / -1;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

.dash-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
}

.dash-table-header span {
    font-size: 14px;
    font-weight: 600;
}

.dash-table-header .dash-filter {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.dash-table {
    width: 100%;
}

.dash-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 100px;
    padding: 12px 20px;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
}

.dash-table-row.head {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0,0,0,0.015);
}

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

.dash-cell {
    font-variant-numeric: tabular-nums;
}

.dash-cell-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-cell-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.dash-status {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.dash-status.active {
    background: #DCFCE7;
    color: #166534;
}

.dash-status.pending {
    background: #FEF3C7;
    color: #92400E;
}

.dash-status.draft {
    background: var(--surface);
    color: var(--text-muted);
}

/* ===== SECTION 2: SPEED METRICS ===== */
.metrics {
    padding: var(--section-pad) 0;
}

.metrics-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 56px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.metric-item {
    text-align: center;
    padding: 48px 24px;
}

.metric-number {
    font-size: clamp(56px, 8vw, 88px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin-bottom: 12px;
    color: var(--accent);
}

.metric-number .metric-unit {
    font-size: 0.45em;
    font-weight: 600;
    color: var(--electric);
    letter-spacing: -0.02em;
}

.metric-number .metric-highlight {
    color: var(--bg);
    background: var(--gradient-brand);
    padding: 0 10px;
    border-radius: 12px;
}

.metric-desc {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 240px;
    margin: 0 auto;
}

.metric-divider {
    width: 1px;
    background: var(--border);
    margin: 24px 0;
    justify-self: center;
}

.engine {
    padding: var(--section-pad) 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-start;
}

.section-tag::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    grid-auto-flow: dense;
    gap: 24px;
}

.bento-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.featured-card {
    grid-column: span 2;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
}

.bento-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    width: 100%;
}

.featured-card .bento-card-header {
    width: auto;
    flex-direction: column;
    margin-bottom: 0;
}

.bento-card-body {
    flex: 1;
}

.bento-card-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: oklch(0.88 0.22 155 / 10%);
    padding: 4px 10px;
    border-radius: 4px;
}

.bento-card-icon {
    width: 48px;
    height: 48px;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
}

.bento-card h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--text);
}

.bento-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.bento-visual {
    margin-top: auto;
    background: oklch(1 0 0 / 3%);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
}

/* Sparkline Animation */
.sparkline-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sparkline {
    width: 100%;
    height: 40px;
    overflow: visible;
}

.sparkline path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawSparkline 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

@keyframes drawSparkline {
    to { stroke-dashoffset: 0; }
}

.sparkline-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
}

/* Node Map Visual */
.node-map {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.node-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
}

.node-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
    opacity: 0.3;
}

/* Status Indicator */
.bento-status {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-dim);
}

.status-dot.active {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

@media (max-width: 1100px) {
    .featured-card {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .featured-card {
        grid-column: span 1;
    }
}

/* ===== SECTION 8: FAQ (PREMIUM ACCORDION) ===== */
.faq {
    padding: var(--section-pad) 0;
    position: relative;
    background: radial-gradient(circle at 0% 100%, oklch(0.88 0.22 155 / 3%), transparent 50%);
}

.faq-accordion-premium {
    max-width: 860px;
    margin: 64px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    display: flex;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.open {
    border-color: oklch(0.88 0.22 155 / 30%);
    background: var(--surface-elevated);
}

.faq-item.open::before {
    opacity: 1;
}

.faq-item:hover {
    border-color: oklch(0.88 0.22 155 / 20%);
    transform: translateX(8px);
}

.faq-num {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    background: oklch(1 0 0 / 2%);
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}

.faq-content {
    flex: 1;
}

.faq-question {
    width: 100%;
    padding: 24px 40px 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    gap: 32px;
    letter-spacing: -0.01em;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-dim);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

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

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

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

.faq-answer-inner {
    padding: 0 40px 36px 32px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-controls {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
}

.faq-ctrl-btn {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-ctrl-btn:hover {
    border-color: var(--accent);
    color: var(--text);
    background: oklch(0.88 0.22 155 / 8%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-item:hover {
        transform: none;
    }
    .faq-num {
        padding: 24px 0 0 24px;
    }
    .faq-question {
        padding: 24px 24px 24px 16px;
        font-size: 17px;
    }
    .faq-answer-inner {
        padding: 0 24px 32px 16px;
    }
}

.bento-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.bento-card-visual {
    margin-top: 28px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    min-height: 120px;
}

/* Mini chart bars in bento card */
.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
}

.mini-bar {
    flex: 1;
    background: var(--border);
    border-radius: 4px 4px 0 0;
    transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mini-bar.highlight { background: var(--accent); }

/* Mini pipeline in bento card */
.mini-pipeline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-pipeline-node {
    flex: 1;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.mini-pipeline-node:nth-child(1) { background: var(--accent); color: var(--text); }
.mini-pipeline-node:nth-child(2) { background: #e8e8e8; }
.mini-pipeline-node:nth-child(3) { background: #e0e0e0; }

.mini-pipeline-arrow {
    font-size: 12px;
    color: var(--text-dim);
    flex-shrink: 0;
}

/* Mini code block in bento card */
.mini-code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-muted);
}

.mini-code .keyword { color: var(--text); font-weight: 600; }
.mini-code .string { color: #16A34A; }
.mini-code .comment { color: var(--text-dim); }

/* ===== SECTION 4: WHY US â€” COMPARISON ===== */
.why-us {
    padding: var(--section-pad) 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Section Cleanup (Legacy Removal) */
.pricing, .why-us, .showcase { display: none; }

/* ===== SECTION 7: FOOTER ===== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.brand-col {
    padding-right: 40px;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 24px 0 32px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-icon.flag {
    font-size: 20px;
    background: none;
    border: none;
}

.contact-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-text strong {
    color: var(--text);
    font-size: 14px;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    font-family: 'Sora', sans-serif;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background: oklch(0.88 0.22 155 / 10%);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    font-weight: 600;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--text);
}

/* ===== SECTION 3: VALUE CONCEPT ===== */
.value-concept {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.value-concept::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, oklch(0.88 0.22 155 / 10%), transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.value-concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.value-concept-content .section-desc {
    margin: 24px 0 40px;
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
}

.value-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.value-stat-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 0;
    border: none;
}

.value-stat-card:hover {
    transform: none;
    background: var(--surface-elevated);
}

.stat-value {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    font-weight: 700;
}

.stack-diagram {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.stack-layer {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
}

.layer-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), transparent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--bg);
    flex-shrink: 0;
}

.layer-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.layer-info p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .value-concept-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}

/* ===== SECTION 5: AI SOLUTIONS ===== */
.ai-solutions {
    padding: var(--section-pad) 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ai-card {
    padding: 40px;
    height: 100%;
}

.ai-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.ai-features {
    list-style: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-features li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-features li::before {
    content: 'â†’';
    color: var(--accent);
    font-weight: 700;
}

/* ===== SECTION 6: OUR PROCESS ===== */
.process {
    padding: var(--section-pad) 0;
    background: oklch(0.12 0.01 260 / 50%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ===== SECTION 6: OUR PROCESS (ROADMAP) ===== */
.process {
    padding: var(--section-pad) 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}

.process-roadmap {
    position: relative;
    margin-top: 80px;
}

@media (max-width: 992px) {
    .process-roadmap {
        margin-top: 40px;
    }
    .roadmap-line {
        display: none;
    }
}

.roadmap-line {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    opacity: 0.3;
    display: none; /* Desktop only */
}

.process-steps-roadmap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-step-roadmap {
    text-align: center;
}

.step-visual {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, oklch(0.88 0.22 155 / 20%), transparent 70%);
    filter: blur(20px);
    border-radius: 50%;
}

.step-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step-n {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
}

.step-outer-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px dashed var(--border);
    border-radius: 50%;
    opacity: 0.4;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 240px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .roadmap-line {
        display: block;
    }
}

@media (max-width: 992px) {
    .process-steps-roadmap {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .roadmap-line {
        display: none;
    }
}

/* ===== SECTION 7: TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-pad) 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

.testimonial-card {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.author-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.author-title {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
}


    height: 14px;
}

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

.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== SECTION 6: CTA BANNER (DASHBOARD STYLE) ===== */
.cta-banner {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-inner {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: clamp(64px, 8vw, 120px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 120px -30px oklch(0 0 0 / 70%), var(--shadow-glow);
}

.cta-banner-inner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    z-index: 2;
}

.cta-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: oklch(0.88 0.22 155 / 10%);
    padding: 10px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    border: 1px solid oklch(0.88 0.22 155 / 10%);
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
}

.status-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}

.status-text {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.cta-banner-inner h2 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    max-width: 850px;
    margin: 0 auto 24px;
    color: var(--text);
}

.cta-banner-inner p {
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-banner-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}

.cta-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border-light);
    max-width: 700px;
    margin: 0 auto;
}

.cta-metric-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-val {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
}

.metric-lab {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    font-weight: 700;
}

.cta-metric-divider {
    width: 1px;
    height: 48px;
    background: var(--border-light);
}

.cta-banner .btn-acid {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-dark-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
                color 0.2s ease,
                border-color 0.2s ease;
}

.btn-dark-ghost:hover {
    transform: translateY(-2px);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 1;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .bento-grid, .comparison-grid, .showcase-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta   { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100dvh - 64px);
        background: var(--bg);
        padding: 80px 24px;
        gap: 24px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        border-top: 1px solid var(--border);
    }

    .nav-links.open a {
        font-size: 20px;
        font-weight: 600;
        color: var(--text);
    }

    .hero {
        padding-top: 120px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
        margin: 0 auto;
    }

    .metric-item {
        padding: 32px 24px;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dash-table-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .dash-table-row .dash-cell:nth-child(4),
    .dash-table-row .dash-cell:nth-child(5) {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-banner-actions {
        flex-direction: column;
    }

    .cta-banner .btn-acid,
    .btn-dark-ghost {
        width: 100%;
        max-width: 300px;
    }
}

/* Trusted By Logos */
.hero-trusted {
    margin-top: 80px;
    text-align: center;
}

.hero-trusted p {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    margin-bottom: 40px;
    opacity: 0.6;
}

.logo-cloud {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 72px;
    flex-wrap: wrap;
    opacity: 0.35;
    filter: grayscale(1);
    transition: all 0.4s ease;
}

.logo-cloud:hover {
    opacity: 0.7;
    filter: grayscale(0.5);
}

.logo-item {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .roi-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 24px auto 0;
        width: fit-content;
    }
    .logo-cloud {
        gap: 32px;
    }
    .logo-item {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #20ba5a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: #FFF;
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Modal System */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; z-index: 10001; padding: 20px; }
.modal-overlay.active { display: flex; animation: modalFadeIn 0.3s ease; }
.modal-content { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 40px; max-width: 500px; width: 100%; position: relative; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), var(--shadow-glow); }
.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; transition: color 0.2s; }
.modal-close:hover { color: var(--text); }
.modal-content h3 { font-size: 24px; margin-bottom: 12px; color: var(--text); }
.modal-content p { color: var(--text-muted); margin-bottom: 32px; font-size: 15px; }
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input { width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; color: var(--text); font-family: inherit; transition: all 0.2s; }
.form-group input:focus { outline: none; border-color: var(--accent); background: rgba(255, 255, 255, 0.1); }
.w-full { width: 100%; }

/* Success Animation */
.success-animation { margin: 20px auto 40px; }
.checkmark { width: 80px; height: 80px; border-radius: 50%; display: block; stroke-width: 2; stroke: var(--accent); stroke-miterlimit: 10; box-shadow: inset 0px 0px 0px var(--accent); animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both; margin: 0 auto; }
.checkmark__circle { stroke-dasharray: 166; stroke-dashoffset: 166; stroke-width: 2; stroke-miterlimit: 10; stroke: var(--accent); fill: none; animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }
.checkmark__check { transform-origin: 50% 50%; stroke-dasharray: 48; stroke-dashoffset: 48; animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards; }
@keyframes stroke { 100% { stroke-dashoffset: 0; } }
@keyframes scale { 0%, 100% { transform: none; } 50% { transform: scale3d(1.1, 1.1, 1); } }
@keyframes fill { 100% { box-shadow: inset 0px 0px 0px 30px transparent; } }
@keyframes modalFadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* Legal Content Layout */
.legal-hero { padding: 140px 0 60px; background: linear-gradient(to bottom, rgba(255,255,255,0.02), transparent); border-bottom: 1px solid var(--border); margin-bottom: 80px; text-align: left; }
.legal-hero1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; }
.legal-meta { font-size: 14px; color: var(--text-dim); font-weight: 500; }
.legal-container { max-width: 800px; margin: 0 auto; padding: 0 var(--gap) 120px; }
.legal-content h2 { font-size: 24px; margin: 48px 0 20px; color: var(--text); border-left: 3px solid var(--accent); padding-left: 20px; }
.legal-content p { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; }
.legal-content ul { margin-bottom: 32px; padding-left: 20px; list-style: none; }
.legal-content ul li { position: relative; padding-left: 24px; margin-bottom: 12px; color: var(--text-muted); }
.legal-content ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

/* New Pages Styles */
.pb-120 { padding-bottom: 120px; }
.services-detailed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; }
.service-detail-card { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 40px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.service-detail-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3), var(--shadow-glow); }
.service-icon-large { width: 80px; height: 80px; background: var(--surface-elevated); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; color: var(--accent); }
.service-features-list { list-style: none; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.service-features-list li { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.service-features-list li::before { content: '\2713'; color: var(--accent); font-weight: bold; }

.developer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; }
.developer-card { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 40px; position: relative; }
.dev-badge { position: absolute; top: 20px; right: 20px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); background: oklch(0.88 0.22 155 / 10%); padding: 4px 12px; border-radius: 20px; }
.stack-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.stack-tags span { font-size: 11px; font-weight: 600; background: var(--surface-elevated); padding: 4px 10px; border-radius: 4px; color: var(--text-dim); }
.dev-points { list-style: none; margin-bottom: 32px; }
.dev-points li { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; padding-left: 20px; position: relative; }
.dev-points li::before { content: '•'; position: absolute; left: 0; color: var(--accent); }

.msme-badge-container { margin: 48px 0; }
.msme-badge { display: flex; align-items: center; gap: 24px; background: linear-gradient(135deg, rgba(22, 101, 52, 0.1), rgba(0,0,0,0.2)); border: 1px solid rgba(22, 101, 52, 0.3); padding: 24px 32px; border-radius: 16px; }
.msme-icon { font-size: 32px; }
.msme-text strong { color: var(--text); }
.about-stats { display: flex; gap: 40px; margin-top: 40px; list-style: none; }
.about-stats li { display: flex; flex-direction: column; gap: 4px; }
.about-stats li strong { font-size: 24px; color: var(--accent); }
.value-item { margin-top: 24px; }
.value-item strong { display: block; margin-bottom: 4px; color: var(--text); }

/* Enhanced Content Sections */
.section-hero-content { max-width: 700px; margin-bottom: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card-premium { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 40px; transition: all 0.3s ease; }
.feature-card-premium:hover { border-color: var(--accent); background: var(--surface-elevated); transform: translateY(-5px); }
.feature-card-premium .icon-box { width: 56px; height: 56px; background: oklch(0.88 0.22 155 / 10%); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent); }
.feature-card-premium h3 { font-size: 20px; margin-bottom: 16px; color: var(--text); }
.feature-card-premium p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.cta-section-simple { padding: 100px 0; background: linear-gradient(to right, rgba(22, 101, 52, 0.05), transparent); border-radius: 32px; margin: 80px 0; text-align: center; }
.cta-section-simple h2 { font-size: 36px; margin-bottom: 20px; }

@media (max-width: 992px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }

.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

.track-record-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.track-item { background: var(--surface-elevated); border: 1px solid var(--border); border-radius: 16px; padding: 24px; text-align: center; transition: all 0.3s ease; }
.track-item:hover { border-color: var(--accent); transform: translateY(-5px); background: linear-gradient(135deg, var(--surface-elevated), rgba(22, 101, 52, 0.1)); }
.track-val { display: block; font-size: 32px; font-weight: 800; color: var(--accent); margin-bottom: 8px; font-family: 'Sora', sans-serif; }
.track-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); }
@media (max-width: 480px) { .track-record-grid { grid-template-columns: 1fr; } }

.msme-premium-banner { background: linear-gradient(135deg, rgba(22, 101, 52, 0.15), rgba(0, 0, 0, 0.4)); border: 2px solid rgba(22, 101, 52, 0.4); border-radius: 24px; padding: 40px; margin-bottom: 64px; position: relative; overflow: hidden; display: flex; align-items: center; gap: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 40px rgba(22, 101, 52, 0.1); }
.msme-premium-banner::before { content: 'GOVT OF INDIA'; position: absolute; top: 15px; right: -40px; background: #ff9933; color: #000; font-size: 10px; font-weight: 900; padding: 5px 50px; transform: rotate(45deg); letter-spacing: 1px; }
.msme-seal { width: 100px; height: 100px; background: var(--bg); border: 2px solid var(--accent); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; flex-shrink: 0; box-shadow: 0 0 30px var(--accent-glow); }
.msme-seal-text { font-size: 10px; font-weight: 800; color: var(--accent); line-height: 1; margin-top: 4px; }
.msme-seal-icon { font-size: 32px; }
.msme-info h2 { font-size: 28px; margin-bottom: 12px; color: #fff; letter-spacing: -0.02em; }
.msme-info p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 20px; max-width: 600px; }
.msme-reg-box { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); padding: 12px 20px; border-radius: 12px; border: 1px solid var(--border); }
.reg-label { font-size: 11px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.reg-value { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 800; color: var(--accent); }
@media (max-width: 768px) { .msme-premium-banner { flex-direction: column; text-align: center; padding: 60px 30px 40px; } .msme-premium-banner::before { right: -30px; } .msme-info { display: flex; flex-direction: column; align-items: center; } }

.contact-grid-main { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; margin-top: 60px; }
.contact-info-sidebar { display: flex; flex-direction: column; gap: 40px; }
.contact-method-card { display: flex; gap: 24px; align-items: flex-start; }
.method-icon { width: 56px; height: 56px; background: var(--surface-elevated); border: 1px solid var(--border); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; transition: all 0.3s ease; }
.contact-method-card:hover .method-icon { border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); transform: scale(1.05); }
.method-detail h3 { font-size: 18px; margin-bottom: 8px; color: var(--text); }
.method-detail p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.method-link { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--accent); text-decoration: none; font-size: 15px; }
.contact-form-container { background: var(--surface); border: 1px solid var(--border); border-radius: 32px; padding: 50px; box-shadow: 0 40px 80px rgba(0,0,0,0.3); }
.contact-form-container h2 { font-size: 28px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group-contact { margin-bottom: 24px; }
.form-group-contact label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dim); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group-contact input, .form-group-contact textarea { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; color: var(--text); transition: all 0.2s; }
.form-group-contact input:focus, .form-group-contact textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.06); }
.map-section { margin-top: 120px; border-radius: 32px; overflow: hidden; border: 1px solid var(--border); height: 450px; }
@media (max-width: 992px) { .contact-grid-main { grid-template-columns: 1fr; gap: 60px; } .contact-form-container { padding: 40px 30px; } }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Pricing Section */
.pricing { padding: var(--section-pad) 0; position: relative; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 32px; padding: 48px; position: relative; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(22, 101, 52, 0.05), transparent); box-shadow: 0 30px 60px rgba(0,0,0,0.4), var(--shadow-glow); transform: scale(1.05); z-index: 2; }
.pricing-card:hover { border-color: var(--accent); transform: translateY(-10px); }
.plan-badge { position: absolute; top: 24px; right: 24px; background: var(--accent); color: var(--bg); font-size: 10px; font-weight: 900; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; }
.plan-name { font-size: 14px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.plan-price { font-size: 48px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.plan-price span { font-size: 16px; color: var(--text-muted); font-weight: 500; }
.plan-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; height: 60px; overflow: hidden; }
.plan-features { list-style: none; margin-bottom: 40px; flex: 1; }
.plan-features li { font-size: 14px; color: var(--text); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.plan-features li svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } .pricing-card.featured { transform: none; } }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }


/* Pricing Section & Page */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 32px; padding: 48px; position: relative; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-12px); border-color: var(--accent); box-shadow: 0 30px 60px rgba(0,0,0,0.4), var(--shadow-glow); }
.pricing-card.featured { border-color: var(--accent); background: linear-gradient(180deg, var(--surface), rgba(22, 101, 52, 0.1)); }
.pricing-badge { position: absolute; top: 24px; right: 24px; background: var(--accent); color: var(--bg); font-size: 10px; font-weight: 800; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-header h3 { font-size: 20px; color: var(--text-muted); margin-bottom: 16px; font-weight: 600; }
.pricing-price { font-size: 48px; font-weight: 800; color: var(--text); font-family: 'Sora', sans-serif; margin-bottom: 8px; }
.pricing-price span { font-size: 16px; color: var(--text-dim); font-weight: 500; }
.pricing-desc { font-size: 14px; color: var(--text-dim); margin-bottom: 32px; min-height: 44px; }
.pricing-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.pricing-features li { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.pricing-features li::before { content: '\2713'; color: var(--accent); font-weight: bold; }
.pricing-features li.disabled { color: var(--text-dim); opacity: 0.5; }
.pricing-features li.disabled::before { content: ''; color: var(--text-dim); }
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

/* Pricing Section Styles */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 32px; padding: 48px 40px; position: relative; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); overflow: hidden; display: flex; flex-direction: column; }
.pricing-card.popular { border-color: var(--accent); background: linear-gradient(180deg, var(--surface), rgba(22, 101, 52, 0.1)); transform: scale(1.05); z-index: 2; }
.pricing-card:hover { transform: translateY(-12px); border-color: var(--accent); box-shadow: 0 30px 60px rgba(0,0,0,0.4), var(--shadow-glow); }
.popular-badge { position: absolute; top: 24px; right: -35px; background: var(--accent); color: #000; font-size: 10px; font-weight: 800; padding: 8px 40px; transform: rotate(45deg); letter-spacing: 1px; }
.pricing-header { margin-bottom: 32px; }
.plan-name { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 16px; display: block; }
.plan-price { font-size: 48px; font-weight: 900; color: var(--text); display: flex; align-items: baseline; gap: 4px; }
.plan-price span { font-size: 16px; color: var(--text-dim); font-weight: 600; }
.pricing-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }
.pricing-features li svg { color: var(--accent); flex-shrink: 0; }
.pricing-features li.disabled { opacity: 0.4; text-decoration: line-through; }
@media (max-width: 992px) { .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; } .pricing-card.popular { transform: none; } }

/* Splash Screen */
#splash-screen { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: #000; display: flex; justify-content: center; align-items: center; z-index: 999999; transition: opacity 0.5s ease-out, visibility 0.5s ease-out; }
#splash-screen.hidden { opacity: 0; visibility: hidden; }
.splash-logo { width: 360px; max-width: 90%; animation: pulseGlow 1.5s ease-in-out infinite alternate; }
@keyframes pulseGlow { 0% { transform: scale(0.9); opacity: 0.8; } 100% { transform: scale(1.1); opacity: 1; } }



/* Content Reveal Transition */
html.splash-active body > *:not(#splash-screen, script, style, .top-banner) { opacity: 0 !important; transform: translateY(30px) scale(0.98) !important; }
html.splash-done body > *:not(#splash-screen, script, style, .top-banner) { opacity: 1; transform: translateY(0) scale(1); transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }


/* About Page Grid */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; margin-top: 40px; align-items: start; }
@media (max-width: 992px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
