/* busontop.com — Hafilat top-up. corporate-trust skeleton + editorial-zine accent.
   Palette shifted from #ffffff / #639953 / #f7f9fb by seed 6XPAK1OSTM. */
@layer reset, base, layout, components, utils;

@layer reset {
  *,*::before,*::after { box-sizing: border-box; }
  * { margin: 0; }
  html { -webkit-text-size-adjust: 100%; }
  body { line-height: 1.55; -webkit-font-smoothing: antialiased; }
  img,svg,video { display: block; max-width: 100%; }
  button,input,select,textarea { font: inherit; color: inherit; }
  a { color: inherit; }
  ul[class],ol[class] { list-style: none; padding: 0; }
  :focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 4px; }
}

@layer base {
  :root {
    --green: #3a7a4e;        /* primary  */
    --green-d: #2c5d3b;
    --green-l: #4e9263;
    --amber: #c98a2e;        /* accent (editorial)  */
    --amber-d: #a86f1f;
    --ink: #16201a;          /* near-black, green-graphite */
    --ink-2: #3f4d44;
    --ink-3: #6b776f;
    --bg: #ffffff;
    --bg-2: #f4f7f5;         /* neutral tint */
    --bg-3: #eaf0ec;
    --line: #d9e2dc;
    --line-2: #c5d2c9;
    --ring: #4e9263;
    --paper: #fbfcfb;
    --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
    --ff-text: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --ff-ar: "IBM Plex Sans Arabic", system-ui, sans-serif;
    --shadow: 0 1px 2px rgba(22,32,26,.06), 0 8px 24px -12px rgba(22,32,26,.18);
    --shadow-lg: 0 2px 6px rgba(22,32,26,.07), 0 24px 60px -28px rgba(22,32,26,.30);
    --r: 14px;
    --r-sm: 9px;
    --wrap: 1140px;
  }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *{animation-duration:.001ms!important;transition-duration:.001ms!important;} }
  body {
    font-family: var(--ff-text);
    color: var(--ink);
    background: var(--bg);
    font-size: 16.5px;
  }
  [lang="ar"] body, body[dir="rtl"] { font-family: var(--ff-ar); }
  h1,h2,h3 { font-family: var(--ff-display); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
  h1 { font-size: clamp(2.3rem, 1.4rem + 3.6vw, 3.9rem); }
  h2 { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.5rem); }
  h3 { font-size: 1.18rem; }
  p { color: var(--ink-2); }
  strong { color: var(--ink); }
  body.hqx-noscroll { overflow: hidden; }
}

@layer layout {
  .hqx-Container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(16px, 4vw, 34px); }
  .hqx-Section { padding-block: clamp(52px, 8vw, 96px); position: relative; }
  .hqx-Section.-tint { background: var(--bg-2); }
  .hqx-Section.-ink { background: var(--ink); }
  .hqx-Section.-tight { padding-block: clamp(34px, 5vw, 54px); }
  .hqx-Grid { display: grid; gap: clamp(20px, 3vw, 36px); }
  .hqx-Grid.-c2 { grid-template-columns: 1fr 1fr; }
  .hqx-Grid.-c3 { grid-template-columns: repeat(3, 1fr); }
  .hqx-Grid.-c4 { grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 860px) { .hqx-Grid.-c2,.hqx-Grid.-c3,.hqx-Grid.-c4 { grid-template-columns: 1fr; } }
  @media (max-width: 860px) and (min-width: 561px) { .hqx-Grid.-c4 { grid-template-columns: 1fr 1fr; } }
  .hqx-skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0; }
  .hqx-skip:focus { left: 0; }
}

