:root {
  --bg: #f4fbfe;
  --surface: #ffffff;
  --surface-soft: #eaf8fd;
  --border: #d7eef7;
  --text: #16313d;
  --muted: #4f6772;
  --brand: #34acd8;
  --brand-dark: #1f8fbc;
  --accent-dark: #16313d;
  --footer: #102733;
  --success: #2f9e44;
  --shadow: 0 18px 45px rgba(22, 49, 61, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 28%, #ffffff 100%);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 2rem));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(215, 238, 247, 0.45);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 34px rgba(22, 49, 61, 0.1);
}

.nav-bar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  height: 36px;
  width: auto;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(31, 143, 188, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-dark);
  box-shadow: 0 12px 28px rgba(22, 49, 61, 0.08);
  cursor: pointer;
  line-height: 0;
}

.nav-toggle:hover {
  background: #fff;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 0;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links .nav-phone {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-weight: 700;
}

.nav-links .nav-phone::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(52, 172, 216, 0.12);
  margin-right: 0.5rem;
}

.nav-links .nav-demo {
  background: var(--brand);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1rem;
  box-shadow: 0 12px 24px rgba(52, 172, 216, 0.22);
}

.nav-links .nav-demo:hover,
.nav-links .nav-demo.active {
  background: var(--brand-dark);
  color: #fff;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--brand-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(52, 172, 216, 0.24);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface-soft);
}

.hero {
  padding: 7.5rem 0 3rem;
}

.hero-grid,
.two-col,
.pricing-grid,
.card-grid,
.feature-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.home-hero-title {
  font-size: clamp(2.15rem, 3.75vw, 3.25rem);
  max-width: 15ch;
}

.text-brand {
  color: var(--brand);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-row span::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px rgba(52,172,216,0.25);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.section {
  padding: 2.6rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(234, 248, 253, 0.7), rgba(255, 255, 255, 0.9));
}

.card,
.message-card,
.price-card,
.legal-box,
.form-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.card,
.price-card,
.legal-box,
.form-shell {
  padding: 1.6rem;
}

.card,
.price-card,
.legal-box {
  height: auto;
  min-height: 0;
}

.form-shell {
  min-height: 683px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.message-card {
  overflow: hidden;
}

.message-top {
  padding: 1rem 1.25rem;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  color: var(--brand-dark);
}

.message-body {
  padding: 1.25rem;
}

.message-bubble {
  background: linear-gradient(135deg, var(--surface-soft), #f7fcfe);
  border-radius: 18px 18px 18px 6px;
  padding: 1rem;
}

.counter {
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--brand);
  font-weight: 700;
}

.star-row {
  letter-spacing: 0.3rem;
  color: #f4b400;
  font-size: 2rem;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 2.25rem;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--accent-dark), var(--brand-dark));
  color: #fff;
  box-shadow: 0 22px 55px rgba(22, 49, 61, 0.18);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.84);
}

.price-card.featured {
  border-color: var(--brand);
  transform: translateY(-4px);
}

.badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1rem 0;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.list,
.legal-list {
  padding-left: 1.25rem;
}

.list li,
.legal-list li {
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.toggle {
  position: relative;
  width: 64px;
  height: 34px;
  border-radius: 999px;
  background: var(--border);
  border: 0;
  cursor: pointer;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}

.toggle.is-yearly {
  background: var(--brand);
}

.toggle.is-yearly::after {
  transform: translateX(30px);
}

.savings {
  display: none;
  margin-left: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #e7f8ea;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
}

.savings.visible {
  display: inline-block;
}

.meta-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.meta-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--brand);
  font-weight: 700;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2,
.legal-section h3 {
  color: var(--text);
}

