/* ── VARIABLES & RESET ── */
:root {
    --prime:    #d4a438;
    --prime-dk: #b8891e;
    --base:     #060d1a;
    --surface:  #0d1929;
    --raised:   #111f33;
    --border:   #1e3050;
    --muted:    #64748b;
    --text:     #e2e8f0;
    --text-dim: #94a3b8;
    --light-bg: #f4f2ee;
    --light-bd: #e2ddd6;
    --radius:   10px;
    --nav-h:    64px;
    --top-h:    44px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
    font-family:'Rubik',sans-serif;
    background: var(--base);
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a { color: var(--prime); text-decoration:none; }
a:hover { text-decoration:underline; }
ul { list-style:none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
    font-family:'Figtree',sans-serif;
    font-weight:700;
    line-height:1.2;
    color: #f1f5f9;
}
h1 { font-size:clamp(2.1rem,4.5vw,3.2rem); }
h2 { font-size:clamp(1.7rem,3.2vw,2.4rem); }
h3 { font-size:1.2rem; }
h4 { font-size:1rem; }

/* ── LAYOUT ── */
.vault {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-gold {
    background: var(--prime);
    color: #060d1a;
    box-shadow: 0 4px 18px -4px rgba(212,164,56,.45);
}
.btn-gold:hover { background: var(--prime-dk); }

.btn-outline-gold {
    background: transparent;
    color: var(--prime);
    border: 2px solid var(--prime);
}
.btn-outline-gold:hover { background: rgba(212,164,56,.08); }

.btn-ghost {
    background: rgba(255,255,255,.07);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ── TOP BAR ── */
#topbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    height: var(--top-h);
    position: relative;
    z-index: 200;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color .2s;
}
.topbar-contact svg { width:14px; height:14px; flex-shrink:0; color: var(--prime); }
.topbar-contact:hover { color: var(--text); text-decoration: none; }

.topbar-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--prime);
    border: 1px solid var(--prime);
    border-radius: 999px;
    padding: 3px 10px;
    letter-spacing: .03em;
}
.topbar-chip svg { width:12px; height:12px; }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.topbar-right .btn {
    padding: 7px 16px;
    font-size: 13px;
}

/* ── NAVIGATION ── */
#main-nav {
    background: var(--base);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 190;
    height: var(--nav-h);
}
.nav-rail {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 32px;
}

/* Logo */
.brand-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-mark:hover { text-decoration: none; }
.brand-icon { width: 38px; height: 38px; flex-shrink: 0; }
.brand-text {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    white-space: nowrap;
}
.brand-text em {
    font-style: normal;
    color: var(--prime);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.nav-links > li > a,
.nav-item-trigger {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    padding: 8px 12px;
    border-radius: 6px;
    transition: color .2s, background .2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-links > li > a:hover,
.nav-item-trigger:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-links > li > a.active { color: var(--prime); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 240px;
    background: var(--raised);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s, transform .18s;
    z-index: 300;
    box-shadow: 0 12px 40px -8px rgba(0,0,0,.6);
}
.nav-dropdown.is-open .nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color .15s, background .15s;
    white-space: nowrap;
}
.nav-dropdown-panel a:hover { color: var(--prime); background: rgba(212,164,56,.06); }
.nav-dropdown-panel .dpanel-head {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--muted);
    text-transform: uppercase;
    padding: 8px 18px 4px;
    pointer-events: none;
}

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 9px 20px; font-size: 14px; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
#mob-menu {
    display: none;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 16px 0 24px;
}
#mob-menu.mob-open { display: block; }
.mob-list { padding: 0 20px; }
.mob-list li + li { border-top: 1px solid var(--border); }
.mob-list a {
    display: block;
    padding: 11px 0;
    font-size: 15px;
    color: var(--text);
    text-decoration: none;
}
.mob-list a.mob-sub { padding-left: 16px; font-size: 14px; color: var(--text-dim); }
.mob-cat-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--muted);
    text-transform: uppercase;
    padding: 10px 0 4px;
}
.mob-phone-link a { color: var(--prime) !important; font-weight: 700; }

