/* ===================================================================
   Acquira — the checkout that gets more payments approved
   Palette: teal/sarcelle · Display: Hubot Sans · Body: Plus Jakarta Sans
   Numbers/code: Azeret Mono · CSS prefix: aq-
   =================================================================== */

:root {
  --paper: #f4f7f6;
  --paper-2: #eaf1ef;
  --card: #ffffff;
  --ink: #0f1f1d;
  --ink-2: #2f4642;
  --ink-3: #5d736e;
  --line: #dde7e4;
  --line-2: #e8efed;

  --teal: #0d6e6e;          /* primary deep teal */
  --teal-deep: #095353;
  --teal-ink: #07403f;
  --signal: #14b8a6;        /* bright signal teal — "approved" */
  --signal-soft: #d3f3ee;
  --signal-tint: #ecfbf8;
  --amber: #e0a23c;         /* used sparingly for "soft decline / pending" */
  --rose: #c2566b;          /* used sparingly for "hard decline" */

  --halo: rgba(13, 110, 110, .12);
  --shadow-s: 0 1px 2px rgba(7, 64, 63, .05), 0 4px 14px rgba(7, 64, 63, .06);
  --shadow-m: 0 10px 28px rgba(7, 64, 63, .09);
  --shadow-l: 0 30px 60px rgba(7, 64, 63, .14);

  --r-s: 10px;
  --r-m: 16px;
  --r-l: 24px;
  --r-xl: 32px;

  --shell: 1200px;
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --disp: "Hubot Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "Azeret Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--signal-soft); color: var(--teal-ink); }

.aq-shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--disp); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); margin: 0; }
h1 em, h2 em, h3 em { font-style: normal; color: var(--teal); }
p { margin: 0; }
.aq-mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ---- buttons ---- */
.aq-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--disp); font-weight: 600; font-size: 15px; letter-spacing: -.01em;
  border-radius: 999px; padding: 11px 20px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.aq-btn--solid { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(13, 110, 110, .26); }
.aq-btn--solid:hover { background: var(--teal-deep); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(13, 110, 110, .32); }
.aq-btn--ghost { background: #fff; color: var(--teal-ink); border-color: var(--line); }
.aq-btn--ghost:hover { border-color: var(--signal); color: var(--teal); transform: translateY(-1px); }
.aq-btn--line { background: transparent; color: var(--teal); border-color: var(--teal); }
.aq-btn--line:hover { background: var(--teal); color: #fff; }
.aq-btn--lg { padding: 14px 26px; font-size: 16px; }
.aq-btn--sm { padding: 9px 16px; font-size: 14px; }
.aq-btn--wide { width: 100%; }

.aq-eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); padding: 5px 12px; border-radius: 999px;
  background: var(--signal-tint); border: 1px solid var(--signal-soft);
}

/* ---- header ---- */
.aq-head { position: sticky; top: 0; z-index: 50; background: rgba(244, 247, 246, .82); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s, background .2s; }
.aq-head.is-stuck { border-bottom-color: var(--line); background: rgba(244, 247, 246, .94); }
.aq-head__bar { display: flex; align-items: center; gap: 26px; height: 72px; }
.aq-logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--disp); font-weight: 800; font-size: 21px; letter-spacing: -.03em; color: var(--ink); }
.aq-logo em { font-style: normal; color: var(--teal); }
.aq-logo__mark { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--teal), var(--signal)); position: relative; flex: none; box-shadow: 0 4px 12px rgba(13, 110, 110, .3); }
.aq-logo__mark::after { content: ""; position: absolute; inset: 0; background: no-repeat center / 60% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12.5 9.5 18 20 6'/%3E%3C/svg%3E"); }

.aq-nav { display: flex; align-items: center; gap: 4px; margin-right: auto; }
.aq-nav a { font-size: 15px; font-weight: 500; color: var(--ink-2); padding: 8px 13px; border-radius: 9px; white-space: nowrap; transition: color .15s, background .15s; }
.aq-nav a:hover { color: var(--teal); background: var(--signal-tint); }

.aq-head__act { display: flex; align-items: center; gap: 12px; }
.aq-login { font-size: 15px; font-weight: 600; color: var(--ink-2); white-space: nowrap; padding: 6px 4px; }
.aq-login:hover { color: var(--teal); }

/* language selector */
.aq-lang { position: relative; }
.aq-lang__btn { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 11px; cursor: pointer; font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--ink-2); }
.aq-lang__btn:hover { border-color: var(--signal); color: var(--teal); }
.aq-lang__btn svg { width: 16px; height: 16px; }
.aq-lang__chev { width: 13px !important; height: 13px !important; transition: transform .2s; }
.aq-lang.open .aq-lang__chev { transform: rotate(180deg); }
.aq-lang__menu { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-m); padding: 6px; min-width: 156px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .18s; z-index: 60; }
.aq-lang.open .aq-lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.aq-lang__menu button { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 9px 12px; border-radius: 9px; font-family: var(--sans); font-size: 14px; color: var(--ink-2); cursor: pointer; }
.aq-lang__menu button:hover { background: var(--signal-tint); color: var(--teal); }
.aq-lang__menu button.is-on { color: var(--teal); font-weight: 700; }

