:root {
  --navy: #071a34;
  --navy-soft: #102a4c;
  --mint: #48e0be;
  --turquoise: #19b8d6;
  --electric: #6257ff;
  --violet: #8f5dff;
  --ink: #112235;
  --muted: #64748b;
  --line: #dce7f3;
  --soft: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(7, 26, 52, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#inicio,
#funciones,
#planes,
#como-funciona,
#contacto,
#faq {
  scroll-margin-top: 84px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

[data-lucide] {
  width: 1em;
  height: 1em;
  stroke-width: 2.25;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 231, 243, 0.8);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  color: var(--navy);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.6), transparent 18px),
    linear-gradient(135deg, var(--mint), var(--electric));
  box-shadow: 0 14px 30px rgba(72, 224, 190, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #38506c;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--electric);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white) !important;
  border-radius: 999px;
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  padding: 96px 0 92px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(72, 224, 190, 0.3), transparent 28%),
    radial-gradient(circle at 87% 58%, rgba(98, 87, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 68%);
  z-index: -2;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 34, 53, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 34, 53, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--electric);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(3rem, 5.2vw, 4.85rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  font-weight: 880;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-subtitle,
.section-copy p,
.section-heading p,
.feature-card p,
.step-card p,
.price-card p,
.cta-inner p,
.footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 660px;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--electric));
  box-shadow: 0 18px 45px rgba(39, 52, 138, 0.25);
}

.btn-secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
}

.btn-secondary:hover {
  border-color: rgba(98, 87, 255, 0.35);
  box-shadow: 0 16px 38px rgba(7, 26, 52, 0.08);
}

.hero-proof {
  display: inline-flex;
  padding: 12px 16px;
  color: #35506c;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 40px rgba(7, 26, 52, 0.06);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.desktop-mockup {
  position: absolute;
  top: 84px;
  right: 8px;
  width: min(500px, 100%);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(220, 231, 243, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 249, 252, 0.88)),
    var(--white);
  box-shadow: var(--shadow);
}

.desktop-mockup::before {
  content: "";
  position: absolute;
  inset: 54px 0 auto;
  height: 1px;
  background: var(--line);
}

.mockup-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
}

.mockup-top span {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: #d6e1ec;
}

.booking-panel {
  display: grid;
  gap: 16px;
  padding: 32px;
}

.mini-label {
  margin-bottom: 6px;
  color: var(--turquoise);
  font-size: 0.82rem;
  font-weight: 850;
}

.booking-panel h3 {
  margin-bottom: 0;
  font-size: 1.85rem;
}

.slot {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(72, 224, 190, 0.18);
  font-weight: 850;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--mint), var(--turquoise));
  font-weight: 900;
}

.service-icon [data-lucide] {
  font-size: 1.35rem;
}

.service-row small,
.floating-card span {
  display: block;
  color: var(--muted);
}

.calendar-lines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.calendar-lines span {
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(180deg, #edf5fb, #f8fbfe);
}

.phone-mockup {
  position: absolute;
  left: 0;
  bottom: -195px;
  width: 188px;
  min-height: 342px;
  padding: 24px 18px 18px;
  border: 8px solid var(--navy);
  border-radius: 34px;
  background: #fbfdff;
  box-shadow: 0 30px 80px rgba(7, 26, 52, 0.25);
}

.phone-speaker {
  width: 58px;
  height: 5px;
  margin: 0 auto 24px;
  border-radius: 99px;
  background: #d4dfec;
}

.phone-mockup p {
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 700;
}

.phone-mockup strong {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.45rem;
}

.phone-card {
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #41607d;
  background: var(--white);
  font-weight: 750;
}

.phone-card.active {
  color: var(--navy);
  border-color: rgba(72, 224, 190, 0.55);
  background: rgba(72, 224, 190, 0.14);
}

.phone-mockup button {
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy);
  font-weight: 850;
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(220, 231, 243, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 65px rgba(7, 26, 52, 0.16);
  backdrop-filter: blur(18px);
}

.call-card {
  right: 0;
  bottom: 42px;
  width: 280px;
  padding: 18px 20px 18px 48px;
}

.call-card strong {
  display: block;
  color: var(--navy);
  line-height: 1.35;
}

.pulse {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(72, 224, 190, 0.55);
  animation: pulse 1.8s infinite;
}

.google-card {
  top: 18px;
  right: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 260px;
  padding: 16px 18px;
}

.spark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--electric), var(--violet));
}

.spark [data-lucide] {
  font-size: 1.2rem;
}

.section {
  padding: 104px 0;
}