/* ── HERO ── */
#hero {
    background: var(--base);
    padding: 72px 0 80px;
    overflow: hidden;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--prime);
    margin-bottom: 16px;
    background: rgba(212,164,56,.1);
    border: 1px solid rgba(212,164,56,.25);
    border-radius: 999px;
    padding: 4px 14px;
}
.hero-headline { margin-bottom: 18px; }
.hero-sub {
    font-size: 1.05rem;
    color: var(--text-dim);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.7;
}
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-dim);
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
}
.hero-chip svg { width:14px; height:14px; color: var(--prime); flex-shrink:0; }
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Invoice conversion widget */
.invoice-widget {
    background: var(--raised);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 24px 60px -12px rgba(0,0,0,.6), 0 0 0 1px rgba(212,164,56,.08);
    position: relative;
    overflow: hidden;
}
.invoice-widget::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--prime), #f7c35e);
    border-radius: 16px 16px 0 0;
}
.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.widget-title {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.widget-badge {
    font-size: 11px;
    font-weight: 700;
    background: rgba(212,164,56,.15);
    color: var(--prime);
    border-radius: 999px;
    padding: 3px 10px;
}

.invoice-row {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
}
.inv-row-head {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}
.inv-row-detail {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 16px;
    align-items: baseline;
}
.inv-client { font-size: 15px; font-family: 'Figtree', sans-serif; font-weight: 700; color: var(--text); }
.inv-amount { font-size: 18px; font-family: 'Figtree', sans-serif; font-weight: 700; color: var(--text); }
.inv-terms { font-size: 12px; color: var(--muted); }
.inv-type { font-size: 12px; color: var(--muted); text-align: right; }

/* Progress bar */
.advance-bar-wrap {
    margin-bottom: 16px;
}
.advance-bar-head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
}
.advance-bar-track {
    height: 8px;
    background: var(--border);
    border-radius: 999px;
    overflow: hidden;
}
.advance-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--prime), #f7c35e);
    border-radius: 999px;
    width: 0%;
    transition: width 1.4s cubic-bezier(.22,1,.36,1);
}
.advance-bar-fill.anim { width: 90%; }

/* Cash released */
.cash-released {
    background: rgba(212,164,56,.06);
    border: 1px solid rgba(212,164,56,.2);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
    opacity: 0;
    transition: opacity .5s;
}
.cash-released.anim { opacity: 1; }
.cash-released-label { font-size: 11px; color: var(--prime); font-weight: 700; text-transform: uppercase; letter-spacing:.06em; margin-bottom: 4px; }
.cash-released-amount {
    font-family: 'Figtree', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--prime);
    line-height: 1;
}

/* Confirmed badge */
.widget-confirm {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
    opacity: 0;
    transition: opacity .5s;
}
.widget-confirm.anim { opacity: 1; }
.confirm-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34,197,94,.2);
    animation: pulse-green 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse-green {
    0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}
.widget-disclaimer { font-size: 11px; color: var(--muted); margin-top: 12px; text-align: center; }

/* ── STATS STRIP ── */
#stats-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.stat-cell {
    background: var(--surface);
    padding: 24px 28px;
    text-align: center;
}
.stat-figure {
    font-family: 'Figtree', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--prime);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.3;
}

/* ── FINANCE PRODUCTS ── */
#products {
    padding: 88px 0;
    background: var(--base);
}
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--prime);
    margin-bottom: 12px;
}
.section-head {
    margin-bottom: 10px;
}
.section-intro {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.7;
}
.products-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.product-tile {
    background: var(--raised);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.product-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--prime);
    border-radius: var(--radius) var(--radius) 0 0;
}
.product-tile:hover {
    border-color: rgba(212,164,56,.4);
    box-shadow: 0 8px 32px -8px rgba(212,164,56,.15);
}
.product-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(212,164,56,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.product-icon svg { width:24px; height:24px; color: var(--prime); }
.product-tile h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #f1f5f9;
}
.product-tile p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 18px;
    line-height: 1.65;
}
.product-bullets {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}
.product-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
}
.product-bullets li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--prime);
    flex-shrink: 0;
    margin-top: 7px;
}
.product-link {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--prime);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}
.product-link:hover { gap: 8px; text-decoration: none; }
.product-link svg { width:14px; height:14px; }

/* ── HOW IT WORKS (light zone) ── */
#how-it-works {
    background: var(--light-bg);
    padding: 88px 0;
    border-top: 1px solid var(--light-bd);
    border-bottom: 1px solid var(--light-bd);
}
#how-it-works .section-tag { color: #92762a; }
#how-it-works .section-head { color: #0f172a; }
#how-it-works .section-intro { color: #475569; }

