/* ── Fonts ─────────────────────────────────────────────────────────────────── */
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope_regular.ttf'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope_medium.ttf');  font-weight: 500; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope_semibold.ttf'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope_bold.ttf');    font-weight: 700; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope_extrabold.ttf'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Work Sans'; src: url('../fonts/work_sans_regular.ttf');  font-weight: 400; font-display: swap; }
@font-face { font-family: 'Work Sans'; src: url('../fonts/work_sans_medium.ttf');   font-weight: 500; font-display: swap; }
@font-face { font-family: 'Work Sans'; src: url('../fonts/work_sans_semibold.ttf'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Work Sans'; src: url('../fonts/work_sans_bold.ttf');     font-weight: 700; font-display: swap; }

/* ── Design tokens ─────────────────────────────────────────────────────────── */
:root {
  --color-cilantro:      #0E6E4F;
  --color-cilantro-dark: #0A5A40;
  --color-crema:         #FAF7F0;
  --color-mostaza:       #E89B3D;
  --color-surface:       #F3F1EB;
  --color-surface-high:  #EDEAE3;
  --color-on-surface:    #1A1C1C;
  --color-on-surface-v:  #44483B;
  --color-white:         #FFFFFF;

  --radius-xl:  1.5rem;
  --radius-md:  0.75rem;
  --radius-sm:  0.5rem;
  --radius-pill:9999px;

  --shadow-ambient: 0 8px 40px -4px rgba(26,28,28,.07);
  --shadow-lifted:  0 16px 48px -8px rgba(26,28,28,.12);

  /* WhatsApp agent palette */
  --wa-green:       #25D366;
  --wa-green-dark:  #128C7E;
  --wa-green-hover: #1ebe5a;
  --wa-bubble-in:   #DCF8C6;
  --wa-header-bg:   #075E54;
  --wa-chat-bg:     #E5DDD5;

  --color-cilantro-tint: rgba(14,110,79,.06);

  --ease-spring: cubic-bezier(0.16,1,0.3,1);
  --transition:  0.6s var(--ease-spring);
}

/* ── Reset & base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Work Sans', system-ui, sans-serif;
  background: var(--color-crema);
  color: var(--color-on-surface);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography helpers ────────────────────────────────────────────────────── */
.font-display    { font-family: 'Manrope', sans-serif; font-weight: 800; }
.font-headline   { font-family: 'Manrope', sans-serif; font-weight: 700; }
.font-label      { font-family: 'Work Sans', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; }

/* ── Scroll-reveal ─────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition), transform var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform .2s var(--ease-spring), box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover  { transform: scale(1.02); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-cilantro), var(--color-cilantro-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-ambient);
}
.btn-primary:hover { box-shadow: var(--shadow-lifted); }

.btn-secondary {
  background: var(--color-surface-high);
  color: var(--color-cilantro);
}
.btn-ghost {
  background: transparent;
  color: var(--color-cilantro);
  padding: .75rem 1rem;
}
.btn-white {
  background: var(--color-white);
  color: var(--color-cilantro);
  font-weight: 700;
}
.btn-white:hover { box-shadow: var(--shadow-lifted); }

.btn-outline {
  border: 2px solid var(--color-surface-high);
  color: var(--color-cilantro);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--color-cilantro);
  background: var(--color-cilantro-tint);
}

/* ── Navbar ────────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
#navbar.scrolled {
  background: rgba(250,247,240,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-ambient);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-cilantro);
}
.nav-brand img { height: 32px; width: auto; max-width: 160px; }
.footer-logo { height: 27px; width: auto; max-width: 140px; opacity: .85; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: .9375rem;
  color: var(--color-on-surface-v);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-cilantro);
  transition: width .25s var(--ease-spring);
}
.nav-links a:hover { color: var(--color-cilantro); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: .75rem; }

/* ── Mobile nav toggle ─────────────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-cilantro);
  margin: 5px 0;
  transition: .3s;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 6rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .18;
  pointer-events: none;
}
.hero-blob-1 {
  width: 480px; height: 480px;
  background: var(--color-cilantro);
  top: -80px; left: -120px;
}
.hero-blob-2 {
  width: 320px; height: 320px;
  background: var(--color-mostaza);
  bottom: 60px; right: 5%;
}
.hero-blob-3 {
  width: 200px; height: 200px;
  background: var(--color-cilantro);
  top: 40%; right: 48%;
  opacity: .1;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(14,110,79,.1);
  color: var(--color-cilantro);
  padding: .375rem .875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--color-on-surface);
  margin-bottom: 1.25rem;
}
.hero-headline span { color: var(--color-cilantro); }

.hero-sub {
  font-size: 1.125rem;
  color: var(--color-on-surface-v);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  z-index: 1;
}

.dashboard-mockup {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lifted);
  overflow: hidden;
  border: 1px solid rgba(14,110,79,.06);
}

.mockup-topbar {
  background: var(--color-cilantro);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}
.mockup-title {
  color: rgba(255,255,255,.9);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  margin-left: .25rem;
}

.mockup-body { padding: 1.5rem; }

.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.kpi-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: .875rem;
}
.kpi-label {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-on-surface-v);
  margin-bottom: .375rem;
}
.kpi-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--color-on-surface);
}
.kpi-value.accent { color: var(--color-cilantro); }

.mockup-orders {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: .875rem;
}
.orders-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: .75rem;
  color: var(--color-on-surface);
}
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
}
.order-row + .order-row {
  border-top: 1px solid var(--color-surface-high);
}
.order-name { font-size: .8rem; color: var(--color-on-surface-v); }
.order-badge {
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .625rem;
  border-radius: var(--radius-pill);
}
.badge-open   { background: rgba(14,110,79,.12); color: var(--color-cilantro); }
.badge-prep   { background: rgba(232,155,61,.15); color: #9A6020; }
.badge-done   { background: rgba(26,28,28,.08);  color: var(--color-on-surface-v); }

.mockup-ai-chip {
  margin-top: .875rem;
  background: linear-gradient(135deg, var(--color-cilantro), var(--color-cilantro-dark));
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .625rem;
}
.ai-chip-icon { font-size: 1rem; }
.ai-chip-text {
  font-size: .8125rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.ai-chip-answer {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
}

/* ── Ticker strip ──────────────────────────────────────────────────────────── */
#ticker {
  background: var(--color-surface);
  padding: 2.5rem 0;
  overflow: hidden;
}
.ticker-eyebrow {
  text-align: center;
  margin-bottom: 1.25rem;
}
.ticker-track-wrapper {
  position: relative;
  overflow: hidden;
}
.ticker-track-wrapper::before,
.ticker-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--color-surface), transparent); }
.ticker-track-wrapper::after  { right: 0; background: linear-gradient(to left,  var(--color-surface), transparent); }

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-on-surface-v);
  white-space: nowrap;
}
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-mostaza);
  flex-shrink: 0;
}

