/* ═══════════════════════════════════════════════════════════
   GN Cleaning — style.css
   Colors: blue #1A9BC4  |  green #27AE60  |  dark #1a1a2e
════════════════════════════════════════════════════════════ */

/* ── Reset & base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── CSS variables ───────────────────────────────────────── */
:root {
  --blue:       #1A9BC4;
  --blue-dark:  #157fa8;
  --blue-light: #e8f7ff;
  --green:      #27AE60;
  --green-dark: #1e9450;
  --dark:       #1a1a2e;
  --muted:      #6b7280;
  --bg-alt:     #f0f9ff;
  --border:     #d9eef8;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(26,155,196,0.12);
  --shadow-lg:  0 8px 40px rgba(26,155,196,0.18);
}

/* ── Layout container ────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════════════════════════ */
.announce-bar {
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 200;
  text-align: center;
}
.announce-link {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 41px; /* height of announce-bar */
  z-index: 199;
}
.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}
.logo-gn {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -1px;
}
.logo-cleaning {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  text-transform: lowercase;
}

/* Nav */
.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-link:hover { color: var(--blue); }

/* Lang switcher */
.lang-switcher {
  display: flex;
  gap: 3px;
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 4px;
  flex-shrink: 0;
}
.lang-btn {
  border: none;
  background: transparent;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
  transition: all .2s;
  letter-spacing: .5px;
}
.lang-btn.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 6px rgba(26,155,196,0.3);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  padding: 80px 0 64px;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Background bubbles */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--blue);
  opacity: .05;
}
.b1 { width: 500px; height: 500px; right: -80px; top: -80px; }
.b2 { width: 280px; height: 280px; right: 240px; bottom: -60px; background: var(--green); }
.b3 { width: 180px; height: 180px; left: -60px;  top: 40px; }

/* Hero text */
.hero-content { flex: 1; min-width: 0; }

.hero-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.accent { color: var(--blue); }

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  background: var(--bg-alt);
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* Hero illustration */
.hero-graphic {
  flex-shrink: 0;
  width: 380px;
  opacity: .85;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,155,196,.3);
}
.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline:hover {
  background: var(--blue-light);
}
.btn-green {
  background: var(--green);
  color: #fff;
  font-size: 16px;
  padding: 15px 28px;
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(39,174,96,.3);
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS — shared
════════════════════════════════════════════════════════════ */
.section     { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.svc-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
}
.service-card h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   WHY US
════════════════════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.benefit-highlight {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue-light) 0%, #fff 100%);
}
.bfc-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 16px;
}
.benefit-highlight .bfc-icon {
  background: var(--blue);
  color: #fff;
}
.benefit-card h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   FOUNDER
════════════════════════════════════════════════════════════ */
.founder-section { background: #fafcfe; }

.founder-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: center;
}

/* Left column — avatar + stats */
.founder-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  box-shadow: 0 12px 40px rgba(26,155,196,.25);
  border: 4px solid #fff;
  outline: 2px solid var(--border);
  flex-shrink: 0;
}
.founder-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  width: 100%;
  justify-content: center;
}
.fstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.fstat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -1px;
}
.fstat-icon {
  font-size: 22px;
  color: var(--green);
}
.fstat-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  max-width: 80px;
}
.fstat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Right column — quote */
.founder-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.founder-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
}
.founder-quote {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--blue);
  margin: 0;
}
.founder-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.founder-meta-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.founder-meta-text span {
  font-size: 13px;
  color: var(--muted);
}
.founder-cta-btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════════════ */

/* Estimation method cards */
.pricing-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.pricing-method-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all .2s;
}
.pricing-method-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pm-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 22px;
  margin: 0 auto 16px;
}
.pricing-method-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.pricing-method-card p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Calculator wrapper */
.pricing-calc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

/* Step label */
.calc-step-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 16px;
}

