:root {
  --blue: #136cf6;
  --blue-dark: #0a57dc;
  --blue-soft: #eaf3ff;
  --navy: #0a2a57;
  --text: #112c54;
  --muted: #6d7fa5;
  --orange: #ff7b3f;
  --orange-soft: #fff0e7;
  --green: #16a34a;
  --line: #e9eef7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 61, 115, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-rounded, "SF Pro Rounded", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 24%, rgba(19,108,246,.06), transparent 20%),
    radial-gradient(circle at 92% 9%, rgba(255,123,63,.06), transparent 18%),
    #fff;
  line-height: 1.55;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(233,238,247,.9);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img { width: 258px; height: auto; }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  text-decoration: none;
  color: #526789;
  font-weight: 700;
  font-size: 15px;
}
.nav a:hover { color: var(--blue); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow-orange { background: var(--orange-soft); color: var(--orange); }
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.08; }
h1 { font-size: clamp(44px, 6vw, 72px); letter-spacing: -.045em; }
h1 span { color: var(--blue); }
h2 { font-size: clamp(34px, 4.2vw, 52px); letter-spacing: -.035em; }
h3 { font-size: 22px; }
.lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  max-width: 650px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 850;
  transition: .2s ease;
}
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), #1f79f6);
  box-shadow: 0 12px 24px rgba(19,108,246,.24);
}
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(19,108,246,.30); }
.button-secondary { color: var(--blue); background: var(--blue-soft); }
.button-secondary:hover { background: #dfedff; }
.button-light { background: white; color: var(--blue); min-width: 240px; }

.phone-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.phone-frame {
  position: relative;
  z-index: 2;
  width: 335px;
  border-radius: 48px;
  padding: 9px;
  background: #fff;
  box-shadow: 0 34px 70px rgba(13,55,110,.18);
  border: 1px solid #edf2f8;
  transform: rotate(2deg);
}
.phone-frame img { border-radius: 39px; }
.soft-shape { position: absolute; border-radius: 50%; filter: blur(.2px); }
.shape-blue { width: 380px; height: 380px; background: #e8f2ff; right: 10px; top: 80px; }
.shape-orange { width: 210px; height: 210px; background: #fff0e7; left: 0; bottom: 70px; }

.hero-decoration { position: absolute; pointer-events: none; opacity: .85; }
.hero-cloud {
  width: 96px;
  height: 36px;
  background: #dceaff;
  border-radius: 30px;
}
.hero-cloud:before, .hero-cloud:after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.hero-cloud:before { width: 44px; height: 44px; left: 16px; top: -18px; }
.hero-cloud:after { width: 58px; height: 58px; right: 8px; top: -26px; }
.cloud-a { left: 4%; top: 180px; }
.cloud-b { right: 3%; top: 350px; transform: scale(.65); opacity: .55; }
.hero-dot { width: 13px; height: 13px; border-radius: 50%; }
.dot-a { left: 9%; top: 470px; background: #ffd0b9; }
.dot-b { right: 8%; top: 195px; background: #bcd7ff; }

.section { padding: 105px 0; }
.section-soft { background: linear-gradient(180deg, #f7faff, #fff); }
.section-heading { max-width: 700px; margin-bottom: 46px; }
.section-heading p, .section-text {
  color: var(--muted);
  font-size: 18px;
  margin-top: 18px;
}
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 34px rgba(30,72,128,.07);
}
.card p { color: var(--muted); margin: 14px 0 0; }
.step-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 16px;
  color: white; background: var(--blue);
  font-weight: 900; font-size: 18px;
  margin-bottom: 24px;
}
.step-icon.orange { background: var(--orange); }

.split {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 90px;
  align-items: center;
}
.split.reverse { grid-template-columns: .8fr 1fr; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 15px; }
.check-list li { color: #526789; font-weight: 650; position: relative; padding-left: 34px; }
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0; top: -2px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #e8f8ed;
  color: var(--green);
  font-weight: 900;
}

.mini-phone {
  width: 310px;
  justify-self: center;
  padding: 8px;
  border-radius: 44px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
.mini-phone img { border-radius: 36px; }

.feature-visual { display: grid; place-items: center; }
.kiosk-card {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 4/3;
  border-radius: 32px;
  background: #0b2b59;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(10,42,87,.18);
}
.kiosk-glow {
  position: absolute;
  inset: 10% 12%;
  border-radius: 50%;
  background: rgba(19,108,246,.28);
  filter: blur(38px);
}
.kiosk-screen {
  position: relative;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, #1269f4, #2784ff);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: white;
  padding: 36px;
  text-align: left;
}
.kiosk-screen strong { font-size: 24px; }
.kiosk-screen p { margin: 5px 0 0; color: rgba(255,255,255,.84); }
.qr-sim {
  width: 110px; height: 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 9px;
  border: 7px solid rgba(255,255,255,.9);
  border-radius: 18px;
}
.qr-sim span { background: white; border-radius: 3px; }
.qr-sim span:nth-child(2), .qr-sim span:nth-child(4), .qr-sim span:nth-child(8) { opacity: .2; }

.trust { padding-top: 60px; }
.trust-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  padding: 48px;
  border-radius: 32px;
  background: #f7faff;
  border: 1px solid #e6eef9;
}
.trust-box p { color: var(--muted); font-size: 18px; }

.contact { padding-top: 50px; }
.contact-box {
  background: linear-gradient(135deg, #0f67ef, #1f7bf6);
  color: white;
  border-radius: 34px;
  padding: 52px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 24px 55px rgba(19,108,246,.20);
}
.contact-box h2 { color: white; }
.contact-box p { color: rgba(255,255,255,.82); margin: 16px 0 0; max-width: 700px; }
.contact-box .eyebrow-orange { background: rgba(255,255,255,.14); color: #ffd6c3; }

.footer { padding: 38px 0 48px; }
.footer-wrap { display: grid; grid-template-columns: 1fr auto auto; gap: 34px; align-items: center; color: #7383a2; font-size: 14px; }
.footer-wrap strong { color: var(--navy); display: block; font-size: 18px; }
.footer-wrap span { display: block; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--blue); }

.legal-page {
  min-height: calc(100vh - 84px);
  padding: 72px 0 100px;
}
.legal-card {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 46px;
  box-shadow: 0 18px 50px rgba(20,61,115,.08);
}
.legal-card h1 { font-size: 44px; }
.legal-card h2 { font-size: 24px; margin-top: 34px; }
.legal-card p, .legal-card li { color: #5f7294; }
.notice {
  background: #fff7f1;
  color: #8e512d;
  border: 1px solid #ffe0cd;
  border-radius: 16px;
  padding: 16px 18px;
  margin: 26px 0;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .brand img { width: 220px; }
  .hero { padding-top: 58px; }
  .hero-grid, .split, .split.reverse, .trust-box { grid-template-columns: 1fr; }
  .hero-grid { gap: 25px; }
  .phone-stage { min-height: 540px; }
  .cards.three { grid-template-columns: 1fr; }
  .split { gap: 48px; }
  .mini-phone { width: 280px; }
  .contact-box { align-items: flex-start; flex-direction: column; }
  .footer-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 190px; }
  .hero { padding: 42px 0 65px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .lead { font-size: 18px; }
  .phone-stage { min-height: 475px; }
  .phone-frame { width: 270px; }
  .section { padding: 72px 0; }
  .card { padding: 26px; }
  .kiosk-screen { padding: 22px; gap: 15px; flex-direction: column; text-align: center; }
  .contact-box { padding: 34px 26px; }
  .trust-box { padding: 34px 26px; }
  .legal-card { padding: 28px 22px; }
  .legal-card h1 { font-size: 36px; }
}
