/* ═══════════════════════════════════════════════════════════════════════════
   SEO FOR TRADESMEN — style.css
   Palette: mixed-alternating (dark/cream sections)
   Skeleton: split-canvas (vertical split hero)
   Accent: lime #84cc16
   Fonts: Red Hat Display + Red Hat Mono
   Container: .bounds
   Accent var: --key
   Background var: --canvas
═══════════════════════════════════════════════════════════════════════════ */

/* ══ CUSTOM PROPERTIES ════════════════════════════════════════════════════════ */
:root {
    --key:          #84cc16;
    --key-dk:       #65a30d;
    --key-lt:       #bef264;
    --key-muted:    rgba(132, 204, 22, 0.12);
    --canvas:       #0b1018;
    --surface:      #141b28;
    --surface-2:    #1c2538;
    --surface-3:    #232f42;
    --cream:        #f0ede6;
    --cream-2:      #e5e1d8;
    --cream-3:      #d8d3c9;
    --txt:          #d4dbe8;
    --txt-muted:    #8895b3;
    --txt-dark:     #1a2030;
    --txt-dark-md:  #3d4e6a;
    --txt-dark-muted: #6b7a99;
    --radius:       8px;
    --radius-lg:    14px;
    --transition:   .22s ease;
    --head-h:       72px;
    --shadow:       0 4px 24px rgba(0,0,0,.35);
    --shadow-sm:    0 2px 10px rgba(0,0,0,.2);
}

/* ══ RESET & BASE ═════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Red Hat Display', system-ui, sans-serif;
    background: var(--canvas);
    color: var(--txt);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ══ TYPOGRAPHY ═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 1.18;
    font-weight: 800;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.mono {
    font-family: 'Red Hat Mono', monospace;
    letter-spacing: .03em;
}

/* ══ LAYOUT — .bounds ═════════════════════════════════════════════════════════ */
.bounds {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
}

/* ══ SECTION SPACING ══════════════════════════════════════════════════════════ */
.section-dark {
    background: var(--canvas);
    padding: clamp(60px, 9vw, 100px) 0;
}
.section-cream {
    background: var(--cream);
    color: var(--txt-dark);
    padding: clamp(60px, 9vw, 100px) 0;
}
.section-surface {
    background: var(--surface);
    padding: clamp(60px, 9vw, 100px) 0;
}

/* ══ BUTTONS ══════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .95rem;
    line-height: 1;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-key {
    background: var(--key);
    color: var(--canvas);
}
.btn-key:hover {
    background: var(--key-lt);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132,204,22,.3);
}

.btn-dark {
    background: var(--surface-2);
    color: var(--txt);
    border: 1px solid var(--surface-3);
}
.btn-dark:hover {
    background: var(--surface-3);
    transform: translateY(-2px);
}

.btn-outline-key {
    background: transparent;
    color: var(--key);
    border: 2px solid var(--key);
}
.btn-outline-key:hover {
    background: var(--key-muted);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--txt-dark);
    border: 2px solid var(--txt-dark);
}
.btn-outline-dark:hover {
    background: var(--txt-dark);
    color: var(--cream);
}

/* ══ SITE HEADER ══════════════════════════════════════════════════════════════ */
.site-head {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--head-h);
    background: var(--canvas);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: box-shadow var(--transition);
}
.site-head.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.head-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    gap: 20px;
}

/* ── Logo ── */
.head-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    text-decoration: none;
}
.head-logo svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.head-logo-wordmark {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--txt);
    letter-spacing: -.01em;
    line-height: 1.1;
}
.head-logo-wordmark em {
    color: var(--key);
    font-style: normal;
}

/* ── Nav ── */
.head-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-item {
    position: relative;
}
.nav-link {
    display: block;
    padding: 8px 14px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--txt-muted);
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.nav-link:hover,
.nav-item:hover > .nav-link {
    color: var(--txt);
    background: var(--surface);
}
.nav-link svg {
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
    transition: transform var(--transition);
}
.nav-item:hover > .nav-link svg {
    transform: rotate(180deg);
}

