/* ============================================================
   ShopTrolley — Marketing Site
   ============================================================ */
:root {
  --bg: #f4f6fd;
  --card: #ffffff;
  --border: #e5e9f5;
  --ink: #151a2b;
  --ink-2: #5b6479;
  --ink-3: #97a0b3;
  --indigo: #4f6bff;
  --violet: #7c5bff;
  --grad: linear-gradient(135deg, #4f6bff 0%, #7c5bff 100%);
  --grad-soft: linear-gradient(135deg, rgba(79,107,255,0.10), rgba(124,91,255,0.10));
  --green: #16a34a;
  --shadow-sm: 0 1px 2px rgba(30,40,90,.06), 0 1px 3px rgba(30,40,90,.08);
  --shadow-md: 0 8px 30px rgba(30,40,90,.10), 0 2px 6px rgba(30,40,90,.06);
  --shadow-lg: 0 24px 60px rgba(30,40,90,.16);
  --radius: 18px;
  --radius-lg: 24px;
  --nav-h: 72px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 14px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 24px rgba(79,107,255,.32); }
.btn-primary:hover { box-shadow: 0 14px 32px rgba(79,107,255,.4); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-outline { background: #fff; color: var(--ink); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-white { background: #fff; color: var(--indigo); box-shadow: 0 12px 30px rgba(15,20,60,.28); }
.btn-white:hover { box-shadow: 0 16px 38px rgba(15,20,60,.34); }
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 16px; }
.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 11px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 60;
  background: rgba(244,246,253,.8);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(229,233,245,.7);
  transition: box-shadow .2s ease;
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(30,40,90,.08); }
.nav-inner { height: var(--nav-h); display: flex; align-items: center; gap: 26px; }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 19px; letter-spacing: -.02em; }
.brand-logo { width: 38px; height: auto; border-radius: 9px; }
.brand-name { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; gap: 4px; margin: 0 auto; }
.nav-links a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 10px;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--indigo); background: rgba(79,107,255,.08); }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-cta { display: inline-flex; }

.nav-burger { display: none; background: none; border: none; color: var(--ink); padding: 6px; }
.nav-burger svg { width: 26px; height: 26px; }