.aq-burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.aq-burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.aq-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.aq-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.aq-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.aq-mobile { display: none; flex-direction: column; gap: 2px; padding: 8px 0 18px; }
.aq-mobile a { padding: 12px 14px; border-radius: 11px; font-weight: 600; color: var(--ink-2); }
.aq-mobile a:hover { background: var(--signal-tint); color: var(--teal); }
.aq-mobile .aq-btn { margin-top: 8px; }

/* ---- generic section ---- */
section { position: relative; }
.aq-sec { padding: 92px 0; }
.aq-sec--tight { padding: 64px 0; }
.aq-sec__head { max-width: 720px; margin-bottom: 52px; }
.aq-sec__head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.aq-sec__head h2 { font-size: clamp(28px, 4vw, 42px); margin: 16px 0 0; }
.aq-sec__head p { margin-top: 16px; color: var(--ink-3); font-size: 18px; }
.aq-lede { color: var(--ink-3); font-size: 18px; }

[data-rise] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-rise].is-in { opacity: 1; transform: none; }

/* ---- hero ---- */
.aq-hero { padding: 64px 0 72px; position: relative; overflow: hidden; }
.aq-hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(70% 60% at 82% 8%, rgba(20, 184, 166, .14), transparent 60%),
  radial-gradient(50% 50% at 8% 80%, rgba(13, 110, 110, .08), transparent 60%); z-index: 0; }
.aq-hero .aq-shell { position: relative; z-index: 1; }
.aq-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.aq-hero__pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--teal-ink); background: #fff; border: 1px solid var(--signal-soft); border-radius: 999px; padding: 6px 14px 6px 6px; box-shadow: var(--shadow-s); }
.aq-hero__pill b { background: var(--signal); color: #06322f; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: .02em; }
.aq-hero h1 { font-size: clamp(38px, 5.6vw, 64px); margin: 22px 0 0; }
.aq-hero__lede { font-size: 19px; color: var(--ink-2); margin-top: 22px; max-width: 540px; }
.aq-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.aq-hero__meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.aq-hero__meta span { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.aq-hero__meta span::before { content: ""; width: 16px; height: 16px; flex: none; background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314b8a6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12.5 9.5 18 20 6'/%3E%3C/svg%3E"); }

/* hero mockup card */
.aq-hero__art { position: relative; }
.aq-glass { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-l); padding: 24px; position: relative; }
.aq-chip { position: absolute; display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow-m); font-size: 13px; font-weight: 600; color: var(--ink); }
.aq-chip small { display: block; font-weight: 500; color: var(--ink-3); font-size: 11px; }
.aq-chip .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.aq-chip--a { top: -18px; left: -16px; z-index: 3; }
.aq-chip--b { bottom: -16px; right: -14px; z-index: 3; }

/* ---- trust strip ---- */
.aq-strip { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.aq-strip__in { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.aq-strip__lbl { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.aq-strip__logos { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: center; }
.aq-strip__logos span { font-family: var(--disp); font-weight: 700; font-size: 18px; color: var(--ink-3); opacity: .72; letter-spacing: -.02em; }

/* ---- cards grid ---- */
.aq-grid { display: grid; gap: 20px; }
.aq-grid--2 { grid-template-columns: repeat(2, 1fr); }
.aq-grid--3 { grid-template-columns: repeat(3, 1fr); }
.aq-grid--4 { grid-template-columns: repeat(4, 1fr); }

.aq-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 28px; box-shadow: var(--shadow-s); transition: transform .2s, box-shadow .2s, border-color .2s; }
.aq-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--signal-soft); }
.aq-card h3 { font-size: 20px; margin-bottom: 10px; }
.aq-card p { color: var(--ink-3); font-size: 15.5px; }
.aq-card__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--signal-tint); border: 1px solid var(--signal-soft); display: grid; place-items: center; margin-bottom: 18px; color: var(--teal); }
.aq-card__ic svg { width: 23px; height: 23px; }
.aq-card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.aq-tag { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--teal-ink); background: var(--signal-tint); border: 1px solid var(--signal-soft); border-radius: 999px; padding: 4px 10px; }