@layer components {
  /* ---- Editorial section heading ---- */
  .hqx-head { max-width: 640px; }
  .hqx-Tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--ff-text); font-size: .73rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; color: var(--green-d);
    padding: 5px 11px; border: 1px solid var(--line-2); border-radius: 100px; background: var(--paper);
  }
  .hqx-Tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
  .hqx-head h2 { margin: 16px 0 0; }
  .hqx-lede { font-size: clamp(1.02rem, .95rem + .4vw, 1.18rem); color: var(--ink-2); margin-top: 14px; }
  .hqx-eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green-d); }

  /* editorial accent: index number used across cards */
  .hqx-idx { font-family: var(--ff-display); font-style: italic; font-weight: 500; color: var(--amber); font-size: 1.05rem; }

  /* ---- Buttons (pill, ripple, icon-right) ---- */
  .hqx-Btn {
    --bg-b: var(--bg-2); --fg-b: var(--ink);
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--ff-text); font-weight: 600; font-size: .96rem; line-height: 1;
    padding: 12px 20px; border-radius: 100px; border: 1px solid var(--line-2);
    background: var(--bg-b); color: var(--fg-b); cursor: pointer; text-decoration: none;
    transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  }
  .hqx-Btn svg { width: 18px; height: 18px; }
  .hqx-Btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
  .hqx-Btn:active { transform: translateY(0); }
  .hqx-Btn.-brand { --bg-b: var(--green); --fg-b: #fff; border-color: var(--green); box-shadow: 0 8px 22px -12px var(--green-d); }
  .hqx-Btn.-brand:hover { --bg-b: var(--green-d); }
  .hqx-Btn.-amber { --bg-b: var(--amber); --fg-b: #1c1304; border-color: var(--amber); }
  .hqx-Btn.-amber:hover { --bg-b: var(--amber-d); }
  .hqx-Btn.-ghost { --bg-b: transparent; border-color: var(--line-2); }
  .hqx-Btn.-ghost:hover { background: var(--bg-2); }
  .hqx-Btn.-lg { padding: 15px 26px; font-size: 1.02rem; }
  .hqx-Btn.-sm { padding: 9px 15px; font-size: .88rem; }
  .hqx-Btn.-block { display: flex; width: 100%; }
  .hqx-ripple { position: absolute; border-radius: 50%; transform: scale(0); background: rgba(255,255,255,.45); pointer-events: none; animation: hqx-rip .55s ease-out; }
  .hqx-Btn.-ghost .hqx-ripple, .hqx-Btn:not(.-brand):not(.-amber) .hqx-ripple { background: rgba(58,122,78,.22); }
  @keyframes hqx-rip { to { transform: scale(2.6); opacity: 0; } }

  .hqx-link { font-weight: 600; color: var(--green-d); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; text-decoration-color: var(--amber); }
  .hqx-link:hover { color: var(--green); }

  /* ---- Announcement (dismissible) ---- */
  .hqx-Announce { background: var(--ink); color: #eaf0ec; font-size: .85rem; }
  .hqx-Announce .row { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 8px 14px; text-align: center; }
  .hqx-Announce b { color: #fff; }
  .hqx-Announce button { background: none; border: 0; color: #aab8af; cursor: pointer; line-height: 0; padding: 4px; border-radius: 6px; }
  .hqx-Announce button:hover { color: #fff; }
  .hqx-Announce[hidden] { display: none; }

  /* ---- Header (transparent over hero, not sticky) ---- */
  .hqx-Header { position: relative; z-index: 30; padding-block: 16px; }
  .hqx-Header .row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
  .hqx-Nav { display: flex; gap: 22px; align-items: center; }
  .hqx-Nav a { font-size: .92rem; font-weight: 500; color: var(--ink-2); text-decoration: none; }
  .hqx-Nav a:hover { color: var(--green-d); }
  @media (max-width: 900px) { .hqx-Nav.nav-l { display: none; } }
  .hqx-Logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
  .hqx-Logo .mark { width: 40px; height: 40px; flex: 0 0 auto; }
  .hqx-Logo .word { font-family: var(--ff-display); font-weight: 600; font-size: 1.28rem; color: var(--ink); letter-spacing: -.01em; }
  .hqx-Logo .word b { color: var(--green-d); font-weight: 600; }
  .hqx-Logo .ar { font-family: var(--ff-ar); font-size: .8rem; color: var(--ink-3); display: block; line-height: 1; margin-top: 1px; }
  .nav-r { display: flex; align-items: center; gap: 14px; }
  .hqx-Lang { display: inline-flex; gap: 2px; border: 1px solid var(--line-2); border-radius: 100px; padding: 3px; background: var(--paper); }
  .hqx-Lang a { font-size: .82rem; font-weight: 600; padding: 4px 11px; border-radius: 100px; text-decoration: none; color: var(--ink-3); }
  .hqx-Lang a[aria-current="true"] { background: var(--green); color: #fff; }
  .desk { display: inline-flex; }
  @media (max-width: 620px) { .hqx-Btn.desk, .hqx-Lang.desk { display: none; } }

  /* ---- Burger + Drawer (CSS-driven: visibility + opacity) ---- */
  .hqx-Burger { display: none; background: var(--paper); border: 1px solid var(--line-2); border-radius: 10px; padding: 8px; cursor: pointer; color: var(--ink); }
  .hqx-Burger svg { width: 22px; height: 22px; }
  @media (max-width: 900px) { .hqx-Burger { display: inline-flex; } }

  .hqx-Drawer { position: fixed; inset: 0; z-index: 120; visibility: hidden; opacity: 0; transition: opacity .26s ease, visibility 0s linear .26s; }
  .hqx-Drawer.is-open { visibility: visible; opacity: 1; transition: opacity .26s ease; }
  .hqx-Drawer .backdrop { position: absolute; inset: 0; background: rgba(16,24,18,.5); backdrop-filter: blur(2px); }
  .hqx-Drawer .panel {
    position: absolute; inset-block: 0; inset-inline-end: 0; width: min(86vw, 340px);
    background: var(--bg); box-shadow: var(--shadow-lg); padding: 22px;
    display: flex; flex-direction: column; gap: 8px;
    transform: translateX(12%); transition: transform .3s cubic-bezier(.22,1,.36,1);
  }
  [dir="rtl"] .hqx-Drawer .panel { transform: translateX(-12%); }
  .hqx-Drawer.is-open .panel { transform: translateX(0); }
  .hqx-Drawer .head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
  .hqx-Drawer .head button { background: none; border: 1px solid var(--line-2); border-radius: 8px; padding: 7px; cursor: pointer; color: var(--ink); line-height: 0; }
  .hqx-Drawer nav { display: flex; flex-direction: column; padding-block: 8px; }
  .hqx-Drawer nav a { padding: 12px 8px; font-size: 1.04rem; font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--bg-3); color: var(--ink); }
  .hqx-Drawer nav a:hover { color: var(--green-d); }
  .hqx-Drawer .foot { margin-top: auto; display: grid; gap: 12px; }
  .hqx-Drawer .langs { display: flex; gap: 8px; }
  .hqx-Drawer .langs a { flex: 1; text-align: center; padding: 9px; border: 1px solid var(--line-2); border-radius: 100px; text-decoration: none; font-weight: 600; font-size: .88rem; }

  /* ---- Hero (editorial, corporate restraint) ---- */
  .hqx-Hero { position: relative; overflow: hidden; background:
      radial-gradient(120% 90% at 88% -10%, var(--bg-3), transparent 55%),
      linear-gradient(180deg, var(--paper), var(--bg)); }
  .hqx-Hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .4;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 46px 46px; mask-image: radial-gradient(70% 60% at 80% 10%, #000, transparent 70%); }
  /* Homepage hero — 2 cols when form present, solo = full-width single col */
  .hqx-Hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 56px); align-items: start; padding-block: clamp(26px, 5vw, 60px) clamp(48px, 7vw, 88px); }
  .hqx-Hero .wrap.-solo { grid-template-columns: 1fr; max-width: 780px; }
  @media (max-width: 960px) { .hqx-Hero .wrap { grid-template-columns: 1fr; } }
  .hqx-Hero h1 { margin: 18px 0 0; }
  .hqx-Hero h1 .accent { color: var(--green-d); font-style: italic; position: relative; }
  .hqx-Hero h1 .accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 8px; background: var(--amber); opacity: .28; border-radius: 4px; z-index: -1; }
  .hqx-Hero .bullets { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
  .hqx-Hero .bullets li { display: flex; gap: 10px; align-items: flex-start; font-size: .98rem; color: var(--ink-2); }
  .hqx-Hero .bullets svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--green); margin-top: 1px; }
  .hqx-Hero .actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 26px; }
  .hqx-kpis { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
  .hqx-kpis .chip { display: inline-flex; align-items: baseline; gap: 6px; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 6px 13px; font-size: .82rem; color: var(--ink-2); }
  .hqx-kpis .chip b { font-family: var(--ff-display); color: var(--green-d); font-size: .95rem; }

  /* ---- Recharge page — dedicated form layout ---- */
  .hqx-RechargePage { background: var(--bg-2); }
  .hqx-RechargePage .hqx-Container { display: grid; grid-template-columns: 1fr minmax(0, 560px) 1fr; padding-block: clamp(40px, 7vw, 80px); gap: clamp(28px, 4vw, 48px); align-items: start; }
  .hqx-RechargePage .col-form { grid-column: 2; }
  .hqx-RechargePage .col-trust { grid-column: 2; margin-top: 8px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
  .hqx-RechargePage .trust-item { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--ink-3); background: var(--bg); border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; }
  .hqx-RechargePage .trust-item svg { width: 14px; height: 14px; color: var(--green); flex: 0 0 auto; }
  .hqx-RechargePage .hqx-FormCard { width: 100%; }
  @media (max-width: 720px) {
    .hqx-RechargePage .hqx-Container { grid-template-columns: 1fr; padding-block: clamp(24px, 5vw, 48px); }
    .hqx-RechargePage .col-form, .hqx-RechargePage .col-trust { grid-column: 1; }
  }

  /* ---- Form card (corporate) ---- */
  .hqx-Card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); padding: 22px; }
  .hqx-Card.-flat { box-shadow: none; }
  .hqx-Card.-pad { padding: clamp(22px, 3vw, 30px); }
  .hqx-FormCard { position: relative; background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: clamp(22px, 3vw, 30px); }
  .hqx-FormCard::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; border-radius: var(--r) var(--r) 0 0; background: linear-gradient(90deg, var(--green), var(--amber)); }
  .hqx-FormCard .top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 4px; }
  .hqx-Pill { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 600; color: var(--green-d); background: var(--bg-2); border: 1px solid var(--line); border-radius: 100px; padding: 4px 10px; }
  .hqx-Pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(58,122,78,.5); animation: hqx-pulse 2s infinite; }
  @keyframes hqx-pulse { 0%{box-shadow:0 0 0 0 rgba(58,122,78,.5);} 70%{box-shadow:0 0 0 7px rgba(58,122,78,0);} 100%{box-shadow:0 0 0 0 rgba(58,122,78,0);} }

  .hqx-Form { display: grid; gap: 15px; }
  .hqx-Field { display: grid; gap: 6px; }
  .hqx-Field label { font-size: .86rem; font-weight: 600; color: var(--ink); }
  .hqx-Field input, .hqx-Field select, .hqx-Field textarea {
    width: 100%; padding: 12px 13px; border: 1px solid var(--line-2); border-radius: var(--r-sm);
    background: var(--paper); color: var(--ink); transition: border-color .15s, box-shadow .15s; font-size: .98rem;
  }
  .hqx-Field input:focus, .hqx-Field select:focus, .hqx-Field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(58,122,78,.15); }
  .hqx-Field .hint { font-size: .78rem; color: var(--ink-3); }
  .hqx-Field .err { font-size: .78rem; color: #b42318; display: none; }
  .hqx-Field.-invalid input, .hqx-Field.-invalid select, .hqx-Field.-invalid textarea { border-color: #d6493b; background: #fff7f6; }
  .hqx-Field.-invalid .err { display: block; }
  .hqx-Field.-invalid .hint { display: none; }

  /* preset amount chips — solid fill when on, min-height 48 */
  .hqx-Chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .hqx-Chips label { position: relative; cursor: pointer; }
  .hqx-Chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
  .hqx-Chips span { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; min-width: 56px; padding: 0 16px; border: 1px solid var(--line-2); border-radius: 100px; font-weight: 600; background: var(--paper); transition: all .15s; }
  .hqx-Chips label:hover span { border-color: var(--green); }
  .hqx-Chips label.is-on span, .hqx-Chips input:checked + span { background: var(--green); color: #fff; border-color: var(--green); box-shadow: 0 6px 16px -8px var(--green-d); }

  /* ---- Balance readout ---- */
  .hqx-Balance { margin-top: 14px; border: 1px solid var(--line-2); border-radius: var(--r); padding: 18px; background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
  .hqx-Balance .amt { font-family: var(--ff-display); font-size: 2.5rem; font-weight: 600; color: var(--ink); display: flex; align-items: baseline; gap: 7px; line-height: 1; }
  .hqx-Balance .amt .ccy { font-size: 1rem; color: var(--green-d); font-family: var(--ff-text); font-weight: 700; }
  .hqx-Balance .meta { font-size: .8rem; color: var(--ink-3); margin-top: 8px; }
  .hqx-Balance .sample { display: inline-block; margin-top: 10px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--amber-d); background: rgba(201,138,46,.12); padding: 3px 9px; border-radius: 100px; }

  /* ---- Steps (numbered editorial) ---- */
  .hqx-Steps { list-style: none; padding: 0; display: grid; gap: 4px; counter-reset: step; }
  .hqx-Steps li { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
  .hqx-Steps li::before { counter-increment: step; content: "0" counter(step); font-family: var(--ff-display); font-style: italic; font-size: 1.7rem; color: var(--amber); font-weight: 500; }
  .hqx-Steps h3 { margin-bottom: 4px; }
  .hqx-Steps p { font-size: .94rem; }

  /* ---- Stat ---- */
  .hqx-Stat .n { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 600; color: var(--green-d); }
  .hqx-Stat p { font-size: .88rem; margin-top: 6px; }

  /* ---- Feature card (zine index) ---- */
  .hqx-Feature { padding: 24px; }
  .hqx-Feature .num { font-family: var(--ff-display); font-style: italic; color: var(--amber); font-size: 1.1rem; margin-bottom: 10px; }
  .hqx-Feature h3 { margin-bottom: 7px; }
  .hqx-Feature p { font-size: .93rem; }

  /* ---- Comparison table ---- */
  .hqx-TableWrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
  .hqx-Table { width: 100%; border-collapse: collapse; min-width: 480px; background: var(--bg); }
  .hqx-Table th, .hqx-Table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
  .hqx-Table thead th { background: var(--bg-2); font-family: var(--ff-text); font-weight: 700; font-size: .82rem; letter-spacing: .03em; }
  .hqx-Table tbody th { font-weight: 600; color: var(--ink); }
  .hqx-Table .yes { color: var(--green-d); font-weight: 600; }
  .hqx-Table .no { color: var(--ink-3); }
  [dir="rtl"] .hqx-Table th, [dir="rtl"] .hqx-Table td { text-align: right; }

  /* ---- Quote (editorial left bar) ---- */
  .hqx-Quote { border-left: 4px solid var(--amber); padding: 6px 0 6px 20px; background: var(--bg); }
  [dir="rtl"] .hqx-Quote { border-left: 0; border-right: 4px solid var(--amber); padding: 6px 20px 6px 0; }
  .hqx-Quote p { font-family: var(--ff-display); font-size: 1.18rem; color: var(--ink); font-style: italic; }
  .hqx-Quote cite { display: block; margin-top: 12px; font-style: normal; font-size: .85rem; color: var(--ink-3); font-family: var(--ff-text); }

  /* ---- FAQ ---- */
  .hqx-Faq details { border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 10px; background: var(--bg); overflow: hidden; }
  .hqx-Faq summary { padding: 16px 18px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; color: var(--ink); }
  .hqx-Faq summary::-webkit-details-marker { display: none; }
  .hqx-Faq summary::after { content: "+"; font-size: 1.3rem; color: var(--green-d); transition: transform .2s; line-height: 1; }
  .hqx-Faq details[open] summary::after { transform: rotate(45deg); }
  .hqx-Faq .a { padding: 0 18px 16px; }
  .hqx-Faq .a p { font-size: .94rem; }

  /* ---- CTA band ---- */
  .hqx-Cta { background: var(--ink); color: #eef3ef; border-radius: var(--r); padding: clamp(30px, 5vw, 56px); text-align: center; position: relative; overflow: hidden; }
  .hqx-Cta::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 38px 38px; }
  .hqx-Cta > * { position: relative; }
  .hqx-Cta h2 { color: #fff; }
  .hqx-Cta p { color: #c2cfc7; max-width: 560px; margin: 14px auto 0; }
  .hqx-Cta .actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }
  .hqx-Cta .hqx-Btn.-ghost { color: #eef3ef; border-color: rgba(255,255,255,.3); }
  .hqx-Cta .hqx-Btn.-ghost:hover { background: rgba(255,255,255,.08); }

  /* ---- Divider (zigzag editorial) ---- */
  .hqx-divider { border: 0; height: 8px; background-color: var(--line);
    -webkit-mask: linear-gradient(135deg, #000 25%, transparent 25%) 0 0/16px 16px;
    mask: linear-gradient(135deg, #000 25%, transparent 25%) 0 0/16px 16px; opacity: .5; margin: 0; }

  /* vertical section label (editorial) */
  .hqx-VLabel { position: absolute; top: 28px; inset-inline-start: 8px; writing-mode: vertical-rl; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); opacity: .6; font-weight: 600; }
  @media (max-width: 1240px) { .hqx-VLabel { display: none; } }

  /* ---- Footer ---- */
  .hqx-Footer { background: var(--ink); color: #c2cfc7; padding-block: clamp(44px, 6vw, 68px) 28px; }
  .hqx-Footer a { color: #c2cfc7; text-decoration: none; }
  .hqx-Footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
  .hqx-Footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 30px; }
  @media (max-width: 860px) { .hqx-Footer .cols { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .hqx-Footer .cols { grid-template-columns: 1fr; } }
  .hqx-Footer .brand .hqx-Logo .word { color: #fff; }
  .hqx-Footer .brand .hqx-Logo .word b { color: var(--green-l); }
  .hqx-Footer .brand p { color: #9fb0a5; font-size: .9rem; margin-top: 12px; max-width: 320px; }
  .hqx-Footer .contact { display: grid; gap: 5px; margin-top: 14px; font-size: .88rem; }
  .hqx-Footer h4 { color: #fff; font-family: var(--ff-text); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
  .hqx-Footer ul { display: grid; gap: 8px; font-size: .9rem; }
  .hqx-Newsletter { display: flex; gap: 6px; margin-top: 4px; }
  .hqx-Newsletter input { flex: 1; padding: 10px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; font-size: .88rem; }
  .hqx-Newsletter input::placeholder { color: #8fa096; }
  .hqx-Newsletter button { padding: 10px 16px; border-radius: 100px; border: 0; background: var(--green); color: #fff; font-weight: 600; cursor: pointer; }
  .hqx-Newsletter button:hover { background: var(--green-l); }
  .hqx-Footer .bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; align-items: center; }
  .hqx-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: #9fb0a5; font-size: .76rem; }
  .hqx-trust span { display: inline-flex; align-items: center; gap: 6px; }
  .hqx-trust svg { width: 17px; height: 17px; }
  .hqx-trust .pay { display: inline-flex; gap: 6px; }
  .legal-mini { font-size: .8rem; color: #8fa096; max-width: 560px; }
  .legal-mini a { color: #9fb0a5; }
  .hqx-flag { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; }
  .hqx-flag svg { width: 22px; height: 15px; border-radius: 2px; }
  .hqx-visitors { font-size: .76rem; color: #8fa096; margin-top: 14px; }
  .hqx-visitors b { color: var(--green-l); }

  /* ---- Modal (fullscreen sheet) ---- */
  .hqx-Modal { position: fixed; inset: 0; z-index: 140; display: grid; place-items: center; padding: 20px; background: rgba(16,24,18,.55); backdrop-filter: blur(3px); visibility: hidden; opacity: 0; transition: opacity .24s ease, visibility 0s linear .24s; }
  .hqx-Modal.is-open { visibility: visible; opacity: 1; transition: opacity .24s ease; }
  .hqx-Modal .sheet { background: var(--bg); border-radius: var(--r); max-width: 420px; width: 100%; padding: 34px 28px 28px; text-align: center; position: relative; box-shadow: var(--shadow-lg); transform: translateY(10px) scale(.98); transition: transform .26s cubic-bezier(.22,1,.36,1); }
  .hqx-Modal.is-open .sheet { transform: none; }
  .hqx-Modal .close { position: absolute; top: 12px; inset-inline-end: 12px; background: var(--bg-2); border: 0; border-radius: 8px; padding: 7px; cursor: pointer; line-height: 0; color: var(--ink-2); }
  .hqx-Modal .check { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: rgba(58,122,78,.12); color: var(--green); display: grid; place-items: center; }
  .hqx-Modal .check svg { width: 28px; height: 28px; }
  .hqx-Modal h3 { font-size: 1.5rem; }
  .hqx-Modal p { margin: 10px 0 20px; }

  /* ---- Spinner overlay ---- */
  .hqx-Overlay { position: fixed; inset: 0; z-index: 160; display: grid; place-items: center; background: rgba(251,252,251,.8); backdrop-filter: blur(2px); visibility: hidden; opacity: 0; transition: opacity .2s; }
  .hqx-Overlay.is-open { visibility: visible; opacity: 1; }
  .hqx-Spinner { width: 42px; height: 42px; border-radius: 50%; border: 4px solid var(--bg-3); border-top-color: var(--green); animation: hqx-spin .8s linear infinite; }
  @keyframes hqx-spin { to { transform: rotate(360deg); } }

  /* scroll progress top bar */
  .hqx-Progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--green), var(--amber)); z-index: 200; transition: width .1s linear; }

  .hqx-noscript { background: #fff7f6; border: 1px solid #f0c9c4; color: #8a2c22; padding: 12px 16px; font-size: .88rem; text-align: center; }

  /* legal / prose pages */
  .hqx-Prose { max-width: 760px; }
  .hqx-Prose h2 { margin-top: 38px; }
  .hqx-Prose h3 { margin-top: 24px; }
  .hqx-Prose p, .hqx-Prose li { color: var(--ink-2); margin-top: 12px; }
  .hqx-Prose ul { padding-inline-start: 22px; list-style: disc; }
  .hqx-Prose .updated { font-size: .82rem; color: var(--ink-3); }
  .hqx-Breadcrumb { font-size: .82rem; color: var(--ink-3); padding-block: 18px 0; }
  .hqx-Breadcrumb a { color: var(--green-d); text-decoration: none; }
  .hqx-PageHead { padding-block: clamp(28px, 5vw, 52px) 8px; }
}

@layer utils {
  [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
  [data-reveal].is-in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }
  .hqx-center { text-align: center; }
  .hqx-mt-s { margin-top: 14px; }
  .hqx-mt { margin-top: 26px; }
  [hidden] { display: none !important; }
  .hqx-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}
