/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #1a1a2e;
  --primary-light:#2d2d4e;
  --accent:       #e85d04;
  --accent-2:     #f48c06;
  --gray-50:      #fafafa;
  --gray-100:     #f4f4f5;
  --gray-200:     #e4e4e7;
  --gray-400:     #a1a1aa;
  --gray-500:     #71717a;
  --gray-600:     #52525b;
  --gray-800:     #27272a;
  --white:        #ffffff;
  --green:        #22c55e;
  --green-wa:     #25d366;
  --green-wa-dk:  #128c7e;
  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.1),  0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.14),0 4px 16px rgba(0,0,0,.08);
  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --ease:      cubic-bezier(.4,0,.2,1);
  --t:         .2s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(.7) translateY(6px); }
  65%  { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes float {
  0%   { transform: translateY(0px); }
  25%  { transform: translateY(-8px); }
  50%  { transform: translateY(-16px); }
  75%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.1); }
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 12px; }
.btn-block { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--t) var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.logo {
  font-size: 21px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.6px;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover {
  color: var(--primary);
  background: var(--gray-100);
}

.nav-cta { margin-left: 8px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0f0f1e 0%, #16213e 50%, #1a1035 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(232,93,4,.22) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(99,60,180,.12) 0%, transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* --- Hero text --- */
.hero-text { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeInUp .5s var(--ease) both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: dotBlink 2s ease-in-out infinite;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.04em;
  margin-bottom: 22px;
  animation: fadeInUp .6s var(--ease) .08s both;
}
.highlight {
  background: linear-gradient(90deg, #fb923c, #e85d04);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp .6s var(--ease) .16s both;
}
.hero-sub strong { color: rgba(255,255,255,.9); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp .6s var(--ease) .24s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
  animation: fadeInUp .6s var(--ease) .32s both;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.stat span { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; display: block; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* --- Phone mockup container --- */
/* float runs here so it uses its own GPU layer independently */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 32px;
  animation: float 6s cubic-bezier(.45,.05,.55,.95) 1.4s infinite;
  will-change: transform;
}

/* ============================================================
   PHONE FRAME
   ============================================================ */
/* entrance animation lives here, separate from float so GPU can handle both cleanly */
.phone-wrap {
  position: relative;
  filter: drop-shadow(0 48px 80px rgba(0,0,0,.55)) drop-shadow(0 16px 32px rgba(0,0,0,.3));
  animation: fadeInRight .9s var(--ease) .3s both;
  will-change: transform;
}

.phone-frame {
  width: 256px;
  background: linear-gradient(160deg, #2e2e2e 0%, #1a1a1a 60%, #222 100%);
  border-radius: 48px;
  padding: 14px;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 1px 0 0 rgba(255,255,255,.06),
    0 0 0 1px rgba(0,0,0,.8);
}

/* Dynamic island */
.phone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 30px;
  background: #111;
  border-radius: 20px;
  z-index: 20;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

/* Side buttons */
.phone-btn-right {
  position: absolute;
  right: -4px; top: 100px;
  width: 4px; height: 64px;
  background: #252525;
  border-radius: 0 3px 3px 0;
  box-shadow: inset -1px 0 0 rgba(255,255,255,.06);
}
.phone-btn-left-1 {
  position: absolute;
  left: -4px; top: 80px;
  width: 4px; height: 36px;
  background: #252525;
  border-radius: 3px 0 0 3px;
}
.phone-btn-left-2 {
  position: absolute;
  left: -4px; top: 128px;
  width: 4px; height: 64px;
  background: #252525;
  border-radius: 3px 0 0 3px;
}

.phone-screen {
  background: var(--white);
  border-radius: 36px;
  overflow: hidden;
  height: 520px;
  position: relative;
}

/* ============================================================
   RESTAURANT WEBSITE (inside phone)
   ============================================================ */
.rw-root {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  overflow: hidden;
}

/* Status bar */
.rw-status {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 0;
  z-index: 10;
  color: var(--white);
}
.rw-time { font-size: 11px; font-weight: 700; }
.rw-status-icons { flex-shrink: 0; }

/* Hero image */
.rw-hero {
  height: 200px;
  flex-shrink: 0;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255,210,100,.5) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 60%, rgba(180,70,15,.35) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(80,30,10,.5) 0%, transparent 40%),
    linear-gradient(155deg,
      #2c1208 0%,
      #7d3818 18%,
      #c8682a 40%,
      #e0944a 60%,
      #9a4018 80%,
      #3a1208 100%
    );
}
.rw-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.72) 100%);
}
.rw-hero-content {
  position: absolute;
  bottom: 14px;
  left: 16px; right: 16px;
  z-index: 5;
  color: var(--white);
}
.rw-resto-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.2;
}
.rw-resto-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
}
.rw-stars { color: #fbbf24; font-size: 12px; letter-spacing: 1px; }
.rw-rating-text { font-size: 11px; color: rgba(255,255,255,.8); }

/* Body */
.rw-body {
  flex: 1;
  padding: 14px 14px 0;
  overflow: hidden;
}

.rw-chips-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.rw-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.rw-chip-open {
  background: #dcfce7;
  color: #15803d;
}
.rw-open-dot {
  width: 5px; height: 5px;
  background: #16a34a;
  border-radius: 50%;
  animation: dotBlink 2s ease-in-out infinite;
}

.rw-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.rw-btn-primary {
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 9px;
  border-radius: 8px;
  text-align: center;
  letter-spacing: -.1px;
}
.rw-btn-sec {
  background: var(--white);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 9px;
  border-radius: 8px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
}

.rw-menu-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.rw-label-line {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.rw-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.rw-item:last-child { border-bottom: none; }

.rw-item-img {
  width: 42px; height: 42px;
  border-radius: 9px;
  flex-shrink: 0;
}
.rw-img-pasta {
  background: linear-gradient(135deg, #f0c860 0%, #c8842a 60%, #9a5c1a 100%);
}
.rw-img-pizza {
  background: linear-gradient(135deg, #e84020 0%, #f07040 50%, #d04020 100%);
}
.rw-img-dessert {
  background: linear-gradient(135deg, #8b5e3c 0%, #c49a6c 50%, #e8caa0 100%);
}

.rw-item-info { flex: 1; min-width: 0; }
.rw-item-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rw-item-desc {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 2px;
}
.rw-item-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   FLOATING BADGES (around phone)
   ============================================================ */
.fbadge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06);
  white-space: nowrap;
}
.fbadge-google {
  top: 28px;
  right: -4px;
  animation: popIn .5s var(--ease) 1.1s both;
}
.fbadge-booking {
  bottom: 52px;
  left: -4px;
  animation: popIn .5s var(--ease) 1.3s both;
}

.fbadge-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.fbadge-g {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
}
.fbadge-check {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.fbadge-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
}
.fbadge-sub {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 1px;
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p { color: var(--gray-500); font-size: 17px; line-height: 1.65; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.section-problem { background: var(--gray-50); padding: 88px 0; }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  border-radius: 3px 0 0 3px;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.problem-card:hover::before { opacity: 1; }

.problem-quote {
  font-size: 56px;
  line-height: .8;
  font-weight: 900;
  color: var(--accent);
  opacity: .25;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}
.problem-card p {
  color: var(--gray-600);
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
}

.problems-cta {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #fff7ed, #ffe4c4);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s var(--ease);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }
.feature-icon svg { width: 24px; height: 24px; color: var(--accent); }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
}
.feature-card p { color: var(--gray-500); font-size: 14px; line-height: 1.65; }

/* ============================================================
   STEPS / CÓMO FUNCIONA
   ============================================================ */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(232,93,4,.4);
  flex-shrink: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(232,93,4,.55);
}

.step-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.step-body p { color: var(--gray-500); font-size: 13px; line-height: 1.6; }

.step-arrow {
  color: var(--gray-300, #d4d4d8);
  flex-shrink: 0;
  margin-top: 14px;
  opacity: .6;
}

/* ============================================================
   PRICING
   ============================================================ */

/* Phase wrapper */
.pricing-phase { margin-bottom: 8px; }

.pricing-phase-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 0;
}
.pricing-phase-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(232,93,4,.35);
}
.pricing-phase-info { flex: 1; min-width: 0; }
.pricing-phase-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1.3;
}
.pricing-phase-info p {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 2px;
}
.pricing-phase-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  background: var(--gray-200);
  color: var(--gray-600);
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}
.pricing-phase-tag--monthly {
  background: rgba(232,93,4,.12);
  color: var(--accent);
}

/* Two-column card grid (shared by both phases) */
.pricing-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* Cards */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pricing-card--featured {
  border: 2px solid var(--accent);
  background: linear-gradient(165deg, #fff9f5 0%, var(--white) 60%);
  box-shadow: 0 8px 28px rgba(232,93,4,.14);
}
.pricing-card--featured:hover {
  box-shadow: 0 16px 48px rgba(232,93,4,.22);
  transform: translateY(-5px);
}

.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .3px;
}

.pricing-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
}