/* ---- before/after bars ---- */
.aq-bars { display: grid; gap: 22px; }
.aq-bar { background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); padding: 20px 22px; box-shadow: var(--shadow-s); }
.aq-bar__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.aq-bar__lbl { font-weight: 600; font-size: 15px; }
.aq-bar__val { font-family: var(--mono); font-weight: 600; font-size: 15px; color: var(--teal); }
.aq-bar__track { height: 12px; border-radius: 999px; background: var(--paper-2); overflow: hidden; display: flex; }
.aq-bar__fill { height: 100%; border-radius: 999px; }
.aq-bar__fill--before { background: repeating-linear-gradient(45deg, var(--line), var(--line) 6px, #e4ece9 6px, #e4ece9 12px); }
.aq-bar__fill--after { background: linear-gradient(90deg, var(--teal), var(--signal)); }
.aq-bar__legend { display: flex; gap: 22px; margin-top: 14px; font-size: 13px; color: var(--ink-3); }
.aq-bar__legend i { display: inline-block; width: 12px; height: 12px; border-radius: 4px; margin-right: 6px; vertical-align: -1px; }

/* ---- stats ---- */
.aq-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.aq-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 30px 26px; box-shadow: var(--shadow-s); }
.aq-stat__num { font-family: var(--disp); font-weight: 800; font-size: clamp(34px, 4vw, 46px); letter-spacing: -.03em; color: var(--teal); line-height: 1; }
.aq-stat__lbl { font-weight: 700; margin-top: 14px; font-size: 16px; }
.aq-stat__desc { color: var(--ink-3); font-size: 14px; margin-top: 8px; }

/* ---- flow / steps ---- */
.aq-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.aq-step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 26px 24px; box-shadow: var(--shadow-s); position: relative; }
.aq-step__n { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--signal); }
.aq-step h3 { font-size: 18px; margin: 10px 0 8px; }
.aq-step p { color: var(--ink-3); font-size: 14.5px; }
.aq-step__tag { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--teal); }
.aq-step__tag::before { content: ""; width: 14px; height: 14px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314b8a6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12.5 9.5 18 20 6'/%3E%3C/svg%3E"); }

/* ---- split feature blocks ---- */
.aq-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.aq-split--flip .aq-split__media { order: -1; }
.aq-split h2 { font-size: clamp(26px, 3.4vw, 36px); }
.aq-split p { color: var(--ink-3); font-size: 17px; margin-top: 16px; }
.aq-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.aq-list li { position: relative; padding-left: 32px; font-size: 16px; color: var(--ink-2); }
.aq-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 6px; background: var(--signal-tint) no-repeat center / 14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d6e6e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12.5 9.5 18 20 6'/%3E%3C/svg%3E"); border: 1px solid var(--signal-soft); }
.aq-list strong { color: var(--ink); }

/* media panel */
.aq-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 26px; box-shadow: var(--shadow-l); }
.aq-panel--tint { background: linear-gradient(165deg, #fff, var(--signal-tint)); }
.aq-panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.aq-rows { display: grid; gap: 10px; }
.aq-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 16px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--paper); font-size: 14px; }
.aq-row__l { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.aq-row__v { font-family: var(--mono); font-weight: 600; color: var(--teal); }
.aq-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.aq-dot--ok { background: var(--signal); }
.aq-dot--soft { background: var(--amber); }
.aq-dot--hard { background: var(--rose); }

/* decline causes table */
.aq-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-s); }
.aq-table th, .aq-table td { text-align: left; padding: 15px 20px; font-size: 14.5px; border-bottom: 1px solid var(--line-2); }
.aq-table th { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); background: var(--paper-2); font-weight: 600; }
.aq-table tr:last-child td { border-bottom: 0; }
.aq-table td:first-child { font-weight: 600; }
.aq-table .aq-pill-soft { font-family: var(--mono); font-size: 11px; padding: 3px 9px; border-radius: 999px; background: #fbf1de; color: #9a6a18; border: 1px solid #f1ddb4; }
.aq-table .aq-pill-hard { font-family: var(--mono); font-size: 11px; padding: 3px 9px; border-radius: 999px; background: #f9e6ea; color: #9c3349; border: 1px solid #f0c9d2; }
.aq-table .aq-recov { font-family: var(--mono); font-weight: 600; color: var(--teal); }

/* ---- quote ---- */
.aq-quote { background: linear-gradient(150deg, var(--teal-ink), var(--teal)); color: #fff; border-radius: var(--r-xl); padding: 56px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: center; box-shadow: var(--shadow-l); }
.aq-quote q { font-family: var(--disp); font-weight: 600; font-size: clamp(20px, 2.6vw, 28px); line-height: 1.3; letter-spacing: -.02em; quotes: none; }
.aq-quote__who { margin-top: 26px; font-size: 15px; }
.aq-quote__who b { display: block; }
.aq-quote__who span { color: rgba(255, 255, 255, .72); }
.aq-quote__big { text-align: right; }
.aq-quote__big strong { font-family: var(--disp); font-weight: 800; font-size: clamp(48px, 7vw, 72px); letter-spacing: -.04em; display: block; line-height: 1; }
.aq-quote__big span { color: rgba(255, 255, 255, .78); font-size: 15px; }

/* ---- FAQ ---- */
.aq-faq { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.aq-faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); padding: 4px 24px; box-shadow: var(--shadow-s); transition: border-color .2s; }
.aq-faq details[open] { border-color: var(--signal-soft); }
.aq-faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--disp); font-weight: 600; font-size: 17.5px; display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.aq-faq summary::-webkit-details-marker { display: none; }
.aq-faq summary::after { content: "+"; font-family: var(--mono); font-size: 22px; color: var(--teal); transition: transform .2s; flex: none; }
.aq-faq details[open] summary::after { transform: rotate(45deg); }
.aq-faq p { color: var(--ink-3); font-size: 15.5px; padding: 0 0 22px; }

/* ---- CTA band ---- */
.aq-cta { text-align: center; background:
  radial-gradient(60% 80% at 50% 0%, rgba(20, 184, 166, .14), transparent 60%), var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--r-xl); padding: 64px 32px; }
