/* ============================================================
   JHIMJHAM LLC — jhimjham.tech
   Design system: warm paper / deep ink / cobalt action / lime spark
   Type: Bricolage Grotesque (display) · Figtree (body) · JetBrains Mono (data)
   ============================================================ */

:root {
  --ink: #0C0F16;
  --ink-soft: #161B26;
  --paper: #FAF8F4;
  --card: #FFFFFF;
  --line: #E7E3DA;
  --line-dark: rgba(255, 255, 255, 0.10);
  --cobalt: #1A41E8;
  --cobalt-deep: #1233C7;
  --cobalt-tint: #EEF1FE;
  --lime: #D4F23F;
  --slate: #4A5264;
  --slate-light: #8A92A6;
  --danger: #D43F3F;
  --success: #1E9E5A;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 1px 2px rgba(12, 15, 22, 0.05), 0 12px 32px -12px rgba(12, 15, 22, 0.12);
  --shadow-pop: 0 24px 60px -16px rgba(18, 51, 199, 0.35);
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", Consolas, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--lime); color: var(--ink); }

.container { width: min(1160px, 92%); margin: 0 auto; }
.container-narrow { width: min(840px, 92%); margin: 0 auto; }

/* ---------- Type scale ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.3rem; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cobalt);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--cobalt);
}
.on-dark .eyebrow { color: var(--lime); }
.on-dark .eyebrow::before { background: var(--lime); }

.lead { font-size: 1.18rem; color: var(--slate); max-width: 56ch; }
.on-dark .lead { color: rgba(255,255,255,0.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--cobalt);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(26, 65, 232, 0.55);
}
.btn-primary:hover { background: var(--cobalt-deep); transform: translateY(-2px); box-shadow: var(--shadow-pop); }

.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 24px -10px rgba(212, 242, 63, 0.4);
}
.btn-lime:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.on-dark .btn-ghost { border-color: rgba(255,255,255,0.25); color: #fff; }
.on-dark .btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(12, 15, 22, 0.25);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}
.brand svg { width: 38px; height: 38px; }
.brand .tld { color: var(--cobalt); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.98rem;
}
.nav-links a:not(.btn) {
  position: relative;
  padding: 0.3rem 0;
  color: var(--slate);
  transition: color 0.16s ease;
}
.nav-links a:not(.btn):hover, .nav-links a:not(.btn).active { color: var(--ink); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--cobalt);
  transition: width 0.2s ease;
}
.nav-links a:not(.btn):hover::after, .nav-links a:not(.btn).active::after { width: 100%; }
.nav-links .btn { padding: 0.6rem 1.4rem; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all 0.25s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { left: 0; top: -7px; }
.nav-toggle span::after { left: 0; top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero (dark) ---------- */
.hero {
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(26, 65, 232, 0.45), transparent 60%),
    radial-gradient(700px 420px at -8% 108%, rgba(212, 242, 63, 0.10), transparent 55%),
    var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(800px 500px at 70% 20%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(800px 500px at 70% 20%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6.5rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.hero h1 .mark { position: relative; white-space: nowrap; }
.hero h1 .mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.16em;
  background: var(--lime);
  z-index: -1;
  border-radius: 3px;
  transform-origin: left;
  animation: underlineGrow 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
@keyframes underlineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.3rem; }

.hero-stats {
  display: flex;
  gap: 2.6rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  flex-wrap: wrap;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: #fff;
}
.stat .num em { color: var(--lime); font-style: normal; }
.stat .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* Hero terminal card */
.hero-card {
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7);
  transform: rotate(1.6deg);
  font-family: var(--font-mono);
  font-size: 0.83rem;
}
.hero-card .bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--line-dark);
}
.hero-card .bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.hero-card .bar i:nth-child(1) { background: #FF5F57; }
.hero-card .bar i:nth-child(2) { background: #FEBC2E; }
.hero-card .bar i:nth-child(3) { background: #28C840; }
.hero-card .bar b { margin-left: auto; color: rgba(255,255,255,0.4); font-weight: 400; font-size: 0.75rem; }
.hero-card pre {
  padding: 1.4rem 1.2rem 1.6rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  overflow-x: auto;
}
.hero-card .c-green { color: var(--lime); }
.hero-card .c-blue { color: #7B96FF; }
.hero-card .c-dim { color: rgba(255,255,255,0.38); }

/* ---------- Sections ---------- */
section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 0.9rem; }

.section-dark { background: var(--ink); color: #fff; }
.section-tint { background: var(--cobalt-tint); }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 65, 232, 0.35);
  box-shadow: 0 24px 48px -18px rgba(12, 15, 22, 0.18);
}
.feature-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cobalt-tint);
  color: var(--cobalt);
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
}
.feature-card .icon svg { width: 26px; height: 26px; }
.feature-card h3 { margin-bottom: 0.55rem; }
.feature-card p { color: var(--slate); font-size: 0.97rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem 1.9rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px -20px rgba(12, 15, 22, 0.2);
}
.price-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 30px 70px -24px rgba(12, 15, 22, 0.55);
}
.price-card .badge {
  position: absolute;
  top: -13px;
  right: 1.6rem;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
}
.price-card .cat {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 0.7rem;
}
.price-card.featured .cat { color: var(--lime); }
.price-card h3 { font-size: 1.42rem; margin-bottom: 0.3rem; }
.price-card .from { font-size: 0.82rem; color: var(--slate-light); font-family: var(--font-mono); }
.price-card .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  margin: 0.55rem 0 1.2rem;
}
.price-card .price small {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-light);
  letter-spacing: 0;
}
.price-card ul { margin-bottom: 1.8rem; flex: 1; }
.price-card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.42rem 0;
  font-size: 0.95rem;
  color: var(--slate);
}
.price-card.featured li { color: rgba(255,255,255,0.78); }
.price-card li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--cobalt-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A41E8' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/11px no-repeat;
}
.price-card.featured li::before {
  background-color: rgba(212, 242, 63, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4F23F' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: step; }
.process-step {
  position: relative;
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
}
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
  display: block;
  margin-bottom: 0.9rem;
}
.process-step h3 { font-size: 1.08rem; margin-bottom: 0.4rem; color: #fff; }
.process-step p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 360px at 85% 0%, rgba(212, 242, 63, 0.16), transparent 60%),
    var(--cobalt);
  color: #fff;
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(2.6rem, 6vw, 4.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,0.78); margin-top: 0.6rem; max-width: 48ch; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}
.field label span { color: var(--danger); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.92rem 1.05rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(26, 65, 232, 0.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: 0.8rem; color: var(--slate-light); margin-top: 0.35rem; }

.amount-wrap { position: relative; }
.amount-wrap::before {
  content: "$";
  position: absolute;
  left: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--slate-light);
}
.amount-wrap input { padding-left: 2.1rem; font-family: var(--font-mono); font-weight: 600; }