/* SQM selector */
.sqm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.sqm-btn {
  padding: 10px 18px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  color: var(--dark);
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.sqm-btn:hover       { border-color: var(--blue); color: var(--blue); }
.sqm-btn.active      { background: var(--blue); border-color: var(--blue); color: #fff; }
.sqm-btn.sqm-call    { border-style: dashed; color: var(--muted); font-weight: 500; }
.sqm-btn.sqm-call:hover { border-color: var(--border); color: var(--muted); }

/* Package cards */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
.pkg-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  background: #fff;
}
.pkg-card:hover         { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.pkg-card.active        { border-color: var(--blue); background: var(--blue-light); }
.pkg-card.popular       { border-color: var(--blue); }
.pkg-popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 3px 14px; border-radius: 20px; white-space: nowrap;
}
.pkg-name     { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.pkg-tagline  { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.pkg-price    { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.pkg-price-amount {
  font-size: 22px; font-weight: 800; color: var(--blue);
  line-height: 1.1; margin-bottom: 14px;
}
.pkg-price-amount span { font-size: 13px; font-weight: 600; }
.pkg-price-na { font-size: 13px; color: var(--muted); font-style: italic; margin-bottom: 14px; }
.pkg-divider  { border: none; border-top: 1px solid var(--border); margin: 0 0 14px; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pkg-feature  { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--dark); line-height: 1.4; }
.pkg-feature i { color: var(--green); font-size: 10px; width: 12px; flex-shrink: 0; margin-top: 3px; }

/* Configurator — step 3 */
.configurator { border-top: 1px solid var(--border); padding-top: 32px; margin-top: 32px; }
.config-section-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.config-section-label small { font-weight: 400; }
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }

/* Option chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 20px;
  font-size: 13px; font-weight: 500;
  border: 1.5px solid transparent;
  transition: all .2s; white-space: nowrap;
  cursor: default;
  font-family: inherit;
}
.chip-included           { background: #e8f7ef; color: #1e7a45; border-color: #b7dfc8; }
.chip-included.removable { cursor: pointer; }
.chip-included.removable:hover { background: #fde8e8; color: #c0392b; border-color: #f5bfbf; }
.chip-removed   { background: #f4f4f6; color: var(--muted); border-color: var(--border); text-decoration: line-through; cursor: pointer; }
.chip-removed:hover { background: #e8f7ef; color: #1e7a45; border-color: #b7dfc8; text-decoration: none; }
.chip-extra     { background: #fff; color: var(--dark); border-color: var(--border); cursor: pointer; }
.chip-extra:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }
.chip-extra-active { background: var(--blue-light); color: var(--blue); border-color: var(--blue); cursor: pointer; }
.chip-extra-active:hover { background: #fde8e8; color: #c0392b; border-color: #f5bfbf; }
.chip-remove-btn  { font-size: 11px; opacity: .7; }
.chip-price-tag   { font-size: 11px; opacity: .7; }

/* Price summary box */
.price-summary {
  background: linear-gradient(135deg, #0d1b2e 0%, #0a3d5c 100%);
  border-radius: 14px; padding: 28px 32px; color: #fff; margin-top: 28px;
}
.price-summary-title { font-size: 14px; opacity: .7; margin-bottom: 16px; }
.price-summary-adjustments { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.price-adj { font-size: 13px; opacity: .85; }
.price-adj.minus { color: #f48989; }
.price-adj.plus  { color: #7ddc9c; }
.price-summary-total {
  font-size: 32px; font-weight: 800; letter-spacing: -1px; margin-bottom: 6px; line-height: 1.1;
}
.price-summary-total span { font-size: 16px; font-weight: 600; opacity: .8; }
.price-summary-note { font-size: 12px; opacity: .45; margin-bottom: 24px; line-height: 1.5; }
.price-summary-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   PRICE BEAT
════════════════════════════════════════════════════════════ */
.price-beat-card {
  background: linear-gradient(135deg, #0d1b2e 0%, #0a3d5c 100%);
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* decorative glow */
.price-beat-card::before,
.price-beat-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(26,155,196,.15);
  pointer-events: none;
}
.price-beat-card::before { width: 500px; height: 500px; right: -150px; top: -150px; }
.price-beat-card::after  { width: 300px; height: 300px; left: -80px;  bottom: -80px; background: rgba(39,174,96,.1); }

.pb-badge {
  display: inline-block;
  position: relative;
  z-index: 1;
  background: var(--blue);
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 14px;
  margin-bottom: 24px;
  letter-spacing: -1px;
  box-shadow: 0 4px 20px rgba(26,155,196,.4);
}
.price-beat-card h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.pb-sub {
  font-size: 16px;
  opacity: .85;
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Steps */
.pb-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.pb-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 20px 18px;
  max-width: 200px;
  text-align: center;
}
.pb-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 2px 10px rgba(26,155,196,.4);
}
.pb-step p {
  font-size: 13px;
  opacity: .9;
  line-height: 1.5;
}
.pb-arrow {
  color: rgba(255,255,255,.3);
  font-size: 18px;
}

.price-beat-card .btn-green {
  position: relative;
  z-index: 1;
}
.pb-fine {
  margin-top: 20px;
  font-size: 12px;
  opacity: .45;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════════ */
.how-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.how-step {
  text-align: center;
  max-width: 240px;
  flex: 1;
}
.how-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #38b6d8 100%);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(26,155,196,.25);
}
.how-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.how-arrow {
  color: var(--blue);
  font-size: 22px;
  opacity: .35;
  margin-top: 25px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
}
.contact-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  background: #fff;
}
.contact-card > i {
  font-size: 22px;
  color: var(--blue);
  width: 26px;
  text-align: center;
  flex-shrink: 0;
}
.contact-wa > i { color: #25D366; }
.ct-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--muted);
}
.ct-val {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-top: 3px;
  color: var(--dark);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.5);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer p { font-size: 13px; }
.footer .logo-gn      { color: #fff; font-size: 20px; }
.footer .logo-cleaning { color: var(--green); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .benefits-grid  { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-graphic   { width: 300px; opacity: .6; }
  .founder-inner  { grid-template-columns: 200px 1fr; gap: 40px; }
  .founder-photo  { width: 120px; height: 120px; }
  .pricing-calc   { padding: 32px 28px; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  /* Nav — slide in from top */
  .nav {
    display: none;
    position: fixed;
    top: 109px; /* announce-bar + header */
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 198;
  }
  .nav.open { display: flex; }
  .nav-link {
    font-size: 16px;
    padding: 14px 24px;
  }
  .nav-link:hover { background: var(--bg-alt); }

  .burger { display: flex; }

  .hero-graphic  { display: none; }
  .hero-content  { max-width: 100%; }
  .hero { padding: 56px 0 48px; }

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

  .how-grid {
    flex-direction: column;
    align-items: center;
  }
  .how-arrow { transform: rotate(90deg); margin: 0; }
  .how-step  { max-width: 300px; }

  .founder-inner  { grid-template-columns: 1fr; gap: 32px; }
  .founder-left   { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .founder-stats  { width: auto; }
  .founder-cta-btn { align-self: stretch; justify-content: center; }
  .pb-steps  { flex-direction: column; align-items: center; }
  .pb-arrow  { transform: rotate(90deg); }
  .pb-step   { max-width: 280px; width: 100%; }
  .price-beat-card { padding: 40px 24px; }

  .pricing-methods { grid-template-columns: 1fr; }
  .pkg-grid        { grid-template-columns: 1fr; }
  .pricing-calc    { padding: 24px 20px; }
  .price-summary   { padding: 24px 20px; }
  .price-summary-total { font-size: 26px; }
}

/* Small mobile: ≤ 500px */
@media (max-width: 500px) {
  .services-grid  { grid-template-columns: 1fr; }
  .benefits-grid  { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .hero-actions   { flex-direction: column; }
  .btn            { justify-content: center; }
  .announce-bar   { font-size: 12px; gap: 8px; }
  .section        { padding: 60px 0; }
  .pricing-calc   { padding: 20px 16px; }
  .sqm-grid       { gap: 8px; }
  .sqm-btn        { padding: 9px 13px; font-size: 13px; }
}