.split,
.agent-grid,
.seo-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 54px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.problem-section,
.steps-section,
.benefits-section,
.faq-section {
  background: var(--soft);
}

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

.problem-card,
.business-card,
.metric-card,
.testimonial-card,
.feature-card,
.step-card,
.price-card,
.conversation,
.local-map {
  border: 1px solid rgba(220, 231, 243, 0.95);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 55px rgba(7, 26, 52, 0.07);
}

.problem-card {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  color: var(--navy);
  font-weight: 800;
}

.problem-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: var(--electric);
  background: linear-gradient(135deg, #eef3ff, #e9fbf7);
  box-shadow: 0 12px 28px rgba(98, 87, 255, 0.12);
  font-size: 1.45rem;
  line-height: 1;
}

.problem-card span [data-lucide],
.business-card span [data-lucide] {
  font-size: 1.35rem;
}

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

.feature-card {
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.price-card:hover,
.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(7, 26, 52, 0.12);
}

.feature-card.large {
  grid-row: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 15%, rgba(72, 224, 190, 0.45), transparent 34%),
    linear-gradient(145deg, var(--navy), #183f6b);
}

.feature-card.large h3,
.feature-card.large p {
  color: var(--white);
}

.feature-card.ai {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(72, 224, 190, 0.5), transparent 30%),
    linear-gradient(145deg, #2c276f, var(--electric));
}

.feature-card.ai h3,
.feature-card.ai p {
  color: var(--white);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--mint), var(--electric));
  box-shadow: 0 16px 34px rgba(72, 224, 190, 0.22);
  font-size: 1.3rem;
  font-weight: 900;
}

.feature-icon [data-lucide] {
  font-size: 1.35rem;
}

.steps-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.steps-line::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--electric));
}

.step-card {
  position: relative;
  padding: 22px;
  border-radius: 22px;
}

.step-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 15px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.business-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.business-card {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 24px;
}

.business-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--navy);
  background: linear-gradient(135deg, #e9fbf7, #eef3ff);
  font-size: 1.55rem;
}

.agent-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.conversation {
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 20%, rgba(72, 224, 190, 0.24), transparent 28%),
    rgba(255, 255, 255, 0.9);
}

.message {
  max-width: 78%;
  padding: 16px 18px;
  margin-bottom: 14px;
  border-radius: 20px;
}

.message small {
  display: block;
  margin-bottom: 6px;
  font-weight: 850;
}

.message p {
  margin: 0;
  line-height: 1.5;
}

.message.client {
  color: var(--navy);
  background: #eef5fb;
}

.message.agent {
  margin-left: auto;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--electric));
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.badges span {
  padding: 10px 13px;
  border: 1px solid rgba(72, 224, 190, 0.4);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(72, 224, 190, 0.12);
  font-size: 0.88rem;
  font-weight: 800;
}

.seo-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.local-map {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 246, 251, 0.98)),
    #edf6fb;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 42, 76, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 76, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: rotate(-8deg) scale(1.2);
}

.pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 5px solid var(--white);
  border-radius: 99px 99px 99px 8px;
  background: var(--electric);
  box-shadow: 0 14px 28px rgba(98, 87, 255, 0.25);
  transform: rotate(-45deg);
}

.pin-a { top: 100px; left: 34%; }
.pin-b { top: 260px; left: 20%; background: var(--turquoise); }
.pin-c { top: 180px; right: 24%; background: var(--mint); }

.business-listing {
  position: absolute;
  top: 126px;
  left: 50%;
  width: 230px;
  padding: 18px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.business-listing strong,
.business-listing span,
.stars {
  display: block;
}

.business-listing span {
  margin: 6px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.stars {
  color: #f5b841;
  letter-spacing: 2px;
}

.search-chip {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(7, 26, 52, 0.09);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.chip-a { top: 44px; left: 42px; }
.chip-b { top: 312px; left: 54px; }
.chip-c { right: 34px; top: 60px; }
.chip-d { right: 52px; bottom: 58px; }

.legal-note {
  display: block;
  margin-top: 22px;
  color: #718299;
  line-height: 1.6;
}

.metric-card {
  min-height: 148px;
  padding: 22px;
  border-radius: 24px;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--electric);
  font-size: 1.65rem;
  font-weight: 900;
}

.metric-card span {
  color: var(--navy);
  font-weight: 780;
  line-height: 1.35;
}

.cta-band {
  padding: 74px 0;
  background: var(--navy);
}

.cta-inner {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(72, 224, 190, 0.36), transparent 30%),
    radial-gradient(circle at 20% 95%, rgba(98, 87, 255, 0.5), transparent 30%),
    linear-gradient(135deg, #0b2445, #173a64);
}

.cta-inner h2 {
  max-width: 820px;
  color: var(--white);
}

.cta-inner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.pricing-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 255, 0.9)),
    radial-gradient(circle at 92% 8%, rgba(72, 224, 190, 0.18), transparent 34%);
  isolation: isolate;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--mint), var(--electric));
  opacity: 0.9;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--mint), var(--electric));
  opacity: 0.85;
}

