:root {
    /* Base Colors */
    --primary: #0f5ad4;
    --primary-rgb: 15, 90, 212;
    --secondary: #3db2ff;
    --accent: #10b981;
    
    /* Light Theme (Default) */
    --bg: #f8fafc;
    --bg-card: #ffffff;
    --bg-panel: #f1f5f9;
    --text: #0f172a;
    --text-muted: #64748b;
    --text-inv: #ffffff;
    --border: rgba(15, 90, 212, 0.08);
    --border-hover: rgba(15, 90, 212, 0.15);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.4);
    --nav-bg: rgba(255, 255, 255, 0.8);
    --wave: var(--primary);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #020617;
        --bg-card: #0f172a;
        --bg-panel: #1e293b;
        --text: #f8fafc;
        --text-muted: #94a3b8;
        --text-inv: #020617;
        --border: rgba(255, 255, 255, 0.06);
        --border-hover: rgba(255, 255, 255, 0.12);
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
        --glass-bg: rgba(2, 6, 23, 0.9);
        --glass-border: rgba(255, 255, 255, 0.05);
        --nav-bg: rgba(2, 6, 23, 0.95);
    }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: "Space Grotesk", sans-serif;
    color: var(--text);
    background-color: var(--bg);
    background-image: 
        radial-gradient(at 0% 0%, rgba(var(--primary-rgb), 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(var(--primary-rgb), 0.03) 0px, transparent 50%);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ── Glows ── */
.bg-glow{position:fixed;width:28rem;height:28rem;border-radius:50%;filter:blur(90px);pointer-events:none;z-index:-1;}
.bg-glow-one{top:-9rem;left:-9rem;background:rgba(15,90,212,.35);}
.bg-glow-two{right:-9rem;bottom:-9rem;background:rgba(61,178,255,.28);}

/* ── Width constraint ── */
.container{width:min(1100px,92%);margin:0 auto;position:relative;z-index:1;}

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
    padding: 1.25rem 0;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0); /* Force GPU stacking context */
    -webkit-transform: translateZ(0);
}
.topbar.scrolled {
    padding: 0.75rem 0;
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}
.topbar-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.brand {
    display: flex; align-items: center; gap: 0.85rem;
    text-decoration: none; color: var(--text);
    font-family: "Outfit", sans-serif; font-weight: 800; font-size: 1.25rem;
    letter-spacing: -0.02em;
}
.brand-mark {
    width: 2.6rem; height: 2.6rem;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    border-radius: 12px; display: grid; place-items: center;
    color: white; font-size: 0.9rem;
    box-shadow: 0 8px 20px -4px rgba(var(--primary-rgb), 0.4);
}
.topbar.scrolled .brand-mark { width: 2.2rem; height: 2.2rem; font-size: 0.8rem; }
.desktop-menu { display: flex; align-items: center; gap: 0.4rem; }
.mobile-menu { display: none; }
.menu a {
    text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: 0.9rem;
    padding: 0.5rem 1rem; border-radius: 10px; border: 1px solid transparent;
    transition: all 200ms ease;
}
.menu a:hover, .menu a.active { color: var(--primary); background: rgba(var(--primary-rgb), 0.05); }
.menu .nav-cta {
    color: #ffffff; background: var(--primary);
    border-color: transparent; font-weight: 700; margin-left: 0.5rem;
}
.menu .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -4px rgba(var(--primary-rgb), 0.4); color: #fff; }
.menu-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text); padding: 0.5rem 0.8rem; border-radius: 10px; cursor: pointer; font-size: 1.2rem; }


/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero-wrap {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: #020617 url('../img/hero-bg.png') no-repeat center center;
    background-size: cover;
    position: relative; overflow: hidden;
    color: white;
}
.hero-wrap::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.8));
    z-index: 1;
}
.hero-body {
    position: relative; z-index: 2;
    text-align: center; max-width: 900px; padding: 0 2rem;
}
.hero-orb {
    width: 5rem; height: 5rem; margin: 0 auto 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px; display: grid; place-items: center;
    font-family: "Outfit", sans-serif; font-weight: 900; font-size: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
    position: relative; z-index: 1; 
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }



.hero-eyebrow {
    display: inline-block; padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem;
}
.hero-wrap h1 {
    font-size: clamp(2.4rem, 10vw, 5.5rem);
    font-weight: 800; font-family: "Outfit", sans-serif;
    line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-tagline { font-size: 1.5rem; font-weight: 500; color: #cbd5e1; margin-bottom: 2rem; }
.hero-intro { font-size: 1.1rem; color: #94a3b8; max-width: 60ch; margin: 0 auto 3rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1.25rem; justify-content: center; }

.cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    text-decoration: none; font-weight: 700; padding: 0.9rem 2rem; border-radius: 12px;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px -2px rgba(var(--primary-rgb), 0.3); }
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 25px -5px rgba(var(--primary-rgb), 0.4); }
.cta-outline { border: 1px solid var(--border); color: var(--text); background: var(--bg-card); }
.cta-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(var(--primary-rgb), 0.04); }


