/* =========================================================
   FurnStack — Futuristic Theme
   Tweak the CSS variables below to match your logo exactly.
   ========================================================= */
:root {
    /* Pulled from the FurnStack logo: deep navy/black background,
       brushed gold + electric blue accents. */
    --fs-bg:         #05080f;
    --fs-bg-2:       #0a1322;
    --fs-surface:    rgba(255, 255, 255, 0.04);
    --fs-border:     rgba(212, 175, 90, 0.18);   /* faint gold edge */
    --fs-text:       #ecedf2;
    --fs-text-dim:   #9aa3b2;

    /* Gold side (the "Furn" / F mark) */
    --fs-gold:       #d4af5a;
    --fs-gold-2:     #f5d98a;
    --fs-gold-deep:  #8a6a23;

    /* Blue side (the "Stack" / bars) */
    --fs-blue:       #1e9bff;
    --fs-blue-2:     #4fc3ff;
    --fs-blue-deep:  #0a4a8a;

    /* Machined-metal gradients lifted straight from the logo:
       brushed gold (the "F" / FURN) and polished steel (the stack / STACK). */
    --fs-metal-gold:  linear-gradient(180deg, #fff5cf 0%, #f5d98a 20%, #d4af5a 45%, #fff2bf 58%, #8a6a23 100%);
    --fs-metal-steel: linear-gradient(180deg, #f4f8ff 0%, #c9d9ef 22%, #8fa7c7 48%, #e9f3ff 60%, #4a5f80 100%);

    /* Semantic aliases used across the site */
    --fs-primary:    var(--fs-gold);
    --fs-accent:     var(--fs-blue);
    --fs-accent-2:   var(--fs-blue-2);

    --fs-success:    #2bd97a;
    --fs-danger:     #ff4d6d;
    --fs-radius:     14px;
    --fs-shadow:     0 10px 30px rgba(30, 155, 255, 0.10),
                     0 2px 8px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    overflow-x: clip;
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--fs-bg);
    color: var(--fs-text);
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(1200px 600px at 85% -10%, rgba(212, 175, 90, 0.14), transparent 60%),
        radial-gradient(900px 500px at -10% 10%, rgba(30, 155, 255, 0.16), transparent 60%),
        linear-gradient(180deg, #05070d 0%, #0a0f1c 100%);
    min-height: 100vh;
}

a { color: var(--fs-primary); text-decoration: none; }
a:hover { color: var(--fs-accent); }

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }

/* Polished-steel headline text, like the STACK side of the logo */
h1, h2,
h1 .word {
    background: var(--fs-metal-steel);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
}

/* Brushed-gold accent text, like the FURN side of the logo */
.fs-gradient-text,
h1 .word.fs-gradient-text {
    background: var(--fs-metal-gold);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
}

/* ---------- Layout ---------- */
.fs-page { display: flex; flex-direction: column; min-height: 100vh; }
.fs-main { flex: 1; }

.fs-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ---------- Navbar ---------- */
.fs-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(5, 8, 15, 0.72);
    border-bottom: 1px solid rgba(30, 155, 255, 0.18);
    box-shadow: 0 1px 0 rgba(212, 175, 90, 0.10);
}
.fs-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    position: relative;
}
.fs-brand {
    display: flex; align-items: center; gap: 0.9rem;
    color: #fff; font-weight: 800; font-size: 1.35rem;
    letter-spacing: 0.01em;
}
.fs-brand img {
    height: 52px; width: 52px; object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 0 1px rgba(212,175,90,.22), 0 10px 24px rgba(30, 155, 255, 0.22);
}
.fs-brand span {
    display: inline-flex;
    align-items: center;
    gap: 0;
    line-height: 1;
}
.fs-brand span em,
.fs-hero-brand-text span em {
    font-style: normal;
    background: linear-gradient(180deg, #fff5cf 0%, #f5d98a 18%, #d4af5a 45%, #fff2bf 60%, #8a6a23 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 1px 0 rgba(255,255,255,.18), 0 0 18px rgba(212,175,90,.10);
}
.fs-brand span b,
.fs-hero-brand-text span b {
    background: linear-gradient(180deg, #eef8ff 0%, #8bd4ff 18%, #4fc3ff 46%, #1e9bff 72%, #0a4a8a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 18px rgba(79,195,255,.14);
}

.fs-nav-links { display: flex; gap: 0.25rem; align-items: center; }
.fs-nav-links a {
    color: var(--fs-text-dim);
    padding: 0.5rem 0.85rem;
    border-radius: 10px;
    font-weight: 500;
    transition: color .2s, background .2s;
}
.fs-nav-links a:hover,
.fs-nav-links a.active { color: #fff; background: var(--fs-surface); }
.fs-nav-links a.active:not(.fs-btn)::after {
    content: "";
    position: absolute;
    left: .85rem; right: .85rem; bottom: .2rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--fs-gold), var(--fs-blue));
}
.fs-nav-links a { position: relative; }
.fs-nav-links a.fs-btn-primary { color: #221604; }
.fs-nav-links a.fs-btn-primary:hover { color: #221604; }

.fs-nav-toggle { display: none; background: transparent; border: 0; color: #fff; font-size: 1.4rem; cursor: pointer; }

/* ---------- Buttons ---------- */
.fs-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s;
    text-decoration: none;
}
.fs-btn-primary {
    color: #221604;
    /* brushed-gold grain over a machined gold gradient, like the logo's F */
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 3px),
        linear-gradient(180deg, #f9e7ae 0%, #e9c873 32%, #cda344 58%, #9a7426 100%);
    border-color: rgba(255,240,190,.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.6),
        inset 0 -2px 5px rgba(70,48,8,.4),
        0 10px 28px rgba(212,175,90,.22),
        0 0 22px rgba(30,155,255,.15);
}
.fs-btn-primary:hover { transform: translateY(-2px); color: #221604; filter: brightness(1.08); }
.fs-btn-ghost {
    color: #e8f0fb;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
    border-color: rgba(143,167,199,.35);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.fs-btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(143,167,199,.55); }

/* ---------- Hero ---------- */
.fs-hero { position: relative; padding: 6rem 0 5rem; overflow: hidden; }
.fs-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.fs-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .35rem .7rem;
    border: 1px solid var(--fs-border);
    border-radius: 999px;
    color: var(--fs-text-dim);
    font-size: .85rem;
    background: var(--fs-surface);
}
.fs-eyebrow::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--fs-primary);
    box-shadow: 0 0 12px var(--fs-primary);
}
.fs-hero p.lead {
    color: var(--fs-text-dim);
    font-size: 1.15rem;
    max-width: 560px;
    margin: 1rem 0 1.75rem;
    line-height: 1.6;
}
.fs-hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }

.fs-hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    background:
        conic-gradient(from 180deg at 50% 50%,
            rgba(79,195,255,.25), rgba(212,175,90,.25), rgba(30,155,255,.25), rgba(79,195,255,.25));
    padding: 2px;
    box-shadow: var(--fs-shadow);
}
.fs-hero-visual::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 20%, rgba(79,195,255,.25), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212,175,90,.22), transparent 50%),
                #0b1020;
    z-index: 0;
}
.fs-hero-visual-inner {
    position: relative; z-index: 1;
    width: 100%; height: 100%;
    display: grid; place-items: center;
    border-radius: 22px;
    overflow: hidden;
}
.fs-hero-visual-inner img {
    width: 70%; height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 229, 255, 0.35));
    border-radius: 18px;
}

/* ---------- Sections ---------- */
.fs-section { padding: 4rem 0; }
.fs-section h2 { margin-bottom: .5rem; }
.fs-section .muted { color: var(--fs-text-dim); margin-bottom: 2rem; max-width: 640px; }

/* ---------- Service cards ---------- */
.fs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
/* Force exactly 3 columns so 6 cards become a clean 3×2 */
.fs-grid.fs-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

/* ---------- Benefits section ---------- */
.fs-benefits-section {
    position: relative;
}
.fs-benefits-header { margin-bottom: 2.5rem; }
.fs-benefits-header h2 { line-height: 1.15; }

.fs-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
}
.fs-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.3rem;
    border-radius: var(--fs-radius);
    background: linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
    border: 1px solid rgba(212,175,90,0.15);
    transition: transform .2s ease, border-color .25s, box-shadow .25s;
}
.fs-benefit:hover {
    transform: translateY(-3px);
    border-color: rgba(30,155,255,0.4);
    box-shadow: 0 8px 28px rgba(30,155,255,0.12);
}
.fs-benefit-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 1.35rem;
    background: linear-gradient(135deg, rgba(212,175,90,.18), rgba(30,155,255,.18));
    border: 1px solid rgba(212,175,90,0.25);
}
.fs-benefit h4 {
    margin: 0 0 .3rem;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}
.fs-benefit p { margin: 0; color: var(--fs-text-dim); line-height: 1.55; font-size: .95rem; }
.fs-card {
    position: relative;
    padding: 1.5rem;
    border-radius: var(--fs-radius);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid var(--fs-border);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    overflow: hidden;
}
.fs-card::before {
    content: "";
    position: absolute; inset: -1px;
    border-radius: var(--fs-radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(79,195,255,.6), rgba(212,175,90,.6));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0; transition: opacity .25s;
}
.fs-card:hover { transform: translateY(-4px); box-shadow: var(--fs-shadow); }
.fs-card:hover::before { opacity: 1; }
.fs-card .icon {
    width: 42px; height: 42px; border-radius: 12px;
    display: grid; place-items: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(79,195,255,.18), rgba(212,175,90,.18));
    border: 1px solid var(--fs-border);
    font-size: 1.3rem;
}
.fs-card h3 { font-size: 1.15rem; margin: 0 0 .4rem; }
.fs-card p { color: var(--fs-text-dim); margin: 0; line-height: 1.55; }

/* ---------- CTA strip ---------- */
.fs-cta {
    margin: 2rem 0;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(30,155,255,.12), rgba(212,175,90,.10));
    border: 1px solid var(--fs-border);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
}
.fs-cta h2 { margin: 0; }