/* ── Mega Dropdown ── */
.nav-drop {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    min-width: 320px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    transform: translateX(-50%) translateY(-6px);
    box-shadow: var(--shadow);
    z-index: 300;
}
.nav-item:hover .nav-drop {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-drop-label {
    font-family: 'Red Hat Mono', monospace;
    font-size: .68rem;
    font-weight: 600;
    color: var(--key);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--surface-3);
}
.nav-drop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}
.nav-drop-item {
    font-size: .875rem;
    font-weight: 600;
    color: var(--txt-muted);
    padding: 4px 0;
    line-height: 1.3;
    cursor: default;
    user-select: none;
}

/* ── Header right ── */
.head-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.head-phone {
    font-family: 'Red Hat Mono', monospace;
    font-size: .85rem;
    font-weight: 600;
    color: var(--txt-muted);
    transition: color var(--transition);
}
.head-phone:hover { color: var(--key); }

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--txt);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile drawer ── */
.mob-drawer {
    position: fixed;
    top: var(--head-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    z-index: 190;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
}
.mob-drawer.is-open {
    transform: translateX(0);
}
.mob-nav {
    padding: 24px clamp(16px, 5vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mob-nav a,
.mob-nav-sect {
    display: block;
    padding: 12px 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--txt);
    border-radius: var(--radius);
    transition: background var(--transition);
}
.mob-nav a:hover { background: var(--surface-2); }
.mob-nav-sect {
    font-size: .7rem;
    font-family: 'Red Hat Mono', monospace;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--key);
    padding-top: 20px;
    cursor: default;
}
.mob-nav-sub {
    padding-left: 28px !important;
    font-size: .9rem !important;
    color: var(--txt-muted) !important;
    cursor: default !important;
    pointer-events: none;
}
.mob-nav-phone {
    color: var(--key) !important;
    font-family: 'Red Hat Mono', monospace;
    margin-top: 8px;
}

/* ══ HERO — SPLIT CANVAS ══════════════════════════════════════════════════════ */
#home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--head-h));
}

.hs-left {
    background: var(--canvas);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 72px clamp(24px, 4vw, 64px) 72px;
}
.hs-left-inner {
    width: 100%;
    max-width: 500px;
}

.hs-right {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 72px clamp(24px, 4vw, 64px) 72px;
}
.hs-right-inner {
    width: 100%;
    max-width: 480px;
}

/* ── Hero left content ── */
.hs-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--key-muted);
    color: var(--key);
    font-family: 'Red Hat Mono', monospace;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 999px;
    margin-bottom: 22px;
}
.hs-tag svg { width: 13px; height: 13px; }

.hs-h {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}
.hs-h em {
    font-style: normal;
    color: var(--key);
}

.hs-sub {
    font-size: 1.05rem;
    color: var(--txt-muted);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 440px;
}

.hs-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hs-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hs-stat-num {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--key);
    line-height: 1;
}
.hs-stat-label {
    font-family: 'Red Hat Mono', monospace;
    font-size: .72rem;
    color: var(--txt-muted);
    letter-spacing: .05em;
    text-transform: uppercase;
}

.hs-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── Hero right — lead form ── */
.lead-form {
    width: 100%;
}
.lf-head {
    margin-bottom: 24px;
}
.lf-head h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--txt-dark);
    margin-bottom: 6px;
}
.lf-head p {
    font-size: .9rem;
    color: var(--txt-dark-md);
}

.lf-body .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.lf-body .form-group {
    margin-bottom: 14px;
}
.lf-body .form-full { grid-column: 1 / -1; }