.form-error {
  display: none;
  background: #FDF0F0;
  border: 1px solid rgba(212, 63, 63, 0.35);
  color: var(--danger);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}
.form-error.show { display: block; }
.form-success {
  display: none;
  background: #EDF9F2;
  border: 1px solid rgba(30, 158, 90, 0.35);
  color: var(--success);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}
.form-success.show { display: block; }

/* ---------- Pay page ---------- */
.page-hero {
  background:
    radial-gradient(900px 420px at 80% -20%, rgba(26, 65, 232, 0.40), transparent 60%),
    var(--ink);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: rgba(255,255,255,0.7); margin-top: 0.8rem; max-width: 60ch; }

.quick-pick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pick-card {
  text-align: left;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
.pick-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.pick-card.selected {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(26, 65, 232, 0.12);
}
.pick-card .nm { font-weight: 700; font-size: 0.97rem; }
.pick-card .pr {
  font-family: var(--font-mono);
  color: var(--cobalt);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

.pay-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem;
  align-items: start;
}
.pay-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
}
.side-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.9rem;
  position: sticky;
  top: 100px;
}
.side-card h3 { color: #fff; margin-bottom: 1rem; }
.side-card .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line-dark);
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
}
.side-card .row b { color: #fff; font-family: var(--font-mono); }
.side-card .row:last-of-type { border-bottom: none; }
.side-card .total {
  margin-top: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.side-card .total .amt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--lime);
}
.trust-row {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}
.trust-row span { display: inline-flex; align-items: center; gap: 0.4rem; }
.trust-row svg { width: 14px; height: 14px; }