/* ---------- Form ---------- */
.fs-form-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid var(--fs-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--fs-shadow);
}
.fs-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.fs-field label { color: #fff; font-weight: 600; font-size: .95rem; }
.fs-field .hint { color: var(--fs-text-dim); font-size: .8rem; }
.fs-input, .fs-select, .fs-textarea {
    width: 100%;
    padding: .75rem .9rem;
    background: rgba(0,0,0,0.35);
    border: 1px solid var(--fs-border);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
}
.fs-select option { background: #0b1020; color: #fff; }
.fs-input:focus, .fs-select:focus, .fs-textarea:focus {
    outline: none;
    border-color: var(--fs-primary);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.18);
}
.fs-textarea { min-height: 140px; resize: vertical; }
.fs-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.validation-message { color: var(--fs-danger); font-size: .85rem; }
.invalid { border-color: var(--fs-danger) !important; }

.fs-alert {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid;
    margin-bottom: 1.25rem;
}
.fs-alert-success { color: #b7f5d0; background: rgba(43,217,122,.08); border-color: rgba(43,217,122,.35); }
.fs-alert-error { color: #ffd5dd; background: rgba(255,77,109,.08); border-color: rgba(255,77,109,.35); }

/* ---------- Footer ---------- */
.fs-footer {
    border-top: 1px solid var(--fs-border);
    padding: 3rem 0 2rem;
    color: var(--fs-text-dim);
    font-size: .9rem;
    margin-top: 4rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.25));
}
.fs-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}
.fs-footer-brand p {
    margin: .9rem 0 0;
    line-height: 1.6;
    max-width: 300px;
}
.fs-footer-col { display: grid; gap: .45rem; align-content: start; }
.fs-footer h5 {
    margin: 0 0 .35rem;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.fs-footer-col a {
    color: var(--fs-text-dim);
    transition: color .2s;
}
.fs-footer-col a:hover { color: #fff; }
.fs-footer-cta p { margin: 0 0 1rem; line-height: 1.6; }
.fs-footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: .85rem;
}

/* ---------- Sticky mobile CTA ---------- */
.fs-mobile-cta { display: none; }

/* ==========================================================
   RESPONSIVE — tablet (≤ 860px) + phone (≤ 520px)
   ========================================================== */

/* ── Tablet / small laptop ── */
@media (max-width: 860px) {

    /* Nav */
    .fs-nav-toggle { display: inline-flex; }
    .fs-nav-links {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch;
        background: rgba(5, 8, 15, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(30,155,255,0.2);
        padding: .75rem 1rem 1rem;
        gap: .15rem;
        display: none;
        z-index: 200;
    }
    .fs-nav-links.open { display: flex; }
    .fs-nav-links a {
        padding: .7rem 1rem;
        border-radius: 10px;
        text-align: left;
    }
    .fs-nav-links a.fs-btn-primary {
        margin-left: 0 !important;
        margin-top: .5rem;
        text-align: center;
        justify-content: center;
    }

    /* Hero */
    .fs-hero { padding: 4.5rem 0 3.5rem; }
    .fs-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-items: start;
    }
    .fs-hero-visual {
        order: -1;
        max-width: 340px;
        margin: 0 auto;
        width: 70%;
        /* keep float animation but don't let it clip on narrow screens */
        overflow: visible;
    }
    .fs-hero p.lead { font-size: 1.05rem; }
    .fs-hero-cta { justify-content: flex-start; }

    /* Stats: 3 equal columns on tablet */
    .fs-stats { grid-template-columns: repeat(3, 1fr); }

    /* Service cards: 2 columns */
    .fs-grid { grid-template-columns: repeat(2, 1fr); }
    .fs-grid.fs-grid-3col { grid-template-columns: repeat(2, 1fr); }

    /* Benefits: 1 column on tablet */
    .fs-benefits-grid { grid-template-columns: 1fr; }

    /* Process steps: 2 columns */
    .fs-steps { grid-template-columns: repeat(2, 1fr); }

    /* Form */
    .fs-row-2 { grid-template-columns: 1fr; }

    /* CTA strip: stack vertically */
    .fs-cta { flex-direction: column; align-items: flex-start; text-align: left; }

    /* Footer */
    .fs-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Phone (≤ 520px) ── */
@media (max-width: 520px) {

    /* Typography scale down */
    h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }

    /* Container breathing room */
    .fs-container { padding: 0 1rem; }

    /* Nav brand label tuck */
    .fs-brand { font-size: 1.05rem; }
    .fs-brand img { height: 40px; width: 40px; }
    .fs-hero-brand {
        gap: .85rem;
        margin-bottom: 1rem;
    }
    .fs-hero-brand img {
        width: 74px;
        height: 74px;
        border-radius: 16px;
    }
    .fs-hero-brand-text span {
        font-size: clamp(1.6rem, 8vw, 2.3rem);
    }
    .fs-hero-brand-text small {
        font-size: .72rem;
        letter-spacing: .16em;
    }

    /* Hero */
    .fs-hero { padding: 3.5rem 0 3rem; }
    .fs-hero-visual { width: 80%; max-width: 280px; }
    .fs-hero p.lead { font-size: .98rem; }

    /* Buttons stack full-width */
    .fs-hero-cta { flex-direction: column; }
    .fs-hero-cta .fs-btn { width: 100%; justify-content: center; }

    /* Stats: single column on small phones */
    .fs-stats { grid-template-columns: 1fr; gap: .75rem; }
    .fs-stat { padding: 1rem; }
    .fs-stat .num { font-size: 2.2rem; }

    /* Cards: 1 column */
    .fs-grid { grid-template-columns: 1fr; }

    /* Steps: 1 column, give step-number room */
    .fs-steps { grid-template-columns: 1fr; }
    .fs-step { margin-top: 1.5rem; }

    /* Sections closer together */
    .fs-section { padding: 2.5rem 0; }

    /* CTA strip compact */
    .fs-cta { padding: 1.5rem; }
    .fs-cta .fs-btn { width: 100%; justify-content: center; }

    /* Marquee text smaller */
    .fs-marquee-track span { font-size: .85rem; }

    /* Form */
    .fs-form-wrap { padding: 1.25rem 1rem; }

    /* Footer */
    .fs-footer { padding: 1.5rem 0; margin-top: 2rem; }
}

/* keep Blazor error UI usable */
#blazor-error-ui {
    background: #1b0d12;
    color: #ffd5dd;
    border-top: 1px solid var(--fs-danger);
    bottom: 0; left: 0; right: 0;
    display: none; padding: .8rem 1.2rem; position: fixed; width: 100%; z-index: 1000;
}
#blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: 1rem; top: .75rem; }

