/* ============================================================
   GETBOOKED — STYLES.CSS
   Edit colours in :root · Edit text in index.html
   ============================================================ */

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

:root {
  /* Colours — edit these to rebrand */
  --bg:           #FAFAF8;
  --bg-white:     #FFFFFF;
  --text:         #1C1C1E;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;
  --green:        #25D366;   /* WhatsApp green */
  --green-dark:   #128C7E;
  --green-mid:    #1FAD54;
  --green-light:  #DCF8C6;   /* WhatsApp outgoing bubble */
  --green-bg:     #F0FBF4;
  --border:       #E8E8E4;
  --border-light: #F4F4F0;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.16);

  /* Shape */
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  /* Layout */
  --nav-h: 68px;
  --font:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.025em; font-weight: 700; }

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

/* SVG icon baseline sizing — all <svg class="icon"> elements */
.icon     { width: 20px; height: 20px; flex-shrink: 0; }
.icon--xs { width: 14px; height: 14px; vertical-align: -2px; margin-right: 2px; }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  gap: 6px;
}

/* Primary — dark fill */
.btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-primary:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

/* Green fill */
.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  font-weight: 700;
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--text); }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

/* Sizes */
.btn-sm  { padding: 8px 16px; font-size: 13px; }
.btn-lg  { padding: 14px 28px; font-size: 16px; }
.btn-xl  { padding: 18px 44px; font-size: 17px; border-radius: 12px; }
.btn-full { width: 100%; }


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 0;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--green);
  color: #fff;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--text); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.nav-mobile a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.nav-mobile .btn { margin-top: 12px; }
.nav-mobile.open { display: flex; }


/* ============================================================
   SHARED SECTION TYPOGRAPHY
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 52px;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 110px;
  overflow: visible;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg);
  border: 1px solid #b2e8c8;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-light);
}


/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-wrap {
  position: relative;
  width: 280px;
  /* Extra margin so floating cards don't clip */
  margin: 44px 80px 56px 56px;
}

.phone-frame {
  width: 280px;
  background: #1a1a1c;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.07) inset;
  position: relative;
}
.phone-frame--tall { width: 280px; }

.phone-notch {
  width: 88px; height: 26px;
  background: #1a1a1c;
  border-radius: 0 0 18px 18px;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  background: #ece5dd;
  border-radius: 34px;
  overflow: hidden;
  height: 510px;
  display: flex;
  flex-direction: column;
}
.phone-frame--tall .phone-screen { height: 580px; }