.flow-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    margin-top: 48px;
}
.flow-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.66% + 16px);
    right: calc(16.66% + 16px);
    height: 2px;
    background: repeating-linear-gradient(90deg, #d4a438 0, #d4a438 8px, transparent 8px, transparent 16px);
}
.flow-step { text-align: center; padding-top: 12px; }
.flow-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #d4a438;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Figtree', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #d4a438;
    position: relative;
    z-index: 1;
}
.flow-step h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 10px;
}
.flow-step p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.65;
}
.flow-metric {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212,164,56,.12);
    border: 1px solid rgba(212,164,56,.3);
    color: #92762a;
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    padding: 5px 14px;
}

/* ── WHY CHOOSE US ── */
#why-us {
    padding: 88px 0;
    background: var(--surface);
}
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.proof-cell {
    background: var(--raised);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color .2s;
}
.proof-cell:hover { border-color: rgba(212,164,56,.35); }
.proof-cell-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(212,164,56,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.proof-cell-icon svg { width:20px; height:20px; color: var(--prime); }
.proof-cell h3 { font-size: 1rem; margin-bottom: 8px; }
.proof-cell p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* ── TESTIMONIALS ── */
#testimonials {
    padding: 88px 0;
    background: var(--base);
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.review-card {
    background: var(--raised);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.review-stars {
    color: var(--prime);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.review-text {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 16px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--prime);
    color: #060d1a;
    font-family: 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--text); }
.review-company { font-size: 12px; color: var(--muted); }

/* ── SEO CONTENT ── */
#seo-depth {
    padding: 88px 0;
    background: var(--surface);
}
.depth-panel {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
}
.depth-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 20px);
}
.sidebar-enquiry-card {
    background: var(--raised);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.sidebar-enquiry-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text);
}
.sidebar-enquiry-card p {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.5;
}
.sidebar-form-field {
    margin-bottom: 12px;
}
.sidebar-form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 5px;
}
.sidebar-form-field select,
.sidebar-form-field input {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    padding: 9px 12px;
    outline: none;
    transition: border-color .2s;
}
.sidebar-form-field select:focus,
.sidebar-form-field input:focus { border-color: var(--prime); }
.sidebar-enquiry-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
.sidebar-contact-links { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 16px; }
.sidebar-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 8px;
    text-decoration: none;
    transition: color .2s;
}
.sidebar-contact-link svg { width:14px; height:14px; color: var(--prime); flex-shrink:0; }
.sidebar-contact-link:hover { color: var(--text); text-decoration: none; }

/* SEO section intro headings */
.depth-content-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.2;
}
.depth-content-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dim);
    margin-bottom: 24px;
}

/* SEO content body */
.depth-content h2 {
    font-size: 1.4rem;
    color: #f1f5f9;
    margin-bottom: 14px;
    padding-top: 4px;
}
.depth-content h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 10px;
    margin-top: 20px;
}
.depth-content p {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 16px;
    line-height: 1.75;
}

.seo-accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
}
.seo-accordion summary {
    list-style: none;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer;
    padding: 18px 20px !important;
    background: var(--raised) !important;
    user-select: none;
    font-family: 'Figtree', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #f1f5f9 !important;
    line-height: 1.3 !important;
    transition: background .2s !important;
}
.seo-accordion summary::-webkit-details-marker { display: none; }
.seo-accordion[open] summary { background: rgba(212,164,56,.07) !important; }
.seo-accordion summary::after {
    content: '+';
    font-size: 1.3rem !important;
    color: var(--prime) !important;
    flex-shrink: 0 !important;
    margin-left: 12px !important;
    transition: transform .2s !important;
}
.seo-accordion[open] summary::after { transform: rotate(45deg) !important; }
.seo-accordion-body {
    padding: 20px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}
.seo-accordion-body h2 { display: none; }
.seo-accordion-body h3 {
    font-size: 1rem;
    color: var(--prime);
    margin: 16px 0 8px;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
}
.seo-accordion-body h3:first-child { margin-top: 0; }
.seo-accordion-body p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 14px;
    line-height: 1.7;
}

/* ── FAQ ── */
#faq {
    padding: 88px 0;
    background: var(--base);
}
.enquiry-stack {
    max-width: 760px;
    margin: 48px auto 0;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    background: var(--raised);
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    user-select: none;
    transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { background: rgba(212,164,56,.06); color: var(--prime); }
.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--prime);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
    padding: 18px 20px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ── CONTACT ── */