.plan-starter {
  border-color: rgba(25, 184, 214, 0.32);
  background:
    radial-gradient(circle at 86% 10%, rgba(72, 224, 190, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 255, 252, 0.9));
  box-shadow: 0 24px 70px rgba(25, 184, 214, 0.08);
}

.plan-starter::before,
.plan-starter::after {
  background: linear-gradient(90deg, var(--mint), var(--turquoise));
}

.plan-starter .plan-topline {
  color: #0f9db9;
}

.price-card.recommended {
  border-color: rgba(72, 224, 190, 0.55);
  background:
    radial-gradient(circle at 86% 12%, rgba(72, 224, 190, 0.34), transparent 28%),
    linear-gradient(145deg, #071a34, #142c58 58%, #4f45e8);
  box-shadow: 0 32px 90px rgba(7, 26, 52, 0.2);
  transform: translateY(-14px);
}

.plan-pro::before,
.plan-pro::after {
  background: linear-gradient(90deg, var(--mint), var(--electric));
}

.plan-premium {
  border-color: rgba(143, 93, 255, 0.3);
  background:
    radial-gradient(circle at 88% 8%, rgba(143, 93, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 247, 255, 0.92));
  box-shadow: 0 24px 70px rgba(98, 87, 255, 0.08);
}

.plan-premium::before,
.plan-premium::after {
  background: linear-gradient(90deg, var(--violet), var(--electric));
}

.plan-premium .plan-topline {
  color: var(--electric);
}

.plan-premium .btn-secondary:hover {
  border-color: rgba(143, 93, 255, 0.45);
}

.price-card.recommended h3,
.price-card.recommended p,
.price-card.recommended li,
.price-card.recommended .plan-price,
.price-card.recommended .plan-price small,
.price-card.recommended .plan-topline {
  color: var(--white);
}

.price-card.recommended li::before {
  color: var(--mint);
}

.recommended-label {
  position: absolute;
  top: 24px;
  right: 24px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(72, 224, 190, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card.recommended .recommended-label {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.plan-topline {
  margin-bottom: 10px;
  color: var(--electric);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 14px 0 16px;
  color: var(--navy);
}

.plan-price span {
  font-size: clamp(2.4rem, 4vw, 3.15rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.plan-price small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 28px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: #425872;
  line-height: 1.45;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--turquoise);
  font-weight: 900;
}

.price-card .btn {
  margin-top: auto;
}

.testimonial-card {
  margin: 0;
  padding: 26px;
  border-radius: 26px;
}

.testimonial-card blockquote {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 680;
}

.testimonial-card figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 26, 52, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

details[open] {
  border-color: rgba(98, 87, 255, 0.22);
  box-shadow: 0 18px 46px rgba(7, 26, 52, 0.08);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--electric);
  background: rgba(98, 87, 255, 0.1);
  font-size: 1rem;
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
  background: rgba(72, 224, 190, 0.16);
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.7;
  animation: faqFade 0.22s ease both;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #06172d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
}

.footer .brand {
  color: var(--white);
}

.footer p {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--mint);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(72, 224, 190, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(72, 224, 190, 0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .agent-grid,
  .seo-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .feature-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card.large {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .steps-line,
  .business-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-line::before {
    display: none;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 10px 4px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 10.4vw, 3rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.85rem, 8.2vw, 2.35rem);
    line-height: 1.08;
  }

  h3 {
    font-size: 1rem;
  }

  .hero-subtitle,
  .section-copy p,
  .section-heading p,
  .feature-card p,
  .step-card p,
  .price-card p,
  .cta-inner p,
  .footer p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .hero-actions {
    gap: 10px;
    margin: 20px 0 0;
  }

  .btn {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.94rem;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .hero-visual {
    min-height: 560px;
    margin-top: 28px;
    border-radius: 30px;
  }

  .desktop-mockup {
    top: 48px;
    right: auto;
    left: 0;
    width: 100%;
    min-height: 330px;
    border-radius: 24px;
  }

  .mockup-top {
    height: 44px;
  }

  .desktop-mockup::before {
    inset: 44px 0 auto;
  }

  .booking-panel {
    gap: 12px;
    padding: 26px 18px 20px;
  }

  .booking-panel h3 {
    max-width: 240px;
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .slot {
    padding: 8px 12px;
    font-size: 0.86rem;
  }

  .service-row {
    min-height: 74px;
    padding: 14px;
  }

  .service-row strong {
    display: block;
    max-width: 190px;
    font-size: 0.95rem;
  }

  .calendar-lines span {
    height: 48px;
  }

  .phone-mockup {
    left: 22px;
    top: 334px;
    bottom: auto;
    width: 138px;
    min-height: 150px;
    padding: 11px 9px 9px;
    border-width: 5px;
    border-radius: 24px;
    box-shadow: 0 18px 46px rgba(7, 26, 52, 0.22);
    z-index: 4;
  }

  .phone-speaker {
    width: 42px;
    height: 4px;
    margin-bottom: 10px;
  }

  .phone-mockup p {
    margin-bottom: 2px;
    font-size: 0.72rem;
  }

  .phone-mockup strong {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  .phone-card {
    display: inline-block;
    width: calc(50% - 4px);
    padding: 7px 6px;
    margin: 0 4px 0 0;
    border-radius: 12px;
    font-size: 0.64rem;
    line-height: 1.18;
  }

  .phone-mockup button {
    display: none;
  }

  .call-card {
    right: 8px;
    bottom: 92px;
    width: min(194px, 56%);
    padding: 14px 14px 14px 38px;
    font-size: 0.82rem;
    z-index: 3;
  }

  .pulse {
    top: 18px;
    left: 16px;
    width: 12px;
    height: 12px;
  }

  .google-card {
    left: auto;
    right: 14px;
    top: 0;
    width: min(226px, 72%);
    padding: 13px 14px;
    z-index: 3;
  }

  .spark {
    width: 36px;
    height: 36px;
    border-radius: 14px;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading p {
    margin-bottom: 0;
  }

  .problem-grid,
  .feature-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .feature-grid,
  .steps-line,
  .business-grid,
  .benefit-grid {
    gap: 10px;
  }

  .problem-card {
    min-height: 82px;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    font-size: 0.95rem;
  }

  .problem-card span {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 1.18rem;
  }

  .feature-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 16px;
    font-size: 1.05rem;
  }

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

  .step-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: 18px;
  }

  .step-card span {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 13px;
    font-size: 0.82rem;
  }

  .step-card h3 {
    grid-column: 2;
    margin-bottom: 4px;
  }

  .step-card p {
    grid-column: 2;
    margin-bottom: 0;
  }

  .business-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-card,
  .metric-card {
    min-height: 104px;
    padding: 16px;
    border-radius: 18px;
  }

  .business-card span {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 1.16rem;
  }

  .metric-card strong {
    margin-bottom: 6px;
    font-size: 1.25rem;
  }

  .metric-card span {
    font-size: 0.88rem;
  }

  .conversation {
    padding: 18px;
    border-radius: 24px;
  }

  .message {
    max-width: 92%;
    padding: 13px 14px;
    border-radius: 16px;
  }

  .badges {
    gap: 8px;
    margin-top: 18px;
  }

  .badges span {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .local-map {
    min-height: 380px;
    border-radius: 24px;
  }

  .search-chip {
    padding: 8px 11px;
    max-width: calc(100% - 40px);
    white-space: normal;
    font-size: 0.78rem;
  }

  .chip-a { left: 20px; }
  .chip-b { left: 20px; top: 282px; }
  .chip-c { right: 20px; top: 74px; }
  .chip-d { right: 20px; bottom: 26px; }

  .business-listing {
    top: 118px;
    width: min(230px, calc(100% - 40px));
  }

  .cta-inner {
    padding: 28px 20px;
    border-radius: 24px;
  }

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

  .price-card {
    padding: 22px;
    border-radius: 22px;
  }

  .price-card ul {
    gap: 9px;
    margin: 14px 0 20px;
  }

  .testimonial-card {
    padding: 20px;
    border-radius: 20px;
  }

  .testimonial-card blockquote {
    margin-bottom: 14px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  summary {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  details p {
    padding: 0 18px 16px;
  }

  .footer {
    padding: 38px 0;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: clamp(2.18rem, 9.8vw, 2.75rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .btn {
    width: auto;
    min-height: 44px;
    padding: 11px 12px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero-proof {
    border-radius: 20px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .desktop-mockup {
    min-height: 310px;
  }

  .booking-panel {
    padding: 24px 16px 18px;
  }

  .booking-panel h3 {
    font-size: 1.48rem;
  }

  .phone-mockup {
    left: 16px;
    top: 318px;
    bottom: auto;
    width: 130px;
    min-height: 146px;
  }

  .call-card {
    right: 6px;
    bottom: 86px;
    width: 178px;
    padding: 13px 12px 13px 36px;
    font-size: 0.78rem;
  }

  .google-card {
    right: 10px;
    width: 214px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 44px 0;
  }

  .section-heading,
  .section-copy {
    margin-bottom: 22px;
  }

  .section-heading p,
  .problem-section .section-copy p,
  .agent-section .section-copy p,
  .seo-section .section-copy p {
    display: none;
  }

  .split,
  .agent-grid,
  .seo-grid,
  .faq-grid {
    gap: 24px;
  }

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

  .problem-card {
    min-height: 112px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 14px;
    font-size: 0.84rem;
    line-height: 1.2;
  }

  .problem-card span {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

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

  .feature-card.large {
    grid-column: auto;
  }

  .feature-card {
    min-height: 148px;
    padding: 16px;
  }

  .feature-card p {
    display: none;
  }

  .feature-card h3 {
    margin-bottom: 0;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .steps-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card {
    display: block;
    min-height: 128px;
    padding: 14px;
  }

  .step-card span {
    margin-bottom: 14px;
  }

  .step-card p {
    display: none;
  }

  .business-card {
    min-height: 96px;
    padding: 14px;
    font-size: 0.9rem;
  }

  .business-card span {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }

  .badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .badges span {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-radius: 14px;
    line-height: 1.2;
  }

  .conversation {
    padding: 14px;
  }

  .message {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    font-size: 0.88rem;
  }

  .conversation .message:nth-of-type(n + 3) {
    display: none;
  }

  .local-map {
    order: 2;
    min-height: 300px;
  }

  .seo-grid .section-copy {
    order: 1;
  }

  .business-listing {
    top: 96px;
    width: 190px;
    padding: 14px;
  }

  .pin-a { top: 78px; left: 30%; }
  .pin-b { top: 205px; left: 18%; }
  .pin-c { top: 145px; right: 18%; }

  .chip-a { top: 24px; left: 14px; }
  .chip-b { top: 230px; left: 14px; }
  .chip-c { top: 42px; right: 12px; }
  .chip-d { right: 14px; bottom: 18px; }

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

  .metric-card {
    min-height: 90px;
    padding: 14px;
  }

  .metric-card strong {
    font-size: 1.05rem;
  }

  .metric-card span {
    font-size: 0.8rem;
  }

  .cta-band {
    padding: 44px 0;
  }

  .cta-inner h2 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .cta-inner p {
    display: none;
  }

  .pricing-grid {
    gap: 12px;
  }

  .price-card {
    padding: 18px;
    border-radius: 24px;
  }

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

  .price-card p {
    display: none;
  }

  .plan-price {
    margin: 10px 0 14px;
  }

  .plan-price span {
    font-size: 2.15rem;
  }

  .plan-price small {
    font-size: 0.74rem;
  }

  .price-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }

  .price-card li {
    padding-left: 18px;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .testimonials-section {
    display: none;
  }

  .faq-list {
    gap: 10px;
  }

  details {
    border-radius: 16px;
  }
}

@media (max-width: 390px) {
  .feature-card,
  .step-card,
  .problem-card {
    min-height: 118px;
  }

  .price-card ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero .phone-mockup {
    left: 18px;
    top: 300px;
    bottom: auto;
    width: 152px;
    min-height: 284px;
    max-height: none;
    overflow: visible;
    padding: 18px 12px 12px;
    border-width: 6px;
    border-radius: 30px;
  }

  .hero .phone-mockup button {
    display: block !important;
    min-height: 40px;
    margin-top: 10px;
    border-radius: 13px;
    font-size: 0.78rem;
  }

  .hero .phone-card {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 0 0 8px;
    font-size: 0.82rem;
    line-height: 1.22;
  }

  .hero .phone-speaker {
    width: 48px;
    height: 4px;
    margin-bottom: 16px;
  }

  .hero .phone-mockup p {
    margin-bottom: 4px;
    font-size: 0.78rem;
  }

  .hero .phone-mockup strong {
    margin-bottom: 12px;
    font-size: 1.12rem;
  }
}

@media (max-width: 440px) {
  .hero .phone-mockup {
    top: 292px;
    width: 142px;
    min-height: 268px;
  }
}