/* ── Sections layout ───────────────────────────────────────────────────────── */
.section {
  padding: 6rem 6rem;
}
.section-alt { background: var(--color-surface); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -.015em;
  margin-bottom: .875rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--color-on-surface-v);
  line-height: 1.7;
}

/* ── Features grid ─────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lifted);
}

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(14,110,79,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  color: var(--color-cilantro);
}

.feature-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: .5rem;
  color: var(--color-on-surface);
}
.feature-desc {
  font-size: .9375rem;
  color: var(--color-on-surface-v);
  line-height: 1.6;
}

/* ── How it works ──────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(to right, var(--color-cilantro), rgba(14,110,79,.2));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 4.5rem; height: 4.5rem;
  background: linear-gradient(135deg, var(--color-cilantro), var(--color-cilantro-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-ambient);
}
.step-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: .5rem;
}
.step-desc {
  font-size: .9375rem;
  color: var(--color-on-surface-v);
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── AI spotlight ──────────────────────────────────────────────────────────── */
#ia {
  background: linear-gradient(135deg, var(--color-cilantro) 0%, var(--color-cilantro-dark) 100%);
  padding: 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ai-content { color: #fff; }

.ai-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  padding: .375rem .875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.ai-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.ai-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ai-capabilities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.ai-capabilities li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.85);
}
.ai-capabilities li::before {
  content: '';
  width: 18px; height: 18px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-check {
  width: 18px; height: 18px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .625rem;
  color: #fff;
  margin-top: 2px;
}

.ai-chat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: 1.25rem;
  padding-bottom: .875rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.chat-avatar {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
}
.chat-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  color: #fff;
}
.chat-status {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
}

.chat-messages { display: flex; flex-direction: column; gap: .75rem; }

