:root {
  --bg: #F4F7FB;
  --surface: #FFFFFF;
  --surface-soft: #EEF3F9;
  --text: #0F172A;
  --heading: #0B2545;
  --muted: #516079;
  --faint: #7C8AA3;
  --border: #D7E0EC;
  --accent: #0E7490;
  --accent-hover: #0B5F77;
  --accent-light: #DFF4FA;
  --warning: #B7791F;
  --success: #1F8A5B;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;
  --shadow-xs: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow-sm: 0 8px 24px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 16px 40px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.16);
  --shadow-focus: 0 0 0 3px rgba(14, 116, 144, 0.2);
  --motion-fast: 140ms;
  --motion-base: 220ms;
  --motion-slow: 360ms;
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--motion-base) var(--ease-standard),
    backdrop-filter var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.brand-word {
  color: var(--heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.header-nav {
  display: inline-flex;
  justify-content: center;
  gap: 26px;
}

.header-nav a {
  position: relative;
  font-size: 14px;
  color: var(--muted);
  transition: color var(--motion-fast) var(--ease-standard);
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-base) var(--ease-spring);
}

.header-nav a:hover { color: var(--text); }
.header-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.login-link {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--motion-fast) var(--ease-standard);
}

.login-link:hover { color: var(--text); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  transition:
    transform var(--motion-fast) var(--ease-spring),
    box-shadow var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  border-color: var(--border);
  color: var(--heading);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-nav {
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(14,116,144,0.08) 0%, transparent 70%);
}

.hero-copy { max-width: 560px; }

.hero-badge {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.hero-sub {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 480px;
}

.hero-cta-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  height: 48px;
  padding: 0 24px;
  font-size: 15px;
}

.hero-cta-note {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
}

