/* =========================================================
   I-Shoppy — Design System
   ========================================================= */
:root {
  --bg: #0c1024;
  --bg-2: #121736;
  --surface: #ffffff;
  --surface-soft: #f5f6fb;
  --ink: #11152e;
  --ink-soft: #4b5168;
  --line: #e6e8f2;

  --brand: #4f46e5;        /* indigo */
  --brand-600: #4338ca;
  --brand-700: #3730a3;
  --accent: #ff6b5e;       /* warm coral */
  --accent-2: #ffb454;     /* amber */
  --mint: #2dd4a7;

  --radius: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(17, 21, 46, 0.06);
  --shadow-md: 0 18px 50px rgba(17, 21, 46, 0.12);
  --shadow-glow: 0 30px 80px rgba(79, 70, 229, 0.28);

  --maxw: 1160px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: "Sora", var(--font);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-700));
  color: #fff;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(79, 70, 229, 0.45); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }

.link-arrow {
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-arrow::after { content: "→"; transition: transform 0.2s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--bg);
  color: #c9cdf0;
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.topbar__links a:hover { color: #fff; }
.topbar .dot { margin: 0 8px; opacity: 0.5; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.brand__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
}
.brand--light { color: #fff; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav__link { font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); transition: color 0.15s ease; }
.nav__link:hover { color: var(--brand); }
.nav__cta { color: #fff; }

.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(--ink); border-radius: 2px; transition: 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% -10%, #1c2350 0%, var(--bg) 55%);
  color: #fff;
  overflow: hidden;
  padding: 86px 0 110px;
}
.hero__glow {
  position: absolute;
  width: 620px; height: 620px;
  right: -160px; top: -200px;
  background: radial-gradient(circle, rgba(255, 107, 94, 0.35), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}
.pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #c9cdf0;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 20px 0 18px;
}
.hero__title .accent { color: var(--accent); }
.hero__lead {
  font-size: 1.1rem;
  color: #c3c8ea;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 14px; margin: 28px 0 22px; flex-wrap: wrap; }
.hero__trust { font-size: 0.85rem; color: #9aa0c9; }

/* Hero floating cards */
.hero__card-stack { position: relative; height: 420px; }
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
.float-card--score { top: 0; left: 6%; width: 220px; text-align: center; }
.float-card--nps { top: 175px; right: 0; width: 200px; animation-delay: 1.4s; }
.float-card--sentiment { bottom: 0; left: 0; width: 240px; animation-delay: 2.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

.float-card__head { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 12px; }
.badge { font-size: 0.7rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.badge--green { background: rgba(45, 212, 167, 0.16); color: #119d77; }
.score-ring {
  width: 110px; height: 110px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: conic-gradient(var(--brand) calc(var(--p) * 1%), var(--surface-soft) 0);
  position: relative;
}
.score-ring::before { content: ""; position: absolute; inset: 12px; background: #fff; border-radius: 50%; }
.score-ring span { position: relative; font-family: var(--display); font-weight: 800; font-size: 1.7rem; }
.score-ring small { font-size: 0.9rem; }
.float-card--score p { font-size: 0.75rem; color: var(--ink-soft); }

.float-card__label { font-size: 0.78rem; color: var(--ink-soft); }
.float-card__big { display: block; font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--brand); margin: 4px 0 10px; }
.spark { display: flex; align-items: flex-end; gap: 5px; height: 34px; }
.spark i { flex: 1; background: linear-gradient(var(--accent), var(--accent-2)); border-radius: 3px; }
.spark i:nth-child(1){height:40%}.spark i:nth-child(2){height:60%}.spark i:nth-child(3){height:45%}.spark i:nth-child(4){height:80%}.spark i:nth-child(5){height:65%}.spark i:nth-child(6){height:95%}.spark i:nth-child(7){height:75%}
.float-card__pos { display: block; font-weight: 800; color: var(--mint); margin: 6px 0 10px; }
.bar { height: 8px; background: var(--surface-soft); border-radius: 999px; overflow: hidden; }
.bar b { display: block; height: 100%; background: linear-gradient(90deg, var(--mint), var(--brand)); }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 50%, #fff 50%, #fff 100%);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 24px;
  box-shadow: var(--shadow-md);
  transform: translateY(-50px);
}
.stat { text-align: center; }
.stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--brand); display: block; letter-spacing: -0.02em; }
.stat__label { color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.eyebrow {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand);
}
.section__title { font-family: var(--display); font-size: clamp(1.7rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; margin: 10px 0 14px; }
.section__sub { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  border-radius: 14px;
  background: var(--surface-soft);
  margin-bottom: 16px;
}
.card h3 { font-family: var(--display); font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 16px; }

/* ---------- Omnia / Platform ---------- */
.omnia { background: var(--surface-soft); }
.omnia__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin: 24px 0 28px; }
.feature-list li { position: relative; padding-left: 28px; color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: 0.7rem;
  display: grid; place-items: center;
}
.omnia__panel { display: grid; place-items: center; }
.dash {
  width: 100%;
  background: linear-gradient(160deg, #fff, #fbfbff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.dash__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dash__title { font-family: var(--display); font-weight: 700; }
.dash__tag { font-size: 0.72rem; font-weight: 700; color: var(--mint); background: rgba(45,212,167,0.14); padding: 4px 10px; border-radius: 999px; }
.dash__metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 22px; }
.dash__metrics > div { background: var(--surface-soft); border-radius: 12px; padding: 12px; }
.dash__k { display: block; font-size: 0.72rem; color: var(--ink-soft); }
.dash__v { font-family: var(--display); font-weight: 800; font-size: 1.2rem; }
.chart__bars { display: flex; align-items: flex-end; gap: 10px; height: 150px; padding-top: 10px; }
.chart__bars span {
  flex: 1; height: var(--h);
  background: linear-gradient(var(--brand), var(--accent));
  border-radius: 8px 8px 0 0;
  opacity: 0.92;
}
.chart__axis { display: flex; gap: 10px; margin-top: 8px; }
.chart__axis i { flex: 1; text-align: center; font-style: normal; font-size: 0.7rem; color: var(--ink-soft); }

/* ---------- Industries ---------- */
.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.industry:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); background: linear-gradient(160deg, var(--brand), var(--brand-700)); color: #fff; }
.industry:hover p { color: rgba(255,255,255,0.85); }
.industry__emoji { font-size: 1.7rem; }
.industry h4 { font-family: var(--display); margin: 12px 0 6px; font-size: 1.05rem; }
.industry p { color: var(--ink-soft); font-size: 0.85rem; }

/* ---------- Why ---------- */
.why { background: var(--bg); color: #fff; border-radius: 0; }
.why__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.why .section__title { color: #fff; }
.why .section__sub { color: #b9bee6; }
.why__grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why__grid li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #e3e6ff; }
.check {
  width: 26px; height: 26px; flex: none;
  display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; font-size: 0.8rem;
}

/* ---------- Testimonials slider ---------- */
.slider { max-width: 820px; margin: 0 auto; }
.slider__track { display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.quote {
  min-width: 100%;
  text-align: center;
  padding: 0 20px;
}
.quote blockquote {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.quote figcaption strong { display: block; color: var(--brand); }
.quote figcaption span { color: var(--ink-soft); font-size: 0.9rem; }
.slider__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 36px; }
.slider__btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff;
  font-size: 1.4rem; color: var(--ink); cursor: pointer;
  transition: 0.2s;
}
.slider__btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.slider__dots { display: flex; gap: 8px; }
.slider__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; transition: 0.2s; }
.slider__dots button.active { background: var(--brand); width: 24px; border-radius: 999px; }

/* ---------- FAQ ---------- */
.faq { background: var(--surface-soft); }
.accordion { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.acc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.acc__q {
  width: 100%;
  text-align: left;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  background: none; border: 0; cursor: pointer;
  padding: 20px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.acc__icon { font-size: 1.4rem; color: var(--brand); transition: transform 0.25s ease; flex: none; }
.acc.open .acc__icon { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.acc__a p { padding: 0 22px 20px; color: var(--ink-soft); }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--brand-700), var(--brand));
  color: #fff;
  padding: 70px 0;
}
.cta__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.cta__text h2 { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin-bottom: 12px; }
.cta__text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta__form .btn { grid-column: 1 / -1; }
.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 0;
  font-family: var(--font);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
}
.field input:focus, .field select:focus { outline: 3px solid rgba(255,255,255,0.4); }
.cta__note { grid-column: 1 / -1; text-align: center; font-weight: 600; color: #fff; background: rgba(255,255,255,0.15); padding: 10px; border-radius: 10px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); color: #b9bee6; padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer__grid--3 { grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__logo { display: inline-flex; margin-bottom: 30px; }
.footer__org { color: #fff; font-weight: 800; margin-bottom: 8px; }
.footer__col p { font-size: 0.92rem; margin-bottom: 10px; line-height: 1.7; }
.footer__col p a:hover { color: #fff; }
.footer__brand p { margin: 16px 0 18px; font-size: 0.92rem; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  color: #fff; font-weight: 700; font-size: 0.85rem;
  transition: 0.2s;
}
.socials a:hover { background: var(--brand); }
.footer__col h5 { color: #fff; font-family: var(--display); margin-bottom: 16px; font-size: 0.95rem; }
.footer__col a { display: block; margin-bottom: 10px; font-size: 0.92rem; transition: 0.15s; }
.footer__col a:hover { color: #fff; }
.footer__contact p { font-size: 0.92rem; margin-bottom: 10px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px; padding-top: 22px;
  font-size: 0.85rem;
}
.footer__legal a { margin-left: 18px; }
.footer__legal a:hover { color: #fff; }

/* ---------- Subpages ---------- */
.hero--sub { padding: 70px 0 80px; }
.hero--sub .hero__title { margin-top: 18px; }
.hero--sub .hero__lead { max-width: 640px; }

.service-row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.service-row--rev .service-row__text { order: 2; }
.service-row--rev .service-row__media { order: 1; }
.service-row__media {
  height: 280px;
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  font-size: 5rem;
  box-shadow: var(--shadow-md);
}
.media--indigo { background: linear-gradient(160deg, #4f46e5, #3730a3); }
.media--coral { background: linear-gradient(160deg, #ff6b5e, #ff9a3e); }
.media--mint { background: linear-gradient(160deg, #2dd4a7, #16a34a); }
.media--amber { background: linear-gradient(160deg, #ffb454, #f97316); }

.feature-list--dark li { color: var(--ink-soft); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.why__grid--light li { color: var(--ink); }
.cta__inner--center { display: block; }

/* About stats variant (no overlap pull-up) */
.stats--solo { background: var(--surface-soft); padding: 30px 0; }
.stats--solo .stats__grid { transform: none; box-shadow: var(--shadow-sm); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.contact-block { margin-bottom: 26px; }
.contact-block h5 { font-family: var(--display); font-size: 0.95rem; color: var(--brand); margin-bottom: 8px; }
.contact-block p { color: var(--ink-soft); line-height: 1.7; }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-family: var(--display); font-size: 1.3rem; margin-bottom: 18px; }
.contact-form .field { margin-bottom: 14px; }
.contact-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--surface-soft);
  color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 6px; }
.cta__note--light { background: rgba(79,70,229,0.1); color: var(--brand); }

/* Contact opt-in / subscribe form */
.contact-optin-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
.contact-form-column {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.contact-info-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.input-group { margin-bottom: 16px; }
.input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.input-group input {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--surface-soft);
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.input-group input:focus { outline: none; border-color: var(--brand); background: #fff; }
.input-group input.error { border-color: #e5484d; background: rgba(229, 72, 77, 0.05); }
.input-group input.valid { border-color: var(--mint); }
.error-message { display: none; color: #e5484d; font-size: 0.82rem; margin-top: 6px; font-weight: 600; }

.consent-section { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.consent-title { font-weight: 700; font-size: 0.98rem; color: var(--ink); margin-bottom: 10px; }
.checkbox-item { display: flex; align-items: flex-start; gap: 11px; }
.checkbox-item input[type="checkbox"] {
  width: 18px; height: 18px;
  flex: none;
  margin-top: 3px;
  accent-color: var(--brand);
  cursor: pointer;
}
.disclaimer-links, .required-checkbox-links {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--ink-soft);
  cursor: pointer;
}
.disclaimer-links a, .required-checkbox-links a { color: var(--brand); font-weight: 700; }
.disclaimer-links strong, .required-checkbox-links strong { color: var(--ink); }

.required-checkbox {
  margin-top: 20px;
  padding: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.bot-check-container { margin-top: 22px; }
.bot-check-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: 0.2s;
}
.bot-check-button::before {
  content: "";
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 2px solid var(--line);
  background: #fff;
}
.bot-check-button:hover:not(:disabled) { border-color: var(--brand); }
.bot-check-button:disabled { cursor: progress; opacity: 0.8; }
.bot-check-button.verified {
  background: rgba(45, 212, 167, 0.12);
  border-color: var(--mint);
  color: #119d77;
}
.bot-check-button.verified::before {
  background: var(--mint);
  border-color: var(--mint);
  content: "✓";
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}
.bot-check-timer { font-size: 0.82rem; color: var(--ink-soft); margin-top: 8px; }
.bot-check-error { display: none; color: #e5484d; font-size: 0.82rem; margin-top: 8px; font-weight: 600; }

.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.submit-button {
  width: 100%;
  margin-top: 24px;
  padding: 15px 28px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #fff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand), var(--brand-700));
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.submit-button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(79, 70, 229, 0.45); }

/* Success modal */
#success-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 16, 36, 0.6);
  backdrop-filter: blur(4px);
  padding: 24px;
  place-items: center;
}
#success-modal.show { display: grid; }
.modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: modalPop 0.3s ease;
}
@keyframes modalPop { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }
.success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--mint), #16a34a);
  box-shadow: 0 12px 28px rgba(45, 212, 167, 0.4);
}
.modal-title { font-family: var(--display); font-size: 1.4rem; margin-bottom: 10px; }
.modal-message { color: var(--ink-soft); margin-bottom: 24px; }
.close-button {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand), var(--brand-700));
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
  transition: transform 0.15s ease;
}
.close-button:hover { transform: translateY(-2px); }

/* Legal pages */
.hero--legal { padding: 60px 0 56px; }
.legal { max-width: 800px; margin: 0 auto; }
.legal p { color: var(--ink-soft); margin-bottom: 18px; }
.legal h2 { font-family: var(--display); font-size: 1.35rem; margin: 32px 0 12px; color: var(--ink); }
.legal ul { color: var(--ink-soft); padding-left: 22px; margin-bottom: 18px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--brand); font-weight: 600; }
.legal__back { margin-top: 36px; }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card-stack { height: 360px; margin-top: 20px; }
  .omnia__inner, .why__inner, .cta__inner, .contact-grid, .contact-optin-wrap { grid-template-columns: 1fr; }
  .footer__grid--3 { grid-template-columns: repeat(2, 1fr); }
  .cards, .industries, .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-row, .service-row--rev .service-row__text, .service-row--rev .service-row__media { grid-template-columns: 1fr; order: 0; }
  .service-row__media { height: 200px; font-size: 3.4rem; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 110px; right: 16px; left: 16px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: 0.22s ease;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .feature-list { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .cta__form { grid-template-columns: 1fr; }
  .footer__grid--3 { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer__legal a { margin: 0 18px 0 0; }
}

@media (max-width: 480px) {
  .cards, .industries, .cards--3, .footer__grid { grid-template-columns: 1fr; }
  .topbar__item { display: none; }
}