.aq-cta h2 { font-size: clamp(28px, 4vw, 44px); max-width: 760px; margin: 0 auto; }
.aq-cta p { color: var(--ink-3); font-size: 18px; max-width: 620px; margin: 18px auto 0; }
.aq-cta__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---- page hero (inner pages) ---- */
.aq-phero { padding: 56px 0 30px; position: relative; overflow: hidden; }
.aq-phero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 85% 0%, rgba(20, 184, 166, .1), transparent 60%); }
.aq-phero .aq-shell { position: relative; }
.aq-phero h1 { font-size: clamp(34px, 5vw, 54px); margin: 18px 0 0; max-width: 880px; }
.aq-phero__lede { font-size: 19px; color: var(--ink-2); margin-top: 20px; max-width: 660px; }

/* ---- pricing ---- */
.aq-toggle { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px; gap: 4px; box-shadow: var(--shadow-s); }
.aq-toggle button { border: 0; background: none; font-family: var(--disp); font-weight: 600; font-size: 14px; padding: 9px 20px; border-radius: 999px; cursor: pointer; color: var(--ink-3); transition: .15s; }
.aq-toggle button.is-on { background: var(--teal); color: #fff; }
.aq-prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.aq-price { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 30px; box-shadow: var(--shadow-s); display: flex; flex-direction: column; }
.aq-price--pop { border-color: var(--teal); box-shadow: var(--shadow-m); position: relative; }
.aq-price__pop { position: absolute; top: -12px; left: 30px; background: var(--teal); color: #fff; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .04em; padding: 4px 12px; border-radius: 999px; }
.aq-price__name { font-family: var(--disp); font-weight: 700; font-size: 20px; }
.aq-price__amt { font-family: var(--disp); font-weight: 800; font-size: 42px; letter-spacing: -.03em; margin: 16px 0 2px; color: var(--ink); }
.aq-price__amt small { font-size: 15px; font-weight: 600; color: var(--ink-3); font-family: var(--sans); }
.aq-price__unit { color: var(--ink-3); font-size: 14px; }
.aq-price__sub { color: var(--teal); font-family: var(--mono); font-size: 13px; margin-top: 6px; }
.aq-price__desc { color: var(--ink-3); font-size: 14.5px; margin: 16px 0; }
.aq-price__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 11px; }
.aq-price__list li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink-2); }
.aq-price__list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 5px; background: var(--signal-tint) no-repeat center / 12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d6e6e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12.5 9.5 18 20 6'/%3E%3C/svg%3E"); }
.aq-price .aq-btn { margin-top: auto; }
.aq-note { text-align: center; color: var(--ink-3); font-size: 14px; margin-top: 26px; }