/* WhatsApp header bar */
.wa-header {
  background: var(--green-dark);
  padding: 30px 12px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.wa-back { color: rgba(255,255,255,0.85); font-size: 22px; line-height: 1; }
.wa-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.wa-contact { flex: 1; min-width: 0; }
.wa-name    { color: #fff; font-size: 13px; font-weight: 600; }
.wa-status  { color: rgba(255,255,255,0.65); font-size: 10px; }

/* Chat area */
.wa-chat {
  flex: 1;
  padding: 10px 8px 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
  /* Subtle WA background pattern */
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8b8a2' fill-opacity='0.18'%3E%3Cpath d='M26 26l-4-4 4-4 4 4-4 4zm0-20l4 4-4 4-4-4 4-4zm0 40l4-4-4-4-4 4 4 4zm-20-20l4 4-4 4-4-4 4-4zm40 0l-4 4 4 4 4-4-4-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.wa-chat::-webkit-scrollbar { display: none; }

.wa-date-chip {
  align-self: center;
  background: rgba(255,255,255,0.58);
  color: #666;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 8px;
  margin: 4px 0 6px;
}

.wa-msg { display: flex; flex-direction: column; margin-bottom: 1px; }
.wa-out { align-items: flex-end; }
.wa-in  { align-items: flex-start; }

.wa-bubble {
  max-width: 88%;
  padding: 7px 10px 5px;
  border-radius: 12px;
  font-size: 11.5px;
  line-height: 1.45;
  word-break: break-word;
}
.wa-out .wa-bubble {
  background: var(--green-light);
  border-bottom-right-radius: 3px;
}
.wa-in .wa-bubble {
  background: #fff;
  border-bottom-left-radius: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.wa-photo-bubble {
  background: #b2c8b0 !important;
  min-width: 110px;
  height: 72px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px !important;
}
.wa-photo-inner { font-size: 12px; color: #445544; font-weight: 500; display: flex; align-items: center; gap: 5px; }

.wa-time {
  font-size: 9px;
  color: var(--text-light);
  margin-top: 2px;
  padding: 0 3px;
}


/* ============================================================
   FLOATING ELEMENTS (hero)
   ============================================================ */
.float-notif {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  z-index: 10;
}
.float-notif-icon { display: flex; align-items: center; justify-content: center; color: #e53e3e; width: 22px; height: 22px; }
.float-notif-title { font-size: 11px; font-weight: 700; color: #e53e3e; line-height: 1.2; }
.float-notif-sub   { font-size: 10px; color: var(--text-muted); }

.missed-call {
  top: -30px;
  left: -64px;
  animation: floatA 5s ease-in-out infinite;
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 10;
}

.lead-card {
  bottom: -36px;
  right: -76px;
  width: 196px;
  animation: floatB 5s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(7px); }
}

.lead-card-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.lead-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.lead-card-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.lead-card-rows { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.lead-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}
.lead-label { font-weight: 600; color: var(--text); flex-shrink: 0; }
.lead-card-time {
  font-size: 10px;
  color: var(--text-light);
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}


/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background: var(--text);
  padding: 104px 0;
}
.problem .section-label { color: #6ee7a0; }
.problem .section-title { color: #fff; }
.problem .section-sub   { color: rgba(255,255,255,0.55); }

.problem-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.problem-step {
  flex: 1;
  min-width: 160px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.problem-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.problem-step p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.prob-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.prob-icon-1 { background: rgba(239,68,68,0.15);  color: #EF4444; }
.prob-icon-2 { background: rgba(249,115,22,0.15); color: #F97316; }
.prob-icon-3 { background: rgba(245,158,11,0.15); color: #F59E0B; }
.prob-icon-4 { background: rgba(239,68,68,0.15);  color: #EF4444; }

.problem-arrow {
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: rgba(255,255,255,0.18);
  font-size: 22px;
  flex-shrink: 0;
}

.problem-quote {
  font-size: clamp(17px, 2.5vw, 24px);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  max-width: 680px;
  padding: 28px 32px;
  border-left: 3px solid var(--green);
  background: rgba(255,255,255,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}


/* ============================================================
   SOLUTION
   ============================================================ */
.solution { padding: 104px 0; }

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

.solution-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sol-icon { width: 44px; height: 44px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; background: var(--green-bg); border-radius: var(--radius-sm); color: var(--green-dark); flex-shrink: 0; }
.solution-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.solution-card p  { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

/* Wide (full-width) solution card — 5th feature */
.solution-card--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.solution-card--wide .sol-icon { margin-bottom: 0; margin-top: 2px; }
.sol-wide-body { flex: 1; min-width: 0; }
.sol-coming-soon {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--border-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
}


/* ============================================================
   MONTHLY SUMMARY
   ============================================================ */
.monthly-summary { padding-bottom: 104px; }

.ms-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow);
}

.ms-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 8px;
}
.ms-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
.ms-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.ms-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ms-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ms-stat--green {
  background: var(--green-bg);
  border-color: #b2e8c8;
}

.ms-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}
.ms-stat--green .ms-icon { border-color: #b2e8c8; }

.ms-val {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.ms-stat--green .ms-val { color: var(--green-dark); }

.ms-lbl {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ============================================================
   CALCULATOR
   ============================================================ */
.calculator { padding: 104px 0; background: var(--bg-white); }

.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.calc-inputs { display: flex; flex-direction: column; gap: 16px; min-width: 0; }

.calc-field {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  user-select: none;
  cursor: default;
}
.calc-rate-display {
  font-size: 13px;
  font-weight: 800;
  color: var(--green-dark);
  background: var(--green-bg);
  padding: 2px 9px;
  border-radius: 100px;
}

.calc-input {
  width: 100%;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 4px 0 6px;
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: -0.02em;
  -moz-appearance: textfield;
}
.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-input:focus { border-color: var(--green); }

.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
  accent-color: var(--green);
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
  cursor: pointer;
}
.calc-range::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
  cursor: pointer;
}
.calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 10px;
  color: var(--text-light);
}

.calc-results {
  background: var(--text);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.calc-losses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.calc-metric {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.calc-metric--year {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.calc-metric-val {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 3px;
  transition: all 0.25s ease;
}
.calc-metric-val--big { font-size: 34px; }
.calc-metric-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.calc-recovery {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.22);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.calc-recovery-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.calc-recovery-label .icon { color: var(--green); }
.calc-recovery-value {
  font-size: 38px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  transition: all 0.25s ease;
}
.calc-recovery-value span { font-size: 16px; font-weight: 500; opacity: 0.7; }
.calc-recovery-roi { font-size: 13px; color: rgba(255,255,255,0.55); }
.calc-recovery-roi strong { color: var(--green); }

.calc-cta { width: 100%; background-color:green; justify-content: center; }


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 104px 0;
  background: var(--bg-white);
}

.steps-wrap {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
  margin-top: 52px;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
}
.step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Connector between step cards */
.step-divider {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 56px;
}
.step-line {
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--border), var(--green-light), var(--border));
  border-radius: 2px;
}

/* Step preview widgets */
.step-preview { margin-top: 4px; }

.preview-notif {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.prev-icon  { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; color: #e53e3e; flex-shrink: 0; }
.prev-title { font-size: 12px; font-weight: 700; color: #e53e3e; }
.prev-sub   { font-size: 10.5px; color: var(--text-muted); margin-top: 1px; }

.mini-chat { display: flex; flex-direction: column; gap: 6px; }
.mc-bubble {
  padding: 7px 11px;
  border-radius: 10px;
  font-size: 11.5px;
  line-height: 1.4;
  max-width: 92%;
}
.mc-out {
  background: var(--green-light);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.mc-in {
  background: #fff;
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.prev-lead {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.prev-lead-tag {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.prev-dot {
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
}
.prev-lead-row {
  font-size: 12px; color: var(--text);
  margin-bottom: 4px; line-height: 1.5;
}


/* ============================================================
   DEMO (WhatsApp section)
   ============================================================ */
.demo {
  padding: 104px 0;
  background: linear-gradient(140deg, #1c1c1e 0%, #2a2a2e 100%);
  overflow: hidden;
}

.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.demo .section-label { color: var(--green); }
.demo .section-title { color: #fff; }
.demo .section-sub   { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.check-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}
.chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(37,211,102,0.18);
  color: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.demo-phone {
  display: flex;
  justify-content: center;
}


/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { padding: 104px 0; }

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

.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ben-icon { width: 40px; height: 40px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; color: var(--green-dark); }
.benefit-card h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }


/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 104px 0;
  background: var(--bg-white);
  
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 820px;
}

.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Featured card (Standard) */
.pricing-featured {
  background: var(--text);
  border-color: var(--text);
}

.pricing-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}
.pricing-badge--muted {
  background: rgba(0,0,0,0.07);
  color: var(--text-muted);
}

.pricing-plan {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pricing-featured .pricing-plan { color: #fff; }

.pricing-price { margin-bottom: 14px; }
.pricing-was {
  font-size: 20px;
  color: rgba(255, 6, 6, 0.35);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.pricing-was span { font-size: 20px; }

.pricing-now {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
}
.pricing-now--dark { color: var(--text); }
.pricing-now span  { font-size: 17px; font-weight: 500; opacity: 0.65; }

.pricing-desc {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}
.pricing-desc--muted { color: var(--text-muted); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.pricing-features--muted li { color: var(--text-muted); }

.pricing-small {
  text-align: center;
  font-size: 11.5px;
  margin-top: 12px;
  color: rgba(255,255,255,0.3);
}
.pricing-small--muted { color: var(--text-light); }


/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 104px 0; }

.faq-container { max-width: 720px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--bg); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 2px 24px 22px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-a.open { max-height: 320px; }


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 128px 0;
  background: var(--text);
  text-align: center;
}
.final-cta-inner { display: flex; flex-direction: column; align-items: center; }

.final-headline {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 16px;
}
.final-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.final-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111;
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.footer-logo {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.footer-links a {
  color: rgba(255,255,255,0.38);
  font-size: 13px;
  transition: color 0.18s;
}
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-copy {
  width: 100%;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}


/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.14s; }
.reveal:nth-child(6) { transition-delay: 0.22s; }


/* ============================================================
   RESPONSIVE — TABLET (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 56px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas { justify-content: center; }
  .hero-sub  { text-align: center; }

  .hero-visual { overflow: visible; }
  .phone-wrap  { margin: 44px auto; }

  .solution-grid  { grid-template-columns: 1fr; }
  .benefits-grid  { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 440px; }

  .steps-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .step-divider { display: none; }

  .demo-inner { grid-template-columns: 1fr; gap: 52px; text-align: center; }
  .check-list { align-items: center; }
  .demo-phone { justify-content: center; }

  .problem-flow  { flex-direction: column; gap: 12px; }
  .problem-arrow { transform: rotate(90deg); align-self: center; }

  .calc-wrap { grid-template-columns: 1fr; }

  .ms-stats { grid-template-columns: 1fr; }
  .ms-card  { padding: 28px 32px; }

  .solution-card--wide { flex-direction: column; }
  .solution-card--wide .sol-icon { margin-bottom: 4px; }
}


/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px; }
  .phone-wrap   { width: 240px; margin: 40px auto; }
  .phone-frame  { width: 240px; }
  .phone-screen { height: 430px; }
  .missed-call  { left: -16px; top: -24px; }
  .lead-card    { right: -12px; bottom: -28px; width: 164px; }

  /* Sections */
  .hero, .problem, .solution, .calculator, .how-it-works,
  .demo, .benefits, .pricing, .faq, .final-cta {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  /* Pricing badge top-border fix — add breathing room above the badge */
  .pricing-card { padding-top: 40px; }

  /* Demo phone — slightly wider on mobile for readability */
  .demo-phone .phone-frame { width: 300px; }
  .demo-phone .phone-screen { height: 500px; }

  /* Monthly summary */
  .ms-card { padding: 22px 20px; }
  .ms-val  { font-size: 28px; }

  /* Calculator — tighter padding on narrow screens */
  .calc-results { padding: 20px 16px; }
  .calc-metric-val--big { font-size: 28px; }
  .calc-recovery-value  { font-size: 30px; }

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

  /* Footer */
  .footer-inner  { flex-direction: column; align-items: flex-start; }
  .footer-links  { margin-left: 0; }
}
