:root {
  --bg: #f6fbff;
  --bg-soft: #eaf6ff;
  --surface: #ffffff;
  --surface-2: #f3f9ff;
  --text: #102033;
  --muted: #627285;
  --primary: #0c8be9;
  --primary-dark: #0673c4;
  --pink: #ff41b2;
  --pink-soft: #fff0f8;
  --success: #15b981;
  --stroke: rgba(12, 139, 233, 0.14);
  --stroke-soft: rgba(16, 32, 51, 0.08);
  --shadow: 0 18px 45px rgba(12, 139, 233, 0.12);
  --shadow-strong: 0 28px 70px rgba(16, 32, 51, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #ffffff 100%);
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--stroke-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--primary);
}

.brand-badge {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  box-shadow: 0 10px 22px rgba(12, 139, 233, 0.22);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); border-color: rgba(12, 139, 233, 0.3); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  border: none;
}

.hero {
  padding: 84px 0 48px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: 0;
}

.hero p {
  color: var(--muted);
  max-width: 620px;
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  font-weight: 600;
}

.hero-bullets {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  display: grid;
  gap: 6px;
  align-items: start;
  min-height: 112px;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 30px rgba(12, 139, 233, 0.08);
}

.hero-bullets strong {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}

.hero-bullets span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.hero-bullets strong::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--success), var(--primary));
  box-shadow: 0 8px 18px rgba(21, 185, 129, 0.18);
}

.ad-offer {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(12, 139, 233, 0.1), rgba(255, 65, 178, 0.1));
  border: 1px solid var(--stroke);
}

.ad-offer strong {
  font-size: 15px;
}

.ad-offer span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.store-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.store-badge {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-width: 150px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  line-height: 1.1;
  transition: transform 0.15s ease;
}

.store-badge:hover { transform: translateY(-1px); }

.store-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--text);
}

.store-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

.store-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.store-copy span {
  font-size: 11px;
  color: rgba(16, 23, 32, 0.68);
  font-weight: 700;
  text-transform: uppercase;
}

.store-copy strong {
  font-size: 17px;
  font-weight: 800;
}

.europe-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-top: 18px;
}

.europe-item {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.europe-item strong {
  font-size: 20px;
  color: var(--primary);
}

.europe-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.trust-snapshot {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.trust-snapshot-item {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
}

.trust-snapshot-item span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(12, 139, 233, 0.13), rgba(255, 65, 178, 0.13));
  color: var(--primary);
  font-weight: 900;
}

.trust-snapshot-item strong {
  font-size: 15px;
  line-height: 1.3;
}

.trust-snapshot-item small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.launch-strip {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(12, 139, 233, 0.09), rgba(255, 65, 178, 0.1));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.launch-flow {
  display: grid;
  gap: 12px;
}

.launch-flow-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--stroke);
}

.launch-flow-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--primary);
  font-weight: 900;
}

.launch-flow-item strong {
  display: block;
  margin-bottom: 3px;
}

.launch-flow-item small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.launch-flow-item em {
  color: var(--pink);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.sales-icons {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.sales-icon-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.sales-icon-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #ffffff;
  font-weight: 900;
}

.sales-icon-card h3 {
  margin: 0;
  font-size: 16px;
}

.sales-icon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.conversion-panel {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  overflow: hidden;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, #102033, #0c5f9d 54%, #ff41b2);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.conversion-panel .section-sub,
.conversion-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.conversion-panel .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.funnel-steps {
  display: grid;
  gap: 12px;
}

.funnel-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.funnel-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ffffff;
  color: var(--primary);
  font-weight: 800;
}

.funnel-step strong {
  display: block;
  margin-bottom: 3px;
}

.funnel-step span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.45;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  width: max-content;
  margin-bottom: 12px;
}