/* compare table */
.aq-compare { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-s); }
.aq-compare th, .aq-compare td { padding: 15px 20px; text-align: center; border-bottom: 1px solid var(--line-2); font-size: 14.5px; }
.aq-compare th:first-child, .aq-compare td:first-child { text-align: left; font-weight: 600; }
.aq-compare thead th { font-family: var(--disp); font-size: 16px; background: var(--paper-2); }
.aq-compare tr:last-child td { border-bottom: 0; }
.aq-compare .yes { color: var(--teal); font-weight: 700; }
.aq-compare .no { color: var(--ink-3); }

/* ---- developers / code ---- */
.aq-code { background: #07403f; color: #cfeee9; border-radius: var(--r-l); padding: 24px; font-family: var(--mono); font-size: 13.5px; line-height: 1.7; overflow-x: auto; box-shadow: var(--shadow-l); }
.aq-code .c { color: #6fb9b1; }
.aq-code .k { color: #6ee7d7; }
.aq-code .s { color: #ffd9a8; }
.aq-code .f { color: #b9f0e6; }
.aq-code__bar { display: flex; gap: 7px; margin-bottom: 16px; }
.aq-code__bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.2); }

/* ---- forms ---- */
.aq-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 32px; box-shadow: var(--shadow-m); }
.aq-field { margin-bottom: 18px; }
.aq-field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.aq-field input, .aq-field select, .aq-field textarea { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink); padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--paper); transition: border-color .15s, box-shadow .15s; }
.aq-field input:focus, .aq-field select:focus, .aq-field textarea:focus { outline: none; border-color: var(--signal); box-shadow: 0 0 0 3px var(--signal-soft); background: #fff; }
.aq-field textarea { min-height: 116px; resize: vertical; }
.aq-form__note { font-size: 13px; color: var(--ink-3); margin-top: 6px; }
.aq-form__done { display: flex; gap: 14px; align-items: flex-start; background: var(--signal-tint); border: 1px solid var(--signal-soft); border-radius: 14px; padding: 18px 20px; margin-bottom: 22px; }
.aq-form__done svg { width: 26px; height: 26px; flex: none; color: var(--teal); }
.aq-form__done b { display: block; font-family: var(--disp); }
.aq-form__done p { color: var(--ink-2); font-size: 14.5px; margin-top: 2px; }

.aq-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.aq-contact-aside { display: grid; gap: 26px; }
.aq-contact-aside h3 { font-size: 17px; margin-bottom: 6px; }
.aq-contact-aside p { color: var(--ink-3); font-size: 15px; }
.aq-contact-aside a { color: var(--teal); font-weight: 600; }

/* signin layout */
.aq-signin { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; min-height: 70vh; }
.aq-signin__card { max-width: 420px; }
.aq-signin__side { background: linear-gradient(160deg, var(--teal-ink), var(--teal)); color: #fff; border-radius: var(--r-xl); padding: 44px; box-shadow: var(--shadow-l); }
.aq-signin__side h2 { color: #fff; font-size: 26px; }
.aq-signin__side ul { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 16px; }
.aq-signin__side li { position: relative; padding-left: 30px; color: rgba(255,255,255,.9); font-size: 15px; }
.aq-signin__side li::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 6px; background: rgba(255,255,255,.16) no-repeat center / 14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12.5 9.5 18 20 6'/%3E%3C/svg%3E"); }
.aq-checkrow { display: flex; align-items: center; justify-content: space-between; margin: -4px 0 18px; font-size: 14px; }
.aq-checkrow label { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); }
.aq-checkrow a { color: var(--teal); font-weight: 600; }

/* ---- legal ---- */
.aq-legal { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; padding: 48px 0 90px; }
.aq-legal__toc { position: sticky; top: 92px; }
.aq-legal__toc h4 { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.aq-legal__toc a { display: block; padding: 7px 0; color: var(--ink-3); font-size: 14px; border-left: 2px solid var(--line); padding-left: 14px; }
.aq-legal__toc a:hover { color: var(--teal); border-color: var(--signal); }
.aq-legal__body h2 { font-size: 22px; margin: 38px 0 14px; scroll-margin-top: 90px; }
.aq-legal__body h2:first-child { margin-top: 0; }
.aq-legal__body p { color: var(--ink-2); margin-bottom: 14px; }
.aq-legal__body ul { color: var(--ink-2); padding-left: 22px; margin-bottom: 14px; }
.aq-legal__body li { margin-bottom: 8px; }
.aq-legal__body a { color: var(--teal); font-weight: 600; }
.aq-legal__meta { color: var(--ink-3); font-family: var(--mono); font-size: 13px; margin-top: 10px; }

/* ---- footer ---- */
.aq-foot { background: var(--teal-ink); color: #bfe0db; padding: 64px 0 30px; margin-top: 0; }
.aq-foot__top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.aq-foot__brand .aq-logo { color: #fff; }
.aq-foot__brand .aq-logo em { color: var(--signal); }
.aq-foot__blurb { margin-top: 16px; font-size: 14.5px; color: rgba(255,255,255,.7); max-width: 320px; }
.aq-foot__col h5 { font-family: var(--disp); font-size: 14px; color: #fff; margin: 0 0 16px; letter-spacing: -.01em; }
.aq-foot__col a { display: block; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.72); }
.aq-foot__col a:hover { color: #fff; }
.aq-foot__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; color: rgba(255,255,255,.6); }
.aq-foot .aq-lang__btn { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #cfeae6; }
.aq-foot .aq-lang__menu { background: #0a4a49; border-color: rgba(255,255,255,.16); }
.aq-foot .aq-lang__menu button { color: #cfeae6; }
.aq-foot .aq-lang__menu button:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ---- responsive ---- */
@media (max-width: 1180px) {
  .aq-nav, .aq-head__act { display: none; }
  .aq-burger { display: flex; }
  .aq-head.is-mobile-open .aq-mobile, .aq-mobile.is-open { display: flex; }
}
@media (max-width: 980px) {
  .aq-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .aq-hero__art { max-width: 420px; }
  .aq-split, .aq-signin { grid-template-columns: 1fr; gap: 36px; }
  .aq-split--flip .aq-split__media { order: 0; }
  .aq-split > *, .aq-signin > * { min-width: 0; }
  .aq-table, .aq-compare { display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  .aq-quote { grid-template-columns: 1fr; gap: 28px; padding: 40px; }
  .aq-quote__big { text-align: left; }
  .aq-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .aq-stats { grid-template-columns: repeat(2, 1fr); }
  .aq-flow { grid-template-columns: repeat(2, 1fr); }
  .aq-prices { grid-template-columns: 1fr; max-width: 460px; }
  .aq-legal { grid-template-columns: 1fr; gap: 28px; }
  .aq-legal__toc { position: static; }
  .aq-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .aq-foot__top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .aq-foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .aq-sec { padding: 64px 0; }
  .aq-shell { padding: 0 18px; }
  .aq-grid--2, .aq-grid--3, .aq-grid--4, .aq-stats, .aq-flow { grid-template-columns: 1fr; }
  .aq-quote { padding: 30px; }
  .aq-cta { padding: 44px 22px; }
  .aq-foot__top { grid-template-columns: 1fr; }
  .aq-table, .aq-compare { display: block; overflow-x: auto; white-space: nowrap; }
}