/* Lang switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease;
}
.lang-btn:hover { border-color: var(--indigo); }
.lang-btn svg { width: 14px; height: 14px; color: var(--ink-3); }
.lang-flag { font-size: 16px; }
.lang-menu {
  position: absolute;
  right: 0; top: calc(100% + 8px);
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  display: none;
  z-index: 70;
}
.lang-menu.open { display: block; animation: pop .16s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(-6px) scale(.98); } to { opacity: 1; transform: none; } }
.lang-menu li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.lang-menu li:hover { background: rgba(79,107,255,.08); color: var(--indigo); }
.lang-menu li.active { background: var(--grad-soft); color: var(--indigo); }
.lang-menu .flag { font-size: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 56px) 0 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(244,246,253,0) 0%, var(--bg) 100%);
}
.hero .blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.hero .b1 { width: 520px; height: 520px; background: #a9b8ff; top: -160px; left: -120px; }
.hero .b2 { width: 420px; height: 420px; background: #c9b8ff; top: -80px; right: -100px; }
.hero .b3 { width: 380px; height: 380px; background: #b3e6ff; bottom: 0; left: 40%; opacity: .35; }

.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -.035em;
  font-weight: 900;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin-top: 20px;
  font-size: 17.5px;
  color: var(--ink-2);
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-note { margin-top: 16px; font-size: 13.5px; color: var(--ink-3); font-weight: 500; }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  width: 300px;
  aspect-ratio: 9 / 19;
  background: #0f1526;
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  transform: perspective(1400px) rotateY(-8deg) rotateX(4deg);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: perspective(1400px) rotateY(-8deg) rotateX(4deg) translateY(0); } 50% { transform: perspective(1400px) rotateY(-8deg) rotateX(4deg) translateY(-12px); } }
.phone-notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 24px; background: #0f1526; border-radius: 0 0 16px 16px;
  z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #f2f4fb;
  border-radius: 34px;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 44px 14px 14px;
  gap: 10px;
  font-family: var(--font);
}
.app-bar { display: flex; align-items: center; gap: 9px; }
.app-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 17px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.app-name { font-size: 13px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.app-tag { font-size: 10px; color: var(--ink-3); font-weight: 600; }
.app-banner {
  background: var(--grad);
  border-radius: 16px;
  padding: 12px;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 24px rgba(79,107,255,.35);
}
.app-logo { width: 40px; height: auto; border-radius: 8px; background: #fff; padding: 3px; }
.app-h1 { font-size: 15px; font-weight: 800; line-height: 1.1; }
.app-p { font-size: 10px; opacity: .92; margin-top: 2px; line-height: 1.3; }
.app-search {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 9px 12px;
  font-size: 11.5px; color: var(--ink-3); font-weight: 600;
  display: flex; align-items: center; gap: 7px;
  box-shadow: var(--shadow-sm);
}
.app-products { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.app-card {
  background: #fff; border-radius: 14px; padding: 9px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.app-thumb {
  aspect-ratio: 1; border-radius: 10px;
  background: var(--bg); font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 7px;
}
.app-pname { font-size: 10.5px; font-weight: 700; color: var(--ink); line-height: 1.25; min-height: 2.5em; }
.app-price { font-size: 12px; font-weight: 800; color: var(--indigo); margin-top: 3px; }
.app-cart { background: #fff; border-radius: 14px; padding: 11px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-top: auto; }
.app-cart-t { font-size: 10px; font-weight: 800; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; }
.app-cart-row { display: flex; justify-content: space-between; align-items: baseline; margin: 3px 0 9px; }
.app-cart-n { font-size: 11.5px; color: var(--ink-2); font-weight: 600; }
.app-cart-total { font-size: 15px; font-weight: 900; color: var(--ink); }
.app-checkout {
  background: var(--grad); color: #fff; text-align: center;
  border-radius: 10px; padding: 8px; font-size: 12px; font-weight: 800;
}

.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}
.chip-ico { font-size: 17px; }
.chip-1 { top: 16%; left: -8px; }
.chip-2 { bottom: 12%; right: -6px; animation-delay: 1.2s; }

/* Stats */
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 56px 22px 40px;
  max-width: 900px;
}
.stat { text-align: center; }
.stat-n {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  letter-spacing: -.03em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-l { font-size: 13.5px; color: var(--ink-2); font-weight: 600; margin-top: 2px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.sec-eyebrow {
  display: inline-block;
  background: var(--grad-soft);
  color: var(--indigo);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 16px;
}
.sec-title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; letter-spacing: -.03em; line-height: 1.12; }
.sec-sub { margin-top: 14px; font-size: 16.5px; color: var(--ink-2); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(79,107,255,.35); }
.feat-ico {
  width: 52px; height: 52px;
  border-radius: 15px;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c);
  color: #fff;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--c) 40%, transparent);
  margin-bottom: 16px;
}
.feat h3 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 8px; }
.feat p { font-size: 14.5px; color: var(--ink-2); }

/* Steps */
.steps { display: flex; align-items: stretch; gap: 0; justify-content: center; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); flex: 1; max-width: 300px; }
.step-n {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(79,107,255,.35);
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-2); }
.step-arrow { display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--ink-3); font-weight: 800; padding: 0 22px; }