/* =========================================================
   ✨ FurnStack — Cinematic FX layer
   ========================================================= */

/* Fixed background stack: stars + aurora + grid + spotlight */
.fx-bg {
    position: fixed; inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
#fx-stars { position: absolute; inset: 0; width: 100%; height: 100%; }

.fx-grid {
    position: absolute; inset: -2px;
    background-image:
        linear-gradient(rgba(30,155,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,90,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
    animation: fx-grid-pan 40s linear infinite;
}
@keyframes fx-grid-pan {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 600px 600px, 600px -600px; }
}

.fx-aurora {
    position: absolute; inset: -10%;
    filter: blur(80px);
    opacity: .8;
}
.fx-aurora span {
    position: absolute;
    width: 38vmax; height: 38vmax;
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: fx-float 22s ease-in-out infinite;
}
.fx-aurora .a1 { background: radial-gradient(circle, rgba(30,155,255,.55), transparent 60%); top: -12%; left: -10%; }
.fx-aurora .a2 { background: radial-gradient(circle, rgba(212,175,90,.45), transparent 60%); top: 30%; right: -15%; animation-delay: -7s; }
.fx-aurora .a3 { background: radial-gradient(circle, rgba(79,195,255,.45), transparent 60%); bottom: -15%; left: 25%; animation-delay: -14s; }
@keyframes fx-float {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50%      { transform: translate3d(4%, -3%, 0) scale(1.1); }
}

#fx-spotlight {
    position: absolute; inset: 0;
    background: radial-gradient(600px 600px at var(--mx,50%) var(--my,50%),
                rgba(79,195,255,0.12), transparent 60%);
    transition: opacity .3s;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s cubic-bezier(.22,1,.36,1),
                transform .9s cubic-bezier(.22,1,.36,1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ---------- Hero enhancements ---------- */
.fs-hero { padding: 7rem 0 6rem; }

.fs-hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(40deg);
    animation: fx-word-in .9s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes fx-word-in {
    to { opacity: 1; transform: none; }
}

/* (metal gradient text is static — no shimmer; defined near the top) */

/* Logo ring */
.fs-hero-visual {
    animation: fx-floaty 7s ease-in-out infinite;
}
@keyframes fx-floaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
.fs-hero-visual::after {
    content: "";
    position: absolute; inset: -18px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
        rgba(245,217,138,0.0) 0deg,
        rgba(245,217,138,0.9) 60deg,
        rgba(30,155,255,0.0) 140deg,
        rgba(30,155,255,0.9) 220deg,
        rgba(245,217,138,0.0) 320deg);
    filter: blur(14px);
    opacity: .55;
    z-index: -1;
    animation: fx-spin 14s linear infinite;
}
@keyframes fx-spin { to { transform: rotate(360deg); } }

.fs-hero-visual-inner img {
    transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.fs-hero-visual:hover .fs-hero-visual-inner img {
    transform: scale(1.04) rotate(-1deg);
}

/* Buttons get glow + shine sweep */
.fs-btn-primary { position: relative; overflow: hidden; }
.fs-btn-primary::after {
    content: "";
    position: absolute; top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: skewX(-20deg);
    transition: left .8s ease;
}
.fs-btn-primary:hover::after { left: 130%; }

/* ---------- Stats row ---------- */
.fs-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}
.fs-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(212,175,90,0.18);
    backdrop-filter: blur(8px);
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.fs-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(30,155,255,0.45);
    box-shadow: 0 10px 30px rgba(30,155,255,0.18);
}
.fs-stat .num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--fs-metal-gold);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.fs-stat .lbl { color: var(--fs-text-dim); font-size: .9rem; margin-top: .5rem; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Tech marquee ---------- */
.fs-marquee {
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.fs-marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: fx-marquee 30s linear infinite;
}
.fs-marquee-track span {
    font-weight: 700;
    color: var(--fs-text-dim);
    font-size: 1.1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex; align-items: center; gap: .6rem;
}
.fs-marquee-track span::after {
    content: "✦";
    color: var(--fs-gold);
    opacity: .6;
}
@keyframes fx-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- 3D tilt card additions ---------- */
.fs-card[data-tilt] {
    transform-style: preserve-3d;
    transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s, border-color .25s;
}
/* Disable pointer-based tilt on touch-only devices */
@media (hover: none) {
    .fs-card[data-tilt] { transform-style: flat; }
}
.fs-card[data-tilt]::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: var(--fs-radius);
    background: radial-gradient(280px circle at var(--gx,50%) var(--gy,50%),
                rgba(245,217,138,0.18), transparent 50%);
    opacity: 0; transition: opacity .25s;
    pointer-events: none;
}
.fs-card[data-tilt]:hover::after { opacity: 1; }

/* Section title underline */
.fs-section-title {
    position: relative;
    display: inline-block;
    padding-bottom: .5rem;
}
.fs-section-title::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 60px; height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--fs-gold), var(--fs-blue));
    box-shadow: 0 0 14px rgba(30,155,255,0.6);
}

/* Process/steps */
.fs-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    counter-reset: step;
}
.fs-step {
    position: relative;
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
    border: 1px solid rgba(212,175,90,0.18);
}
.fs-step::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute; top: -18px; left: 16px;
    font-size: 1.75rem; font-weight: 800;
    background: var(--fs-metal-gold);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fs-step h4 { margin: .25rem 0 .35rem; }