.legal-section h2 {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.legal-section h3 {
  margin-top: 1rem;
  color: var(--brand-dark);
}

.legal-hero {
  background: linear-gradient(180deg, rgba(234, 248, 253, 0.65), #fff);
  padding-bottom: 1.5rem;
}

.legal-document-section {
  padding-top: 1.5rem;
}

.legal-document {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.legal-document > p:first-child {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.legal-document .legal-section {
  margin-bottom: 2.25rem;
}

.legal-document .legal-section h2 {
  align-items: center;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  display: flex;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  gap: 0.9rem;
  padding-bottom: 0.75rem;
}

.legal-document .legal-section h2::first-letter {
  color: inherit;
}

.legal-document .legal-section p,
.legal-document .legal-list li {
  color: var(--muted);
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.faq-item h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}

.faq-item p {
  color: var(--muted);
  margin: 0;
}

.notice {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 2rem;
  background: var(--footer);
  color: rgba(255,255,255,0.82);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 0.8rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.72);
}

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

.footer-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.52);
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .card-grid,
  .pricing-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-bar {
    min-height: 68px;
    padding: 0.65rem 0;
    align-items: center;
    flex-wrap: wrap;
  }

  .js-enhanced .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .js-enhanced .nav-links {
    display: none;
    width: 100%;
    order: 3;
    margin-top: 0.75rem;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(215, 238, 247, 0.92);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(22, 49, 61, 0.1);
  }

  .js-enhanced .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    text-align: center;
  }

  .nav-links a.active,
  .nav-links a:hover {
    background: var(--surface-soft);
  }

  .nav-links .nav-phone,
  .nav-links .nav-demo {
    justify-content: center;
  }

  .nav-links .nav-demo {
    margin-top: 0.35rem;
  }

  .js-enhanced .site-header.nav-open {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 34px rgba(22, 49, 61, 0.1);
  }

  .js-enhanced .site-header.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .js-enhanced .site-header.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .js-enhanced .site-header.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.hero {
  overflow: hidden;
}

.hero-grid > *:first-child,
.narrow,
.two-col > *,
.card,
.price-card,
.legal-box,
.form-shell,
.cta-banner {
  animation: fadeUp 0.7s ease both;
}

.hero-grid > *:nth-child(2) {
  animation: fadeInRight 0.75s ease 0.15s both;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 430px;
}

.product-shot {
  width: min(100%, 620px);
  border-radius: 18px;
  filter: drop-shadow(0 28px 40px rgba(22, 49, 61, 0.22));
  animation: floatSoft 5s ease-in-out infinite;
}

.product-shot.compact {
  width: min(100%, 520px);
}

.visual-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.floating-note {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(22, 49, 61, 0.12);
  color: var(--brand-dark);
  font-weight: 700;
  padding: 0.75rem 1rem;
  animation: fadeUp 0.7s ease both, floatSoft 4.5s ease-in-out infinite;
}

.note-one {
  left: 0;
  top: 18%;
}

.note-two {
  right: 0;
  bottom: 18%;
  animation-delay: 0.25s;
}

.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.mini-metrics span,
.pricing-highlights article,
.legal-summary article {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mini-metrics span {
  border-radius: 999px;
  color: var(--brand-dark);
  font-weight: 700;
  padding: 0.55rem 0.9rem;
}

.section-tight {
  padding-top: 0;
  padding-bottom: 1rem;
}

.pricing-highlights,
.legal-summary {
  display: grid;
  gap: 1rem;
}

.pricing-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-highlights article,
.legal-summary article {
  border-radius: 22px;
  padding: 1.2rem;
  text-align: center;
  animation: fadeUp 0.65s ease both;
}

.pricing-highlights article:nth-child(2),
.legal-summary article:nth-child(2) {
  animation-delay: 0.12s;
}

.pricing-highlights article:nth-child(3),
.legal-summary article:nth-child(3) {
  animation-delay: 0.24s;
}

.pricing-highlights strong,
.legal-summary strong {
  color: var(--brand);
  display: block;
  font-size: 1.8rem;
  line-height: 1.1;
}

.pricing-highlights span,
.legal-summary span {
  color: var(--muted);
  display: block;
  font-size: 0.94rem;
  margin-top: 0.35rem;
}

.legal-summary {
  grid-template-columns: 1fr;
}

.demo-preview {
  margin: 1.5rem 0;
}

.demo-preview img {
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(22, 49, 61, 0.15);
  animation: floatSoft 5s ease-in-out infinite;
}

.offer-banner {
  background: var(--brand-dark);
  color: #fff;
  padding: 0.65rem 0;
}

.offer-banner-inner {
  align-items: center;
  display: flex;
  gap: 0.75rem 1rem;
  justify-content: center;
  text-align: center;
}

.offer-banner span {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-banner strong {
  font-size: clamp(0.92rem, 1.55vw, 1.12rem);
}

.offer-hero {
  padding-top: 3.25rem;
}

.offer-page .two-col {
  align-items: flex-start;
  gap: 2rem;
}

.offer-page h1 {
  font-size: clamp(2rem, 3.7vw, 3.15rem);
  max-width: 10.5ch;
}

.offer-page .lead {
  font-size: 1.02rem;
  max-width: 34rem;
}

.offer-page .demo-preview {
  margin: 1.15rem 0;
}

.offer-page .demo-preview img {
  max-width: 86%;
}

.offer-highlight {
  background: linear-gradient(135deg, rgba(52, 172, 216, 0.14), rgba(223, 245, 252, 0.72));
  border: 1px solid rgba(52, 172, 216, 0.28);
  border-radius: 18px;
  margin: 1.1rem 0;
  padding: 1rem;
}

.offer-highlight h2 {
  font-size: 1.22rem;
  margin-bottom: 0.35rem;
}

.offer-highlight p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.offer-page .meta-block {
  margin-bottom: 0.9rem;
}

.offer-page .meta-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.offer-page .meta-icon {
  height: 44px;
  min-width: 44px;
}

.offer-page .form-shell {
  padding: 1.15rem;
}

.sms-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(100%, 560px);
  margin-top: -1.2rem;
  position: relative;
  z-index: 2;
}

.sms-preview {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 18px 38px rgba(22, 49, 61, 0.12);
  animation: fadeUp 0.6s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sms-preview:nth-child(1) {
  animation-delay: 0.45s;
}

.sms-preview:nth-child(2) {
  animation-delay: 0.62s;
}

.sms-preview:nth-child(3) {
  animation-delay: 0.78s;
}

.sms-preview h3 {
  margin-bottom: 0.35rem;
  color: var(--brand-dark);
  font-size: 0.9rem;
}

.sms-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.card,
.price-card,
.form-shell {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.price-card:hover,
.form-shell:hover,
.sms-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(22, 49, 61, 0.12);
  border-color: rgba(52, 172, 216, 0.45);
}

.counter {
  animation: pulseScale 2.5s ease-in-out infinite;
}

.trial-section {
  padding-top: 2rem;
}

.trial-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
  background: linear-gradient(135deg, rgba(234,248,253,0.88), rgba(255,255,255,0.96));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.trial-copy .list {
  margin-bottom: 0;
}

.trial-offer {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(52, 172, 216, 0.22);
  color: #fff;
  padding: 1.25rem;
}

.trial-number {
  align-items: baseline;
  display: flex;
  gap: 0.45rem;
  min-width: 150px;
}

.trial-number .counter {
  color: #fff;
  font-size: clamp(4rem, 9vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
}

.trial-number span:last-child {
  color: rgba(255,255,255,0.88);
  font-size: 1.25rem;
  font-weight: 800;
}

.trial-eyebrow {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
  width: 100%;
}

.trial-message {
  flex: 1 1 280px;
}

.trial-message h3 {
  margin: 0 0 0.35rem;
}

.trial-offer .notice {
  color: rgba(255,255,255,0.82);
  margin: 0;
}

.trial-offer .btn {
  background: #fff;
  color: var(--text);
  flex: 0 0 auto;
}

.trial-offer .btn:hover {
  background: var(--surface-soft);
}

.star-row {
  animation: popIn 0.55s ease both;
}

.results-section .reviews-counter {
  line-height: 1;
  margin: 1rem 0 0.4rem;
}

.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease var(--reveal-delay, 0ms), transform 0.65s ease var(--reveal-delay, 0ms);
}

.js-enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@media (max-width: 900px) {
  .hero-visual {
    min-height: auto;
  }

  .hero {
    padding-top: 8.5rem;
  }

  .sms-preview-grid,
  .feature-grid,
  .pricing-highlights {
    grid-template-columns: 1fr;
  }

  .trial-callout,
  .trial-offer {
    grid-template-columns: 1fr;
  }

  .trial-offer {
    align-items: flex-start;
    flex-direction: column;
  }

  .trial-number {
    min-width: 0;
  }

  .visual-panel {
    min-height: auto;
  }

  .floating-note {
    position: static;
    margin: -0.4rem 0 0.8rem;
  }

  .sms-preview-grid {
    margin-top: 1rem;
  }

  .offer-banner-inner {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(1120px, calc(100% - 1.25rem));
  }

  .hero {
    padding: 8rem 0 2rem;
  }

  .section {
    padding: 2rem 0;
  }

  .home-hero-title,
  .offer-page h1 {
    max-width: none;
  }

  .lead {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    padding: 0.95rem 1.2rem;
  }

  .card,
  .price-card,
  .legal-box,
  .form-shell,
  .cta-banner {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .cta-banner {
    text-align: left;
  }

  .counter {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .star-row {
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
  }

  .trust-row,
  .mini-metrics,
  .toggle-row,
  .offer-banner-inner {
    gap: 0.65rem;
  }

  .toggle-row {
    flex-wrap: wrap;
  }

  .price-card.featured {
    transform: none;
  }

  .trial-callout {
    padding: 1.4rem;
  }

  .trial-number {
    font-size: 2.4rem;
  }

  .trial-number span:last-child {
    font-size: 1rem;
  }

  .hero-visual,
  .visual-panel {
    gap: 0.75rem;
  }

  .sms-preview,
  .faq-item {
    padding: 1rem;
  }

  .meta-block {
    gap: 0.8rem;
  }

  .meta-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .product-shot,
  .product-shot.compact,
  .offer-page .demo-preview img {
    width: 100%;
    max-width: 100%;
  }

  .form-shell {
    min-height: 620px;
  }

  .site-footer {
    padding-top: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.campaign-page {
  background: #eaf8fd;
  color: var(--text);
}

.campaign-shell {
  background: #f6fcfe;
  margin: 0 auto;
  max-width: 520px;
  min-height: 100vh;
}

.campaign-header {
  background: #fff;
  padding: 0.75rem 1rem;
  text-align: center;
}

.campaign-header img {
  height: 34px;
  margin: 0 auto;
}

.campaign-hero {
  background: linear-gradient(180deg, #34acd8, #1f9dcc);
  color: #fff;
  padding: 1.35rem 1.25rem 1.75rem;
  text-align: center;
}

.campaign-urgency {
  background: rgba(22, 49, 61, 0.34);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 auto 0.55rem;
  padding: 0.5rem 0.8rem;
  text-transform: uppercase;
  width: fit-content;
}

.campaign-offer {
  font-weight: 800;
  margin: 0 0 0.9rem;
}

.campaign-hero h1 {
  font-size: clamp(1.85rem, 8vw, 2.65rem);
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.campaign-lead {
  font-size: 0.98rem;
  margin: 0 auto 1.1rem;
  max-width: 30rem;
}

.campaign-button {
  background: #16313d;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: 0.85rem 1.25rem;
}

.campaign-product {
  padding: 1rem;
  text-align: center;
}

.campaign-product img {
  border-radius: 18px;
  filter: drop-shadow(0 20px 28px rgba(22, 49, 61, 0.16));
  margin: 0 auto 0.75rem;
  width: min(100%, 340px);
}

.campaign-product p,
.campaign-final-offer span,
.campaign-benefits span {
  color: var(--muted);
  font-size: 0.9rem;
}

.campaign-alerts,
.campaign-benefits {
  display: grid;
  gap: 0.75rem;
  padding: 0 1rem 1rem;
}

.campaign-alerts article,
.campaign-benefits article,
.campaign-final-offer {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(22, 49, 61, 0.08);
}

.campaign-alerts article {
  padding: 0.85rem 1rem;
}

.campaign-alerts strong,
.campaign-alerts span {
  display: block;
}

.campaign-alerts strong {
  color: var(--brand-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.campaign-alerts span {
  color: var(--muted);
  margin-top: 0.25rem;
}

.campaign-benefits article {
  padding: 1rem;
}

.campaign-benefits p,
.campaign-final-offer p {
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.campaign-benefits h2,
.campaign-final-offer h2 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.campaign-stars {
  color: #f4b400;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.campaign-final-offer {
  margin: 0 1rem 1.25rem;
  padding: 1.25rem;
  text-align: center;
}

.campaign-final-offer strong {
  color: var(--brand-dark);
  display: block;
  margin-bottom: 0.45rem;
}

.campaign-final-offer .campaign-button {
  margin-top: 1rem;
}

.campaign-phone {
  color: var(--brand-dark);
  display: block;
  font-weight: 800;
  margin-top: 0.8rem;
}