.lf-body label {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--txt-dark);
    margin-bottom: 5px;
}
.lf-body input,
.lf-body select,
.lf-body textarea {
    width: 100%;
    padding: 11px 14px;
    background: #fff;
    border: 1.5px solid var(--cream-3);
    border-radius: var(--radius);
    font-family: 'Red Hat Display', sans-serif;
    font-size: .9rem;
    color: var(--txt-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.lf-body input:focus,
.lf-body select:focus,
.lf-body textarea:focus {
    outline: none;
    border-color: var(--key);
    box-shadow: 0 0 0 3px rgba(132,204,22,.15);
}
.lf-body textarea { resize: vertical; min-height: 90px; }
.lf-body .form-submit {
    margin-top: 4px;
}
.lf-body .form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1rem;
}
.honeypot-field { display: none; }
#form-msg {
    font-size: .875rem;
    padding: 10px 14px;
    border-radius: var(--radius);
    margin-bottom: 10px;
    display: none;
}
#form-msg.success {
    background: rgba(132,204,22,.12);
    color: #4a7c00;
    display: block;
}
#form-msg.error {
    background: rgba(239,68,68,.1);
    color: #b91c1c;
    display: block;
}

/* ══ TRUST TICKER ═════════════════════════════════════════════════════════════ */
.trust-tick {
    background: var(--surface);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid var(--surface-2);
    border-bottom: 1px solid var(--surface-2);
}
.tick-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: tick-scroll 36s linear infinite;
}
.tick-track:hover { animation-play-state: paused; }
.tick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    font-family: 'Red Hat Mono', monospace;
    font-size: .8rem;
    font-weight: 600;
    color: var(--txt-muted);
    letter-spacing: .04em;
    white-space: nowrap;
}
.tick-item svg {
    width: 14px;
    height: 14px;
    color: var(--key);
    flex-shrink: 0;
}
.tick-dot {
    width: 4px;
    height: 4px;
    background: var(--surface-3);
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes tick-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ══ SECTION HEADINGS ═════════════════════════════════════════════════════════ */
.sec-label {
    font-family: 'Red Hat Mono', monospace;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--key);
    margin-bottom: 10px;
    display: block;
}
.sec-heading {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}
.sec-heading-dark { color: var(--txt-dark); }
.sec-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 620px;
    color: var(--txt-muted);
}
.sec-sub-dark {
    color: var(--txt-dark-md);
}

/* ══ WHO WE HELP — TRADE NICHE CARDS (cream section) ═════════════════════════ */
#trades {
    background: var(--cream);
    color: var(--txt-dark);
    padding: clamp(60px, 9vw, 100px) 0;
}
.trades-header {
    text-align: center;
    margin-bottom: 52px;
}
.trades-header .sec-sub { margin: 0 auto; }

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

.trade-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 26px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid var(--surface-3);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.trade-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--key);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s ease;
}
.trade-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,.4);
}
.trade-card:hover::before { transform: scaleY(1); }

.tc-icon {
    width: 44px;
    height: 44px;
    background: var(--key-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--key);
}
.tc-icon svg { width: 22px; height: 22px; }

.tc-body { flex: 1; min-width: 0; }
.tc-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.25;
}
.tc-hook {
    font-size: .82rem;
    color: var(--txt-muted);
    line-height: 1.5;
}

.trades-cta {
    text-align: center;
    margin-top: 44px;
}
.trades-cta p {
    font-size: .95rem;
    color: var(--txt-dark-md);
    margin-bottom: 16px;
}

/* ══ PROCESS ══════════════════════════════════════════════════════════════════ */
#process {
    background: var(--canvas);
    padding: clamp(60px, 9vw, 100px) 0;
}
.process-header {
    text-align: center;
    margin-bottom: 60px;
}
.process-header .sec-sub { margin: 0 auto; }

.proc-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}
.proc-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--surface-2), var(--key), var(--surface-2));
    z-index: 0;
}

.proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.ps-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--key);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.ps-num {
    font-family: 'Red Hat Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--key);
}

.ps-title {
    font-size: .95rem;
    font-weight: 800;
    color: var(--txt);
    margin-bottom: 8px;
    line-height: 1.25;
}
.ps-desc {
    font-size: .82rem;
    color: var(--txt-muted);
    line-height: 1.55;
}

/* ══ WHY US (cream section) ═══════════════════════════════════════════════════ */
#why {
    background: var(--cream);
    color: var(--txt-dark);
    padding: clamp(60px, 9vw, 100px) 0;
}
.why-header {
    max-width: 640px;
    margin-bottom: 52px;
}

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