.fs-step p { color: var(--fs-text-dim); margin: 0; line-height: 1.55; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fs-hero-visual,
    .fs-hero-visual::after,
    .fs-aurora span,
    .fx-grid,
    .fs-marquee-track,
    .fs-gradient-text { animation: none !important; }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .fs-hero h1 .word { opacity: 1; transform: none; animation: none; }
}

/* =========================================================
   FurnStack — Premium growth-agency homepage
   ========================================================= */
.fs-hero-agency {
    padding-top: 5.5rem;
}

.fs-hero-grid-agency {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
}

.fs-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fs-hero-brand {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    margin-bottom: 1.25rem;
}

.fs-hero-brand img {
    width: 104px;
    height: 104px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 0 0 1px rgba(212,175,90,.25), 0 16px 50px rgba(30,155,255,.22);
}

.fs-hero-brand-text {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.fs-hero-brand-text span {
    display: inline-flex;
    align-items: center;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -0.03em;
}

.fs-hero-brand-text small {
    color: var(--fs-text-dim);
    font-size: .92rem;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.fs-hero-copy h1 {
    max-width: 720px;
}

.fs-hero-proof {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.fs-proof-item {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.fs-proof-item strong {
    color: #fff;
    font-size: .95rem;
}

.fs-proof-item span {
    color: var(--fs-text-dim);
    font-size: .88rem;
}

.fs-proof-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.fs-proof-ratings div {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.fs-proof-ratings strong {
    color: #fff;
    font-size: .9rem;
}

.fs-proof-ratings span {
    color: var(--fs-gold-2);
    letter-spacing: .08em;
    font-size: .85rem;
}

.fs-growth-panel {
    padding: 1.2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(16, 20, 32, 0.92), rgba(8, 12, 22, 0.92));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 80px rgba(6, 10, 24, 0.65), 0 0 0 1px rgba(79,195,255,0.06) inset;
    backdrop-filter: blur(12px);
    will-change: transform, opacity;
}

.fs-growth-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin-bottom: 1rem;
}

.fs-growth-kpi {
    padding: .95rem 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.fs-growth-kpi span {
    color: var(--fs-text-dim);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.fs-growth-kpi strong {
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
}

.fs-growth-kpi em {
    color: #3fd77b;
    font-style: normal;
    font-size: .82rem;
    font-weight: 700;
}

.fs-growth-kpi-wide {
    grid-column: span 3;
}

.fs-growth-chart {
    position: relative;
    height: 360px;
    border-radius: 24px;
    padding: 1rem 1rem 2.6rem;
    background: linear-gradient(180deg, rgba(12,18,34,0.98), rgba(7,10,19,0.98));
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.fs-chart-grid {
    position: absolute;
    inset: 1rem 1rem 2.8rem;
    border-radius: 18px;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 100% 22%, 16.66% 100%;
    opacity: .55;
}

.fs-chart-svg {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: drop-shadow(0 0 18px rgba(30,155,255,.28));
}

.fs-chart-badge {
    position: absolute;
    right: 2rem;
    top: 3.2rem;
    z-index: 2;
    padding: .7rem .85rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.95);
    color: #0a1020;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.fs-chart-badge span {
    display: block;
    margin-top: .15rem;
    font-size: .72rem;
    color: #5d6473;
    font-weight: 700;
}

.fs-chart-labels {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: .8rem;
    display: flex;
    justify-content: space-between;
    color: var(--fs-text-dim);
    font-size: .8rem;
    z-index: 2;
}

.fs-trust-strip {
    padding: 1.25rem 0 2rem;
}

.fs-trust-title {
    text-align: center;
    color: var(--fs-text-dim);
    font-size: .78rem;
    letter-spacing: .22em;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.fs-trust-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    align-items: center;
}

.fs-trust-logos span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: .75rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: #cbd2df;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-align: center;
}

.fs-section-soft {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fs-section-header-center {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Glowing blue seam + node under section titles — the underline from the logo */
.fs-section-header-center h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1.1rem;
}
.fs-section-header-center h2::after {
    content: "";
    position: absolute;
    left: 50%; bottom: .35rem;
    transform: translateX(-50%);
    width: min(240px, 70%);
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(79,195,255,.95), transparent);
    box-shadow: 0 0 14px rgba(79,195,255,.75);
}
.fs-section-header-center h2::before {
    content: "";
    position: absolute;
    left: 50%; bottom: calc(.35rem - 2px);
    transform: translateX(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #cfeaff;
    box-shadow: 0 0 10px 2px rgba(79,195,255,.9);
}

.fs-section-header-center .muted {
    margin-left: auto;
    margin-right: auto;
}

.fs-growth-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.fs-growth-step {
    position: relative;
    padding: 1.5rem 1.2rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
    border: 1px solid rgba(255,255,255,0.07);
    text-align: center;
}

.fs-growth-step-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 1.6rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(212,175,90,.20), rgba(79,195,255,.22));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(30,155,255,.12);
}

.fs-growth-step h4 {
    margin: 0 0 .5rem;
}

.fs-growth-step p {
    margin: 0;
    color: var(--fs-text-dim);
    line-height: 1.55;
}

.fs-industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.fs-industries-grid-premium {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.fs-industry-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: .95rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    will-change: transform, opacity;
}

.fs-industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79,195,255,.26);
    box-shadow: 0 18px 40px rgba(6,12,28,.35), 0 0 0 1px rgba(212,175,90,.08) inset;
}

.fs-industry-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -30% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,195,255,.10), transparent 70%);
    pointer-events: none;
}