#contact {
    padding: 88px 0;
    background: var(--surface);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 580px;
    gap: 60px;
    align-items: start;
}
.contact-left h2 { margin-bottom: 14px; }
.contact-left p {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 28px;
    line-height: 1.7;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
}
.contact-detail:hover { color: var(--prime); text-decoration: none; }
.contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(212,164,56,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg { width:18px; height:18px; color: var(--prime); }
.contact-detail-text strong { display: block; font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 2px; }

/* Contact form */
.contact-form-card {
    background: var(--raised);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-form-card .form-sub { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grp { display: flex; flex-direction: column; gap: 6px; }
.form-grp.full { grid-column: 1 / -1; }
.form-grp label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
}
.form-grp input,
.form-grp select,
.form-grp textarea {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    padding: 11px 14px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}
.form-grp input::placeholder,
.form-grp textarea::placeholder { color: var(--muted); }
.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus { border-color: var(--prime); }
.form-grp textarea { min-height: 120px; resize: vertical; }
.form-grp select option { background: var(--raised); }
.honeypot-field { position: absolute; left: -9999px; }
#form-status {
    margin-top: 12px;
    font-size: 14px;
    border-radius: 6px;
    padding: 10px 14px;
    display: none;
}
#form-status.success { background: rgba(34,197,94,.1); color: #22c55e; border: 1px solid rgba(34,197,94,.2); display: block; }
#form-status.error { background: rgba(239,68,68,.1); color: #f87171; border: 1px solid rgba(239,68,68,.2); display: block; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ── STICKY CTA ── */
.sticky-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--prime);
    color: #060d1a;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 8px 28px -6px rgba(212,164,56,.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s;
    text-decoration: none;
    cursor: pointer;
}
.sticky-cta svg { width:16px; height:16px; flex-shrink:0; }
.sticky-cta.is-visible { opacity:1; pointer-events:auto; transform:translateY(0); }
.sticky-cta:hover { background: var(--prime-dk); text-decoration: none; }
@media (max-width: 560px) {
    .sticky-cta span { display:none; }
    .sticky-cta { padding:14px; border-radius:50%; }
}

/* ── FOOTER ── */
#site-ft {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--text-dim);
    margin: 16px 0;
    line-height: 1.65;
    max-width: 280px;
}
.footer-phone-line { font-size: 1.1rem; font-family:'Figtree',sans-serif; font-weight:700; }
.footer-phone-line a { color: var(--prime); }
.footer-email-line { font-size: 14px; color: var(--text-dim); margin-bottom: 16px; }
.footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.ft-social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--raised);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: color .2s, border-color .2s;
    text-decoration: none;
}
.ft-social svg { width:16px; height:16px; }
.ft-social:hover { color: var(--prime); border-color: var(--prime); text-decoration: none; }

.footer-col h4 {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    padding: 4px 0;
    text-decoration: none;
    transition: color .2s;
}
.footer-col a:hover { color: var(--prime); }
.footer-col .footer-tel { font-weight: 600; color: var(--prime); }
.footer-col address { font-style: normal; font-size: 13px; color: var(--muted); line-height: 1.8; margin-top: 8px; }

.footer-bottom {
    background: var(--base);
    border-top: 1px solid var(--border);
    padding: 18px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
}
.footer-legal a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 16px;
    transition: color .2s;
}
.footer-legal a:hover { color: var(--prime); }

/* ── FADE-IN ON SCROLL ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}
.fade-up.in-view { opacity: 1; transform: none; }

/* ── LEGAL PAGES ── */
.legal-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}
.legal-wrap h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-wrap .legal-date { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.legal-wrap h2 { font-size: 1.3rem; margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-wrap p { font-size: 15px; color: var(--text-dim); margin-bottom: 14px; line-height: 1.75; }
.legal-wrap ul { margin: 0 0 14px 20px; }
.legal-wrap ul li { font-size: 15px; color: var(--text-dim); margin-bottom: 6px; line-height: 1.65; list-style: disc; }
.legal-wrap a { color: var(--prime); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .invoice-widget { max-width: 480px; }
    .products-board { grid-template-columns: 1fr; }
    .flow-track { grid-template-columns: 1fr; gap: 24px; }
    .flow-track::before { display: none; }
    .proof-grid { grid-template-columns: 1fr 1fr; }
    .depth-panel { grid-template-columns: 1fr; }
    .depth-sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .stats-row { grid-template-columns: 1fr 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .topbar-left .topbar-contact:last-of-type { display: none; }
    .topbar-chip { display: none; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
    .topbar-inner { justify-content: space-between; }
    .topbar-left { gap: 12px; }
}