/* ── Page wrapper (non-home) ── */
.page{width:min(1100px,92%);margin:0 auto;padding:8.5rem 0 3rem;display:grid;gap:1.5rem;position:relative;z-index:1;}
.page-header h1{font-family:"Outfit",sans-serif;font-size:clamp(1.8rem,5vw,2.8rem);font-weight:800;margin-top:.5rem;}
.page-header .eyebrow{font-size:.75rem;text-transform:uppercase;letter-spacing:.18em;color:var(--wave);}

/* ── Sections (home) ── */
.site-section { padding: 4.5rem 0; width: min(1100px, 92%); margin: 0 auto; }
.section-pill {
    display: inline-block; padding: 0.3rem 1rem; border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.08); border: 1px solid rgba(var(--primary-rgb), 0.15);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary);
    margin-bottom: 1.25rem;
}
.section-title { font-family: "Outfit", sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 1rem; color: var(--text); }
.section-sub { color: var(--text-muted); line-height: 1.75; max-width: 65ch; margin-bottom: 3.5rem; font-size: 1.1rem; }

/* ── Stats band ── */
.stats-band {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--bg-card);
    border: 1px solid var(--border); border-radius: 24px;
    box-shadow: var(--shadow); overflow: hidden;
}
.stat-item { padding: 2.5rem 1.5rem; text-align: center; position: relative; }
.stat-item+.stat-item::before { content: ''; position: absolute; left: 0; top: 25%; bottom: 25%; width: 1px; background: var(--border); }
.stat-num {
    font-family: "Outfit", sans-serif; font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1;
    color: var(--primary); margin-bottom: 0.5rem;
}
.stat-lbl { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Services / Bento ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px;
    padding: 2.5rem 2rem; position: relative; overflow: hidden;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}
.service-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-icon {
    width: 3.5rem; height: 3.5rem; border-radius: 16px;
    background: rgba(var(--primary-rgb), 0.08); border: 1px solid rgba(var(--primary-rgb), 0.15);
    display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 1.5rem;
}
.svc-title { font-family: "Outfit", sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.svc-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }


/* ── Panels ── */
.panel{
    background:var(--bg-panel);border:1px solid var(--border);border-radius:22px;
    padding:1.75rem;backdrop-filter:blur(4px);
}
.panel.alt{background:linear-gradient(125deg,rgba(9,35,65,.9),rgba(3,16,31,.95));}
.panel h2{font-family:"Outfit",sans-serif;margin-bottom:1rem;}
.copy{color:var(--muted);line-height:1.7;}
.reasons{padding-left:1.1rem;color:var(--muted);line-height:2;}
.reasons li{transition:color 150ms;}.reasons li:hover{color:var(--sand);}

/* ── Product grid ── */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
    border: 1px solid var(--border); border-radius: 24px;
    padding: 2.2rem; background: var(--bg-card);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-badge {
    width: 3.5rem; height: 3.5rem; border-radius: 16px;
    background: rgba(var(--primary-rgb), 0.08); border: 1px solid rgba(var(--primary-rgb), 0.15);
    display: grid; place-items: center;
    font-family: "Outfit", sans-serif; font-size: 1.4rem; font-weight: 800;
    color: var(--primary); margin-bottom: 1.5rem;
}
.card h3 { font-family: "Outfit", sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.stock-line { margin-top: 1.25rem; color: var(--primary)!important; font-weight: 700; font-size: 0.9rem; }

.site-alert {
    padding: 1rem 1.25rem; border-radius: 14px; margin: 0 0 1.5rem;
    font-size: 0.95rem; border: 1px solid var(--border);
}
.site-alert-success { background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.2); color: #059669; }
.site-alert-error { background: rgba(239, 68, 68, 0.08); border-color: rgba(239, 68, 68, 0.2); color: #dc2626; }
@media (prefers-color-scheme: dark) {
    .site-alert-success { color: #34d399; }
    .site-alert-error { color: #f87171; }
}

.form-row { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-row label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); font-weight: 700; }
.form-row input, .form-row textarea, .order-line input {
    width: 100%; padding: 0.85rem 1.1rem; border-radius: 12px; border: 1px solid var(--border);
    background: var(--bg-card); color: var(--text); font: inherit; outline: none;
    transition: all 200ms ease;
}
.form-row input:focus, .form-row textarea:focus, .order-line input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1); }

.order-user-bar{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1.25rem;color:var(--muted);}
.order-user-bar strong{color:var(--sand);}
.text-button{background:none;border:none;color:#87d7ff;cursor:pointer;font:inherit;font-weight:700;}
.order-lines{display:grid;gap:.65rem;margin-bottom:1.25rem;}
.order-line{display:grid;grid-template-columns:1fr 120px;gap:1rem;align-items:center;padding:.85rem;border:1px solid rgba(61,178,255,.1);border-radius:12px;background:rgba(5,16,33,.55);}
.order-line strong{display:block;margin-bottom:.2rem;}
.order-line span{color:var(--muted);font-size:.85rem;}
.order-line input{text-align:right;}
.order-history{margin-top:1.25rem;}
.history-row{display:flex;justify-content:space-between;gap:1rem;padding:.75rem 0;border-top:1px solid rgba(61,178,255,.08);color:var(--muted);}
.history-row:first-of-type{border-top:none;}

/* ── CTA Banner ── */
.cta-banner {
    text-align: center; padding: 4.5rem 2rem; border-radius: 32px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.1));
    border: 1px solid var(--border); position: relative; overflow: hidden;
}
.cta-banner h2 { font-family: "Outfit", sans-serif; font-size: clamp(2rem, 5vw, 2.6rem); font-weight: 800; margin-bottom: 1rem; color: var(--text); }
.cta-banner p { color: var(--text-muted); max-width: 550px; margin: 0 auto 2.5rem; line-height: 1.75; font-size: 1.1rem; }