/* ---------- Checkout ---------- */
.checkout-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
#vezmo-pay { min-height: 320px; }
.gateway-frame {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}
.checkout-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 500;
}
.checkout-status.show { display: block; }
.checkout-status.info { background: var(--cobalt-tint); color: var(--cobalt-deep); }
.checkout-status.error { background: #FDF0F0; color: var(--danger); }
.checkout-status.ok { background: #EDF9F2; color: var(--success); }

.loader {
  width: 42px; height: 42px;
  border: 3.5px solid var(--cobalt-tint);
  border-top-color: var(--cobalt);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 3rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Receipt ---------- */
.receipt {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.receipt-head {
  background: var(--ink);
  color: #fff;
  padding: 2.2rem;
  text-align: center;
}
.receipt-head .tick {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.receipt-head .tick svg { width: 30px; height: 30px; }
.receipt-body { padding: 2rem 2.2rem; }
.receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.97rem;
}
.receipt-row:last-child { border-bottom: none; }
.receipt-row .k { color: var(--slate); }
.receipt-row .v { font-weight: 600; text-align: right; word-break: break-word; }
.receipt-row .v.mono { font-family: var(--font-mono); font-size: 0.88rem; }
.receipt-total {
  margin-top: 1rem;
  padding: 1.1rem 0 0;
  border-top: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.receipt-total .amt { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; align-items: start; }
.contact-info-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.2rem;
}
.contact-info-card h3 { color: #fff; }
.contact-line {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.contact-line:last-child { border-bottom: none; }
.contact-line .ic {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(212, 242, 63, 0.12);
  color: var(--lime);
  display: grid;
  place-items: center;
}
.contact-line .ic svg { width: 19px; height: 19px; }
.contact-line .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.45); font-family: var(--font-mono); }
.contact-line .val { font-weight: 600; color: #fff; }
.contact-line .val a:hover { color: var(--lime); }

/* ---------- Legal pages ---------- */
.legal-body { padding: clamp(3rem, 6vw, 4.5rem) 0 5rem; }
.legal-body h2 { font-size: 1.45rem; margin: 2.4rem 0 0.8rem; }
.legal-body h3 { font-size: 1.1rem; margin: 1.6rem 0 0.5rem; }
.legal-body p, .legal-body li { color: var(--slate); margin-bottom: 0.85rem; }
.legal-body ul { list-style: disc; padding-left: 1.4rem; }
.legal-body li { margin-bottom: 0.4rem; }
.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--slate-light);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.legal-body a { color: var(--cobalt); font-weight: 500; }
.legal-body a:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--cobalt);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.4rem 1.2rem; color: var(--slate); font-size: 0.97rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.1rem;
}
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .mono { font-family: var(--font-mono); font-size: 0.78rem; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .pricing-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .pay-layout, .checkout-shell, .contact-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 4% 1.2rem;
    display: none;
    box-shadow: 0 30px 50px -20px rgba(12, 15, 22, 0.25);
  }
  .nav-open .nav-links { display: flex; }
  .nav-links a:not(.btn) { padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--line); }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 1rem; }
  .nav-toggle { display: block; }
}
@media (max-width: 620px) {
  .pricing-grid, .grid-3, .grid-2, .quick-pick, .process-grid, .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-stats { gap: 1.6rem; }
  .pay-panel, .receipt-body { padding: 1.5rem; }
  .cta-band { padding: 2rem 1.5rem; }
}

/* ---------- Print (receipt) ---------- */
@media print {
  .site-header, .site-footer, .no-print { display: none !important; }
  body { background: #fff; }
  .receipt { box-shadow: none; border: 1px solid #ccc; }
  .receipt-head { background: #0C0F16 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