.hero-card {
  background: linear-gradient(180deg, #ffffff, #f5fbff);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.hero-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 139, 233, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  width: max-content;
}

.hero-card h3 {
  margin: 0;
  font-size: 18px;
}

.product-showcase {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(12, 139, 233, 0.16), rgba(255, 65, 178, 0.13) 58%, #ffffff);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-strong);
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
  pointer-events: none;
}

.showcase-photo {
  position: relative;
  overflow: hidden;
  height: 230px;
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(16, 32, 51, 0.16);
}

.showcase-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(285px, 80%);
  margin: -54px auto 0;
  padding: 11px;
  border-radius: 36px;
  background: #101722;
  box-shadow: 0 26px 60px rgba(16, 32, 51, 0.28);
  animation: floatPhone 5s ease-in-out infinite;
}

.phone-screen {
  display: grid;
  gap: 12px;
  min-height: 380px;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

.screen-top,
.screen-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.screen-top {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.screen-top strong {
  color: var(--text);
  font-size: 15px;
}

.screen-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 24px rgba(12, 139, 233, 0.08);
}

.screen-card.is-paid {
  background: linear-gradient(135deg, rgba(21, 185, 129, 0.12), rgba(12, 139, 233, 0.08));
}

.screen-row {
  font-size: 13px;
}

.screen-row span {
  color: var(--muted);
}

.screen-row strong {
  color: var(--text);
}

.status-pill {
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(21, 185, 129, 0.14);
  color: #0b8d62;
  font-size: 12px;
  font-weight: 800;
}

.mini-bars {
  display: grid;
  gap: 8px;
}

.mini-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 139, 233, 0.12);
}

.mini-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--pink));
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 190px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.16);
  backdrop-filter: blur(10px);
}

.floating-chip strong {
  font-size: 14px;
}

.floating-chip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.floating-chip.left {
  left: 18px;
  bottom: 116px;
}

.floating-chip.right {
  right: 18px;
  bottom: 42px;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.payment-terminal {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(12, 139, 233, 0.12), rgba(255, 65, 178, 0.12)),
              linear-gradient(180deg, #ffffff, #f2f9ff);
}

.payment-terminal::before {
  content: "";
  position: absolute;
  inset: -80px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 65, 178, 0.13);
  filter: blur(4px);
}

.terminal-screen {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.terminal-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  color: rgba(16, 32, 51, 0.72);
}

.terminal-amount {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
}

.tap-area {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 20px;
  border-radius: 18px;
  background: rgba(12, 139, 233, 0.08);
  border: 1px dashed rgba(12, 139, 233, 0.35);
  text-align: center;
}

.tap-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
}

.terminal-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #102033;
  color: #ffffff;
  font-size: 13px;
}

.terminal-status strong {
  color: #7ee0ba;
}

.trust-bar {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 14px;
}

.trust-item {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  font-size: 13px;
  color: var(--muted);
}

.audience-section {
  padding-top: 24px;
}

.audience-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.audience-header .section-sub {
  margin-bottom: 0;
}

.audience-slider {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-slide {
  overflow: hidden;
  display: grid;
  align-content: start;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.slide-media {
  position: relative;
  min-height: 180px;
  background: var(--surface-2);
}

.slide-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.slide-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.14);
}

.slide-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.slide-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
}

.slide-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.slide-points {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.slide-points span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  border: 1px solid var(--stroke);
  font-size: 12px;
  font-weight: 700;
}

.visual-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.visual-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.visual-stack {
  display: grid;
  gap: 18px;
}

.visual-copy {
  padding: 20px;
}

.visual-copy h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.visual-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.icon-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 18px;
}

.icon-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(12, 139, 233, 0.12), rgba(255, 65, 178, 0.12));
  color: var(--primary);
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-card h3 {
  margin: 0;
  font-size: 16px;
}

.icon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.value-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-item {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.value-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.value-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.metrics {
  display: grid;
  gap: 12px;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  font-size: 14px;
  color: var(--muted);
}

.metric strong { color: var(--text); }

section {
  padding: 56px 0;
}

.section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 10px;
}

.section-sub {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 24px;
}

.grid-3 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  min-height: 120px;
}

.card h3 { margin: 0 0 8px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
  font-size: 14px;
  color: var(--muted);
}

.list li strong { color: var(--text); }

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--surface-2);
}

.step span { color: var(--muted); font-size: 13px; }