.wu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    border: 1px solid var(--cream-3);
    transition: box-shadow var(--transition), transform var(--transition);
}
.wu-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    transform: translateY(-2px);
}

.wc-icon {
    width: 46px;
    height: 46px;
    background: var(--key-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--key-dk);
}
.wc-icon svg { width: 22px; height: 22px; }

.wc-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--txt-dark);
    margin-bottom: 8px;
}
.wc-body {
    font-size: .87rem;
    color: var(--txt-dark-md);
    line-height: 1.65;
}

/* ══ SEO CONTENT — ACCORDION WITH JUMP-NAV ════════════════════════════════════ */
#content {
    background: var(--surface);
    padding: clamp(60px, 9vw, 100px) 0;
}

.content-zone {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 56px;
    align-items: start;
}

/* ── Left: content body ── */
.cz-body { min-width: 0; }

.cz-body h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.1;
}

.cz-intro { margin-bottom: 32px; }
.cz-intro p {
    font-size: .975rem;
    color: var(--txt);
    line-height: 1.75;
    margin-bottom: 14px;
}
.cz-intro p:last-child { margin-bottom: 0; }

/* Accordion */
.cz-body details {
    border-top: 1px solid var(--surface-3);
}
.cz-body details:last-of-type {
    border-bottom: 1px solid var(--surface-3);
}

.cz-body summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.cz-body summary::-webkit-details-marker { display: none; }

.cz-body summary h2 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--txt) !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    pointer-events: none;
}

.sum-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--key);
    transition: background var(--transition), transform var(--transition);
}
.sum-toggle svg { width: 13px; height: 13px; transition: transform .2s; }
.cz-body details[open] .sum-toggle { background: var(--key-muted); }
.cz-body details[open] .sum-toggle svg { transform: rotate(45deg); }

.cz-body details[open] summary h2 {
    color: var(--key) !important;
}

.accordion-body {
    padding-bottom: 22px;
}
.accordion-body p {
    font-size: .9rem;
    color: var(--txt-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}
.accordion-body p:last-child { margin-bottom: 0; }

/* ── Right: jump-nav sidebar ── */
.cz-nav {
    position: sticky;
    top: calc(var(--head-h) + 24px);
}
.cn-label {
    font-family: 'Red Hat Mono', monospace;
    font-size: .68rem;
    font-weight: 600;
    color: var(--key);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}
.cn-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cn-item {
    font-size: .8rem;
    font-weight: 600;
    color: var(--txt-muted);
    padding: 7px 12px;
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    cursor: pointer;
    line-height: 1.4;
}
.cn-item:hover,
.cn-item.active {
    color: var(--key);
    border-left-color: var(--key);
    background: var(--key-muted);
}

/* ══ REVIEWS (cream section) ══════════════════════════════════════════════════ */
#reviews {
    background: var(--cream);
    color: var(--txt-dark);
    padding: clamp(60px, 9vw, 100px) 0;
}
.reviews-header {
    text-align: center;
    margin-bottom: 52px;
}
.reviews-header .sec-sub { margin: 0 auto; }

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

.rev-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    border: 1px solid var(--cream-3);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow var(--transition), transform var(--transition);
}
.rev-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    transform: translateY(-2px);
}

.rc-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 1.1rem;
}
.rc-quote {
    font-family: 'Red Hat Display', sans-serif;
    font-size: .95rem;
    font-style: italic;
    color: var(--txt-dark);
    line-height: 1.7;
    flex: 1;
}
.rc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.rc-name {
    font-weight: 800;
    font-size: .9rem;
    color: var(--txt-dark);
}
.rc-trade {
    font-family: 'Red Hat Mono', monospace;
    font-size: .72rem;
    font-weight: 600;
    color: #fff;
    background: var(--surface);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.rev-footer {
    text-align: center;
}
.rev-footer p {
    font-size: .9rem;
    color: var(--txt-dark-md);
    margin-bottom: 12px;
}

/* ══ FAQ (dark section) ═══════════════════════════════════════════════════════ */
#faq {
    background: var(--canvas);
    padding: clamp(60px, 9vw, 100px) 0;
}
.faq-header {
    text-align: center;
    margin-bottom: 52px;
}
.faq-header .sec-sub { margin: 0 auto; }

