:root {
      --bg: #f5f5f7;
      --surface: #ffffff;
      --ink: #1d1d1f;
      --muted: #6e6e73;
      --line: #d2d2d7;
      --blue: #1a2332;
      --blue-dark: #2c3a4f;
      --blue-ink: #1a2332;
      --gold: #c9a227;
      --gold-soft: #f6efd4;
      --green: #248a3d;
      --shadow: 0 8px 30px rgba(0,0,0,.06);
      --radius: 18px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font-family: inherit; }
    .wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

    /* Header */
    header {
      position: sticky; top: 0; z-index: 50;
      background: rgba(245,245,247,.86);
      backdrop-filter: saturate(180%) blur(16px);
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .nav {
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.02em; }
    .brand-text { white-space: nowrap; }
    .logo {
      width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
      display: block; object-fit: cover;
    }
    .nav-links { display: flex; gap: 22px; align-items: center; color: var(--muted); font-size: 14px; font-weight: 500; }
    .nav-links a:hover { color: var(--ink); }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: var(--blue); color: #fff; border: 0; cursor: pointer;
      border-radius: 980px; padding: 12px 20px; font-weight: 600; font-size: 15px;
      transition: transform .15s ease, background .15s ease;
    }
    .btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
    .btn.ghost { background: #fff; color: var(--blue); border: 1px solid #d9cc9a; }
    .btn.block { width: 100%; }
    .btn.sm { padding: 9px 14px; font-size: 13px; }

    /* Hero */
    .hero { padding: 56px 0 28px; }
    .hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--blue-ink); font-weight: 600; font-size: 13px;
      background: var(--gold-soft); padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
    }
    h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -.035em; margin-bottom: 16px; }
    .lede { font-size: 19px; color: var(--muted); max-width: 560px; margin-bottom: 26px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
    .badges { display: flex; flex-wrap: wrap; gap: 10px; }
    .badge {
      background: #fff; border: 1px solid var(--line); border-radius: 999px;
      padding: 8px 12px; font-size: 13px; font-weight: 600; display: flex; gap: 7px; align-items: center;
    }
    .badge i { color: var(--green); }
    .hero-card {
      background: #fff; border-radius: 28px; box-shadow: var(--shadow);
      padding: 28px; border: 1px solid rgba(0,0,0,.04);
    }
    .hero-card h2 { font-size: 20px; letter-spacing: -.02em; margin-bottom: 6px; }
    .hero-card p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
    .quote-live { background: #f5f5f7; border-radius: 12px; padding: 12px; margin-bottom: 12px; }
    .quote-live h3 { font-size: 12px; margin-bottom: 8px; }
    .quote-live ul { list-style: none; max-height: 160px; overflow: auto; }
    .quote-live li { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 4px 0; cursor: pointer; }
    .quote-live .prices { margin-top: 4px; }
    .field { margin-bottom: 12px; }
    .field label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: #424245; }
    .field input, .field select, .field textarea {
      width: 100%; border: 1px solid var(--line); background: #fafafa; border-radius: 12px;
      padding: 11px 12px; font-size: 15px; outline: none;
    }
    .field select {
      appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
    }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background: #fff; }
    .fine { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }

    /* Sections */
    section { padding: 56px 0; }
    .section-head { text-align: center; margin-bottom: 28px; }
    .section-head h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -.03em; margin-bottom: 8px; }
    .section-head p { color: var(--muted); max-width: 640px; margin: 0 auto; }

    /* Pricing controls */
    .controls {
      background: #fff; border: 1px solid var(--line); border-radius: 20px;
      padding: 16px; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center;
      margin-bottom: 22px; box-shadow: var(--shadow);
    }
    .search { position: relative; }
    .search input {
      width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px 12px 42px;
      font-size: 15px; background: #fafafa; outline: none;
    }
    .search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #86868b; }
    .tabs { display: flex; background: #f2f2f4; border-radius: 12px; padding: 4px; }
    .tab {
      border: 0; background: transparent; padding: 10px 14px; border-radius: 10px;
      font-weight: 600; font-size: 13px; cursor: pointer; color: #424245; white-space: nowrap;
    }
    .tab.active { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.08); }

    .series-title { margin: 28px 0 14px; font-size: 22px; letter-spacing: -.02em; }
    .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .card {
      background: #fff; border-radius: var(--radius); padding: 18px 18px 16px;
      border: 1px solid rgba(0,0,0,.05); box-shadow: 0 4px 18px rgba(0,0,0,.04);
      display: flex; flex-direction: column; gap: 12px;
    }
    .card h3 { font-size: 16px; letter-spacing: -.02em; }
    .callout {
      background: #fff;
      border-radius: var(--radius);
      padding: 18px 20px;
      border: 1px solid rgba(0,0,0,.05);
      box-shadow: 0 4px 18px rgba(0,0,0,.04);
      margin: 8px 0 20px;
      max-width: 560px;
    }
    .callout h2 { font-size: 18px; letter-spacing: -.02em; margin-bottom: 6px; }
    .callout p { font-size: 15px; color: var(--ink); margin: 0; line-height: 1.5; }
    .pill { font-size: 11px; font-weight: 700; color: var(--blue-ink); background: var(--gold-soft); display: inline-block; padding: 3px 8px; border-radius: 999px; }
    .prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .price-box { background: #f5f5f7; border-radius: 12px; padding: 8px 6px; text-align: center; }
    .price-box span { display: block; font-size: 11px; color: var(--muted); font-weight: 600; }
    .price-box strong { font-size: 16px; letter-spacing: -.02em; }
    .empty { text-align: center; color: var(--muted); padding: 40px 12px; }

    .last-updated { font-size: 13px; color: var(--muted); margin: 0 0 16px; }
    .price-list { padding: 8px 0 40px; }
    .price-list h2 { font-size: 22px; letter-spacing: -.02em; margin-bottom: 8px; }
    .price-list h3 { font-size: 16px; letter-spacing: -.02em; margin: 8px 0 8px; }
    .price-table-wrap {
      overflow-x: auto;
      background: #fff;
      border: 1px solid rgba(0,0,0,.05);
      border-radius: var(--radius);
      box-shadow: 0 4px 18px rgba(0,0,0,.04);
      margin-bottom: 18px;
    }
    .price-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 14px; }
    .price-table caption { caption-side: top; text-align: left; padding: 12px 14px 0; font-size: 12px; color: var(--muted); }
    .price-table th, .price-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); }
    .price-table thead th { font-size: 12px; color: var(--muted); font-weight: 600; background: #f5f5f7; }
    .price-table tbody th { font-weight: 600; }
    .price-table td { font-variant-numeric: tabular-nums; font-weight: 700; }
    .conditions { margin: 0 0 8px; padding-left: 18px; max-width: 640px; }
    .conditions li { margin: 6px 0; font-size: 14px; color: var(--ink); }

    /* Steps */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .step {
      background: #fff; border-radius: 22px; padding: 24px; border: 1px solid rgba(0,0,0,.05);
    }
    .num {
      width: 36px; height: 36px; border-radius: 10px; background: var(--ink); color: #fff;
      display: grid; place-items: center; font-weight: 700; margin-bottom: 14px;
    }
    .step h3 { margin-bottom: 8px; letter-spacing: -.02em; }

    /* Areas */
    .areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .area {
      background: #fff; border-radius: 16px; padding: 18px 16px; border: 1px solid rgba(0,0,0,.05);
      font-weight: 600;
    }
    .area small { display: block; color: var(--muted); font-weight: 500; margin-top: 4px; }

    /* FAQ / extra SEO */
    .faq { display: grid; gap: 10px; max-width: 820px; margin: 0 auto; }
    details {
      background: #fff; border-radius: 14px; padding: 16px 18px; border: 1px solid rgba(0,0,0,.05);
    }
    summary { cursor: pointer; font-weight: 600; list-style: none; }
    summary::-webkit-details-marker { display: none; }
    details p { color: var(--muted); margin-top: 8px; }

    footer { padding: 40px 0 80px; color: var(--muted); font-size: 14px; border-top: 1px solid var(--line); }
    .foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

    /* Chat widget */
    #chat-fab {
      position: fixed; right: 20px; bottom: 20px; z-index: 80;
      width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer;
      background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(26,35,50,.35);
    }
    #chat-panel {
      position: fixed; right: 20px; bottom: 88px; width: min(360px, calc(100vw - 24px));
      background: #fff; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,.18);
      display: none; z-index: 80; overflow: hidden; border: 1px solid rgba(0,0,0,.06);
    }
    #chat-panel.open { display: flex; flex-direction: column; height: 460px; }
    .chat-head { background: var(--ink); color: #fff; padding: 14px 16px; font-weight: 600; display: flex; justify-content: space-between; }
    .chat-head button { background: none; border: 0; color: #fff; font-size: 18px; cursor: pointer; }
    .chat-body { flex: 1; padding: 14px; overflow-y: auto; background: #f7f7f8; display: flex; flex-direction: column; gap: 10px; }
    .bubble { max-width: 85%; padding: 10px 12px; border-radius: 14px; font-size: 14px; }
    .bot { background: #fff; align-self: flex-start; }
    .me { background: var(--gold-soft); align-self: flex-end; }
    .chat-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); }
    .chat-form input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 10px 12px; outline: none; }
    .chat-form button { border: 0; background: var(--blue); color: #fff; border-radius: 999px; padding: 10px 14px; font-weight: 600; cursor: pointer; }

    .capture { position: fixed; inset: 0; z-index: 90; background: rgba(29,29,31,.4); display: grid; place-items: center; padding: 16px; }
    .capture[hidden] { display: none; }
    .capture-card { width: min(440px, 100%); background: #fff; border-radius: 24px; padding: 24px; box-shadow: var(--shadow); }
    .capture-card h2 { font-size: 22px; margin-bottom: 8px; }
    .capture-card .summary { background: #f5f5f7; border-radius: 12px; padding: 12px; font-size: 14px; margin: 12px 0; }
    .capture-success { text-align: center; }
    .err { color: #c41e3a; font-size: 14px; }

    @media (max-width: 900px) {
      .hero-grid, .cards, .steps, .areas { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
      .controls { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .hero { padding-top: 28px; }
      .hero-grid, .cards, .steps, .areas { grid-template-columns: 1fr; }
      .hero-card { order: -1; }
      .prices { grid-template-columns: repeat(2, 1fr); }
      .prices strong { font-size: 15px; }
      section { padding: 40px 0; }
      .nav { height: 58px; gap: 8px; }
      .brand-text { font-size: 13px; }
      header .btn.sm { padding: 8px 10px; font-size: 12px; }
    }

a.area { color: inherit; text-decoration: none; display: block; }
a.area:hover { border-color: var(--blue); }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; margin-bottom: 10px; }
.faq-item summary { font-weight: 600; cursor: pointer; }
.faq-item p { margin-top: 8px; color: var(--muted); font-size: 14px; }
footer a { color: var(--blue); }
.nav > a:first-child { font-weight: 800; color: var(--ink); }
.hero-card .lede { margin-bottom: 12px; }
.facts { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px 24px; max-width: 760px; margin: 0 auto; }
.fact-row { display: grid; grid-template-columns: 10rem 1fr; gap: 8px 16px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.fact-row:last-child { border-bottom: 0; }
.facts dt { font-weight: 700; }
.facts dd { color: var(--muted); margin: 0; }
.aeo-list { max-width: 760px; margin: 0 auto; }
.aeo-q { margin: 0 0 22px; }
.aeo-q h2, .aeo-q h3 { font-size: 20px; letter-spacing: -0.02em; margin-bottom: 8px; }
.aeo-q p { color: var(--ink); font-size: 16px; line-height: 1.6; }
.photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.photos figure, .inline-photo { margin: 0 0 16px; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.photos img, .inline-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.photos figcaption, .inline-photo figcaption { font-size: 13px; color: var(--muted); padding: 10px 12px; font-weight: 500; }
@media (max-width: 900px) {
  .photos { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .fact-row { grid-template-columns: 1fr; }
}
