:root {
  --navy-950: #04172d;
  --navy-900: #071f3e;
  --navy-800: #0b315d;
  --navy-700: #124878;
  --green-600: #0ca852;
  --green-500: #18b95b;
  --green-400: #39ce76;
  --blue-500: #2687d8;
  --purple-500: #7564e8;
  --amber-500: #f2b632;
  --red-500: #e85d68;
  --ink: #0a2037;
  --muted: #5d7085;
  --soft: #edf4f7;
  --line: #dce7ed;
  --surface: #ffffff;
  --page: #f7fafb;
  --shadow-sm: 0 10px 30px rgba(7,31,62,.08);
  --shadow-md: 0 22px 70px rgba(7,31,62,.14);
  --shadow-lg: 0 34px 100px rgba(7,31,62,.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(24,185,91,.22); color: var(--navy-950); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: var(--navy-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  z-index: 10000;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-dark {
  background:
    radial-gradient(circle at 12% 15%, rgba(24,185,91,.15), transparent 28%),
    radial-gradient(circle at 88% 85%, rgba(38,135,216,.17), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
  color: #fff;
}
.section-tint { background: #eef8f3; }
.section-blue { background: #edf5fb; }
.section-white { background: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--green-600);
  font-size: .78rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; border-radius: 99px; }
.eyebrow.light { color: #72e8a8; }
.section-title {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.1rem, 4.5vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.section-title.medium { font-size: clamp(1.9rem, 3.3vw, 3.2rem); }
.section-title .accent, .accent { color: var(--green-600); }
.section-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}
.section-dark .section-lead { color: #bcd0df; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 48px; }
.section-head > div:first-child { flex: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 92px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(220,231,237,.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 236px; height: auto; image-rendering: auto; }
.site-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.site-nav a {
  position: relative;
  padding: 11px 12px;
  color: #365067;
  border-radius: 11px;
  font-size: .92rem;
  font-weight: 700;
  transition: .22s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: #eef6f5; color: var(--navy-900); }
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: var(--green-500);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  place-items: center;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy-900);
  transition: .2s ease;
}
.menu-toggle { gap: 4px; }
.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy-900); color: #fff; box-shadow: 0 12px 28px rgba(7,31,62,.22); }
.btn-primary:hover { background: var(--navy-800); box-shadow: 0 16px 34px rgba(7,31,62,.28); }
.btn-green { background: linear-gradient(135deg, var(--green-500), #079d49); color: #fff; box-shadow: 0 12px 28px rgba(24,185,91,.28); }
.btn-green:hover { box-shadow: 0 18px 36px rgba(24,185,91,.34); }
.btn-outline { border-color: #cad9e2; background: rgba(255,255,255,.72); color: var(--navy-900); }
.btn-outline:hover { border-color: var(--navy-700); background: #fff; }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-sm { min-height: 42px; padding: 10px 16px; border-radius: 12px; font-size: .9rem; }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
  background:
    radial-gradient(circle at 7% 8%, rgba(24,185,91,.11), transparent 25%),
    radial-gradient(circle at 92% 12%, rgba(38,135,216,.12), transparent 25%),
    linear-gradient(180deg,#fff 0%,#f6fafb 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -250px;
  bottom: -430px;
  border: 1px solid rgba(7,31,62,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(7,31,62,.025), 0 0 0 150px rgba(24,185,91,.018);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.03fr) minmax(520px,.97fr); align-items: center; gap: 42px; }
.hero-copy { padding: 26px 0; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 13px;
  border: 1px solid #cfe8da;
  border-radius: 999px;
  background: rgba(232,248,239,.78);
  color: #087e43;
  font-weight: 800;
  font-size: .84rem;
}
.hero-kicker i { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 6px rgba(24,185,91,.12); }
.hero h1 { margin: 0; max-width: 720px; font-size: clamp(3rem, 6.4vw, 6.2rem); line-height: .98; letter-spacing: -.065em; }
.hero h1 span { display: block; color: var(--green-600); }
.hero p { max-width: 660px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1.05rem,1.9vw,1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: #51677c; font-size: .88rem; font-weight: 700; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 17px; height: 17px; color: var(--green-600); }

.phone-stage { position: relative; min-height: 630px; isolation: isolate; overflow: visible; }
.phone-stage::before {
  content: "";
  position: absolute;
  inset: 8% 0 0 5%;
  border-radius: 46% 54% 52% 48%;
  background: linear-gradient(145deg, rgba(24,185,91,.18), rgba(38,135,216,.13));
  filter: blur(2px);
  transform: rotate(-7deg);
}
.phone-stage::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 80px;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  background: rgba(7,31,62,.2);
  filter: blur(32px);
  border-radius: 50%;
  z-index: -1;
}
.hero-phone { position: absolute; width: 218px; height: auto; object-fit: contain; filter: drop-shadow(0 28px 26px rgba(7,31,62,.23)); }
.hero-phone.center { left: 50%; top: 4px; width: 270px; transform: translateX(-50%); z-index: 4; }
.hero-phone.left { left: 8px; top: 110px; transform: rotate(-5deg); z-index: 2; }
.hero-phone.right { right: 0; top: 112px; transform: rotate(5deg); z-index: 2; }
.float-card {
  position: absolute;
  z-index: 8;
  min-width: 178px;
  padding: 15px 16px;
  border: 1px solid rgba(220,231,237,.95);
  border-radius: 17px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.float-card.top { top: 40px; right: 20px; }
.float-card.bottom { left: 3px; bottom: 58px; }
.float-card small { display: block; color: var(--muted); font-weight: 700; font-size: .76rem; }
.float-card strong { display: block; margin-top: 3px; font-size: 1.08rem; }
.float-card .up { color: var(--green-600); }
.float-card .row { display: flex; align-items: center; gap: 9px; }
.float-icon { display: grid; width: 34px; height: 34px; place-items: center; color: var(--green-600); background: #e8f8ef; border-radius: 10px; }
.float-icon svg { width: 18px; height: 18px; }

.trust-strip { padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-inner { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 10px; color: #496077; font-size: .88rem; font-weight: 800; }
.trust-item svg { width: 19px; height: 19px; color: var(--green-600); }

.bento-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 20px; }
.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.bento-card.span-7 { grid-column: span 7; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.span-5 { grid-column: span 5; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-8 { grid-column: span 8; }
.bento-card.dark { border-color: transparent; background: linear-gradient(145deg,var(--navy-950),var(--navy-800)); color: #fff; }
.bento-card.green { border-color: transparent; background: linear-gradient(145deg,#e7f9ef,#f8fffb); }
.bento-card.blue { border-color: transparent; background: linear-gradient(145deg,#e8f3fb,#f8fbff); }
.bento-card h3 { margin: 16px 0 10px; font-size: 1.42rem; line-height: 1.2; letter-spacing: -.02em; }
.bento-card p { margin: 0; color: var(--muted); }
.bento-card.dark p { color: #bcd0df; }
.feature-icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 16px; color: var(--green-600); background: #e8f8ef; }
.feature-icon.blue { color: #246eaf; background: #e5f2fc; }
.feature-icon.purple { color: #6452d7; background: #efedff; }
.feature-icon.amber { color: #b98000; background: #fff5d8; }
.feature-icon svg { width: 25px; height: 25px; }
.bento-visual { position: absolute; right: 16px; bottom: -52px; width: 215px; filter: drop-shadow(0 20px 18px rgba(7,31,62,.18)); transform: rotate(5deg); }
.bento-card.span-7 .bento-copy { max-width: 52%; }
.bento-card.span-8 .bento-copy { max-width: 54%; }
.status-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; background: #e7f8ef; color: #087e43; font-size: .76rem; font-weight: 900; letter-spacing: .03em; }
.status-badge.soon { background: #fff3d2; color: #986900; }
.status-badge svg { width: 14px; height: 14px; }

.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mode-card { position: relative; overflow: hidden; padding: 40px; border-radius: var(--radius-lg); min-height: 600px; }
.mode-card.personal { background: linear-gradient(145deg,#e9f9f0,#fff); border: 1px solid #cdebd9; }
.mode-card.business { background: linear-gradient(145deg,#081d37,#0e3864); color: #fff; }
.mode-card h3 { margin: 18px 0 10px; font-size: clamp(2rem,3.5vw,3.4rem); line-height: 1.05; letter-spacing: -.04em; }
.mode-card p { max-width: 520px; color: var(--muted); }
.mode-card.business p { color: #bfd0de; }
.mode-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin: 24px 0 0; padding: 0; list-style: none; }
.mode-list li { display: flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 750; }
.mode-list svg { width: 17px; height: 17px; color: var(--green-500); flex: 0 0 auto; }
.mode-phones { position: absolute; display: flex; align-items: end; justify-content: center; gap: 0; right: -8px; left: 30%; bottom: -145px; }
.mode-phones img { width: 205px; filter: drop-shadow(0 22px 22px rgba(7,31,62,.18)); }
.mode-phones img:last-child { margin-left: -42px; transform: translateY(22px) rotate(4deg); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-copy { order: 2; }
.split.reverse .split-visual { order: 1; }
.split-copy h2 { margin: 0; font-size: clamp(2.1rem,4vw,4rem); line-height: 1.06; letter-spacing: -.045em; }
.split-copy > p { color: var(--muted); font-size: 1.08rem; }
.check-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: #314b62; }
.check-list svg { width: 20px; height: 20px; color: var(--green-600); flex: 0 0 auto; margin-top: 2px; }
.split-visual { position: relative; display: grid; place-items: center; min-height: 600px; border-radius: 42px; background: linear-gradient(145deg,#e8f8ef,#edf4fb); overflow: hidden; }
.split-visual.dark { background: radial-gradient(circle at 70% 20%,rgba(24,185,91,.22),transparent 30%),linear-gradient(145deg,var(--navy-950),var(--navy-800)); }
.split-visual img { width: 275px; filter: drop-shadow(0 30px 28px rgba(7,31,62,.24)); }
.split-visual .phone-pair { display: flex; align-items: center; }
.split-visual .phone-pair img { width: 230px; }
.split-visual .phone-pair img:first-child { transform: translateX(34px) rotate(-5deg); }
.split-visual .phone-pair img:last-child { transform: translateX(-34px) translateY(30px) rotate(5deg); }
.metric-pill { position: absolute; padding: 13px 16px; border-radius: 15px; background: #fff; box-shadow: var(--shadow-md); font-weight: 850; }
.metric-pill.one { top: 55px; left: 34px; }
.metric-pill.two { right: 32px; bottom: 62px; }
.metric-pill small { display: block; color: var(--muted); font-size: .72rem; font-weight: 700; }
.metric-pill strong { color: var(--green-600); }

.screen-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 22px; }
.screen-card {
  position: relative;
  min-width: 0;
  padding: 18px 14px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.screen-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.screen-card button { all: unset; display: block; cursor: zoom-in; width: 100%; }
.screen-card img { height: 380px; width: auto; margin: 0 auto; object-fit: contain; filter: drop-shadow(0 18px 18px rgba(7,31,62,.14)); }
.screen-card h3 { margin: 13px 0 4px; font-size: .96rem; }
.screen-card p { margin: 0; color: var(--muted); font-size: .8rem; }
.screen-number { position: absolute; top: 13px; left: 13px; z-index: 2; display: grid; width: 30px; height: 30px; place-items: center; border-radius: 10px; background: var(--navy-900); color: #fff; font-size: .75rem; font-weight: 900; }

.showcase-panel {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.showcase-panel img { width: 100%; height: auto; border-radius: 20px; }
.showcase-note { margin-top: 16px; color: var(--muted); text-align: center; font-size: .9rem; font-weight: 700; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2,15,29,.86);
  backdrop-filter: blur(12px);
}
.lightbox.is-open { display: flex; }
.lightbox-dialog { position: relative; max-width: 92vw; max-height: 92vh; }
.lightbox img { max-width: min(390px,86vw); max-height: 82vh; filter: drop-shadow(0 30px 50px rgba(0,0,0,.45)); }
.lightbox-close { position: absolute; top: -12px; right: -48px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; font-size: 1.4rem; }
.lightbox-caption { color: #fff; text-align: center; font-weight: 800; }

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.stat-card strong { display: block; font-size: clamp(1.7rem,3vw,2.7rem); color: var(--navy-900); line-height: 1; }
.stat-card span { display: block; margin-top: 9px; color: var(--muted); font-weight: 700; }

.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.price-card.featured { border: 2px solid var(--green-500); transform: translateY(-10px); box-shadow: var(--shadow-md); }
.price-card.business { background: linear-gradient(145deg,var(--navy-950),var(--navy-800)); color: #fff; border-color: transparent; }
.price-tag { position: absolute; top: -13px; right: 20px; padding: 7px 12px; border-radius: 999px; background: var(--green-500); color: #fff; font-size: .74rem; font-weight: 900; }
.price-card h3 { margin: 0; font-size: 1.4rem; }
.price-card .price { margin-top: 16px; font-size: 1.8rem; font-weight: 900; letter-spacing: -.03em; }
.price-card .price small { display: block; margin-top: 4px; color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: 0; }
.price-card.business .price small, .price-card.business p { color: #bed0df; }
.price-card p { color: var(--muted); }
.price-list { display: grid; gap: 12px; margin: 22px 0 28px; padding: 0; list-style: none; }
.price-list li { display: flex; gap: 9px; font-size: .89rem; }
.price-list svg { width: 17px; height: 17px; color: var(--green-500); flex: 0 0 auto; margin-top: 3px; }
.price-card .btn { margin-top: auto; }

.page-hero { position: relative; overflow: hidden; padding: 92px 0 78px; background: linear-gradient(180deg,#fff,#f4f9fa); border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; width: 500px; height: 500px; right: -190px; top: -300px; border-radius: 50%; background: radial-gradient(circle,rgba(24,185,91,.16),transparent 68%); }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 50px; }
.page-hero h1 { margin: 0; font-size: clamp(2.8rem,6vw,5.6rem); line-height: 1; letter-spacing: -.06em; }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.15rem; }
.page-hero-visual { display: flex; justify-content: center; align-items: center; min-height: 360px; }
.page-hero-visual img { max-height: 420px; filter: drop-shadow(0 25px 25px rgba(7,31,62,.2)); }
.page-hero-visual .trio { display: flex; align-items: center; }
.page-hero-visual .trio img { width: 190px; }
.page-hero-visual .trio img:first-child { transform: translateX(48px) rotate(-7deg); }
.page-hero-visual .trio img:nth-child(2) { z-index: 2; width: 220px; }
.page-hero-visual .trio img:last-child { transform: translateX(-48px) rotate(7deg); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; color: #6c7f90; font-size: .84rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--green-600); }

.content-card { padding: 36px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.content-card h2, .content-card h3 { line-height: 1.2; letter-spacing: -.025em; }
.content-card p, .content-card li { color: #435a70; }
.content-card + .content-card { margin-top: 20px; }
.content-card ul, .content-card ol { padding-left: 22px; }
.content-card li + li { margin-top: 8px; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: 34px; align-items: start; }
.legal-nav { position: sticky; top: 105px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.legal-nav strong { display: block; margin-bottom: 11px; }
.legal-nav a { display: block; padding: 8px 0; color: var(--muted); font-size: .9rem; }
.legal-nav a:hover { color: var(--green-600); }
.legal-content h2 { scroll-margin-top: 110px; margin-top: 48px; font-size: 1.75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.meta-chip { padding: 8px 12px; border-radius: 999px; background: #edf5f7; color: #4e6378; font-size: .8rem; font-weight: 800; }

.download-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; padding: 42px; border-radius: 34px; background: linear-gradient(145deg,var(--navy-950),var(--navy-800)); color: #fff; box-shadow: var(--shadow-lg); }
.download-panel h2 { margin: 0; font-size: clamp(2.2rem,4.5vw,4.4rem); line-height: 1.03; letter-spacing: -.05em; }
.download-panel p { color: #bed0df; }
.download-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.download-meta span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.07); font-size: .82rem; font-weight: 800; }
.download-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.qr-card { display: grid; justify-items: center; align-content: center; padding: 28px; border-radius: 28px; background: #fff; color: var(--navy-900); text-align: center; }
.qr-card img { width: 220px; }
.qr-card strong { margin-top: 14px; }
.checksum { display: flex; align-items: center; gap: 10px; margin-top: 22px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.06); }
.checksum code { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #dff6ea; font-size: .74rem; }
.copy-btn { flex: 0 0 auto; border: 0; border-radius: 10px; background: rgba(255,255,255,.12); color: #fff; padding: 8px 10px; cursor: pointer; font-weight: 800; font-size: .75rem; }
.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.store-card { display: flex; align-items: center; gap: 17px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.store-card svg { width: 42px; height: 42px; color: var(--navy-900); }
.store-card small { display: block; color: var(--muted); }
.store-card strong { display: block; font-size: 1.05rem; }

.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.contact-card { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-card h3 { margin: 17px 0 7px; }
.contact-card p { margin: 0; color: var(--muted); }
.contact-card a { display: inline-block; margin-top: 15px; color: var(--green-600); font-weight: 850; }

.faq-list { display: grid; gap: 13px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 20px 22px; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 850; }
.faq-question svg { width: 18px; height: 18px; transition: transform .2s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer > div { padding: 0 22px 21px; color: var(--muted); }

.cta-band { position: relative; overflow: hidden; padding: 55px; border-radius: 34px; background: linear-gradient(135deg,var(--navy-950),var(--navy-800)); color: #fff; }
.cta-band::after { content: ""; position: absolute; width: 300px; height: 300px; right: -70px; bottom: -170px; border-radius: 50%; border: 60px solid rgba(24,185,91,.14); }
.cta-band-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-band h2 { margin: 0; max-width: 760px; font-size: clamp(2rem,4vw,3.6rem); line-height: 1.08; letter-spacing: -.045em; }
.cta-band p { color: #bed0df; }
.cta-actions { display: flex; flex: 0 0 auto; gap: 12px; }

.site-footer { padding: 72px 0 24px; background: var(--navy-950); color: #d6e2ec; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .72fr .72fr .9fr; gap: 48px; }
.footer-logo { width: 242px; height: auto; }
.footer-copy { max-width: 380px; color: #9eb4c6; }
.footer-col h3 { margin: 0 0 14px; color: #fff; font-size: .95rem; }
.footer-col a { display: block; padding: 5px 0; color: #a9bfd0; font-size: .9rem; }
.footer-col a:hover { color: #73e6a8; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #8fa7ba; font-size: .84rem; }

.notice { display: flex; gap: 12px; padding: 17px 18px; border: 1px solid #d9e8df; border-radius: 16px; background: #f1fbf5; color: #315f47; }
.notice.warning { border-color: #f0dfae; background: #fff9e8; color: #765d17; }
.notice svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.info-table { width: 100%; border-collapse: collapse; min-width: 650px; }
.info-table th, .info-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.info-table th { color: var(--navy-900); background: #f3f8fa; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.info-table td { color: #435a70; }
.info-table tr:last-child td { border-bottom: 0; }

.error-page { min-height: calc(100vh - 82px); display: grid; place-items: center; padding: 60px 0; background: radial-gradient(circle at 15% 20%,rgba(24,185,91,.13),transparent 30%),#f7fafb; }
.error-wrap { text-align: center; }
.error-code { font-size: clamp(5rem,16vw,12rem); line-height: .8; font-weight: 950; letter-spacing: -.08em; color: var(--navy-900); }
.error-wrap h1 { font-size: clamp(2rem,4vw,4rem); margin: 30px 0 10px; }
.error-wrap p { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .site-nav a { padding-inline: 8px; font-size: .84rem; }
  .header-actions .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr 480px; }
  .phone-stage { transform: scale(.9); transform-origin: center; }
  .screen-grid { grid-template-columns: repeat(3,1fr); }
  .price-grid { grid-template-columns: repeat(2,1fr); }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3,1fr); gap: 28px; }
}

@media (max-width: 920px) {
  .site-header { height: 72px; }
  .brand img { width: 160px; }
  .menu-toggle { display: grid; margin-left: auto; }
  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 18px 20px 25px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 50px rgba(7,31,62,.13);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 14px; font-size: .95rem; }
  .site-nav a[aria-current="page"]::after { display: none; }
  .hero { padding-top: 48px; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1, .hero p { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .phone-stage { width: min(100%,650px); margin-inline: auto; transform: scale(.95); }
  .trust-inner { grid-template-columns: repeat(3,1fr); }
  .bento-card.span-7, .bento-card.span-6, .bento-card.span-5, .bento-card.span-4, .bento-card.span-8 { grid-column: span 6; }
  .bento-card.span-7 .bento-copy, .bento-card.span-8 .bento-copy { max-width: 100%; }
  .bento-card.span-7, .bento-card.span-8 { padding-bottom: 230px; }
  .mode-grid, .split, .download-panel { grid-template-columns: 1fr; }
  .split.reverse .split-copy, .split.reverse .split-visual { order: initial; }
  .page-hero { text-align: center; }
  .page-hero p { margin-inline: auto; }
  .breadcrumbs { justify-content: center; }
  .screen-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2 / -1; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 55px 0; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 34px; }
  .hero h1 { font-size: clamp(3rem,16vw,4.6rem); }
  .hero-phone.center { width: 230px; }
  .hero-phone.left, .hero-phone.right { width: 180px; opacity: .68; }
  .hero-phone.left { left: -40px; }
  .hero-phone.right { right: -40px; }
  .phone-stage { min-height: 550px; transform: none; }
  .float-card.top { right: -4px; }
  .float-card.bottom { left: -4px; bottom: 38px; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item { justify-content: flex-start; }
  .bento-card.span-7, .bento-card.span-6, .bento-card.span-5, .bento-card.span-4, .bento-card.span-8 { grid-column: 1 / -1; }
  .bento-card { padding: 25px; }
  .mode-card { min-height: 650px; padding: 30px 25px; }
  .mode-list { grid-template-columns: 1fr; }
  .mode-phones { left: 10%; right: -20%; }
  .mode-phones img { width: 185px; }
  .split { gap: 40px; }
  .split-visual { min-height: 520px; }
  .split-visual .phone-pair img { width: 190px; }
  .screen-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .screen-card { padding: 14px 7px 13px; }
  .screen-card img { height: 300px; }
  .screen-card p { display: none; }
  .stats-grid, .price-grid, .contact-grid, .store-grid { grid-template-columns: 1fr; }
  .download-panel { padding: 28px 22px; }
  .checksum code { white-space: normal; overflow-wrap: anywhere; }
  .cta-band { padding: 38px 25px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .lightbox-close { right: 0; top: -52px; }
}

@media (max-width: 420px) {
  .screen-grid { grid-template-columns: 1fr; }
  .screen-card img { height: 420px; }
  .screen-card p { display: block; }
  .hero-note { gap: 10px; flex-direction: column; align-items: center; }
  .trust-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about, .footer-grid .footer-col:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* MONQURO V4 visual consistency fixes */
.brand img {
  width: 236px;
  height: auto;
  aspect-ratio: 600 / 117;
  object-fit: contain;
  object-position: left center;
}

.showcase-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(7,31,62,.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 22% 18%, rgba(24,185,91,.13), transparent 32%),
    radial-gradient(circle at 84% 80%, rgba(38,135,216,.13), transparent 34%),
    linear-gradient(145deg,#f9fcfd,#edf5f8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.showcase-panel.dark {
  border-color: rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 18% 18%, rgba(24,185,91,.17), transparent 34%),
    radial-gradient(circle at 85% 80%, rgba(38,135,216,.19), transparent 36%),
    linear-gradient(145deg,#071f3e,#0b315d);
}
.showcase-panel img.showcase-art {
  display: block;
  width: min(96%, 760px);
  height: auto;
  max-height: 690px;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}
.showcase-panel.hero-showcase {
  min-height: 630px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.showcase-panel.hero-showcase img.showcase-art { width: min(112%, 780px); max-height: none; }
.showcase-panel.compact { min-height: 480px; }
.showcase-panel.compact img.showcase-art { width: min(93%, 650px); max-height: 590px; }
.showcase-panel.single img.showcase-art { width: min(90%, 560px); max-height: 620px; }

/* Replace older crop/rotation visual rules. */
.phone-stage,
.mode-phones,
.split-visual .phone-pair,
.page-hero-visual .trio { transform: none !important; }
.mode-card { min-height: 710px; padding-bottom: 330px; }
.mode-visual {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 12px;
  height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.mode-visual img { width: 100%; height: 100%; object-fit: contain; }
.mode-card.business .mode-visual { filter: drop-shadow(0 18px 24px rgba(0,0,0,.16)); }

.split-visual.v4-visual {
  min-height: 560px;
  padding: 20px;
}
.split-visual.v4-visual > img.showcase-art {
  width: 100%;
  height: 520px;
  max-width: 760px;
  object-fit: contain;
  filter: none;
}
.page-hero-visual.v4-visual {
  min-height: 470px;
  padding: 16px;
}
.page-hero-visual.v4-visual img.showcase-art {
  width: min(100%, 700px);
  height: 450px;
  max-height: none;
  object-fit: contain;
  filter: none;
}
.page-hero-visual.v4-visual.single img.showcase-art { width: min(100%, 520px); height: 460px; }

/* Readability on dark feature/business sections. */
.section-dark .split-copy p,
.section-dark .split-copy li,
.section-dark .feature-list li,
.section-dark .mode-list li { color: #d5e3ed; }
.section-dark .split-copy strong,
.section-dark h2,
.section-dark h3 { color: #fff; }

/* A footer logo with a fixed, correct aspect ratio on every page. */
.footer-logo-wrap {
  width: 250px;
  height: 58px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.footer-logo {
  display: block;
  width: 250px !important;
  height: auto !important;
  max-height: 58px;
  aspect-ratio: 600 / 117;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .showcase-panel.hero-showcase { min-height: 560px; }
  .mode-card { min-height: 670px; padding-bottom: 300px; }
  .mode-visual { height: 285px; }
}
@media (max-width: 720px) {
  .brand img { width: 190px; }
  .showcase-panel, .split-visual.v4-visual { min-height: 430px; }
  .showcase-panel.hero-showcase { min-height: 460px; }
  .showcase-panel.hero-showcase img.showcase-art { width: 112%; }
  .showcase-panel img.showcase-art,
  .split-visual.v4-visual > img.showcase-art { height: 410px; max-height: 410px; }
  .page-hero-visual.v4-visual { min-height: 390px; }
  .page-hero-visual.v4-visual img.showcase-art,
  .page-hero-visual.v4-visual.single img.showcase-art { height: 370px; }
  .mode-card { min-height: 630px; padding-bottom: 265px; }
  .mode-visual { height: 250px; }
  .footer-logo-wrap { width: 220px; height: 52px; }
  .footer-logo { width: 220px !important; max-height: 52px; }
}