.chat-msg {
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  font-size: .875rem;
  line-height: 1.5;
  max-width: 85%;
}
.msg-user {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  align-self: flex-end;
  border-bottom-right-radius: .25rem;
}
.msg-ai {
  background: rgba(255,255,255,.95);
  color: var(--color-on-surface);
  align-self: flex-start;
  border-bottom-left-radius: .25rem;
  font-weight: 500;
}
.msg-ai strong { color: var(--color-cilantro); }

/* ── Platforms ─────────────────────────────────────────────────────────────── */
.platforms-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.platform-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  text-align: center;
  min-width: 180px;
  box-shadow: var(--shadow-ambient);
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lifted);
}
.platform-icon { margin-bottom: 1rem; color: var(--color-cilantro); display: flex; align-items: center; justify-content: center; }
.platform-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-on-surface);
}

/* ── CTA Banner ────────────────────────────────────────────────────────────── */
#cta-banner {
  background: linear-gradient(135deg, var(--color-cilantro) 0%, var(--color-cilantro-dark) 100%);
  padding: 6rem;
  text-align: center;
}
.cta-banner-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.cta-banner-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
}
.cta-decorative {
  position: relative;
  display: inline-block;
}
.cta-decorative::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--color-on-surface);
  color: rgba(255,255,255,.7);
  padding: 4rem 6rem 3rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: .75rem;
}
.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-top: .25rem;
}
.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.4);
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  #hero { padding: 7rem 3rem 5rem; gap: 3rem; }
  .section { padding: 5rem 3rem; }
  #ia { padding: 5rem 3rem; }
  #cta-banner { padding: 5rem 3rem; }
  footer { padding: 3.5rem 3rem 2.5rem; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  #hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    text-align: center;
  }
  .hero-visual { order: -1; }
  .hero-sub { max-width: 100%; }
  .hero-ctas { justify-content: center; }

  #navbar { padding: 1rem 1.25rem; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: block; }
  #navbar.menu-open .nav-links,
  #navbar.menu-open .nav-actions {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--color-crema);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    top: 64px;
    z-index: 99;
  }

  .section { padding: 4rem 1.5rem; }
  #ia { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2.5rem; }
  #cta-banner { padding: 4rem 1.5rem; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: .875rem; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { text-align: left; display: flex; align-items: flex-start; gap: 1rem; }
  .step-number { flex-shrink: 0; margin: 0; width: 3rem; height: 3rem; font-size: 1.125rem; }
  .step-desc { max-width: 100%; }

  .platforms-grid { gap: .875rem; }
  .platform-card { padding: 2rem 2rem; min-width: 140px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.25rem; }
}

/* ── Stats bar ─────────────────────────────────────────────────────────────── */
#stats-bar {
  background: var(--color-white);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.stat-item {
  text-align: center;
  padding: 0 2rem;
  flex: 1 1 0;
  min-width: 0;
}
.stat-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-cilantro);
  line-height: 1;
  margin-bottom: .375rem;
}
.stat-label {
  font-size: .8125rem;
  color: var(--color-on-surface-v);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-surface-high);
  flex-shrink: 0;
}

/* Tablet: grid 3 columnas, sin dividers verticales */
@media (max-width: 900px) {
  .stats-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem 1rem;
    padding: 2rem 1.5rem;
  }
  .stat-item { padding: 0 .5rem; flex: none; }
  .stat-divider { display: none; }
  .stat-number { font-size: 1.75rem; }
}

/* Móvil: scroll horizontal con snap — todas las stats visibles, una a la vez */
@media (max-width: 600px) {
  #stats-bar { padding: .25rem 0; }
  .stats-inner {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding: 1.75rem 1rem;
    scroll-padding-inline: 1rem;
  }
  .stats-inner::-webkit-scrollbar { display: none; }
  .stat-item {
    flex: 0 0 42%;
    min-width: 140px;
    scroll-snap-align: center;
    padding: 0 .75rem;
    border-right: 1px solid var(--color-surface-high);
  }
  .stat-item:last-child { border-right: none; }
  .stat-number { font-size: 1.5rem; margin-bottom: .25rem; }
  .stat-label { font-size: .6875rem; letter-spacing: .05em; }
}

@media (max-width: 380px) {
  .stat-item { flex-basis: 55%; min-width: 130px; }
}

