:root {
  --ink: #251b13;
  --ink-soft: #5f5248;
  --paper: #faf8f4;
  --cream: #fff7e8;
  --surface: #ffffff;
  --line: #e8e0d6;
  --gold: #d3a23f;
  --gold-dark: #9c711c;
  --orange: #ff6800;
  --peach: #ffd69d;
  --mint: #dff1e6;
  --blue: #e4f2fa;
  --lilac: #eee8f6;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 24px 70px rgba(77, 49, 21, 0.13);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(255, 104, 0, 0.55); outline-offset: 4px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  transition: top 160ms ease;
}
.skip-link:focus { top: 18px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(58, 42, 28, 0.08);
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(18px);
}
.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 150ms ease;
}
.nav a:hover { color: var(--ink); }
.actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.lang-btn {
  min-width: 36px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}
.lang-btn[aria-current="page"] { background: var(--ink); color: white; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 30px rgba(37, 27, 19, 0.2);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(37, 27, 19, 0.25); }
.btn-secondary { border-color: rgba(37, 27, 19, 0.18); background: rgba(255,255,255,0.58); }
.btn-small { min-height: 42px; padding-inline: 16px; font-size: 13px; border-radius: 13px; }
.hero { padding: 30px 0 0; }
.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
  align-items: center;
  gap: 36px;
  padding: 72px clamp(28px, 6vw, 78px);
  border: 1px solid rgba(148, 104, 43, 0.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 17%, rgba(255,255,255,0.95) 0 9%, transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(255,188,101,0.42), transparent 33%),
    linear-gradient(135deg, #fff9ec 0%, #ffe3b2 55%, #ffba72 100%);
  box-shadow: inset 0 1px rgba(255,255,255,0.7);
}
.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero-shell::before { width: 440px; height: 440px; right: -170px; top: -220px; border: 90px solid rgba(255,255,255,0.27); }
.hero-shell::after { width: 260px; height: 260px; left: 43%; bottom: -210px; border: 55px solid rgba(255,255,255,0.22); }
.hero-copy { position: relative; z-index: 3; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 4px; border-radius: 4px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(50px, 5.8vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.hero-lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: #574638;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.hero-pill {
  padding: 9px 12px;
  border: 1px solid rgba(77, 55, 35, 0.11);
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  color: #594839;
  font-size: 12px;
  font-weight: 700;
}
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-note { margin: 16px 0 0; color: #6a5746; font-size: 12px; font-weight: 600; }
.phone-stage { position: relative; z-index: 2; min-height: 600px; }
.phone {
  position: absolute;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(57, 39, 25, 0.12);
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow);
}
.phone img { width: 100%; height: 100%; border-radius: 31px; object-fit: cover; }
.phone-main { width: 290px; height: 631px; right: 17%; top: 0; z-index: 3; transform: rotate(2.5deg); }
.phone-left { width: 218px; height: 474px; left: 0; bottom: 16px; z-index: 1; transform: rotate(-8deg); }
.phone-right { width: 208px; height: 452px; right: -8%; bottom: 8px; z-index: 2; transform: rotate(9deg); }

.stats { padding: 24px 0 90px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(61, 44, 26, 0.05);
}
.stat { padding: 25px 28px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; margin-bottom: 5px; font-size: 23px; letter-spacing: -0.035em; }
.stat span { color: var(--ink-soft); font-size: 13px; line-height: 1.4; }

.section { padding: 96px 0; }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
h2 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 58px); line-height: 1.04; letter-spacing: -0.055em; }
.section-lead { margin-bottom: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.feature-visual {
  position: relative;
  height: 430px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding-top: 28px;
}
.feature-card:nth-child(1) .feature-visual { background: linear-gradient(145deg, #eef5fb, #dcecf7); }
.feature-card:nth-child(2) .feature-visual { background: linear-gradient(145deg, #fff4df, #ffd79d); }
.feature-card:nth-child(3) .feature-visual { background: linear-gradient(145deg, #eee9f6, #e3d9f1); }
.mini-phone {
  width: 180px;
  overflow: hidden;
  padding: 6px;
  border-radius: 27px;
  background: white;
  box-shadow: 0 24px 45px rgba(54, 38, 24, 0.18);
  transform: translateY(0) rotate(-1deg);
}
.feature-card:nth-child(2) .mini-phone { transform: rotate(1.5deg); }
.feature-card:nth-child(3) .mini-phone { transform: rotate(-2deg); }
.mini-phone img { width: 100%; height: auto; border-radius: 21px; }
.feature-body { min-height: 230px; padding: 30px; }
.feature-kicker { display: block; margin-bottom: 13px; color: var(--gold-dark); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.feature-body h3 { margin-bottom: 12px; font-size: 25px; letter-spacing: -0.035em; }
.feature-body p { margin: 0; color: var(--ink-soft); line-height: 1.65; }
.feature-link {
  display: inline-flex;
  margin-top: 17px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 4px;
}

.how-section { color: white; background: var(--ink); }
.how-section .eyebrow { color: #f2c768; }
.how-section .section-lead { color: #cfc6be; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.step {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.055);
}
.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 14px;
  background: #f0c45f;
  color: var(--ink);
  font-weight: 850;
}
.step h3 { margin-bottom: 10px; font-size: 20px; letter-spacing: -0.025em; }
.step p { margin: 0; color: #cfc6be; font-size: 14px; line-height: 1.6; }

.screens-section { background: #f0ede7; }
.screens-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.screen-card {
  overflow: hidden;
  border: 1px solid #ddd5ca;
  border-radius: 26px;
  background: white;
}
.screen-media {
  height: 455px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 20px 0;
  background: #ece8e2;
}
.screen-media img {
  width: min(190px, calc(100% - 20px));
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(46, 33, 22, 0.17);
}
.screen-caption { padding: 22px; }
.screen-caption h3 { margin-bottom: 8px; font-size: 19px; letter-spacing: -0.025em; }
.screen-caption p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.screen-caption .feature-link { font-size: 13px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: block;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(61,44,26,.08); }
.related-card span { color: var(--gold-dark); font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.related-card h3 { margin: 12px 0 8px; font-size: 21px; }
.related-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

.privacy-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 54px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e7f3eb, #cfe9d8);
}
.privacy-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -80px; top: -100px; border: 50px solid rgba(255,255,255,0.35); border-radius: 50%; }
.privacy-icon { position: relative; z-index: 1; width: 92px; height: 92px; display: grid; place-items: center; border-radius: 28px; background: white; font-size: 40px; box-shadow: 0 16px 35px rgba(44, 91, 61, 0.14); }
.privacy-card h2 { max-width: 700px; font-size: clamp(34px, 4vw, 50px); }
.privacy-card p { max-width: 760px; margin: 0; color: #385443; font-size: 17px; line-height: 1.6; }

.faq-list { max-width: 880px; margin-inline: auto; }
details { border-bottom: 1px solid var(--line); }
details:first-child { border-top: 1px solid var(--line); }
summary {
  position: relative;
  padding: 25px 52px 25px 0;
  list-style: none;
  font-size: 19px;
  font-weight: 750;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; top: 20px; font-size: 28px; font-weight: 400; transition: transform 160ms ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 760px; padding: 0 48px 25px 0; margin: 0; color: var(--ink-soft); line-height: 1.65; }

.final-cta { padding-top: 30px; padding-bottom: 84px; }
.cta-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: center;
  gap: 60px;
  min-height: 510px;
  padding: 60px;
  border-radius: 36px;
  background: linear-gradient(135deg, #ffefd1, #ffc77e);
}
.cta-card h2 { max-width: 690px; }
.cta-card p { max-width: 620px; margin-bottom: 28px; color: #604b37; font-size: 17px; line-height: 1.6; }
.cta-phone {
  width: 200px;
  margin: 0 auto;
  padding: 6px;
  border: 1px solid rgba(57, 39, 25, 0.1);
  border-radius: 29px;
  background: white;
  box-shadow: var(--shadow);
}
.cta-phone img { width: 100%; height: auto; border-radius: 23px; }

.footer { padding: 32px 0 45px; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-copy { color: var(--ink-soft); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--ink-soft); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--ink); text-decoration: underline; }

@media (max-width: 1040px) {
  .nav { display: none; }
  .actions { margin-left: auto; }
  .hero-shell { grid-template-columns: 1fr 430px; padding-inline: 45px; }
  .phone-main { right: 11%; }
  .phone-left { left: -4%; }
  .phone-right { right: -13%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .feature-card:last-child .feature-visual { height: 100%; min-height: 430px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .screens-grid { grid-template-columns: repeat(2, 1fr); }
  .screen-media { height: 480px; }
}

@media (max-width: 800px) {
  .hero { padding-top: 16px; }
  .hero-shell { grid-template-columns: 1fr; padding: 52px 30px 0; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-pills, .btn-row { justify-content: center; }
  .phone-stage { width: min(100%, 520px); min-height: 560px; margin: 10px auto 0; }
  .phone-main { width: 250px; height: 544px; right: calc(50% - 125px); }
  .phone-left { width: 185px; height: 403px; left: 0; }
  .phone-right { width: 175px; height: 381px; right: 0; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .privacy-card { grid-template-columns: 1fr; padding: 40px; }
  .privacy-icon { grid-row: 1; }
  .cta-card { grid-template-columns: 1fr; text-align: center; padding: 50px 35px; }
  .cta-card .btn-row { justify-content: center; }
  .cta-phone { width: 170px; margin: 8px auto 0; }
}

@media (max-width: 720px) {
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .topbar-inner { min-height: 64px; gap: 10px; }
  .brand { font-size: 19px; }
  .brand img { width: 34px; height: 34px; }
  .actions .btn { display: none; }
  .hero-shell { min-height: 0; padding: 44px 20px 0; border-radius: 28px; }
  h1 { font-size: clamp(43px, 14vw, 59px); }
  .hero-lead { font-size: 17px; }
  .hero-pills { margin-bottom: 25px; }
  .hero .btn { width: 100%; }
  .phone-stage { min-height: 470px; }
  .phone-main { width: 210px; height: 457px; right: calc(50% - 105px); }
  .phone-left { width: 150px; height: 326px; left: -28px; }
  .phone-right { width: 145px; height: 315px; right: -27px; }
  .phone { padding: 5px; border-radius: 28px; }
  .phone img { border-radius: 23px; }
  .stats { padding-bottom: 68px; }
  .stat { padding: 20px; }
  .stat strong { font-size: 20px; }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 32px; }
  h2 { font-size: 39px; }
  .section-lead { font-size: 16px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:last-child { grid-column: auto; display: block; }
  .feature-visual { height: 420px; }
  .feature-card:last-child .feature-visual { height: 420px; min-height: 0; }
  .feature-body { min-height: 0; padding: 26px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 220px; }
  .step-number { margin-bottom: 35px; }
  .screens-grid { grid-template-columns: 1fr; }
  .screen-card { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 260px; }
  .screen-media { height: 300px; padding: 22px 15px 0; }
  .screen-caption { align-self: center; padding: 20px; }
  .privacy-card { padding: 32px 25px; }
  .privacy-icon { width: 70px; height: 70px; border-radius: 22px; font-size: 32px; }
  .cta-card { min-height: 0; padding: 44px 24px; border-radius: 28px; }
  .cta-phone { display: none; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