.highlight {
  background: linear-gradient(135deg, rgba(12, 139, 233, 0.08), rgba(255, 65, 178, 0.08));
  border: 1px solid var(--stroke);
  padding: 20px;
  border-radius: 20px;
}

.calendar-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 26px;
  align-items: center;
  padding-top: 28px;
}

.calendar-preview {
  position: relative;
  display: grid;
  gap: 10px;
  width: min(100%, 388px);
  justify-self: center;
  padding: 16px 14px 18px;
  border: 10px solid #101827;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(239, 247, 255, 0.98)),
    #ffffff;
  box-shadow:
    0 28px 60px rgba(15, 23, 42, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

.calendar-preview::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 110px;
  height: 22px;
  border-radius: 0 0 18px 18px;
  background: #101827;
  transform: translateX(-50%);
  z-index: 2;
}

.calendar-preview::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 118px;
  width: 4px;
  height: 58px;
  border-radius: 999px;
  background: #101827;
}

.calendar-device-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 24px;
  padding: 0 12px 3px;
  color: #101827;
}

.calendar-device-bar strong {
  font-size: 12px;
  font-weight: 900;
}

.calendar-device-bar span {
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.12);
}

.calendar-device-bar i {
  justify-self: end;
  width: 26px;
  height: 11px;
  border: 1.5px solid rgba(16, 24, 39, 0.42);
  border-radius: 4px;
}

.calendar-device-bar i::after {
  content: "";
  display: block;
  width: 16px;
  height: 7px;
  margin: 1px;
  border-radius: 2px;
  background: #101827;
}

.calendar-app-top,
.calendar-grid,
.calendar-agenda {
  background: #ffffff;
  border: 1px solid rgba(12, 139, 233, 0.12);
}

.calendar-app-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border-radius: 24px 24px 15px 15px;
}

.calendar-app-top strong {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
}

.calendar-app-top small,
.calendar-app-top > span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.calendar-app-top > span {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21, 185, 129, 0.12);
  color: #0b8d62;
  font-weight: 800;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
  padding: 13px;
  border-radius: 15px;
}

.calendar-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.calendar-grid button {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.calendar-grid button.has-booking {
  background: rgba(12, 139, 233, 0.09);
  color: var(--primary);
}

.calendar-grid button.has-booking::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
}

.calendar-grid button.is-selected {
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(12, 139, 233, 0.2);
}

.calendar-grid button.is-selected::after {
  background: #ffffff;
}

.calendar-agenda {
  display: grid;
  gap: 8px;
  padding: 13px;
  border-radius: 15px 15px 24px 24px;
}

.calendar-event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.calendar-event {
  padding: 11px;
  border-radius: 15px;
  background: var(--surface-2);
  border: 1px solid var(--stroke-soft);
}

.calendar-event > span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.calendar-event strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.calendar-event small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.calendar-event em {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.calendar-event.is-paid {
  border-color: rgba(21, 185, 129, 0.28);
  background: rgba(240, 253, 248, 0.92);
}

.calendar-event.is-paid em {
  background: rgba(21, 185, 129, 0.14);
  color: #0b8d62;
}

.payment-section {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
}

.payment-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.payment-list-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
}

.payment-list-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.payment-flow {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.flow-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
}

.flow-number {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(12, 139, 233, 0.12);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}

.flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.flow-card strong {
  display: block;
  margin-bottom: 3px;
}

.flow-result {
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.feature-showcase {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.feature-dashboard {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-strong);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.dash-header strong {
  font-size: 20px;
}

.dash-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dash-tile {
  display: grid;
  gap: 6px;
  min-height: 108px;
  padding: 14px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
}

.dash-tile strong {
  font-size: 22px;
  color: var(--primary);
}

.dash-tile span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.calculator {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(12, 139, 233, 0.11), rgba(255, 65, 178, 0.11));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.calc-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.calc-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.calc-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  background: var(--surface-2);
}

.calc-result {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #ffffff;
}

.calc-result strong {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
}

.calc-result span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.testimonials {
  display: grid;
  gap: 16px;
}

.testimonial {
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--stroke);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.cta-band {
  display: grid;
  gap: 16px;
  align-items: center;
  justify-items: start;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(12, 139, 233, 0.1), rgba(255, 65, 178, 0.1));
  border: 1px solid var(--stroke);
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 12px;
  font-weight: 600;
  width: max-content;
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.price-note {
  color: var(--muted);
  font-size: 13px;
}

.form {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
}

.input::placeholder { color: rgba(169, 181, 195, 0.7); }

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.form-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(12, 139, 233, 0.08), rgba(255, 65, 178, 0.08));
  color: var(--text);
  box-shadow: 0 14px 34px rgba(12, 139, 233, 0.12);
}

