/* ============================================================
   Funded Rush — styles.css
   ============================================================ */

:root {
  --bg: #0B0F17;
  --bg-2: #0E1320;
  --surface: #121826;
  --surface-2: #161D2E;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #EDF1F8;
  --muted: #93A0B7;
  --muted-2: #6C7993;
  --accent: #15E08A;
  --accent-2: #0AC4E8;
  --gold: #F4C45A;
  --grad: linear-gradient(135deg, #15E08A 0%, #0AC4E8 100%);
  --grad-soft: linear-gradient(135deg, rgba(21,224,138,0.16), rgba(10,196,232,0.16));
  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 0 1px rgba(21,224,138,0.18), 0 20px 50px -20px rgba(21,224,138,0.28);
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, .stat__num, .plan__price, .brand__name {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

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

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad); color: #04140E;
  box-shadow: 0 10px 30px -10px rgba(21,224,138,0.5);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -10px rgba(21,224,138,0.6); }
.btn--ghost {
  background: rgba(255,255,255,0.03); color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); background: rgba(21,224,138,0.06); transform: translateY(-2px); }
.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, rgba(21,224,138,0.10), rgba(10,196,232,0.10));
  border-bottom: 1px solid var(--line);
  font-size: 13.5px; color: var(--muted);
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 9px 24px; text-align: center; }
.topbar strong { color: var(--text); }
.topbar__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(21,224,138,0.18); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 23, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.is-scrolled { border-bottom-color: var(--line); background: rgba(11,15,23,0.88); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__tile { width: 38px; height: 38px; flex: none; }
.brand__tile svg { width: 100%; height: 100%; }
.brand__name { font-size: 21px; font-weight: 700; color: var(--text); }
.brand__accent {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a:not(.btn) { font-size: 15px; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav > a:not(.btn):hover { color: var(--text); }
.nav__cta { margin-left: 4px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 40px; overflow: hidden; }
.hero__glow {
  position: absolute; top: -260px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(21,224,138,0.14), rgba(10,196,232,0.07) 55%, transparent 75%);
  filter: blur(10px);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-block; font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 700; margin-bottom: 20px; }
.hero__sub { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__points { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__points li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--muted); }
.check { width: 19px; height: 19px; flex: none; fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* hero visual cards */
.hero__visual { position: relative; min-height: 340px; }
.card-float {
  position: relative; background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong); border-radius: 20px; padding: 22px;
  box-shadow: var(--shadow); backdrop-filter: blur(8px);
}
.card-float--main { animation: floaty 6s ease-in-out infinite; }
.card-float--mini {
  position: absolute; right: 6px; bottom: -54px; width: 250px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: floaty 6s ease-in-out infinite 1.2s;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.cf__head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.cf__badge {
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent); background: rgba(21,224,138,0.12); border: 1px solid rgba(21,224,138,0.3);
  padding: 3px 9px; border-radius: 999px;
}
.cf__badge--pass { color: #04140E; background: var(--grad); border: none; }
.cf__title { font-size: 13px; color: var(--muted-2); font-family: 'Space Grotesk', sans-serif; }
.cf__balance { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.cf__label { font-size: 12.5px; color: var(--muted-2); }
.cf__value { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; display: flex; align-items: baseline; gap: 10px; }
.cf__delta { font-size: 14px; color: var(--accent); font-weight: 600; }
.cf__chart { margin: 4px -4px 16px; }
.cf__chart svg { width: 100%; height: 84px; }
.spark-line { stroke-dasharray: 700; stroke-dashoffset: 700; animation: draw 2.4s var(--ease) forwards .3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.cf__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; }
.cf__row > div { display: flex; flex-direction: column; gap: 3px; }
.cf__k { font-size: 12px; color: var(--muted-2); }
.cf__v { font-size: 14px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
.cf__v.ok { color: var(--accent); }
.cf__mini-txt { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* MT5 mobile history card */
.card-float.mt5 { padding: 0; overflow: hidden; background: #000; font-family: 'Inter', sans-serif; }

/* iOS status bar */
.mt5__status { display: flex; align-items: center; justify-content: space-between; padding: 10px 18px 6px; }
.mt5__clock { background: #2BBF4E; color: #fff; font-weight: 600; font-size: 13px; line-height: 1; padding: 4px 9px 3px; border-radius: 9px; font-variant-numeric: tabular-nums; }
.mt5__sysicons { display: flex; align-items: center; gap: 6px; }
.mt5__sysicons svg { display: block; }

/* segmented control: Day / Week / Month / Custom */
.mt5__seg { display: flex; gap: 2px; margin: 4px 14px 12px; padding: 2px; background: rgba(120,120,128,0.22); border-radius: 9px; }
.mt5__seg span { flex: 1; text-align: center; font-size: 13px; color: #e6e6ea; padding: 6px 0; border-radius: 7px; }
.mt5__seg .is-active { background: #545458; color: #fff; font-weight: 600; box-shadow: 0 1px 2px rgba(0,0,0,0.45); }

/* deal rows (two lines each) */
.mt5__deal { padding: 9px 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mt5__deal--mark-g { box-shadow: inset 3px 0 0 #2BC46A; }
.mt5__deal--mark-r { box-shadow: inset 3px 0 0 #FF453A; }
.mt5__l1, .mt5__l2 { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.mt5__l1 { margin-bottom: 3px; }
.mt5__pair { font-size: 14px; font-weight: 700; color: #F2F4F8; }
.mt5__buy { color: #2E9BFF; }
.mt5__sell { color: #FF453A; }
.mt5__time { font-size: 11.5px; color: #6E7682; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mt5__px { font-size: 13px; color: #8A92A0; font-variant-numeric: tabular-nums; }
.mt5__p { font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mt5__p.pos { color: #2E9BFF; }
.mt5__p.neg { color: #FF453A; }

/* Profit / Credit totals */
.mt5__totals { padding: 11px 16px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 4px; background: rgba(255,255,255,0.02); }
.mt5__total { display: flex; justify-content: space-between; align-items: baseline; }
.mt5__total > span:first-child { font-size: 13.5px; font-weight: 700; color: #C7CDD6; }
.mt5__credit { font-size: 13.5px; color: #8A92A0; font-variant-numeric: tabular-nums; }

/* bottom tab bar */
.mt5__nav { display: flex; padding: 9px 10px 11px; border-top: 1px solid rgba(255,255,255,0.07); background: rgba(0,0,0,0.35); }
.mt5__navitem { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 9.5px; color: #6E7682; flex: 1; }
.mt5__navitem svg { width: 17px; height: 17px; fill: none; stroke: #6E7682; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mt5__navitem.is-active { color: #2E9BFF; }
.mt5__navitem.is-active svg { stroke: #2E9BFF; }

/* iOS home indicator */
.mt5__home { display: flex; justify-content: center; padding: 8px 0 9px; }
.mt5__home::after { content: ""; width: 124px; height: 5px; border-radius: 3px; background: #fff; opacity: 0.85; }

/* firms ticker */
.firms { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; align-items: center; }
.firms__label { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.firms__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.firms__row span { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px; color: var(--muted-2); opacity: .8; transition: color .2s, opacity .2s; }
.firms__row span:hover { color: var(--text); opacity: 1; }

/* ---------- Stats ---------- */
.stats { padding: 18px 0 8px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  text-align: center; padding: 28px 16px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
}
.stat__num { display: block; font-size: 40px; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { font-size: 14px; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section__head h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; margin-bottom: 14px; }
.section__lead { font-size: 17px; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}
.step:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.step__num {
  display: inline-block; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 14px; color: #04140E; background: var(--grad);
  width: 40px; height: 40px; line-height: 40px; text-align: center; border-radius: 11px; margin-bottom: 18px;
}
.step h3 { font-size: 18.5px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------- Services / certificates ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.service { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px 28px; text-align: center; transition: transform .3s var(--ease), border-color .3s; }
.service:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.service--featured { border-color: rgba(21,224,138,0.4); box-shadow: var(--shadow-glow); }
.service__cert { margin-bottom: 22px; }
.service__cert img { width: 100%; height: auto; display: block; border-radius: 12px; box-shadow: 0 14px 34px -16px rgba(0,0,0,0.7); }
.service h3 { font-size: 22px; margin-bottom: 10px; }
.service p { font-size: 14.5px; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.plan:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.plan--featured {
  border-color: rgba(21,224,138,0.45);
  background: linear-gradient(180deg, rgba(21,224,138,0.06), var(--surface) 40%);
  box-shadow: var(--shadow-glow);
}
.plan--featured:hover { transform: translateY(-8px); }
.plan__tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: #04140E; background: var(--grad); padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.plan__head { margin-bottom: 18px; }
.plan__name { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; color: var(--accent); margin-bottom: 4px; }
.plan__size { font-size: 14px; color: var(--muted); }
.plan__price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 42px; display: flex; align-items: flex-start; gap: 1px; margin-bottom: 8px; }
.plan__save { display: flex; align-items: center; gap: 9px; margin-bottom: 22px; }
.plan__save s { color: var(--muted-2); font-size: 15px; text-decoration-thickness: 1.5px; }
.plan__off { font-size: 11px; font-weight: 700; letter-spacing: .02em; color: var(--accent); background: var(--grad-soft); border: 1px solid rgba(21,224,138,0.32); padding: 2px 8px; border-radius: 999px; }
.plan__cur { font-size: 22px; margin-top: 8px; color: var(--muted); }
.plan__dec { font-size: 20px; margin-top: 6px; color: var(--muted); }
.plan__per { font-size: 13px; font-weight: 500; color: var(--muted-2); align-self: flex-end; margin: 0 0 9px 8px; font-family: 'Inter', sans-serif; }
.plan__features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan__features li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--muted); }
.plan__features li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
  background: var(--grad-soft); border: 1px solid rgba(21,224,138,0.4); border-radius: 50%;
}
.plan__features li::after {
  content: ""; position: absolute; left: 5px; top: 9px; width: 6px; height: 3.5px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.pricing__note { text-align: center; margin-top: 28px; font-size: 14.5px; color: var(--muted); }
.pricing__note a { color: var(--accent); font-weight: 600; }
.pricing__note a:hover { text-decoration: underline; }

/* ---------- Payment cards ---------- */
.paycards { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.paycards img { height: 30px; width: auto; display: block; border-radius: 5px; box-shadow: 0 1px 4px rgba(0,0,0,0.25); }
.paystrip { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.paystrip__label { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.paystrip .paycards { justify-content: center; }
.footer__pay { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--line); }
.footer__pay-label { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .3s var(--ease), border-color .3s;
}
.feature:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.feature__icon {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid rgba(21,224,138,0.25); margin-bottom: 18px;
}
.feature__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--accent); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 18.5px; margin-bottom: 9px; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; }
.review__stars { color: var(--gold); letter-spacing: 3px; font-size: 16px; }
.review blockquote { font-size: 15.5px; color: var(--text); line-height: 1.65; flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #04140E; background: var(--grad); flex: none; }
.review figcaption strong { display: block; font-size: 14.5px; }
.review figcaption small { color: var(--muted-2); font-size: 13px; }

/* ---------- FAQ ---------- */
.faq__container { max-width: 820px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s; }
.faq__item[open] { border-color: var(--line-strong); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 22px; font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-size: 24px; color: var(--accent); font-weight: 400; transition: transform .25s; flex: none; line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.contact__intro h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 14px; }
.contact__intro > p { color: var(--muted); font-size: 16px; margin-bottom: 26px; max-width: 460px; }
.contact__quick { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.quick {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  border: 1px solid; border-radius: 14px;
  transition: transform .25s var(--ease), box-shadow .3s, background .3s, border-color .3s;
}
.quick__icon, .quick__txt, .quick__arrow { position: relative; z-index: 1; }

/* icon in a brand-colour circle with a live "ripple" pulse */
.quick__icon { width: 44px; height: 44px; flex: none; border-radius: 50%; display: grid; place-items: center; }
.quick__icon svg { width: 23px; height: 23px; fill: #fff; }
.quick__icon::before, .quick__icon::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid currentColor; opacity: 0; animation: ripple 2.6s ease-out infinite;
}
.quick__icon::after { animation-delay: 1.3s; }
@keyframes ripple { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.6); opacity: 0; } }

.quick__txt { flex: 1; min-width: 0; }
.quick__txt strong { display: block; font-size: 15.5px; font-family: 'Space Grotesk', sans-serif; color: var(--text); }
.quick__txt small { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12.5px; margin-top: 1px; }
.quick__live { width: 7px; height: 7px; border-radius: 50%; background: #2BD46A; flex: none; animation: livedot 1.8s infinite; }
@keyframes livedot { 0% { box-shadow: 0 0 0 0 rgba(43,212,106,.55); } 70% { box-shadow: 0 0 0 6px rgba(43,212,106,0); } 100% { box-shadow: 0 0 0 0 rgba(43,212,106,0); } }

.quick__arrow { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; opacity: .5; transition: transform .25s var(--ease), opacity .25s; }
.quick:hover .quick__arrow { transform: translateX(4px); opacity: 1; }

/* gentle shine sweep */
.quick::after {
  content: ""; position: absolute; top: 0; left: -65%; z-index: 0;
  width: 45%; height: 100%; transform: skewX(-18deg);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.12), transparent);
  animation: quickShine 5s ease-in-out infinite;
}
@keyframes quickShine { 0%, 55% { left: -65%; } 80%, 100% { left: 135%; } }

/* WhatsApp colourway */
.quick--wa { color: #25D366; background: linear-gradient(135deg, rgba(37,211,102,.15), rgba(37,211,102,.05)); border-color: rgba(37,211,102,.42); box-shadow: 0 6px 22px -13px rgba(37,211,102,.55); }
.quick--wa .quick__icon { background: linear-gradient(135deg, #25D366, #14a94d); }
.quick--wa:hover { transform: translateY(-3px); border-color: rgba(37,211,102,.75); box-shadow: 0 16px 36px -12px rgba(37,211,102,.7); }

/* Telegram colourway */
.quick--tg { color: #2AABEE; background: linear-gradient(135deg, rgba(42,171,238,.15), rgba(42,171,238,.05)); border-color: rgba(42,171,238,.42); box-shadow: 0 6px 22px -13px rgba(42,171,238,.55); }
.quick--tg .quick__icon { background: linear-gradient(135deg, #2AABEE, #1a8fd0); }
.quick--tg:hover { transform: translateY(-3px); border-color: rgba(42,171,238,.75); box-shadow: 0 16px 36px -12px rgba(42,171,238,.7); }

@media (prefers-reduced-motion: reduce) {
  .quick__icon::before, .quick__icon::after, .quick__live, .quick::after { animation: none; }
}
.contact__assure { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.contact__assure li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); }

/* form */
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field span { font-size: 13.5px; font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font-family: 'Inter', sans-serif; font-size: 15px; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 11px;
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(21,224,138,0.15);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2393A0B7' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__status { margin-top: 14px; font-size: 14.5px; font-weight: 500; min-height: 1px; text-align: center; }
.form__status.is-ok { color: var(--accent); }
.form__status.is-err { color: #ff6b6b; }
.form__fine { margin-top: 14px; font-size: 12.5px; color: var(--muted-2); text-align: center; }
.btn .spinner { width: 16px; height: 16px; border: 2px solid rgba(4,20,14,0.35); border-top-color: #04140E; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- CTA band ---------- */
.ctaband { padding: 0 0 90px; }
.ctaband__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(21,224,138,0.12), rgba(10,196,232,0.12));
  border: 1px solid rgba(21,224,138,0.25); border-radius: 24px; padding: 44px 48px;
}
.ctaband h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.ctaband p { color: var(--muted); font-size: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 60px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; padding-bottom: 40px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: 14.5px; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 14.5px; color: var(--muted); margin-bottom: 11px; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.footer__bottom p { font-size: 13px; color: var(--muted-2); }
.footer__disclaimer { font-size: 12px; line-height: 1.6; max-width: 900px; }

/* ---------- Legal pages ---------- */
.legal { padding: 60px 0 80px; }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal a.back { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; color: var(--accent); margin-bottom: 24px; font-weight: 600; }
.legal h1 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 8px; }
.legal__updated { color: var(--muted-2); font-size: 14px; margin-bottom: 34px; }
.legal h2 { font-size: 21px; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--text); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 440px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .reviews { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 880px) {
  .nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 8px 24px 20px;
    transform: translateY(-130%); transition: transform .35s var(--ease); }
  .nav.is-open { transform: none; }
  .nav > a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin-top: 14px; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 64px 0; }
  .features, .form__row, .stats__grid { grid-template-columns: 1fr; }
  .steps, .pricing { grid-template-columns: 1fr; }
  .ctaband__inner { padding: 32px 26px; }
  .card-float--mini { position: relative; right: 0; bottom: 0; width: 100%; margin-top: 16px; }
  .hero__visual { min-height: auto; }
}