/* Markets */
.markets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.market {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease;
}
.market:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.market::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent);
}
.market-flag { font-size: 38px; margin-bottom: 14px; }
.market h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.market p { font-size: 14.5px; color: var(--ink-2); margin-bottom: 16px; }
.market-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.market-tags span {
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 5px 12px;
}

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.popular {
  border: 2px solid var(--indigo);
  box-shadow: 0 24px 50px rgba(79,107,255,.22);
  position: relative;
  transform: scale(1.02);
}
.plan.popular:hover { transform: scale(1.02) translateY(-4px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff;
  font-size: 12px; font-weight: 800;
  border-radius: 999px;
  padding: 6px 16px;
  box-shadow: 0 8px 20px rgba(79,107,255,.4);
  white-space: nowrap;
}
.plan-name { font-size: 15px; font-weight: 800; color: var(--ink-2); letter-spacing: .02em; }
.plan-price { font-size: 48px; font-weight: 900; letter-spacing: -.04em; margin: 8px 0 2px; }
.plan-price .cur { font-size: 24px; vertical-align: super; font-weight: 800; }
.plan-price .per { font-size: 15px; color: var(--ink-3); font-weight: 600; letter-spacing: 0; }
.plan-desc { font-size: 14px; color: var(--ink-2); margin-bottom: 18px; }
.plan-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan-feats li {
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.plan-feats li::before {
  content: "✓";
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.plan .btn { width: 100%; }
.pricing-note { text-align: center; font-size: 13.5px; color: var(--ink-3); margin-top: 22px; }

/* Quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.quote-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.quote-txt { font-size: 15px; color: var(--ink); font-weight: 500; flex: 1; }
.quote-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.quote-name { font-size: 14.5px; font-weight: 800; }
.quote-role { font-size: 12.5px; color: var(--ink-3); }

/* FAQ */
.faq-col { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 19px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: color .15s ease;
}
.faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 600;
  color: var(--indigo);
  transition: transform .2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-a p { padding: 0 22px 20px; font-size: 15px; color: var(--ink-2); }
.faq-item.open .faq-a { max-height: 300px; }

/* CTA */
.cta-box {
  position: relative;
  background: var(--grad);
  border-radius: var(--radius-lg);
  padding: 64px 30px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(79,107,255,.35);
}
.cta-box h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 900; letter-spacing: -.03em; position: relative; }
.cta-box p { font-size: 17px; opacity: .92; margin: 12px auto 28px; max-width: 460px; position: relative; }
.cta-box .btn { position: relative; }
.cta-note { font-size: 13.5px; opacity: .8; margin-top: 18px !important; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .4; }
.cta-bg .b1 { width: 420px; height: 420px; background: #fff; top: -180px; left: -100px; }
.cta-bg .b2 { width: 380px; height: 380px; background: #9d8bff; bottom: -160px; right: -80px; }

.hidden { display: none !important; }

/* ---------- Signup form ---------- */
.signup-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 34px;
  max-width: 760px;
  margin: 0 auto;
}
.signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.signup-field-wide { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}
.input, .select {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 13px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2397a0b3' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 42px;
  cursor: pointer;
}
.input::placeholder { color: var(--ink-3); }
.input:focus, .select:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(79,107,255,.14);
}
.field-error {
  background: var(--red-bg, #fdecec);
  color: #dc2626;
  border: 1px solid rgba(220,38,38,.25);
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
}
.signup-btn { width: 100%; margin-top: 8px; }
.signup-note { text-align: center; font-size: 13.5px; color: var(--ink-3); margin-top: 14px; }
.signup-success {
  text-align: center;
  padding: 24px 10px 8px;
}
.success-ico { font-size: 52px; margin-bottom: 12px; }
.signup-success h3 { font-size: 24px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 10px; }
.signup-success p { color: var(--ink-2); font-size: 15.5px; max-width: 420px; margin: 0 auto 20px; }

/* ---------- Footer ---------- */
.footer { background: #101426; color: #9aa5c0; padding: 60px 0 28px; }
.footer .brand-name { -webkit-text-fill-color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }
.footer-brand p { font-size: 14.5px; margin-top: 14px; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .04em; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; padding: 5px 0; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  font-size: 13px;
  color: #6b7694;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .features-grid, .markets, .plans, .quotes { grid-template-columns: 1fr 1fr; }
  .step-arrow { transform: rotate(90deg); padding: 6px 0; }
  .steps { flex-direction: column; align-items: center; gap: 0; }
  .step { max-width: 340px; width: 100%; text-align: center; }
  .step-n { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    padding: 12px;
    gap: 2px;
    display: none;
    z-index: 59;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 16px; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .lang-btn { padding: 8px 11px; }
  .lang-btn #lang-label { display: none; }

  .section { padding: 60px 0; }
  .signup-grid { grid-template-columns: 1fr; }
  .signup-form { padding: 24px 18px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 26px; padding: 44px 22px 20px; }
  .features-grid, .markets, .plans, .quotes { grid-template-columns: 1fr; }
  .plan.popular { transform: none; }
  .plan.popular:hover { transform: translateY(-4px); }
  .float-chip { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}