.price { line-height: 1; }
.price-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.04em;
}
.pricing-card--featured .price-num { color: var(--accent); }
.price-unit {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-500);
}
.price-note { color: var(--gray-400); font-size: 13px; margin-top: -12px; }

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-list li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.5;
}
.pricing-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 1px;
  opacity: .55;
}
.pricing-card--featured .pricing-list li::before { opacity: 1; }

/* Connector between Step 1 and Step 2 */
.pricing-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 28px 0;
}
.pricing-connector-line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}
.pricing-connector-plus {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

/* Example combos */
.pricing-examples {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 32px 0 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-example {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 24px 32px;
}
.pricing-example:first-child {
  border-right: 1px solid var(--gray-200);
}
.pricing-example-sep {
  width: 1px;
  /* handled by border-right on first child */
}
.pricing-example-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-example-combo {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
}
.pricing-example-price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

.pricing-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 15px;
  margin-top: 8px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars { color: #f59e0b; font-size: 17px; letter-spacing: 2px; }

.testimonial-text {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.testimonial-place {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1035 100%);
}
.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(232,93,4,.35) 0%, transparent 60%);
  z-index: 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,.7);
  font-size: 18px;
  margin-bottom: 40px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 72px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 46px; height: 46px;
  background: var(--gray-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.contact-item:hover .contact-icon { background: #fff3e8; }
.contact-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-icon--wa { background: rgba(37,211,102,.1) !important; }
.contact-icon--wa svg { color: var(--green-wa-dk); }
.contact-item:hover .contact-icon--wa { background: rgba(37,211,102,.18) !important; }
.contact-item strong {
  display: block;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 3px;
}
.contact-item a {
  color: var(--gray-500);
  font-size: 15px;
  transition: color .2s;
}
.contact-item a:hover { color: var(--accent); }

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  padding: 15px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all .2s var(--ease);
  margin-top: 8px;
}
.whatsapp-btn:hover {
  background: var(--green-wa-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,93,4,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 112px; }

.form-label-hint { font-weight: 400; color: var(--gray-400); font-size: 12px; }
.form-check { flex-direction: row; align-items: center; gap: 10px; }
.form-check input { width: auto; }
.form-check label { font-size: 13px; color: var(--gray-500); font-weight: 400; }
.form-check a { color: var(--accent); text-decoration: underline; }

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
  padding: 14px 18px;
  border-radius: var(--radius-xs);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.form-success.visible { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  color: var(--white);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer .logo { color: var(--white); font-size: 20px; display: inline-block; margin-bottom: 14px; }
.footer .logo span { color: #fb923c; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: 14px; line-height: 1.7; max-width: 240px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.footer-links a { color: rgba(255,255,255,.45); font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer-bottom p { color: rgba(255,255,255,.25); font-size: 13px; text-align: center; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: transform .2s var(--ease), background .2s;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }
.whatsapp-float:hover {
  background: var(--green-wa-dk);
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .steps-row { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .step-arrow { display: none; }
  .step { max-width: 200px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }
  .nav-links.open a {
    font-size: 16px;
    padding: 10px 14px;
  }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .hero { padding: 110px 0 64px; min-height: auto; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-sep { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .problems-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-two-grid { grid-template-columns: 1fr; }
  .pricing-phase-tag { display: none; }
  .pricing-examples { flex-direction: column; }
  .pricing-example { border-right: none !important; border-bottom: 1px solid var(--gray-200); }
  .pricing-example:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