.fs-industry-card-featured {
    grid-column: span 2;
}

.fs-industry-card-featured .fs-industry-thumb {
    height: 180px;
}

.fs-industry-thumb {
    height: 150px;
    border-radius: 16px;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    will-change: transform;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.fs-industry-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,.18), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,0) 42%);
}

.fs-industry-thumb::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 54%;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(4,8,15,.62));
}

.fs-industry-badge {
    position: absolute;
    top: .8rem;
    left: .8rem;
    z-index: 3;
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(8,12,24,.72);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fs-industry-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
}

.fs-industry-visual-card {
    width: 104px;
    min-height: 98px;
    padding: .9rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
    border: 1px solid rgba(255,255,255,.2);
    box-shadow: 0 20px 40px rgba(6,10,18,.22);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.fs-industry-icon {
    width: 34px;
    height: 34px;
    stroke: rgba(255,255,255,.96);
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fs-industry-visual-lines {
    display: grid;
    gap: .38rem;
}

.fs-industry-visual-lines span {
    display: block;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,.8), rgba(255,255,255,.18));
}

.fs-industry-visual-lines span:nth-child(1) { width: 72%; }
.fs-industry-visual-lines span:nth-child(2) { width: 100%; }
.fs-industry-visual-lines span:nth-child(3) { width: 56%; }

.fs-industry-copy {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.fs-industry-kicker {
    color: var(--fs-gold-2);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 700;
}

.fs-industry-thumb-realty { background: linear-gradient(135deg, #6f7ea7, #1c273c); }
.fs-industry-thumb-medspa { background: linear-gradient(135deg, #a28d85, #3c2e2b); }
.fs-industry-thumb-fitness { background: linear-gradient(135deg, #8f6a53, #241915); }
.fs-industry-thumb-ecommerce { background: linear-gradient(135deg, #5a7395, #1b2436); }
.fs-industry-thumb-local { background: linear-gradient(135deg, #8d7650, #2d2416); }
.fs-industry-thumb-coach { background: linear-gradient(135deg, #7f6aa3, #261d38); }

.fs-industry-card h4 {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.2;
}

.fs-industry-card p {
    margin: 0;
    color: var(--fs-text-dim);
    line-height: 1.62;
    font-size: .96rem;
}

.fs-industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .3rem;
}

.fs-industry-tags span {
    padding: .38rem .65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.07);
    color: #dbe4f3;
    font-size: .78rem;
    font-weight: 600;
}

.fs-proof-section {
    padding-top: 1rem;
}

.fs-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.fs-result-card {
    padding: 1.4rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012));
    border: 1px solid rgba(255,255,255,0.08);
    will-change: transform, opacity;
}

.fs-result-card small {
    display: block;
    color: var(--fs-text-dim);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}

.fs-result-card strong {
    display: block;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: .5rem;
    background: var(--fs-metal-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fs-result-card p {
    margin: 0 0 1rem;
    color: var(--fs-text-dim);
}

.fs-mini-chart {
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    position: relative;
    overflow: hidden;
}

.fs-mini-chart::before {
    content: "";
    position: absolute;
    inset: 10px 12px 12px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.fs-mini-chart-up::before {
    background-image: linear-gradient(transparent 82%, rgba(255,255,255,0.04) 82%), linear-gradient(135deg, transparent 45%, #1e9bff 45%, #4fc3ff 80%, transparent 80%);
}

.fs-mini-chart-up-2::before {
    background-image: linear-gradient(transparent 82%, rgba(255,255,255,0.04) 82%), linear-gradient(145deg, transparent 42%, #d4af5a 42%, #4fc3ff 78%, transparent 78%);
}

.fs-mini-chart-down::before {
    background-image: linear-gradient(transparent 82%, rgba(255,255,255,0.04) 82%), linear-gradient(25deg, transparent 38%, #d4af5a 38%, #4fc3ff 65%, transparent 65%);
}

.fs-testimonial-band {
    background: linear-gradient(180deg, rgba(10,16,33,0.96), rgba(7,11,24,0.96));
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fs-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.fs-testimonial {
    position: relative;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    will-change: transform, opacity;
}

.fs-quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: var(--fs-gold-2);
    opacity: .8;
    margin-bottom: .35rem;
}

.fs-testimonial p {
    margin: 0 0 1rem;
    color: #e7ecf3;
    line-height: 1.65;
}

.fs-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.fs-testimonial-meta strong {
    color: #fff;
}

.fs-testimonial-meta span {
    color: var(--fs-text-dim);
    font-size: .88rem;
}

.fs-cta-strong {
    background: linear-gradient(120deg, rgba(46,38,16,.92), rgba(10,30,61,.92));
    border: 1px solid rgba(212,175,90,.30);
    box-shadow: 0 20px 60px rgba(11,16,34,.45);
    will-change: transform, opacity;
}

.fs-services-showcase {
    position: relative;
}

.fs-services-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .8fr);
    gap: 1.35rem;
    align-items: stretch;
}

.fs-services-hero-copy,
.fs-services-hero-panel,
.fs-service-card {
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 16px 42px rgba(7,11,24,.24);
}

.fs-services-hero-copy {
    padding: 1.7rem;
    border-radius: 28px;
}

.fs-services-hero-copy .muted {
    max-width: 680px;
}

.fs-services-points {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.4rem;
}

.fs-services-points span {
    padding: .62rem .95rem;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #eaf2ff;
    font-size: .9rem;
    font-weight: 600;
}

.fs-services-hero-panel {
    border-radius: 24px;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    background:
        radial-gradient(circle at top right, rgba(79,195,255,.16), transparent 32%),
        linear-gradient(160deg, rgba(12,24,50,.92), rgba(11,18,39,.92));
}

.fs-services-stat {
    display: grid;
    gap: .25rem;
}

.fs-services-stat strong {
    font-size: 1.3rem;
    color: #fff;
}

.fs-services-stat span,
.fs-services-mini-list span {
    color: var(--fs-text-dim);
}

.fs-services-mini-list {
    display: grid;
    gap: .7rem;
}

.fs-services-mini-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem .9rem;
    border-radius: 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.07);
}

.fs-services-mini-list b {
    color: #fff;
    font-size: .95rem;
}

.fs-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.fs-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.3rem;
    border-radius: 24px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.fs-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79,195,255,.08), transparent 42%, rgba(212,175,90,.06));
    pointer-events: none;
}

.fs-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79,195,255,.24);
    box-shadow: 0 22px 48px rgba(8,12,26,.34);
}

.fs-service-card-featured {
    grid-column: span 2;
}

.fs-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.55rem;
    background: linear-gradient(135deg, rgba(212,175,90,.18), rgba(79,195,255,.18));
    border: 1px solid rgba(255,255,255,.12);
    position: relative;
    z-index: 1;
}

.fs-service-icon svg,
.fs-about-icon svg,
.fs-growth-step-icon svg {
    width: 26px;
    height: 26px;
    stroke: rgba(255,255,255,.95);
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.fs-growth-step-icon svg { width: 28px; height: 28px; }

.fs-service-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: .55rem;
}

.fs-service-kicker {
    color: var(--fs-gold-2);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 700;
}

.fs-service-copy h3 {
    margin: 0;
    font-size: 1.2rem;
}

.fs-service-copy p {
    margin: 0;
    color: var(--fs-text-dim);
    line-height: 1.65;
}

.fs-service-copy ul {
    margin: .25rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.fs-service-copy li {
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #eef4ff;
    font-size: .82rem;
    font-weight: 600;
}

.fs-services-cta .muted {
    margin-bottom: 0;
    max-width: 660px;
}

.fs-about-showcase {
    position: relative;
}

.fs-about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .8fr);
    gap: 1.35rem;
    align-items: stretch;
}

.fs-about-hero-copy,
.fs-about-hero-panel,
.fs-about-card {
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
    border: 1px solid rgba(255,255,255,.03);
    box-shadow: 0 16px 42px rgba(7,11,24,.24);
}

.fs-about-hero-copy {
    padding: 1.7rem;
    border-radius: 28px;
}

.fs-about-points {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.4rem;
}

.fs-about-points span {
    padding: .62rem .95rem;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.04);
    color: #eaf2ff;
    font-size: .9rem;
    font-weight: 600;
}

.fs-about-hero-panel {
    border-radius: 24px;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    background:
        radial-gradient(circle at top right, rgba(212,175,90,.16), transparent 32%),
        linear-gradient(160deg, rgba(12,24,50,.92), rgba(11,18,39,.92));
}

.fs-about-stat {
    display: grid;
    gap: .25rem;
}

.fs-about-stat strong {
    font-size: 1.3rem;
    color: #fff;
}

.fs-about-stat span,
.fs-about-mini-list span {
    color: var(--fs-text-dim);
}

.fs-about-mini-list {
    display: grid;
    gap: .7rem;
}

.fs-about-mini-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem .9rem;
    border-radius: 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.04);
}

.fs-about-mini-list b {
    color: #fff;
    font-size: .95rem;
}

.fs-about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.fs-about-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.3rem;
    border-radius: 24px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.fs-about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,90,.08), transparent 42%, rgba(79,195,255,.06));
    pointer-events: none;
}

