:root {
  --blue: #1b1aa8;
  --blue-dark: #11107a;
  --blue-soft: #eef0ff;
  --text: #111827;
  --muted: #667085;
  --bg: #f6f7fb;
  --card: #ffffff;
  --line: #e6e8f0;
  --shadow: 0 16px 40px rgba(27, 26, 168, 0.10);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,17,17,0.06);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
}
.nav a { color: #1f2937; }
.nav a:hover, .nav a.active { color: var(--blue); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 25%, rgba(27, 26, 168, 0.12), transparent 26%),
    radial-gradient(circle at 85% 80%, rgba(27, 26, 168, 0.10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
  padding: 76px 0 58px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,26,168,0.02), transparent 40%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: 8%;
  width: 55%;
  height: 160px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(27,26,168,0.06), rgba(27,26,168,0.18));
  filter: blur(10px);
  transform: rotate(-8deg);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(27, 26, 168, 0.08);
  border: 1px solid rgba(27, 26, 168, 0.14);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1, .page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.hero h1 .accent, .page-hero h1 .accent { color: var(--blue); }
.lead {
  font-size: 1.2rem;
  color: #344054;
  max-width: 650px;
  margin: 0 0 24px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px 20px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f2937;
  font-weight: 600;
}
.check {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(27, 26, 168, 0.12);
  color: var(--blue);
  font-size: 0.9rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}
.button-primary { background: var(--blue); color: #fff; }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { background: #fff; color: #111; border-color: var(--line); }
.button-secondary:hover { border-color: #cfd4dc; transform: translateY(-1px); }
.button-disabled {
  background: #eff1f8;
  color: #667085;
  border-color: #e2e5f1;
  cursor: default;
}
.helper { color: var(--muted); font-size: 0.95rem; }
.phone-stack {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 16px;
}
.phone-stack img {
  width: 30%;
  min-width: 170px;
  max-width: 250px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17,24,39,0.06);
}
.phone-stack img:nth-child(2) { transform: translateY(-18px); }
.section { padding: 68px 0; }
.section.alt { background: var(--bg); }
.section h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-align: center;
}
.section-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 1.125rem;
  text-align: center;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(27, 26, 168, 0.08);
  color: var(--blue);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.card h3 { margin: 0 0 8px; font-size: 1.3rem; letter-spacing: -0.02em; }
.card p { margin: 0; color: var(--muted); }
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.screenshot-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.screenshot-card img {
  border-radius: 24px;
  margin-bottom: 14px;
  width: 100%;
  object-fit: cover;
}
.screenshot-card h3 { margin: 0 0 6px; font-size: 1.1rem; }
.screenshot-card p { margin: 0; color: var(--muted); }
.page-hero {
  padding: 64px 0 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
}
.page-hero .lead { margin-bottom: 0; }
.steps { display: grid; gap: 20px; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr 240px;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.step-number {
  width: 48px; height: 48px; border-radius: 999px; display: grid; place-items: center;
  font-weight: 800; color: #fff; background: var(--blue); margin-inline: auto;
}
.step h3 { margin: 0 0 8px; font-size: 1.45rem; letter-spacing: -0.03em; }
.step p { margin: 0; color: var(--muted); }
.step img { border-radius: 18px; box-shadow: var(--shadow); width: 100%; }
.text-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.text-card h2, .text-card h3 { text-align: left; margin-top: 0; }
.text-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.text-card p, .text-card li { color: #344054; }
.text-card ul { padding-left: 20px; }
.contact-box { max-width: 760px; margin: 0 auto; text-align: center; }
.contact-email {
  display: inline-flex;
  margin-top: 14px;
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(27, 26, 168, 0.08);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 800;
  border: 1px solid rgba(27, 26, 168, 0.14);
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 28px 0 50px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-weight: 600; }
.footer-copy { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 980px) {
  .hero-grid, .card-grid, .screenshot-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; text-align: left; }
  .phone-stack { flex-wrap: wrap; }
  .phone-stack img:nth-child(2) { transform: none; }
  .nav { gap: 16px; font-size: 0.95rem; }
}
@media (max-width: 720px) {
  .header-inner { flex-direction: column; justify-content: center; padding: 12px 0; }
  .brand { font-size: 1.7rem; }
  .nav { flex-wrap: wrap; justify-content: center; }
  .hero, .section, .page-hero { padding-top: 44px; padding-bottom: 44px; }
  .feature-list { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; }
  .button { width: 100%; }
}


.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  max-width: 780px;
  margin: auto;
  background: rgba(17, 24, 39, 0.96);
  color: #fff;
  border-radius: 24px;
  padding: 1rem 1.1rem;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { color: rgba(255,255,255,0.9); margin-top: .5rem; }
.cookie-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.cookie-actions button,
.cookie-actions a {
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 14px;
  border: none;
  font-weight: 800;
  cursor: pointer;
}
.cookie-actions .accept {
  background: var(--blue);
  color: #fff;
}
.cookie-actions .decline {
  background: #fff;
  color: #111827;
}
.cookie-actions .learn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
@media (max-width: 720px) {
  .cookie-actions button,
  .cookie-actions a { width: 100%; justify-content: center; }
}