.faq-zone { max-width: 800px; margin: 0 auto; }

.fz-cat { margin-bottom: 36px; }
.fz-cat:last-child { margin-bottom: 0; }

.cat-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--surface-2);
}
.cat-bar-line {
    width: 4px;
    height: 20px;
    background: var(--key);
    border-radius: 2px;
    flex-shrink: 0;
}
.cat-bar-name {
    font-family: 'Red Hat Mono', monospace;
    font-size: .78rem;
    font-weight: 700;
    color: var(--key);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.faq-item {
    border-bottom: 1px solid var(--surface-2);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
    font-weight: 700;
    font-size: .95rem;
    color: var(--txt);
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #fff; }
.faq-item[open] > summary { color: var(--key); }

.fq-plus {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--key);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    transition: transform .2s, background var(--transition);
}
.faq-item[open] .fq-plus {
    transform: rotate(45deg);
    background: var(--key-muted);
}

.fi-a {
    padding-bottom: 18px;
    font-size: .9rem;
    color: var(--txt-muted);
    line-height: 1.75;
}

/* ══ CTA BAND ═════════════════════════════════════════════════════════════════ */
#cta {
    background: var(--surface);
    border-top: 1px solid rgba(132,204,22,.2);
    border-bottom: 1px solid rgba(132,204,22,.2);
    padding: clamp(60px, 9vw, 100px) 0;
}
.cta-zone {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}
.cz-head {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}
.cz-sub {
    font-size: .95rem;
    color: var(--txt-muted);
    line-height: 1.65;
    max-width: 580px;
}
.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    flex-shrink: 0;
}
.cta-btns .btn {
    justify-content: center;
    min-width: 220px;
}

/* ══ FOOTER ═══════════════════════════════════════════════════════════════════ */
.site-ft {
    background: var(--canvas);
    border-top: 1px solid var(--surface-2);
    padding: clamp(48px, 7vw, 80px) 0 0;
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}

.ft-col-head {
    font-family: 'Red Hat Mono', monospace;
    font-size: .7rem;
    font-weight: 700;
    color: var(--key);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
}