.fs-about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,90,.24);
    box-shadow: 0 22px 48px rgba(8,12,26,.34);
}

.fs-about-card-featured {
    grid-column: span 1;
}

.fs-about-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.55rem;
    background: linear-gradient(135deg, rgba(212,175,90,.18), rgba(79,195,255,.18));
    border: 1px solid rgba(255,255,255,.05);
    position: relative;
    z-index: 1;
}

.fs-about-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: .55rem;
}

.fs-about-kicker {
    color: var(--fs-gold-2);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 700;
}

.fs-about-copy h3 {
    margin: 0;
    font-size: 1.2rem;
}

.fs-about-copy p {
    margin: 0;
    color: var(--fs-text-dim);
    line-height: 1.65;
}

.fs-about-copy ul {
    margin: .25rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.fs-about-copy li {
    padding: .45rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.04);
    color: #eef4ff;
    font-size: .82rem;
    font-weight: 600;
}

.fs-about-cta .muted {
    margin-bottom: 0;
    max-width: 660px;
}

@media (max-width: 980px) {
    .fs-about-hero,
    .fs-about-grid,
    .fs-services-hero,
    .fs-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fs-about-hero-copy,
    .fs-about-hero-panel,
    .fs-services-hero-copy {
        grid-column: span 2;
    }

    .fs-services-hero,
    .fs-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fs-services-hero-copy {
        grid-column: span 2;
    }

    .fs-services-hero-panel,
    .fs-service-card-featured {
        grid-column: span 2;
    }

    .fs-hero-grid-agency {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fs-hero-brand img {
        width: 88px;
        height: 88px;
    }

    .fs-hero-brand-text span {
        font-size: clamp(1.9rem, 6vw, 2.8rem);
    }

    .fs-growth-panel {
        order: -1;
    }

    .fs-growth-kpis {
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-growth-kpi-wide {
        grid-column: span 2;
    }

    .fs-trust-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .fs-industries-grid,
    .fs-industries-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-industry-card-featured {
        grid-column: span 2;
    }

    .fs-growth-steps,
    .fs-results-grid,
    .fs-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-hero-proof {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Heavy FX off on touch devices and small screens — layout is unaffected here
   so touch tablets/laptops keep the full multi-column design. */
@media (max-width: 640px), (hover: none), (pointer: coarse) {
    .fx-bg {
        display: none;
    }

    .fs-hero-visual,
    .fs-hero-visual::after,
    .fs-gradient-text,
    .fs-marquee-track,
    .fs-card[data-tilt] {
        animation: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .fs-hero h1 .word {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .fs-hero-visual {
        transform: none;
        box-shadow: var(--fs-shadow);
    }
}

/* ── Phone layout (≤ 640px) ── */
@media (max-width: 640px) {
    .fs-growth-steps,
    .fs-results-grid,
    .fs-testimonials-grid,
    .fs-trust-logos,
    .fs-industries-grid,
    .fs-industries-grid-premium,
    .fs-services-grid,
    .fs-services-hero,
    .fs-about-grid,
    .fs-about-hero {
        grid-template-columns: 1fr;
    }

    .fs-services-hero-copy,
    .fs-services-hero-panel,
    .fs-service-card-featured,
    .fs-about-hero-copy,
    .fs-about-hero-panel {
        grid-column: span 1;
    }

    .fs-industry-card-featured {
        grid-column: span 1;
    }

    /* Headline + CTA first, stats panel after */
    .fs-growth-panel {
        order: 0;
        padding: .9rem;
        border-radius: 22px;
    }

    /* KPIs as a tidy 2-up grid instead of one long stack */
    .fs-growth-kpis {
        grid-template-columns: repeat(2, 1fr);
        gap: .6rem;
    }
    .fs-growth-kpi { padding: .8rem .85rem; border-radius: 14px; }
    .fs-growth-kpi strong { font-size: 1.25rem; }
    .fs-growth-kpi-wide { grid-column: span 2; }

    .fs-growth-chart {
        height: 230px;
        padding: .85rem .85rem 2.2rem;
        border-radius: 18px;
    }

    .fs-chart-badge {
        right: .85rem;
        top: 1rem;
        padding: .5rem .65rem;
        font-size: .85rem;
    }

    .fs-chart-labels { font-size: .7rem; }

    .fs-proof-ratings {
        width: 100%;
        justify-content: space-between;
        gap: .75rem;
    }

    .fs-trust-logos span,
    .fs-industry-card,
    .fs-result-card,
    .fs-testimonial,
    .fs-growth-step {
        min-height: auto;
    }

    /* The neon seam reads too wide on small screens */
    .fs-section-header-center h2::after { width: min(170px, 65%); }

    /* Comfortable tap targets, full-width primary actions */
    .fs-btn {
        min-height: 44px;
        padding: .8rem 1.15rem;
    }
    .fs-hero-cta .fs-btn,
    .fs-cta .fs-btn {
        width: 100%;
        justify-content: center;
    }

    /* Sticky bottom CTA so a conversion action is always in reach */
    .fs-mobile-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        left: 1rem; right: 1rem;
        bottom: calc(.9rem + env(safe-area-inset-bottom));
        z-index: 90;
        min-height: 48px;
        padding: .85rem 1.2rem;
        border-radius: 999px;
        font-weight: 700;
        color: #221604;
        background:
            repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 3px),
            linear-gradient(180deg, #f9e7ae 0%, #e9c873 32%, #cda344 58%, #9a7426 100%);
        border: 1px solid rgba(255,240,190,.4);
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.6),
            inset 0 -2px 5px rgba(70,48,8,.4),
            0 12px 35px rgba(0, 0, 0, 0.45),
            0 0 18px rgba(30, 155, 255, 0.25);
    }
    .fs-mobile-cta:hover { color: #221604; }

    /* Keep the footer reachable above the sticky CTA */
    .fs-footer { padding-bottom: 5.5rem; }
    .fs-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .fs-footer-cta .fs-btn { width: 100%; justify-content: center; }

    /* Tighter rhythm on small screens */
    .fs-hero-agency { padding-top: 3rem; }
    .fs-section-header-center { margin-bottom: 1.75rem; }
    .fs-services-hero-copy,
    .fs-about-hero-copy { padding: 1.25rem; border-radius: 22px; }
    .fs-service-card,
    .fs-about-card,
    .fs-industry-card { border-radius: 18px; }
    .fs-result-card strong { font-size: 2rem; }
    .fs-industry-card-featured .fs-industry-thumb { height: 150px; }
}

/* =========================================================
   Machined-metal edge highlights — every surface catches
   light along its top edge, like the milled faces of the logo.
   ========================================================= */
.fs-card,
.fs-industry-card,
.fs-service-card,
.fs-about-card,
.fs-growth-step,
.fs-result-card,
.fs-testimonial,
.fs-growth-panel,
.fs-growth-kpi,
.fs-form-wrap,
.fs-services-hero-copy,
.fs-services-hero-panel,
.fs-about-hero-copy,
.fs-about-hero-panel,
.fs-benefit,
.fs-step,
.fs-stat,
.fs-cta {
    border-top-color: rgba(255, 255, 255, 0.16);
}
