/* ═══════════════════════════════════════════════════════════
 *  css/pages/sell.css — Land of Profits
 *  Page-specific styles for sell.html.
 * ═══════════════════════════════════════════════════════════ */

*,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--sans);
        background: var(--cream);
        color: var(--ink);
        font-size: 15px;
        line-height: 1.65;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      button {
        font-family: var(--sans);
        cursor: pointer;
        border: none;
      }

      /* ── FLOAT BUTTONS ───────────────────────── */
      .float-left {
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg) translateX(-50%);
        transform-origin: left center;
        z-index: 100;
      }
      .float-right {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotate(90deg) translateX(50%);
        transform-origin: right center;
        z-index: 100;
      }
      .float-btn {
        background: var(--mocha);
        color: var(--white);
        padding: 10px 20px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        white-space: nowrap;
      }

      /* ── HERO ─────────────────────────────────── */
      #hero {
        min-height: 100vh;
        background: var(--navy);
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 100px 5% 80px;
        gap: 72px;
        position: relative;
        overflow: hidden;
      }
      #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 60% 70% at 80% 50%,
          rgba(76, 55, 36, 0.18) 0%,
          transparent 70%
        );
      }
      #hero::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 900'%3E%3Crect width='700' height='900' fill='none'/%3E%3Ccircle cx='350' cy='450' r='320' fill='none' stroke='%23C9A96E' stroke-width='0.5' stroke-opacity='0.12'/%3E%3Ccircle cx='350' cy='450' r='220' fill='none' stroke='%23C9A96E' stroke-width='0.4' stroke-opacity='0.09'/%3E%3Ccircle cx='350' cy='450' r='120' fill='none' stroke='%23C9A96E' stroke-width='0.3' stroke-opacity='0.07'/%3E%3Cline x1='50' y1='0' x2='50' y2='900' stroke='%23C9A96E' stroke-width='0.4' stroke-opacity='0.06'/%3E%3Cline x1='650' y1='0' x2='650' y2='900' stroke='%23C9A96E' stroke-width='0.4' stroke-opacity='0.06'/%3E%3C/svg%3E")
          center/cover;
        opacity: 0.7;
        pointer-events: none;
      }
      .hero-inner {
        max-width: 1240px;
        margin: 0 auto;
        width: 100%;
        display: contents;
      }
      .hero-left {
        position: relative;
        z-index: 2;
      }
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(201, 169, 110, 0.1);
        border: 1px solid rgba(201, 169, 110, 0.25);
        color: var(--gold);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 20px;
        margin-bottom: 24px;
      }
      .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
      }
      h1.hero-title {
        font-family: var(--serif);
        font-size: clamp(44px, 5vw, 66px);
        font-weight: 600;
        line-height: 1.06;
        letter-spacing: -0.5px;
        color: var(--white);
        margin-bottom: 12px;
      }
      h1.hero-title em {
        font-style: italic;
        color: var(--gold);
      }
      .hero-sub {
        font-family: var(--serif);
        font-size: clamp(16px, 1.8vw, 20px);
        font-weight: 400;
        font-style: italic;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 24px;
      }
      .hero-desc {
        font-size: 15px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.75;
        max-width: 480px;
        margin-bottom: 36px;
      }
      .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 48px;
      }
      .btn-hero-gold {
        background: var(--gold);
        color: var(--navy);
        padding: 14px 32px;
        border-radius: var(--r6);
        font-size: 14px;
        font-weight: 600;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-hero-gold:hover {
        background: var(--gold2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
      }
      .btn-hero-gold svg {
        width: 16px;
        height: 16px;
        stroke: var(--navy);
        fill: none;
        stroke-width: 2;
      }
      .btn-hero-ghost {
        background: transparent;
        color: rgba(255, 255, 255, 0.75);
        padding: 13px 26px;
        border-radius: var(--r6);
        font-size: 14px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-hero-ghost:hover {
        border-color: rgba(255, 255, 255, 0.45);
        color: var(--white);
      }
      .btn-hero-ghost svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .hero-trust {
        display: flex;
        gap: 20px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }
      .ht-item {
        text-align: center;
      }
      .ht-num {
        font-family: var(--serif);
        font-size: 28px;
        font-weight: 600;
        color: var(--gold);
        line-height: 1;
      }
      .ht-lbl {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.38);
        letter-spacing: 0.4px;
        margin-top: 3px;
      }
      .ht-div {
        width: 1px;
        height: 36px;
        background: rgba(255, 255, 255, 0.09);
      }

      /* Hero right — valuation card */
      .hero-right {
        position: relative;
        z-index: 2;
      }
      .val-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(201, 169, 110, 0.18);
        border-radius: var(--r20);
        padding: 36px;
        backdrop-filter: blur(8px);
      }
      .val-card-title {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 6px;
      }
      .val-card-sub {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 28px;
        font-weight: 300;
      }
      .val-field {
        margin-bottom: 16px;
      }
      .val-field label {
        display: block;
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
        font-weight: 500;
        margin-bottom: 6px;
      }
      .val-input {
        width: 100%;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--r6);
        padding: 12px 14px;
        color: rgba(255, 255, 255, 0.85);
        font-family: var(--sans);
        font-size: 14px;
        outline: none;
        transition: border-color 0.15s;
        appearance: none;
      }
      .val-input:focus {
        border-color: rgba(201, 169, 110, 0.45);
        background: rgba(255, 255, 255, 0.09);
      }
      .val-input option {
        background: var(--navy2);
      }
      .val-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .btn-val {
        width: 100%;
        background: var(--gold);
        color: var(--navy);
        padding: 14px;
        border-radius: var(--r10);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: all 0.15s;
        margin-top: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
      }
      .btn-val:hover {
        background: var(--gold2);
      }
      .btn-val svg {
        width: 16px;
        height: 16px;
        stroke: var(--navy);
        fill: none;
        stroke-width: 2;
      }
      .val-footer {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
      }
      .val-footer svg {
        width: 14px;
        height: 14px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
      }
      .val-footer p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.35);
        line-height: 1.5;
      }

      /* ── BREADCRUMB + PAGE INTRO ─────────────── */
      .page-intro {
        background: var(--mocha3);
        padding: 16px 40px;
      }
      .pi-inner {
        max-width: 1240px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .breadcrumb a {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.3);
        transition: color 0.15s;
      }
      .breadcrumb a:hover {
        color: var(--gold);
      }
      .breadcrumb svg {
        width: 10px;
        height: 10px;
        stroke: rgba(255, 255, 255, 0.15);
        fill: none;
        stroke-width: 2;
      }
      .breadcrumb span {
        font-size: 12px;
        color: var(--gold);
      }

      /* ── SECTION COMMON ──────────────────────── */
      .section {
        padding: 88px 40px;
      }
      .section-inner {
        max-width: 1240px;
        margin: 0 auto;
      }
      .sec-eyebrow {
        display: inline-block;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--mocha);
        font-weight: 600;
        margin-bottom: 14px;
      }
      .sec-eyebrow.light {
        color: var(--gold);
      }
      h2.sec-title {
        font-family: var(--serif);
        font-size: clamp(30px, 3.2vw, 46px);
        font-weight: 600;
        letter-spacing: -0.4px;
        line-height: 1.1;
        color: var(--ink);
        margin-bottom: 14px;
      }
      h2.sec-title.light {
        color: var(--white);
      }
      h2.sec-title em {
        font-style: italic;
        color: var(--mocha);
      }
      h2.sec-title.light em {
        color: var(--gold);
      }
      .sec-sub {
        font-size: 15px;
        font-weight: 300;
        color: var(--slate);
        max-width: 540px;
        line-height: 1.75;
      }
      .sec-sub.light {
        color: rgba(255, 255, 255, 0.5);
      }
      .text-center {
        text-align: center;
      }
      .text-center .sec-sub {
        margin: 0 auto;
      }

      /* ── WHY DIFFERENT — 3 PILLARS ───────────── */
      #why {
        background: var(--white);
      }
      .pillars-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 52px;
      }
      .pillar {
        background: var(--cream);
        border: 1px solid var(--fog);
        border-radius: var(--r20);
        padding: 36px 30px;
        transition: all 0.25s;
        position: relative;
        overflow: hidden;
      }
      .pillar::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
      }
      .pillar:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: rgba(201, 169, 110, 0.3);
      }
      .pillar:hover::before {
        transform: scaleX(1);
      }
      .pillar-num {
        font-family: var(--serif);
        font-size: 52px;
        font-weight: 700;
        color: rgba(201, 169, 110, 0.18);
        line-height: 1;
        margin-bottom: 16px;
      }
      .pillar-icon {
        width: 48px;
        height: 48px;
        background: var(--sand);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
      }
      .pillar-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--mocha);
        fill: none;
        stroke-width: 1.8;
      }
      .pillar h3 {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 10px;
      }
      .pillar p {
        font-size: 14px;
        color: var(--slate);
        line-height: 1.7;
        font-weight: 300;
        margin-bottom: 20px;
      }
      .pillar-link {
        font-size: 13px;
        font-weight: 500;
        color: var(--mocha);
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .pillar-link svg {
        width: 13px;
        height: 13px;
        stroke: var(--mocha);
        fill: none;
        stroke-width: 2;
        transition: transform 0.2s;
      }
      .pillar:hover .pillar-link svg {
        transform: translateX(4px);
      }

      /* ── HOW IT WORKS ─────────────────────────── */
      #how {
        background: var(--navy);
        padding: 88px 40px;
      }
      .steps-row {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        margin-top: 56px;
        position: relative;
      }
      .steps-row::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: rgba(201, 169, 110, 0.15);
        z-index: 0;
      }
      .step {
        text-align: center;
        position: relative;
        z-index: 1;
        padding: 0 12px;
      }
      .step-circle {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s;
      }
      .step:hover .step-circle {
        background: rgba(201, 169, 110, 0.12);
        border-color: rgba(201, 169, 110, 0.3);
      }
      .step.active .step-circle {
        background: var(--gold);
        border-color: var(--gold);
      }
      .step-circle svg {
        width: 22px;
        height: 22px;
        stroke: rgba(255, 255, 255, 0.4);
        fill: none;
        stroke-width: 1.8;
      }
      .step.active .step-circle svg {
        stroke: var(--navy);
      }
      .step h4 {
        font-family: var(--serif);
        font-size: 15px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 7px;
      }
      .step p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.38);
        line-height: 1.6;
        font-weight: 300;
      }

      /* ── WHAT'S INCLUDED ──────────────────────── */
      #included {
        background: var(--cream);
      }
      .included-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 32px;
        margin-top: 52px;
        align-items: start;
      }
      /* Left nav */
      .inc-nav {
        position: sticky;
        top: 96px;
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r14);
        overflow: hidden;
      }
      .inc-nav-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        border-bottom: 1px solid var(--fog);
        cursor: pointer;
        transition: all 0.15s;
        font-size: 13px;
        font-weight: 500;
        color: var(--slate);
      }
      .inc-nav-item:last-child {
        border-bottom: none;
      }
      .inc-nav-item:hover {
        background: var(--smoke);
        color: var(--mocha);
      }
      .inc-nav-item.active {
        background: var(--sand);
        color: var(--mocha);
        border-left: 3px solid var(--mocha);
      }
      .inc-nav-item svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
      }
      /* Content area */
      .inc-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .inc-block {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r14);
        overflow: hidden;
      }
      .inc-block-hdr {
        padding: 20px 24px;
        border-bottom: 1px solid var(--fog);
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
      }
      .inc-block-hdr h3 {
        font-family: var(--serif);
        font-size: 18px;
        font-weight: 600;
        color: var(--ink);
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .inc-block-hdr h3 .inc-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .inc-block-hdr h3 svg.chevron {
        width: 16px;
        height: 16px;
        stroke: var(--ghost);
        fill: none;
        stroke-width: 2;
        transition: transform 0.2s;
        flex-shrink: 0;
      }
      .inc-block-hdr.open svg.chevron {
        transform: rotate(180deg);
      }
      .inc-block-hdr .count {
        font-size: 11px;
        font-weight: 400;
        color: var(--ghost);
        background: var(--smoke);
        padding: 3px 8px;
        border-radius: 20px;
      }
      .inc-body {
        padding: 20px 24px;
        border-top: 1px solid var(--fog);
      }
      .inc-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .inc-item {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        font-size: 13px;
        color: var(--ink);
        line-height: 1.5;
      }
      .inc-item svg {
        width: 16px;
        height: 16px;
        stroke: var(--ok);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
        margin-top: 1px;
      }

      /* ── VALUATION CTA BAND ──────────────────── */
      #val-cta {
        background: var(--mocha);
        padding: 72px 40px;
        text-align: center;
      }
      .vc-inner {
        max-width: 620px;
        margin: 0 auto;
      }
      .vc-inner h2 {
        font-family: var(--serif);
        font-size: 40px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 14px;
      }
      .vc-inner p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.55);
        font-weight: 300;
        margin-bottom: 36px;
        line-height: 1.7;
      }
      .vc-actions {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
      }
      .btn-cta-white {
        background: var(--white);
        color: var(--mocha);
        padding: 14px 32px;
        border-radius: var(--r6);
        font-size: 14px;
        font-weight: 600;
        transition: all 0.15s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-cta-white:hover {
        background: var(--cream);
        transform: translateY(-2px);
      }
      .btn-cta-white svg {
        width: 16px;
        height: 16px;
        stroke: var(--mocha);
        fill: none;
        stroke-width: 2;
      }
      .btn-cta-outline-w {
        background: transparent;
        color: rgba(255, 255, 255, 0.8);
        padding: 13px 28px;
        border-radius: var(--r6);
        font-size: 14px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        transition: all 0.15s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-cta-outline-w:hover {
        border-color: rgba(255, 255, 255, 0.6);
        color: var(--white);
      }
      .btn-cta-outline-w svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .vc-trust {
        display: flex;
        justify-content: center;
        gap: 28px;
        margin-top: 36px;
        flex-wrap: wrap;
      }
      .vct {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.45);
      }
      .vct svg {
        width: 14px;
        height: 14px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
      }

      /* ── TESTIMONIALS ────────────────────────── */
      #testimonials {
        background: var(--white);
      }
      .test-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 48px;
      }
      .test-card {
        background: var(--cream);
        border: 1px solid var(--fog);
        border-radius: var(--r14);
        padding: 28px 26px;
        transition: all 0.2s;
      }
      .test-card:hover {
        border-color: rgba(201, 169, 110, 0.3);
        box-shadow: var(--shadow-md);
      }
      .test-stars {
        display: flex;
        gap: 3px;
        margin-bottom: 14px;
      }
      .test-stars svg {
        width: 13px;
        height: 13px;
        fill: var(--gold);
      }
      .test-quote {
        font-size: 14px;
        color: #3a3830;
        line-height: 1.7;
        font-weight: 300;
        margin-bottom: 18px;
        font-style: italic;
      }
      .test-author {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .test-ava {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
        flex-shrink: 0;
      }
      .test-name {
        font-size: 13px;
        font-weight: 500;
        color: var(--ink);
      }
      .test-role {
        font-size: 11px;
        color: var(--ghost);
      }
      .test-tag {
        display: inline-block;
        font-size: 10px;
        padding: 2px 8px;
        border-radius: 20px;
        font-weight: 600;
        margin-top: 4px;
      }

      /* ── FAQ ──────────────────────────────────── */
      #faq {
        background: var(--cream);
        padding: 88px 40px;
      }
      .faq-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        margin-top: 48px;
        align-items: start;
      }
      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .faq-item {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r10);
        overflow: hidden;
      }
      .faq-q {
        padding: 18px 20px;
        font-size: 14px;
        font-weight: 500;
        color: var(--ink);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        transition: background 0.15s;
      }
      .faq-q:hover {
        background: var(--smoke);
      }
      .faq-q svg {
        width: 16px;
        height: 16px;
        stroke: var(--ghost);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
        transition: transform 0.2s;
      }
      .faq-item.open .faq-q svg {
        transform: rotate(180deg);
        stroke: var(--mocha);
      }
      .faq-item.open .faq-q {
        color: var(--mocha);
      }
      .faq-a {
        display: none;
        padding: 0 20px 18px;
        font-size: 13px;
        color: var(--slate);
        line-height: 1.7;
        font-weight: 300;
      }
      .faq-item.open .faq-a {
        display: block;
      }
      /* Contact panel */
      .faq-contact {
        background: var(--mocha);
        border-radius: var(--r20);
        padding: 36px 30px;
      }
      .faq-contact h3 {
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 10px;
      }
      .faq-contact p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 300;
        margin-bottom: 28px;
        line-height: 1.7;
      }
      .contact-options {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .contact-opt {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: var(--r10);
        cursor: pointer;
        transition: background 0.15s;
      }
      .contact-opt:hover {
        background: rgba(255, 255, 255, 0.12);
      }
      .co-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(201, 169, 110, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .co-icon svg {
        width: 18px;
        height: 18px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
      }
      .co-label {
        font-size: 13px;
        font-weight: 500;
        color: var(--white);
      }
      .co-sub {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.4);
      }

      /* ── NEWSLETTER ──────────────────────────── */
      #newsletter {
        background: var(--navy);
        padding: 64px 40px;
        text-align: center;
      }
      .nl-inner {
        max-width: 520px;
        margin: 0 auto;
      }
      .nl-inner h2 {
        font-family: var(--serif);
        font-size: 36px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 10px;
      }
      .nl-inner p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 300;
        margin-bottom: 28px;
      }
      .nl-form {
        display: flex;
        gap: 10px;
      }
      .nl-input {
        flex: 1;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: var(--r6);
        color: var(--white);
        font-family: var(--sans);
        font-size: 14px;
        outline: none;
      }
      .nl-input::placeholder {
        color: rgba(255, 255, 255, 0.3);
      }
      .nl-input:focus {
        border-color: rgba(201, 169, 110, 0.4);
      }
      .btn-nl {
        background: var(--gold);
        color: var(--navy);
        padding: 12px 24px;
        border-radius: var(--r6);
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        transition: all 0.15s;
      }
      .btn-nl:hover {
        background: var(--gold2);
      }

      /* ── FOOTER ──────────────────────────────── */
      footer {
        background: var(--navy);
        border-top: 1px solid rgba(201, 169, 110, 0.1);
        padding: 64px 40px 0;
      }
      .footer-inner {
        max-width: 1240px;
        margin: 0 auto;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .footer-brand p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.38);
        line-height: 1.75;
        margin-top: 14px;
        font-weight: 300;
        max-width: 240px;
      }
      .footer-social {
        display: flex;
        gap: 8px;
        margin-top: 20px;
      }
      .social-btn {
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.35);
        transition: all 0.15s;
        cursor: pointer;
      }
      .social-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
      .social-btn svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .footer-col h5 {
        font-size: 10px;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.22);
        font-weight: 500;
        margin-bottom: 18px;
      }
      .footer-col a {
        display: block;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 10px;
        transition: color 0.15s;
        font-weight: 300;
      }
      .footer-col a:hover {
        color: rgba(255, 255, 255, 0.8);
      }
      .footer-bottom {
        padding: 22px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
      }
      .footer-bottom p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.22);
      }
      .footer-badges {
        display: flex;
        gap: 7px;
      }
      .fbadge {
        padding: 3px 9px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 5px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.25);
        letter-spacing: 0.5px;
      }

      /* ── MODAL ───────────────────────────────── */
      .modal-overlay {
        position: fixed;
        inset: 0;
        z-index: 500;
        background: rgba(13, 27, 46, 0.65);
        backdrop-filter: blur(4px);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
      }
      .modal-overlay.open {
        display: flex;
      }
      .modal {
        background: var(--white);
        border-radius: var(--r20);
        padding: 36px;
        width: 100%;
        max-width: 480px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
      }
      .modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 30px;
        height: 30px;
        background: var(--smoke);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }
      .modal-close svg {
        width: 13px;
        height: 13px;
        stroke: var(--slate);
        fill: none;
        stroke-width: 2;
      }
      .modal h3 {
        font-family: var(--serif);
        font-size: 24px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 6px;
      }
      .modal p {
        font-size: 13px;
        color: var(--slate);
        margin-bottom: 22px;
      }
      .form-group {
        margin-bottom: 14px;
      }
      .form-group label {
        display: block;
        font-size: 10.5px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: var(--ghost);
        font-weight: 600;
        margin-bottom: 5px;
      }
      .form-input {
        width: 100%;
        padding: 11px 13px;
        background: var(--smoke);
        border: 1px solid var(--fog);
        border-radius: var(--r6);
        color: var(--ink);
        font-size: 13.5px;
        font-family: var(--sans);
        outline: none;
        transition: border-color 0.15s;
      }
      .form-input:focus {
        border-color: rgba(76, 55, 36, 0.4);
        background: var(--white);
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .btn-submit {
        width: 100%;
        background: var(--mocha);
        color: var(--white);
        padding: 13px;
        border: none;
        border-radius: var(--r10);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: background 0.15s;
        margin-top: 6px;
      }
      .btn-submit:hover {
        background: var(--mocha2);
      }
      .modal-note {
        font-size: 11px;
        color: var(--ghost);
        text-align: center;
        margin-top: 10px;
        line-height: 1.6;
      }

      /* ── RESPONSIVE ──────────────────────────── */
      @media (max-width: 1100px) {
        #hero {
          grid-template-columns: 1fr;
          gap: 48px;
          padding: 100px 5% 64px;
        }
        #hero::after {
          width: 100%;
          opacity: 0.25;
        }
        .pillars-grid {
          grid-template-columns: 1fr 1fr;
        }
        .steps-row {
          grid-template-columns: 1fr 1fr 1fr;
          gap: 24px;
        }
        .steps-row::before {
          display: none;
        }
        .included-layout {
          grid-template-columns: 1fr;
        }
        .inc-nav {
          position: static;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr 1fr;
        }
        .footer-brand {
          grid-column: span 3;
        }
      }
      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }
        #nav {
          padding: 0 20px;
        }
        .pillars-grid {
          grid-template-columns: 1fr;
        }
        .steps-row {
          grid-template-columns: 1fr 1fr;
        }
        .inc-list {
          grid-template-columns: 1fr;
        }
        .test-grid {
          grid-template-columns: 1fr;
        }
        .faq-layout {
          grid-template-columns: 1fr;
        }
        .section {
          padding: 60px 20px;
        }
        #hero {
          padding: 90px 5% 56px;
        }
        #how {
          padding: 60px 20px;
        }
        #val-cta {
          padding: 56px 20px;
        }
        #faq {
          padding: 60px 20px;
        }
        .nl-form {
          flex-direction: column;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 28px;
        }
        .footer-brand {
          grid-column: span 2;
        }
        footer {
          padding: 48px 20px 0;
        }
      }