/* ── Contact ── */
.contact-card{display:flex;flex-direction:column;gap:1.1rem;}
.contact-row{display:flex;align-items:flex-start;gap:.85rem;}
.contact-icon-box{width:2.6rem;height:2.6rem;border-radius:10px;background:rgba(61,178,255,.1);border:1px solid var(--border);display:grid;place-items:center;font-size:1rem;flex-shrink:0;}
.contact-label{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--wave);margin-bottom:.2rem;}
.contact-val{font-size:.9rem;color:var(--sand);}
.contact-val a{color:#87d7ff;text-decoration:none;}.contact-val a:hover{text-decoration:underline;}

/* ── Footer ── */
.site-footer { border-top: 1px solid var(--border); margin-top: 4rem; background: var(--bg-card); position: relative; z-index: 1; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 4rem;
    width: min(1100px, 92%); margin: 0 auto; padding: 5rem 0 4rem;
}
.footer-brand-mark {
    width: 3.5rem; height: 3.5rem; border-radius: 14px;
    background: linear-gradient(140deg, var(--secondary), var(--primary));
    display: grid; place-items: center;
    font-family: "Outfit", sans-serif; font-weight: 800; color: #fff;
    box-shadow: 0 10px 25px -5px rgba(var(--primary-rgb), 0.3); margin-bottom: 1.25rem;
}
.footer-name { font-weight: 700; font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--text); }
.footer-tagline { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; }
.footer-col-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: color 200ms; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-row { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--text-muted); font-size: 0.95rem; }
.footer-contact-row a { color: var(--primary); text-decoration: none; font-weight: 600; }
.footer-contact-row a:hover { text-decoration: underline; }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    width: min(1100px, 92%); margin: 0 auto;
    padding: 1.5rem 0 2.5rem; border-top: 1px solid var(--border);
    font-size: 0.85rem; color: var(--text-muted);
}

/* ── Fade-up animation ── */
.fade-up{opacity:0;transform:translateY(28px);transition:opacity 600ms ease,transform 600ms ease;}
.fade-up.visible{opacity:1;transform:translateY(0);}