.form-status[hidden] {
  display: none;
}

.form-status-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(12, 139, 233, 0.16);
}

.form-status-icon::before {
  content: "";
  width: 8px;
  height: 14px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.form-status-copy {
  display: grid;
  gap: 3px;
  text-align: left;
}

.form-status-copy strong {
  font-size: 14px;
  line-height: 1.25;
}

.form-status-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-status.is-loading .form-status-icon::before {
  width: 14px;
  height: 14px;
  border-width: 2px;
  border-left-color: transparent;
  border-radius: 50%;
  transform: none;
  animation: formStatusSpin 0.8s linear infinite;
}

.form-status.is-success {
  border-color: rgba(21, 185, 129, 0.26);
  background: linear-gradient(135deg, rgba(21, 185, 129, 0.1), rgba(12, 139, 233, 0.08));
}

.form-status.is-success .form-status-icon {
  color: #0b8d62;
}

.form-status.is-error {
  border-color: rgba(198, 40, 85, 0.24);
  background: rgba(255, 240, 248, 0.92);
}

.form-status.is-error .form-status-icon {
  color: #c62855;
}

.form-status.is-error .form-status-icon::before {
  content: "!";
  width: auto;
  height: auto;
  border: 0;
  transform: none;
  font-weight: 800;
}

@keyframes formStatusSpin {
  to { transform: rotate(360deg); }
}

.btn[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.mobile-sticky-cta {
  display: none;
}

footer {
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { padding-top: 56px; }
  .hero-bullets { grid-template-columns: 1fr; }
  .hero-bullets li { min-height: auto; }
  .nav-cta > .btn:not(.btn-primary) { display: none; }
  .nav-cta .btn-primary { padding: 9px 12px; font-size: 13px; }
  .calendar-section { grid-template-columns: 1fr; }
  .calendar-event { grid-template-columns: auto 1fr; }
  .calendar-event em { grid-column: 2; justify-self: start; }
  .payment-section { grid-template-columns: 1fr; }
  .visual-grid { grid-template-columns: 1fr; }
  .conversion-panel,
  .launch-strip,
  .feature-showcase,
  .calculator { grid-template-columns: 1fr; }
  .trust-snapshot { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 12px; }
  .trust-snapshot-item { min-height: 118px; padding: 14px; }
  .launch-flow-item { grid-template-columns: auto 1fr; }
  .launch-flow-item em { grid-column: 2; }
  .audience-header { display: grid; align-items: start; }
  .audience-header .btn { width: 100%; }
  .audience-slider {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .audience-slider::-webkit-scrollbar { display: none; }
  .audience-slide {
    min-width: min(86vw, 360px);
    scroll-snap-align: start;
  }
  .visual-card img { min-height: 220px; }
  .product-showcase { min-height: 520px; padding: 16px; }
  .phone-shell { width: min(260px, 86%); }
  .floating-chip { position: relative; left: auto; right: auto; bottom: auto; margin-top: 12px; max-width: none; }
  .dash-grid { grid-template-columns: 1fr; }
  .flow-card { grid-template-columns: auto 1fr; }
  .flow-result { grid-column: 2; }
  body { padding-bottom: 82px; }
  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 8;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 10px 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--stroke);
    box-shadow: 0 16px 40px rgba(16, 32, 51, 0.18);
    backdrop-filter: blur(12px);
  }
  .mobile-sticky-cta span {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
  }
  .mobile-sticky-cta .btn {
    padding: 10px 12px;
    box-shadow: none;
    white-space: nowrap;
  }
}