.hero-social-proof {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-social-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.avatars { display: flex; }

.avatars span {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, #0E7490, #7DD3FC);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  display: grid;
  place-items: center;
}

.avatars span:first-child { margin-left: 0; }

.hero-demo {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-scenario-wrap { margin-bottom: 14px; }

.hero-scenarios {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.scenario-btn {
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 12px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard);
}

.scenario-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero-progress {
  margin-top: 10px;
  height: 3px;
  background: var(--surface-soft);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 1900ms linear;
}

/* Phone shell */
.phone-shell {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 34px;
  max-width: 320px;
  margin: 0 auto;
  overflow: hidden;
}

.scan-toast {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 8px;
  background: rgba(11, 37, 69, 0.92);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 11px;
  transform: translateY(-120%);
  opacity: 0;
}

.scan-toast.show {
  animation: toastSlide 1100ms var(--ease-spring);
}

@keyframes toastSlide {
  0%   { transform: translateY(-120%); opacity: 0; }
  20%  { transform: translateY(0%);    opacity: 1; }
  80%  { transform: translateY(0%);    opacity: 1; }
  100% { transform: translateY(-120%); opacity: 0; }
}

.phone-topbar {
  padding: 14px 16px 8px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  background: var(--surface-soft);
}

.phone-content { padding: 20px 18px 22px; }

.phone-label {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.phone-url {
  margin: 8px 0 0;
  color: var(--heading);
  font-size: 16px;
  font-weight: 500;
  font-family: 'Montserrat', 'Manrope', sans-serif;
  min-height: 24px;
}

.phone-divider {
  margin: 14px 0;
  border-top: 1px solid var(--border);
}

.phone-rule,
.phone-tag {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.phone-tag { margin-top: 6px; }

/* ── Trust bar ────────────────────────────────────────────────────────────── */
.trust-bar {
  margin-top: 24px;
  margin-left: -40px;
  margin-right: -40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-scroll {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
  overflow: auto;
  padding: 0 12px;
}

.trust-scroll::-webkit-scrollbar { height: 0; }

.trust-logos,
.trust-stats {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-chip {
  position: relative;
  color: var(--faint);
  font-size: 13px;
  opacity: 0.7;
  transition: opacity var(--motion-fast) var(--ease-standard);
  cursor: default;
}

.logo-chip:hover { opacity: 1; }

.logo-chip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  background: var(--heading);
  color: #fff;
  font-size: 10px;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.logo-chip:hover::after { opacity: 1; }

.trust-stats span {
  font-size: 13px;
  color: var(--muted);
  background: var(--surface-soft);
  padding: 5px 10px;
  border-radius: var(--radius-full);
}

.trust-dot { color: var(--faint); }

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 112px 0; }

.section-eyebrow {
  margin: 0 0 12px;
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-eyebrow.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  letter-spacing: 0;
  text-transform: none;
}

.section-title {
  margin: 0;
  color: var(--heading);
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.section-title.centered,
.section-intro.centered,
.section-note.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  margin: 18px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-note {
  margin-top: 22px;
  color: var(--faint);
  font-size: 14px;
}

/* ── Problem section ──────────────────────────────────────────────────────── */
.problem-grid {
  margin-top: 36px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.problem-icon svg {
  width: 20px;
  height: 20px;
}

.problem-card h3 {
  margin: 16px 0 10px;
  color: var(--heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── Solution / flow steps ───────────────────────────────────────────────── */
.section-solution {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
  border-radius: 20px;
  padding-left: 48px;
  padding-right: 48px;
}

.flow-steps {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 16px;
  border-top: 1px dashed var(--border);
  z-index: 0;
}

.flow-step {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  padding: 24px;
}

.flow-node {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.flow-step h3 {
  margin: 16px 0 10px;
  font-size: 20px;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: -0.01em;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Rule builder */
.rule-builder {
  margin-top: 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-xs);
}

.rule-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}

.rule-row:first-child { margin-top: 0; }

.rule-dropdown {
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  font-size: 13px;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
}

.rule-destination {
  font-family: 'Montserrat', 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
}

.rule-ok {
  color: var(--success);
  font-weight: 500;
}

.rule-row.otherwise {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── Proof / testimonials ─────────────────────────────────────────────────── */
.section-proof {
  background: var(--surface);
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
}

.testimonial-grid {
  margin-top: 30px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.stars {
  margin: 0;
  color: var(--warning);
  letter-spacing: 0.08em;
  font-size: 15px;
}

.quote {
  margin: 12px 0 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

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

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  background: linear-gradient(135deg, #0E7490, #7DD3FC);
  flex-shrink: 0;
}

.person p {
  margin: 0;
  display: grid;
  gap: 2px;
}

.person strong {
  font-size: 14px;
  font-weight: 500;
}

.person span {
  font-size: 12px;
  color: var(--muted);
}

.proof-logos {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.65;
  letter-spacing: 0.02em;
}

/* ── Showcase / use cases ─────────────────────────────────────────────────── */
.section-showcase { background: var(--bg); }

.showcase-tabs {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.showcase-tab {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard);
}

.showcase-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.showcase-panel {
  margin-top: 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.showcase-copy h3 {
  margin: 0;
  color: var(--heading);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.showcase-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.showcase-copy ul {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.showcase-copy li {
  position: relative;
  margin-top: 8px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.showcase-copy li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  top: 1px;
}

.showcase-copy a {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 500;
  font-size: 14px;
}

.showcase-phone-wrap {
  display: grid;
  justify-items: center;
}

.showcase-phone {
  width: 290px;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  padding: 20px;
  box-shadow: var(--shadow-xs);
  transition: opacity var(--motion-base) var(--ease-standard), transform var(--motion-base) var(--ease-standard);
}

.showcase-phone.transition {
  opacity: 0;
  transform: translateX(8px);
}

.showcase-phone-time {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
}

.showcase-phone-url {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--heading);
  font-family: 'Montserrat', 'Manrope', sans-serif;
}

.showcase-phone-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.showcase-analytics {
  margin: 12px 0 0;
  color: var(--faint);
  font-size: 12px;
  text-align: center;
}

/* ── Analytics dark section ───────────────────────────────────────────────── */
.section-analytics {
  background: var(--heading);
  color: #fff;
  border-radius: 20px;
  padding-left: 48px;
  padding-right: 48px;
}

.section-analytics .section-title { color: #fff; }

.section-analytics .section-intro {
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
}

.analytics-preview {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.analytics-preview img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.analytics-bars {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.analytics-bars div {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.analytics-bars b {
  display: block;
  height: 6px;
  background: #7DD3FC;
  border-radius: var(--radius-full);
}

.analytics-bars em {
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  font-size: 12px;
}

.analytics-calls {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.analytics-calls article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
}

.analytics-calls h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.analytics-calls p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.5;
}

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.section-pricing {
  background: var(--surface);
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
}

.billing-toggle {
  margin: 26px auto 0;
  display: flex;
  width: fit-content;
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.billing-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard);
}

.billing-btn span {
  margin-left: 6px;
  background: var(--success);
  color: #fff;
  font-size: 10px;
  border-radius: var(--radius-full);
  padding: 2px 6px;
}

.billing-btn:not(.is-active) span { display: none; }

.billing-btn.is-active {
  background: var(--accent);
  color: #fff;
}

.pricing-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.popular {
  margin: 0 0 10px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.tier {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
}

.price {
  margin: 8px 0 0;
  color: var(--heading);
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.price small {
  font-size: 16px;
  color: var(--muted);
  margin-left: 2px;
  font-weight: 400;
}

.price-note {
  margin: 8px 0 0;
  color: var(--faint);
  font-size: 13px;
}

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

.price-card ul {
  margin: 16px 0 20px;
  padding: 14px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
  flex: 1;
}

.price-card li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

.price-card .btn {
  width: 100%;
  height: 42px;
  font-size: 14px;
  margin-top: auto;
}

.pricing-objections {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pricing-objections article {
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--surface-soft);
}

.pricing-objections h3 {
  margin: 0;
  color: var(--heading);
  font-size: 14px;
  font-weight: 500;
}

.pricing-objections p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.section-faq { background: var(--bg); }

.faq-list {
  margin: 24px auto 0;
  max-width: 860px;
  display: grid;
  gap: 8px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--heading);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 16px;
  color: var(--faint);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── Final CTA ────────────────────────────────────────────────────────────── */
.final-cta {
  margin: 90px 0 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(125deg, #7DD3FC 0%, #0E7490 60%, #0B2545 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.final-cta p {
  margin: 18px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  width: 200px;
  height: 52px;
  background: #fff;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    transform var(--motion-fast) var(--ease-spring),
    box-shadow var(--motion-fast) var(--ease-standard);
}

.final-cta-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.final-login {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.final-login a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  margin-top: 54px;
  background: var(--heading);
  color: rgba(255, 255, 255, 0.72);
  padding: 48px 40px 28px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--motion-fast) var(--ease-standard);
}

.site-footer a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 12px;
  margin-top: 0;
}

.footer-socials a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

/* ── Scroll animations ────────────────────────────────────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-on-scroll.in {
  opacity: 1;
  transform: translateY(0);
  transition:
    transform var(--motion-slow) var(--ease-spring),
    opacity var(--motion-slow) var(--ease-standard);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .hero-demo {
    max-width: 560px;
    width: 100%;
  }

  .problem-grid,
  .testimonial-grid,
  .pricing-grid,
  .pricing-objections,
  .analytics-calls {
    grid-template-columns: 1fr 1fr;
  }

  .flow-steps { grid-template-columns: 1fr; }

  .flow-steps::before {
    left: 16px;
    right: auto;
    top: 18px;
    bottom: 18px;
    border-top: 0;
    border-left: 1px dashed var(--border);
  }

  .showcase-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 20px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-nav { display: none; }

  main { padding: 0 20px; }

  .hero-sub { font-size: 16px; }

  .hero-scenarios {
    display: grid;
    grid-template-columns: 1fr;
  }

  .scenario-btn { text-align: left; }
  .phone-shell { max-width: 100%; }

  .trust-scroll { justify-content: flex-start; }
  .trust-bar { mask-image: linear-gradient(to right, black 85%, transparent 100%); }

  .showcase-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    white-space: nowrap;
    flex-wrap: nowrap;
  }

  .problem-grid,
  .testimonial-grid,
  .pricing-grid,
  .pricing-objections,
  .analytics-calls,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 84px 0; }

  .trust-bar,
  .section-proof,
  .section-pricing {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-solution,
  .section-analytics {
    padding-left: 24px;
    padding-right: 24px;
  }

  .final-cta {
    padding: 60px 20px;
    border-radius: var(--radius-lg);
  }

  .final-cta h2 { font-size: 34px; }
  .final-cta p { font-size: 16px; }

  .site-footer { padding: 40px 20px 24px; }
}