/* ─── Quantity Selectors ─────────────────────────────────────────────────── */
.qty-stepper {
    display: inline-flex; align-items: center; 
    background: var(--bg-panel); border: 1px solid var(--border);
    border-radius: 99px; padding: 0.15rem;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.qty-btn {
    width: 2rem; height: 2rem; border-radius: 50%;
    border: none; background: transparent;
    color: var(--primary); font-size: 1.1rem; font-weight: 700;
    cursor: pointer; display: grid; place-items: center;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.qty-btn:hover:not(:disabled) { background: var(--primary); color: white; transform: scale(1.1); }
.qty-btn:active:not(:disabled) { transform: scale(0.95); }
.qty-btn:disabled { opacity: 0.2; cursor: not-allowed; }
.qty-input {
    width: 2.5rem; text-align: center; border: none; background: transparent;
    color: var(--text); font-weight: 800; font-family: inherit; font-size: 0.95rem;
    -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ─── Order Summary Bar ────────────────────────────────────────────────── */
.order-summary-bar {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120px);
    background: var(--primary); color: white;
    padding: 0.8rem 1.5rem; border-radius: 999px;
    display: flex; align-items: center; gap: 1.5rem;
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.4);
    z-index: 2000; transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.order-summary-bar.active { transform: translateX(-50%) translateY(0); }
.summary-info { display: flex; align-items: center; gap: 0.75rem; }
.summary-count {
    background: rgba(255, 255, 255, 0.2);
    width: 2.5rem; height: 2.5rem; border-radius: 50%;
    display: grid; place-items: center; font-weight: 800; font-size: 1rem;
}
.summary-label { font-weight: 600; font-size: 0.95rem; }

/* Brand & Images */
.brand-logo {
    height: 32px;
    width: auto;
    border-radius: 4px;
}
.card-img-wrap {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: var(--bg-panel);
    border: 1px solid var(--border);
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card-img {
    transform: scale(1.05);
}

.summary-btn {
    background: white; color: var(--primary);
    padding: 0.6rem 1.25rem; border-radius: 999px;
    text-decoration: none; font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    transition: all 200ms;
}
.summary-btn:hover { background: #f8fafc; transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 960px) {
    .stats-band { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
    .stat-item { padding: 1.5rem 1rem; }
}

@media (max-width: 768px) {
    .topbar { 
        padding: 0.75rem 0; 
        background: #f8fafc; /* Solid light fallback */
        background: var(--bg); 
        border-bottom: 1px solid var(--border); 
        box-shadow: var(--shadow-sm); 
        width: 100%; left: 0; right: 0;
    }
    @media (prefers-color-scheme: dark) { .topbar { background: #020617; } }

    .brand { font-size: 1.05rem; gap: 0.65rem; }
    .brand-mark { width: 2.2rem; height: 2.2rem; font-size: 0.8rem; }
    .desktop-menu { display: none; }
    .mobile-menu { 
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: #f8fafc; /* Solid fallback */
        background: var(--bg); flex-direction: column; justify-content: center;
        padding: 2rem; gap: 1.5rem; transform: scale(0.9) translateY(20px); opacity: 0;
        visibility: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 11000; display: flex; overflow: hidden;
    }
    @media (prefers-color-scheme: dark) { .mobile-menu { background: #020617; } }
    .mobile-menu.open { transform: scale(1) translateY(0); opacity: 1; visibility: visible !important; }
    .menu a { 
        font-size: 1.8rem; font-weight: 800; font-family: "Outfit", sans-serif;
        width: auto; text-align: center; padding: 0.5rem; border: none; 
        border-radius: 0; color: var(--text); position: relative;
    }
    .menu a.active { color: var(--primary); }
    .menu a::after {
        content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
        width: 0; height: 3px; background: var(--primary); transition: width 0.3s ease;
    }
    .menu a.active::after { width: 40px; }
    .menu .nav-cta { 
        margin-top: 1rem; width: auto; min-width: 200px; text-align: center; 
        font-size: 1.1rem; border-radius: 99px; padding: 1.2rem 2rem;
    }
    .menu-toggle { display: block; z-index: 12000; position: relative; }
    .topbar-inner { padding: 0 1.25rem; }
    
    /* Prevent body scroll when menu open */
    body.menu-open { overflow: hidden; }

    .page { padding: 8.5rem 0 3rem; }

    .hero-body { padding: 150px 1.5rem 80px; }
    .hero-orb { width: 4rem; height: 4rem; font-size: 1.1rem; margin-bottom: 2.5rem; }
    .hero-eyebrow { margin-bottom: 1.5rem; font-size: 0.75rem; }
    .hero-tagline { font-size: 1.3rem; margin-bottom: 2rem; }
    .hero-intro { font-size: 1.05rem; margin-bottom: 2.5rem; }
    .hero-actions { flex-direction: column; width: 100%; gap: 1rem; }
    .cta { width: 100%; justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .footer-brand-mark { margin: 0 auto 1.25rem; }
    .footer-tagline { margin: 0 auto; }
    .footer-links { align-items: center; }
    .footer-contact-row { justify-content: center; }
}

@media (max-width: 640px) {
    .section-title { font-size: 1.75rem; }
    .page-header h1 { font-size: 2rem; }
    .order-steps { flex-direction: column; gap: 0.5rem!important; align-items: center; }
    
    .order-line { 
        flex-direction: column; align-items: stretch!important; gap: 1rem; 
        padding: 1.25rem!important; text-align: center;
    }
    .order-line > div:first-child { width: 100%; }
    .order-line .qty-stepper { width: 100%; justify-content: space-between; max-width: 200px; margin: 0 auto; }

    .payment-option { flex-direction: column; text-align: center; }
    
    .table-wrap { overflow-x: auto; margin: 0 -1rem; padding: 0 1rem; }
    table { min-width: 500px; }

    .confirm-details-grid { grid-template-columns: 1fr!important; gap: 1rem!important; text-align: center; }
    .confirm-details-grid > div:last-child { text-align: center!important; }
}