.ft-brand { margin-bottom: 16px; }
.ft-brand a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.ft-brand a svg { width: 36px; height: 36px; }
.ft-brand-word {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    color: var(--txt);
}
.ft-brand-word em { color: var(--key); font-style: normal; }
.ft-about {
    font-size: .85rem;
    color: var(--txt-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ft-links a {
    font-size: .87rem;
    color: var(--txt-muted);
    transition: color var(--transition);
    line-height: 1.4;
}
.ft-links a:hover { color: var(--key); }

.ft-contact p {
    font-size: .87rem;
    color: var(--txt-muted);
    line-height: 1.65;
    margin-bottom: 8px;
}
.ft-contact a {
    color: var(--txt-muted);
    transition: color var(--transition);
}
.ft-contact a:hover { color: var(--key); }
.ft-contact strong { color: var(--txt); }

.ft-bar {
    border-top: 1px solid var(--surface-2);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.ft-copy {
    font-size: .8rem;
    color: var(--txt-muted);
}
.ft-bar-links {
    display: flex;
    gap: 20px;
}
.ft-bar-links a {
    font-size: .8rem;
    color: var(--txt-muted);
    transition: color var(--transition);
}
.ft-bar-links a:hover { color: var(--key); }

/* ══ STICKY CTA ═══════════════════════════════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--key);
    color: var(--canvas);
    font-family: 'Red Hat Display', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(132,204,22,.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s, background var(--transition);
    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(--key-lt);
}

/* ══ FADE-IN SCROLL ANIMATION ═════════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══ TRADES PAGE ══════════════════════════════════════════════════════════════ */
.page-hero {
    background: var(--surface);
    padding: clamp(48px, 8vw, 80px) 0;
    border-bottom: 1px solid var(--surface-3);
}
.page-hero .sec-label { margin-bottom: 10px; }
.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 1rem;
    color: var(--txt-muted);
    line-height: 1.65;
    max-width: 600px;
}

.trades-section {
    background: var(--canvas);
    padding: clamp(48px, 7vw, 80px) 0;
}
.trades-cat-group { margin-bottom: 52px; }
.trades-cat-group:last-child { margin-bottom: 0; }
.trades-cat-label {
    font-family: 'Red Hat Mono', monospace;
    font-size: .75rem;
    font-weight: 700;
    color: var(--key);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--surface-2);
}
.trades-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.tcat-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 18px 20px;
    border: 1px solid var(--surface-3);
    transition: border-color var(--transition), transform var(--transition);
}
.tcat-card:hover {
    border-color: var(--key);
    transform: translateY(-2px);
}
.tcat-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 4px;
}
.tcat-desc {
    font-size: .78rem;
    color: var(--txt-muted);
    line-height: 1.5;
}
.trades-cta-section {
    background: var(--surface);
    border-top: 1px solid var(--surface-3);
    padding: clamp(48px, 7vw, 80px) 0;
    text-align: center;
}
.trades-cta-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}
.trades-cta-section p {
    font-size: .95rem;
    color: var(--txt-muted);
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.trades-cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ══ LEGAL PAGES ══════════════════════════════════════════════════════════════ */
.legal-body {
    background: var(--canvas);
    padding: clamp(48px, 7vw, 80px) 0 clamp(60px, 8vw, 100px);
}
.legal-wrap {
    max-width: 780px;
    margin: 0 auto;
}
.legal-wrap h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}
.legal-updated {
    font-family: 'Red Hat Mono', monospace;
    font-size: .78rem;
    color: var(--txt-muted);
    margin-bottom: 36px;
    display: block;
}
.legal-wrap h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--key);
    margin: 32px 0 12px;
}
.legal-wrap p {
    font-size: .925rem;
    color: var(--txt-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}
.legal-wrap ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 14px;
}
.legal-wrap ul li {
    font-size: .925rem;
    color: var(--txt-muted);
    line-height: 1.65;
    margin-bottom: 6px;
}
.legal-wrap a {
    color: var(--key);
    text-decoration: underline;
}
.legal-wrap a:hover { color: var(--key-lt); }

/* ══ RESPONSIVE ═══════════════════════════════════════════════════════════════ */

/* ── 1100px ── */
@media (max-width: 1100px) {
    .proc-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .proc-steps::before { display: none; }

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

/* ── 960px ── */
@media (max-width: 960px) {
    .head-nav { display: none; }
    .head-phone { display: none; }
    .hamburger { display: flex; }

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

    .content-zone {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .cz-nav { display: none; }

    .cta-zone {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .cta-btns { flex-direction: row; flex-wrap: wrap; }
    .cta-btns .btn { min-width: unset; }
}

/* ── 860px ── */
@media (max-width: 860px) {
    #home {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hs-left {
        align-items: flex-start;
        padding: 56px clamp(20px, 5vw, 48px) 48px;
    }
    .hs-right {
        padding: 48px clamp(20px, 5vw, 48px) 56px;
    }
    .hs-left-inner,
    .hs-right-inner { max-width: 100%; }

    .rev-grid { grid-template-columns: 1fr; }
    .trades-grid { grid-template-columns: 1fr; }
}

/* ── 720px ── */
@media (max-width: 720px) {
    .wu-grid { grid-template-columns: 1fr; }
    .ft-grid { grid-template-columns: 1fr; gap: 28px; }
    .ft-bar { flex-direction: column; gap: 10px; text-align: center; }

    .proc-steps { grid-template-columns: 1fr; gap: 28px; }
}

/* ── 560px ── */
@media (max-width: 560px) {
    .hs-stats { flex-direction: row; gap: 18px; }
    .hs-btns { flex-direction: column; }
    .hs-btns .btn { text-align: center; justify-content: center; }

    .lf-body .form-row { grid-template-columns: 1fr; }

    .sticky-cta span { display: none; }
    .sticky-cta { padding: 14px; border-radius: 50%; }

    .trades-cat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
    .trades-cat-grid { grid-template-columns: 1fr; }
}
