*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:  #1B2A3E;
    --deep:  #131F2E;
    --mid:   #243348;
    --steel: #2E4160;
    --frost: #C8D8EC;
    --mist:  #8BA4BF;
    --gold:  #C49A5A;
    --white: #F0F4F8;
    --green-text: #7ABFA0;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--deep);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    min-height: 100vh;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 10% 20%, rgba(46,65,96,0.55) 0%, transparent 65%),
      radial-gradient(ellipse 40% 50% at 90% 70%, rgba(30,50,75,0.35) 0%, transparent 60%),
      radial-gradient(ellipse 30% 30% at 50% 90%, rgba(196,154,90,0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,216,236,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,216,236,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
  }

  * { position: relative; z-index: 1; }

  /* ── NAV ── */
  nav {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(200,216,236,0.08);
    position: sticky;
    top: 0;
    background: rgba(19,31,46,0.94);
    backdrop-filter: blur(14px);
    z-index: 100;
  }

  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--frost);
    text-decoration: none;
  }
  .logo em { font-style: italic; color: var(--gold); font-weight: 600; }

  .nav-btns { display: flex; gap: 8px; }

  .btn-ghost {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 400;
    color: var(--mist);
    background: none;
    border: 1px solid rgba(200,216,236,0.15);
    padding: 8px 14px; border-radius: 6px;
    cursor: pointer; text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-ghost:hover { color: var(--frost); border-color: rgba(200,216,236,0.3); }

  .btn-solid {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 500;
    color: var(--deep);
    background: var(--frost);
    border: none; padding: 8px 14px; border-radius: 6px;
    cursor: pointer; text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-solid:hover { background: var(--white); }

  /* ── SECTIONS ── */
  section {
    padding: 64px 24px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* ── HERO ── */
  .hero {
    padding-top: 72px;
    padding-bottom: 56px;
    text-align: center;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.85;
  }

  .eyebrow-line {
    width: 18px; height: 1px;
    background: var(--gold); opacity: 0.5;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 10vw, 58px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -1.5px;
    color: var(--frost);
    margin-bottom: 18px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--white);
    font-weight: 400;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.72;
    color: var(--mist);
    font-weight: 300;
    margin-bottom: 12px;
  }

  .hero-note {
    font-size: 12.5px;
    color: rgba(139,164,191,0.6);
    font-style: italic;
    margin-bottom: 36px;
    line-height: 1.6;
  }

  .hero-note strong {
    color: var(--green-text);
    font-style: normal;
    font-weight: 500;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-btns .btn-solid {
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-btns .btn-ghost {
    font-size: 14px;
    padding: 12px 36px;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-proof {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--mist);
  }

  .proof-check {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(122,191,160,0.15);
    border: 1px solid rgba(122,191,160,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 8px;
    color: var(--green-text);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* ── DIVIDER ── */
  .divider {
    border: none;
    border-top: 1px solid rgba(200,216,236,0.07);
    margin: 0 24px;
  }

  /* ── HOW IT WORKS ── */
  .how {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }

  .section-eyebrow-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    white-space: nowrap;
  }

  .section-eyebrow-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(196,154,90,0.2), transparent);
  }

  .how h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--frost);
    line-height: 1.1;
    margin-bottom: 36px;
  }

  .how h2 em { font-style: italic; font-weight: 400; color: var(--white); }

  .steps { display: flex; flex-direction: column; gap: 0; }

  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(200,216,236,0.06);
    align-items: start;
  }

  .step:last-child { border-bottom: none; }

  .step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3px;
    gap: 6px;
  }

  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    opacity: 0.7;
  }

  .step-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--steel);
    border: 1px solid var(--mist);
    opacity: 0.4;
  }

  .step-who {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
  }

  .step-who.you { color: var(--gold); }
  .step-who.us { color: #7BAFD4; }
  .step-who.choose { color: var(--green-text); }

  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--frost);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }

  .step-desc {
    font-size: 13px;
    color: var(--mist);
    line-height: 1.62;
    font-weight: 300;
  }

  /* ── BID CARD ── */
  .card-section {
    padding-top: 0;
    padding-bottom: 64px;
  }

  .bid-card {
    background: rgba(27,42,62,0.85);
    border: 1px solid rgba(200,216,236,0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }

  .bid-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(200,216,236,0.07);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .bid-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--frost);
    letter-spacing: -0.2px;
    line-height: 1.3;
  }

  .bid-card-sub {
    font-size: 11px;
    color: var(--mist);
    margin-top: 2px;
    line-height: 1.4;
  }

  .badge {
    font-size: 10px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(122,191,160,0.15);
    color: var(--green-text);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .bid-rows { padding: 14px 20px; display: flex; flex-direction: column; gap: 8px; }

  .bid-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid rgba(200,216,236,0.07);
    background: rgba(255,255,255,0.02);
  }

  .bid-row.top {
    border-color: rgba(196,154,90,0.25);
    background: rgba(196,154,90,0.04);
  }

  .bid-row-left { display: flex; align-items: center; gap: 10px; }

  .bid-av {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600; color: white;
    flex-shrink: 0;
  }
  .av1 { background: linear-gradient(135deg, #2E5F8A, #4A8FBF); }
  .av2 { background: linear-gradient(135deg, #2E6B4F, #4A9E74); }
  .av3 { background: linear-gradient(135deg, #6B4A2E, #9E7A4A); }

  .bid-name { font-size: 12px; font-weight: 500; color: var(--frost); margin-bottom: 2px; }
  .bid-rating { font-size: 10px; color: var(--mist); }
  .bid-stars { color: var(--gold); font-size: 9px; }

  .bid-right { text-align: right; flex-shrink: 0; }
  .top-flag { font-size: 9px; font-weight: 500; color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 2px; }
  .bid-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 700;
    color: var(--frost);
  }
  .bid-row.top .bid-price { color: var(--gold); }
  .bid-type { font-size: 10px; color: var(--mist); margin-top: 1px; }

  .bid-card-footer {
    padding: 14px 20px;
    border-top: 1px solid rgba(200,216,236,0.07);
    display: flex;
    gap: 8px;
  }

  .bid-card-footer .btn-solid {
    flex: 1; text-align: center;
    font-size: 13px; padding: 10px;
    border-radius: 7px;
  }

  .bid-card-footer .btn-ghost {
    font-size: 13px; padding: 10px 16px;
    border-radius: 7px;
  }

  /* ── TESTIMONIALS ── */
  .t-section { padding-top: 0; padding-bottom: 64px; }

  .t-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 7vw, 36px);
    font-weight: 600;
    letter-spacing: -0.8px;
    color: var(--frost);
    line-height: 1.12;
    margin-bottom: 28px;
  }

  .t-section h2 em { font-style: italic; font-weight: 400; }

  .t-cards { display: flex; flex-direction: column; gap: 12px; }

  .t-card {
    background: rgba(27,42,62,0.7);
    border: 1px solid rgba(200,216,236,0.08);
    border-radius: 12px;
    padding: 18px 20px;
  }

  .t-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--mist);
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .t-author { display: flex; align-items: center; gap: 10px; }

  .t-av {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; color: white;
    flex-shrink: 0;
  }
  .tav1 { background: linear-gradient(135deg, #2E5F8A, #4A8FBF); }
  .tav2 { background: linear-gradient(135deg, #6B4A2E, #9E7A4A); }

  .t-name { font-size: 12px; font-weight: 500; color: var(--frost); }
  .t-detail { font-size: 11px; color: var(--mist); }

  /* ── CTA ── */
  .cta-section {
    padding-top: 0;
    padding-bottom: 80px;
    text-align: center;
  }

  .cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 8vw, 44px);
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--frost);
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .cta-section h2 em { font-style: italic; font-weight: 400; color: var(--white); }

  .cta-section p {
    font-size: 14px;
    color: var(--mist);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .cta-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .cta-btns .btn-solid {
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .cta-btns .btn-ghost {
    font-size: 14px;
    padding: 12px 36px;
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .cta-fine {
    margin-top: 18px;
    font-size: 11px;
    color: rgba(139,164,191,0.35);
    letter-spacing: 0.3px;
  }

  /* ── FOOTER ── */
  .disclaimer-section {
    border-top: 1px solid rgba(200,216,236,0.06);
    padding: 32px 24px;
    max-width: 600px;
    margin: 0 auto;
  }

  .disclaimer-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(139,164,191,0.35);
    margin-bottom: 14px;
  }

  .disclaimer-text {
    font-size: 11px;
    line-height: 1.8;
    color: rgba(139,164,191,0.3);
    font-weight: 300;
  }

  .disclaimer-text p {
    margin-bottom: 8px;
  }

  .disclaimer-text p:last-child { margin-bottom: 0; }

  footer {
    border-top: 1px solid rgba(200,216,236,0.07);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: rgba(200,216,236,0.25);
    text-decoration: none;
  }
  .footer-logo em { font-style: italic; color: rgba(196,154,90,0.35); }

  .footer-copy {
    font-size: 11px;
    color: rgba(139,164,191,0.25);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero { animation: fadeUp 0.7s ease both; }
  .how { animation: fadeUp 0.7s 0.1s ease both; }
  .card-section { animation: fadeUp 0.7s 0.2s ease both; }
  .t-section { animation: fadeUp 0.7s 0.3s ease both; }
  .cta-section { animation: fadeUp 0.7s 0.4s ease both; }
