  :root {
    --bg: #121212;
    --bg-card: #1a1a1a;
    --bg-card-hover: #202020;
    --bg-raised: #1c1c1c;
    --border: #2b2b2b;
    --border-light: #383838;
    --orange: #E8792C;
    --orange-deep: #c25a16;
    --white: #f5f3ef;
    --gray: #f5f3ef;
    --gray-dim: #6b675f;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 700; }
  a { color: inherit; }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  ::selection { background: var(--orange); color: #121212; }
  :focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

  /* ===== HEADER ===== */
  header {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(18,18,18,0.94);
    backdrop-filter: blur(10px);
    z-index: 50;
  }
  .header-inner { display: flex; align-items: center; justify-content: space-between; }
header .wrap.header-inner { max-width: none; padding: 0 28px; }
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand-mark { width: 30px; height: 30px; display: grid; place-items: center; color: var(--orange); font-size: 19px; }
  .brand-name { font-weight: 700; font-size: 16px; letter-spacing: 0.01em; }
  .brand-name span { color: var(--orange); }
  nav { display: flex; gap: 26px; font-size: 13.5px; font-weight: 500; }
  nav a { text-decoration: none; color: var(--gray); transition: color 0.15s; }
  nav a:hover { color: var(--white); }
  .nav-cta { background: var(--orange); color: #16110c !important; padding: 9px 16px; border-radius: 8px; font-weight: 600; }
  .nav-cta:hover { background: #f08a3f; color: #16110c !important; }
  @media (max-width: 640px) { nav a:not(.nav-cta) { display: none; } }

  /* ===== HERO ===== */
  .hero { padding: 60px 0 0 0; text-align: center; }
  .eyebrow {
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .hero h1 {
    font-size: clamp(32px, 5vw, 50px);
    line-height: 1.18;
    font-weight: 700;
    max-width: 720px;
    margin: 0 auto 18px auto;
  }
  .hero h1 .accent { color: var(--orange); }
  .hero p {
    color: var(--gray);
    font-size: 16px;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Platform picker */
  .platform-picker {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    max-width: 900px;
    margin: 38px auto 0 auto;
  }
  @media (max-width: 760px) { .platform-picker { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 480px) { .platform-picker { grid-template-columns: repeat(2, 1fr); } }
  .platform-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease;
    color: var(--gray);
  }
  .platform-btn:hover { border-color: var(--border-light); background: var(--bg-card-hover); color: var(--white); }
  .platform-btn.active {
    border-color: var(--orange);
    background: linear-gradient(180deg, rgba(232,121,44,0.14), rgba(232,121,44,0.03));
    color: var(--white);
  }
  .platform-btn .icon { font-size: 21px; display: block; margin-bottom: 8px; color: var(--orange); }
  .platform-btn .label { font-size: 12.5px; font-weight: 600; }

  .platform-btn.has-photo {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px 8px;
    overflow: hidden;
    border-color: var(--border);
  }
  .platform-btn.has-photo:hover { border-color: var(--orange); background-color: transparent; }
  .platform-btn.has-photo.active { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange); background-color: transparent; }
  .platform-btn.has-photo .label {
    color: #fff;
    font-size: 13px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  }

  /* Hero photo strip */
  .hero-photo-wrap { margin-top: 50px; border-radius: 16px; overflow: hidden; position: relative; }
  .hero-photo-wrap img { width: 100%; display: block; }
  .hero-photo-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
    padding: 30px 26px 16px 26px;
    text-align: left;
    font-size: 13px;
    color: var(--gray);
  }
  .hero-photo-caption strong { color: var(--white); font-weight: 600; }

  /* ===== SECTION SHELL ===== */
  section { padding: 60px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head .tag {
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
  }
  .section-head h2 { font-size: 26px; font-weight: 700; }
  .section-head p { color: var(--gray); font-size: 14.5px; margin-top: 8px; max-width: 560px; font-weight: 400; }
  .divider { border: none; border-top: 1px solid var(--border); }

  /* ===== BROWSE CARDS ===== */
  .browse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
  }
  .pkg-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    transition: border-color 0.15s;
  }
  .pkg-card:hover { border-color: var(--border-light); }
  .pkg-card.selectable { cursor: pointer; }
  .pkg-card.selectable:hover { border-color: var(--orange); }
  .pkg-card.active {
    border-color: var(--orange);
    background: linear-gradient(180deg, rgba(232,121,44,0.10), rgba(232,121,44,0.02));
  }
  .pkg-select-indicator {
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--gray-dim); margin-bottom: 10px;
  }
  .pkg-card.active .pkg-select-indicator { color: var(--orange); }
  .pkg-card .pkg-name { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
  .pkg-card .pkg-includes { color: var(--gray); font-size: 12.5px; line-height: 1.5; margin-bottom: 16px; min-height: 38px; font-weight: 400; }
  .pkg-card .pkg-range { display: flex; align-items: baseline; gap: 6px; }
  .pkg-card .pkg-range .from { color: var(--gray-dim); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
  .pkg-card .pkg-range .price { font-size: 23px; font-weight: 700; color: var(--orange); }
  .pkg-card .pkg-range .to { color: var(--gray); font-size: 13px; font-weight: 400; }

  /* ===== CALCULATOR ===== */
  .calc-shell {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
  }
  .calc-step { padding: 26px 28px; border-bottom: 1px solid var(--border); }
  .calc-step:last-child { border-bottom: none; }
  .step-label {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 600;
    color: var(--white); margin-bottom: 16px;
  }
  .step-num {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--orange); color: #121212;
    display: grid; place-items: center;
    font-size: 12px; font-weight: 700;
    flex-shrink: 0;
  }

  .pkg-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
  .pkg-option {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.15s;
    background: var(--bg-raised);
  }
  .pkg-option:hover { border-color: var(--border-light); }
  .pkg-option.active { border-color: var(--orange); background: rgba(232,121,44,0.08); }
  .pkg-option .name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
  .pkg-option .inc { color: var(--gray); font-size: 11.5px; line-height: 1.4; font-weight: 400; }

  /* Selector switch — signature element, softened to match site's rounder feel */
  .selector-switch {
    position: relative;
    display: flex;
    background: #0f0f0f;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 6px;
    gap: 4px;
  }
  .selector-notch {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 12px 4px 10px 4px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.18s ease;
    border: 1px solid transparent;
  }
  .selector-notch .tick {
    width: 3px; height: 14px;
    background: var(--gray-dim);
    margin: 0 auto 8px auto;
    border-radius: 2px;
    transition: all 0.18s ease;
  }
  .selector-notch .name { font-size: 11px; font-weight: 600; color: var(--gray); }
  .selector-notch:hover .tick { background: var(--gray); }
  .selector-notch.active {
    background: rgba(232,121,44,0.12);
    border-color: rgba(232,121,44,0.4);
  }
  .selector-notch.active .tick { background: var(--orange); height: 20px; box-shadow: 0 0 8px rgba(232,121,44,0.6); }
  .selector-notch.active .name { color: var(--orange); }
  .selector-caption { color: var(--gray); font-size: 12px; margin-top: 10px; text-align: center; font-weight: 400; }
  @media (max-width: 480px) {
    .selector-notch { padding: 10px 2px 8px 2px; }
    .selector-notch .name { font-size: 9px; }
    .selector-switch { gap: 2px; padding: 4px; }
  }

  .addon-list { display: flex; flex-direction: column; gap: 8px; }
  .floating-stack {
    position: fixed;
    bottom: 20px; left: 50%; transform: translateX(-50%) translateY(120%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 60;
    transition: transform 0.25s ease;
  }
  .floating-stack.visible { transform: translateX(-50%) translateY(0); }
  .sticky-total {
    background: var(--orange); color: #121212;
    padding: 12px 22px; border-radius: 30px;
    display: flex; align-items: center; gap: 12px;
    font-weight: 600; font-size: 13px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .sticky-total-amount { font-size: 16px; font-weight: 700; }
  .sticky-min-warning {
    background: rgba(232,121,44,0.95); color: #121212;
    padding: 10px 20px; border-radius: 30px;
    font-weight: 600; font-size: 12.5px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    white-space: nowrap;
  }
  @media (max-width: 480px) {
    .sticky-total { padding: 10px 16px; gap: 8px; font-size: 11px; }
    .sticky-total-amount { font-size: 14px; }
    .sticky-min-warning { padding: 8px 14px; font-size: 11px; white-space: normal; text-align: center; }
  }
  .addon-cat {
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--orange); margin: 10px 0 0 0;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; padding: 10px 12px;
    background: var(--bg-raised); border: 1px solid var(--border); border-radius: 10px;
    transition: border-color 0.15s;
  }
  .addon-cat:hover { border-color: var(--border-light); }
  .addon-cat.open { border-radius: 10px 10px 0 0; margin-bottom: 0; }
  .addon-cat:first-child { margin-top: 0; }
  .addon-cat .cat-count { color: var(--gray); font-weight: 500; text-transform: none; letter-spacing: normal; font-size: 11px; }
  .cat-chevron { font-size: 9px; color: var(--gray); }
  .addon-row.overlap { border-color: rgba(200,80,60,0.35); }
  .addon-overlap-tag { font-size: 10.5px; color: #d98a6f; margin-top: 3px; font-weight: 400; }
  .addon-note { font-size: 10.5px; color: var(--gray-dim); margin-top: 3px; font-weight: 400; }
  .addon-row {
    display: flex; align-items: center; justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    background: var(--bg-raised);
    transition: border-color 0.15s;
  }
  .addon-row:hover { border-color: var(--border-light); }
  .addon-row.checked { border-color: rgba(232,121,44,0.4); background: rgba(232,121,44,0.06); }
  .addon-left { display: flex; align-items: center; gap: 12px; }
  .checkbox {
    width: 18px; height: 18px; border-radius: 5px;
    border: 1.5px solid var(--gray-dim);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: all 0.15s;
  }
  .addon-row.checked .checkbox { background: var(--orange); border-color: var(--orange); }
  .addon-row.checked .checkbox::after { content: '✓'; font-size: 12px; color: #121212; font-weight: 700; }
  .addon-name { font-size: 13.5px; font-weight: 500; }
  .addon-price { font-size: 13.5px; font-weight: 600; color: var(--orange); }

  /* Total / CTA — understated bordered button to match site's real CTA style */
  .total-panel {
    background: linear-gradient(180deg, rgba(232,121,44,0.09), rgba(232,121,44,0.02));
    padding: 26px 28px;
  }
  .total-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  .total-label { color: var(--gray); font-size: 12px; font-weight: 600; margin-bottom: 4px; }
  .tax-breakdown { margin-bottom: 16px; }
  .tax-line {
    display: flex; justify-content: space-between;
    font-size: 13px; color: var(--gray);
    padding: 4px 0;
  }
  .tax-line span:last-child { font-weight: 600; color: var(--white); }
  .total-amount { font-size: 38px; font-weight: 700; color: var(--white); }
  .total-amount span { color: var(--orange); }
  .cta-btn {
    background: var(--bg-raised);
    color: var(--white);
    border: 1.5px solid var(--border-light);
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    transition: all 0.15s;
  }
  .cta-btn:hover { border-color: var(--orange); color: var(--orange); }
  .cta-btn:disabled { opacity: 0.4; cursor: not-allowed; border-color: var(--border-light); color: var(--gray-dim); }
  .cta-btn:disabled:hover { border-color: var(--border-light); color: var(--gray-dim); }
  .total-note { color: var(--gray-dim); font-size: 11.5px; margin-top: 12px; font-weight: 400; }
  .package-suggestion {
    background: rgba(232,121,44,0.12);
    border: 1px solid rgba(232,121,44,0.45);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 14px;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    flex-wrap: wrap;
  }
  .package-suggestion-text { font-size: 13px; color: var(--white); line-height: 1.5; }
  .package-suggestion-text strong { color: var(--orange); }
  .package-suggestion-btn {
    background: var(--orange); color: #121212; border: none;
    padding: 9px 16px; border-radius: 8px;
    font-weight: 600; font-size: 12.5px; cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.15s;
  }
  .package-suggestion-btn:hover { opacity: 0.85; }

  /* ===== TRUST STRIP — matches the site's badge style ===== */
  .trust-strip {
    display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center;
    padding: 26px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .trust-item .num { font-size: 22px; font-weight: 700; color: var(--white); }
  .trust-item .lbl { font-size: 11px; color: var(--gray); font-weight: 500; }
  .badge-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--orange); color: #121212;
    font-size: 12px; font-weight: 700;
    padding: 7px 14px; border-radius: 20px;
  }
  .badge-pill.outline { background: transparent; color: var(--white); border: 1px solid var(--border-light); }

  /* ===== POLICY NOTE ===== */
  .policy-note {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    border-radius: 10px;
    padding: 18px 22px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
  }
  .policy-note strong { color: var(--white); font-weight: 600; }

  /* ===== FOOTER ===== */
  footer { padding: 44px 0 54px 0; }
  .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: flex-start; }
  .footer-brand { font-weight: 700; font-size: 15px; }
  .footer-brand span { color: var(--orange); }
  .footer-contact { color: var(--gray); font-size: 13px; line-height: 1.9; font-weight: 400; }
  .footer-contact a { color: var(--white); text-decoration: none; font-weight: 500; }
  .footer-contact a:hover { color: var(--orange); }

  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto !important; }
  }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--border-light);
  border-radius: 8px; width: 38px; height: 38px; cursor: pointer;
  align-items: center; justify-content: center; gap: 4px; flex-direction: column;
}
@media (max-width: 860px) {
  header nav a:not(.nav-cta) { display: none; }
  .brand img { height: 52px !important; }
  .nav-toggle { display: flex; }
  header .wrap.header-inner { flex-wrap: wrap; }
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-nav-panel {
  display: none; flex-direction: column; gap: 2px;
  background: var(--bg-raised); border-top: 1px solid var(--border);
  padding: 10px 24px 18px 24px;
}
.mobile-nav-panel.open { display: flex; }
.mobile-nav-panel a {
  color: var(--gray); text-decoration: none; font-size: 15px; font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.mobile-nav-panel a:last-child { border-bottom: none; }
.mobile-nav-panel a:hover, .mobile-nav-panel a.active { color: var(--orange); }