/* ── Plans ──────────────────────────────────────────────────────────────────── */
/* ── Billing toggle ─────────────────────────────────────────────────────────── */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.billing-label {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-on-surface-v);
  display: flex;
  align-items: center;
  gap: .375rem;
  cursor: default;
}

.billing-save-badge {
  background: var(--color-mostaza);
  color: var(--color-on-surface);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.billing-switch {
  width: 48px;
  height: 26px;
  border-radius: var(--radius-pill);
  background: var(--color-surface-high);
  border: none;
  cursor: pointer;
  position: relative;
  transition: background .25s ease;
  flex-shrink: 0;
  padding: 0;
}
.billing-switch[aria-pressed="true"] {
  background: var(--color-cilantro);
}

.billing-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: transform .25s var(--ease-spring);
  pointer-events: none;
}
.billing-switch[aria-pressed="true"] .billing-thumb {
  transform: translateX(22px);
}

.billing-label-active {
  color: var(--color-cilantro);
}

/* ── Plans grid (4 columns) ─────────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plans-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.plan-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lifted);
}

.plan-card-featured {
  background: linear-gradient(160deg, var(--color-cilantro) 0%, var(--color-cilantro-dark) 100%);
  box-shadow: var(--shadow-lifted);
  transform: translateY(-8px);
}
.plan-card-featured:hover { transform: translateY(-12px); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-mostaza);
  color: var(--color-on-surface);
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .875rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-header { margin-bottom: 1.5rem; }

.plan-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-on-surface-v);
  margin-bottom: .75rem;
}
.plan-card-featured .plan-name { color: rgba(255,255,255,.7); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: .5rem;
}
.plan-amount {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-on-surface);
  line-height: 1;
}
.plan-card-featured .plan-amount { color: var(--color-white); }

.plan-period {
  font-size: .875rem;
  color: var(--color-on-surface-v);
  font-weight: 500;
}
.plan-card-featured .plan-period { color: rgba(255,255,255,.65); }

.plan-amount-custom {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--color-cilantro);
  line-height: 1;
}

.plan-tagline {
  font-size: .875rem;
  color: var(--color-on-surface-v);
  line-height: 1.5;
}
.plan-card-featured .plan-tagline { color: rgba(255,255,255,.7); }

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  border-top: 1px solid var(--color-surface-high);
  padding-top: 1.25rem;
  flex: 1;
}
.plan-card-featured .plan-features { border-top-color: rgba(255,255,255,.15); }

.plan-feat {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: var(--color-on-surface);
  line-height: 1.4;
}
.plan-card-featured .plan-feat { color: rgba(255,255,255,.9); }

.feat-check {
  color: var(--color-cilantro);
  font-weight: 700;
  flex-shrink: 0;
  font-size: .8rem;
  margin-top: .1em;
}
.plan-card-featured .feat-check { color: var(--color-mostaza); }

.feat-disabled { opacity: .4; }
.feat-x {
  color: var(--color-on-surface-v);
  flex-shrink: 0;
  font-size: .8rem;
  margin-top: .1em;
}

.plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: .9375rem;
  padding: .875rem 1.25rem;
  justify-content: center;
}

/* ── Plan badge AI ──────────────────────────────────────────────────────────── */
.plan-badge-ai {
  background: linear-gradient(90deg, var(--color-cilantro) 0%, #1a7a5e 100%);
  color: var(--color-white);
}

/* ── Plan AI card ───────────────────────────────────────────────────────────── */
.plan-card-ai {
  background: linear-gradient(160deg, #0f1923 0%, #1a2a1e 100%);
  border: 1.5px solid rgba(14,110,79,.35);
  box-shadow: 0 0 0 3px rgba(14,110,79,.08), var(--shadow-lifted);
}
.plan-card-ai:hover {
  box-shadow: 0 0 0 3px rgba(14,110,79,.18), var(--shadow-lifted);
}
.plan-card-ai .plan-name { color: rgba(255,255,255,.55); }
.plan-card-ai .plan-amount { color: var(--color-white); }
.plan-card-ai .plan-period { color: rgba(255,255,255,.5); }
.plan-card-ai .plan-tagline { color: rgba(255,255,255,.65); }
.plan-card-ai .plan-features { border-top-color: rgba(255,255,255,.1); }
.plan-card-ai .plan-feat { color: rgba(255,255,255,.85); }
.plan-card-ai .feat-check { color: #4ade80; }
.plan-card-ai .feat-x { color: rgba(255,255,255,.3); }
.plan-card-ai .plan-annual-note { color: rgba(255,255,255,.4); }

.plan-feat-note {
  font-size: .75rem;
  color: var(--color-on-surface-v);
  opacity: .7;
  margin-top: .125rem;
  padding-left: 1.25rem;
}
.plan-card-ai .plan-feat-note { color: rgba(255,255,255,.45); }
.plan-card-featured .plan-feat-note { color: rgba(255,255,255,.5); }

.plan-annual-note {
  font-size: .75rem;
  color: var(--color-on-surface-v);
  opacity: .75;
  margin-top: .25rem;
  min-height: 1rem;
}

.plans-disclaimer {
  text-align: center;
  font-size: .8125rem;
  color: var(--color-on-surface-v);
  opacity: .65;
  margin-top: 1.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ── .btn-cilantro ────────────────────────────────────────────────────────── */
.btn-cilantro {
  background: var(--color-cilantro);
  color: var(--color-white);
  border: none;
}
.btn-cilantro:hover {
  background: var(--color-cilantro-dark);
  color: var(--color-white);
}

@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card-featured { transform: none; }
  .plan-card-featured:hover { transform: translateY(-4px); }
  .plan-card-ai { transform: none; }
}

@media (max-width: 960px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card-featured { transform: none; }
  .plan-card-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 600px) {
  .plans-grid { grid-template-columns: 1fr; }
  .billing-toggle { flex-wrap: wrap; gap: .5rem; }
}

/* ── WhatsApp Agent section ────────────────────────────────────────────────── */

.wa-section {
  background: linear-gradient(135deg, #07382B 0%, var(--color-cilantro-dark) 60%, #0E5E43 100%);
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

.wa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(37,211,102,.08) 0%, transparent 70%);
  pointer-events: none;
}

.wa-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

/* Copy side */
.wa-section .section-eyebrow {
  color: var(--wa-green);
}

.wa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.wa-icon {
  width: 18px;
  height: 18px;
  fill: var(--wa-green);
  flex-shrink: 0;
}

.wa-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.wa-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.75rem;
}

.wa-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.wa-features li {
  font-family: 'Work Sans', sans-serif;
  font-size: .9375rem;
  color: rgba(255,255,255,.88);
  display: flex;
  align-items: flex-start;
  gap: .625rem;
}

.wa-check {
  color: var(--wa-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05em;
}

.wa-cta {
  display: inline-flex;
  align-items: center;
  background: var(--wa-green);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .9375rem;
  padding: .875rem 1.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.wa-cta:hover {
  background: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
}

/* Phone mockup */
.wa-phone {
  background: var(--wa-chat-bg);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 4px 16px rgba(0,0,0,.2);
  max-width: 360px;
  margin: 0 auto;
  font-family: -apple-system, 'Segoe UI', Helvetica, sans-serif;
}

.wa-phone-header {
  background: var(--wa-header-bg);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .625rem;
  color: #fff;
}

.wa-back-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.8);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  cursor: default;
}

.wa-phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.wa-phone-meta { flex: 1; }
.wa-phone-name { font-size: .875rem; font-weight: 600; }
.wa-phone-status { font-size: .75rem; color: rgba(255,255,255,.7); }
.wa-phone-icons { color: rgba(255,255,255,.7); }

.wa-messages {
  padding: .875rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .375rem;
  min-height: 280px;
}

.wa-date-divider {
  text-align: center;
  font-size: .7rem;
  color: #667781;
  background: rgba(255,255,255,.6);
  border-radius: var(--radius-pill);
  padding: .2rem .75rem;
  align-self: center;
  margin-bottom: .25rem;
}

.wa-msg {
  max-width: 82%;
  padding: .5rem .75rem;
  border-radius: .5rem;
  font-size: .8125rem;
  line-height: 1.5;
  position: relative;
  word-break: break-word;
}

.wa-msg-in {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 0;
  color: #111;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
}

.wa-msg-out {
  background: var(--wa-bubble-in);
  align-self: flex-end;
  border-top-right-radius: 0;
  color: #111;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
}

.wa-time {
  display: block;
  text-align: right;
  font-size: .67rem;
  color: #667781;
  margin-top: .25rem;
}

.wa-ticks { color: #53bdeb; }

.wa-input-bar {
  background: #f0f2f5;
  padding: .625rem .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.wa-input-field {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: .5rem .875rem;
  font-size: .8125rem;
  color: #aaa;
}

.wa-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wa-green);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .wa-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem;
  }
  .wa-phone { max-width: 100%; }
}

@media (max-width: 480px) {
  .wa-layout { padding: 3rem 1.25rem; }
  .wa-title { font-size: 1.625rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero dot grid pattern ─────────────────────────────────────────────────── */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(14,110,79,.14) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ── Hero trust strip ──────────────────────────────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .8rem;
  color: var(--color-on-surface-v);
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
}

.hero-trust-sep {
  color: var(--color-on-surface-v);
  opacity: .35;
  font-size: .75rem;
  line-height: 1;
}

/* ── Feature number labels ─────────────────────────────────────────────────── */
.feature-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: .625rem;
  color: rgba(14,110,79,.22);
  letter-spacing: .12em;
  margin-bottom: .375rem;
  display: block;
}

/* ── Dashboard mockup sidebar ──────────────────────────────────────────────── */
.mockup-inner {
  display: flex;
}

.mockup-sidebar {
  width: 44px;
  background: rgba(14,110,79,.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  border-right: 1px solid rgba(14,110,79,.06);
  flex-shrink: 0;
}

.mockup-nav-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(14,110,79,.1);
}

.mockup-nav-icon.active {
  background: var(--color-cilantro);
}

/* KPI trend micro-line */
.kpi-trend {
  font-size: .65rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  margin-top: .125rem;
  letter-spacing: .01em;
}

.kpi-trend-up      { color: var(--color-cilantro); }
.kpi-trend-neutral { color: var(--color-on-surface-v); }


/* ── AI powered badge ──────────────────────────────────────────────────────── */
.ai-powered-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  margin-top: 1.75rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  padding: .375rem .875rem .375rem .625rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

/* ── Platform sub-label & note ─────────────────────────────────────────────── */
.platform-sub {
  font-size: .75rem;
  color: var(--color-on-surface-v);
  font-family: 'Work Sans', sans-serif;
  margin-top: .25rem;
}

.platforms-note {
  text-align: center;
  font-size: .875rem;
  color: var(--color-on-surface-v);
  margin-top: 2.5rem;
  font-family: 'Work Sans', sans-serif;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── CTA banner decorative rings ───────────────────────────────────────────── */
.cta-deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
  z-index: 0;
}

.cta-deco-ring-1 {
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ── New: mockup screenshot (hero image) ─────────────────────────────────── */
.hero-visual { align-self: stretch; }
.dashboard-mockup { height: 100%; display: flex; flex-direction: column; }
.mockup-screenshot {
  overflow: hidden;
  flex: 1;
  min-height: 320px;
  background: var(--color-surface);
}
.mockup-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  image-rendering: high-quality;
}

/* ── New: App Gallery ─────────────────────────────────────────────────────── */
.screens-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem .25rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-surface-high) transparent;
  justify-content: safe center;
}
.screens-scroll::-webkit-scrollbar { height: 4px; }
.screens-scroll::-webkit-scrollbar-track { background: transparent; }
.screens-scroll::-webkit-scrollbar-thumb { background: var(--color-surface-high); border-radius: 2px; }

.phone-frame {
  flex-shrink: 0;
  width: 200px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lifted);
  background: var(--color-white);
  scroll-snap-align: start;
  border: 1px solid rgba(26,28,28,.06);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.phone-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px -8px rgba(26,28,28,.18);
}
.phone-frame img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.phone-label {
  padding: .625rem .75rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-on-surface-v);
  text-align: center;
  border-top: 1px solid var(--color-surface);
}

/* ── New: AI visuals wrapper + floating screen ────────────────────────────── */
.ai-visuals {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
}
.ai-screen-float {
  flex-shrink: 0;
  width: 140px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px -6px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  transform: rotate(-2deg) translateY(16px);
  transition: transform .4s var(--ease-spring);
  align-self: center;
}
.ai-screen-float:hover { transform: rotate(0deg) translateY(0); }
.ai-visuals .ai-chat { flex: 1; min-width: 0; }
.ai-screen-float img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 768px) {
  .ai-visuals { flex-direction: column; }
  .ai-screen-float { display: none; }
  .phone-frame { width: 172px; }
  .phone-frame img { height: 290px; }
  .mockup-screenshot { height: 240px; }
}

.cta-deco-ring-2 {
  width: 640px; height: 640px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
