/* ============================================================
   KCUTS FRANCHISE PAGE — STYLESHEET
   ============================================================ */


/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --navy:          #0f1d3c;
  --navy-deep:     #0a1628;
  --blue:          #1566AF;
  --blue-dark:     #0d4a82;
  --blue-light:    #eef2ff;
  --blue-pale:     #bfdbfe;
  --blue-sky:      #e0f2fe;
  --amber:         #FFD83D;
  --amber-dark:    #b89800;
  --green:         #22c55e;

  /* UI colours */
  --grey-light:    #f5f6fa;
  --grey-mid:      #e5e7eb;
  --text-dark:     #0f1d3c;
  --text-body:     #6b7280;
  --text-muted:    #94a3b8;
  --text-slate:    #cbd5e1;
  --white:         #ffffff;

  /* Image placeholders */
  --ph-bg:         #bec5d4;
  --ph-text:       #7b8494;

  /* Typography */
  --font:          'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:         1280px;
  --nav-h:         80px;
  --section-py:    72px;
  --gap:           20px;
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     14px;
}


/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }


/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
}


/* ── Image Placeholders ────────────────────────────────────── */
/*
  These grey boxes mark where real photos go.
  To swap: replace the <div class="img-placeholder"> with
  <img src="your-image.jpg" alt="description">
  and remove the placeholder styles once images are in place.
*/
.img-placeholder {
  background: var(--ph-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.img-placeholder span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ph-text);
  text-align: center;
  line-height: 1.7;
  padding: 0 12px;
}
.img-placeholder--white { background: #a8b3c5; }


/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: #0f4a8a; border-color: #0f4a8a; }

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: rgba(255,255,255,0.9); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-amber {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); }

/* Smaller button variant used inside cards */
.btn-blue-sm,
.btn-white-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-blue-sm { width: 100%; }
.btn-blue-sm {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue-sm:hover { background: #0f4a8a; border-color: #0f4a8a; }
.btn-white-solid {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white-solid:hover { background: transparent; color: var(--white); }


/* ── Section Header ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.section-header p {
  margin-top: 16px;
  font-size: 16px;
  color: var(--text-body);
}


/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: height 0.3s, box-shadow 0.3s;
}
.main-nav.scrolled {
  height: 68px;
  box-shadow: 0 2px 24px rgba(15,29,60,0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-family: 'Nunito', var(--font);
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width 0.25s;
}
.nav-link:hover { color: var(--blue); }
.nav-link:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }

/* Mobile-only CTA inside nav dropdown — hidden on desktop */
.nav-mobile-cta-item { display: none; }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--blue);
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  background: #FFD83D;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  height: 30px;
  padding: 0 14px;
  border-radius: 15px;
  width: fit-content;
  white-space: nowrap;
}
.hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-slate);
  line-height: 1.65;
  max-width: 600px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-img-wrap {
  flex-shrink: 0;
  width: 500px;
  height: 460px;
  border-radius: 12px;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ══════════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--navy-deep);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  white-space: nowrap;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════════
   FRANCHISE OPPORTUNITY
   ══════════════════════════════════════════════════════════════ */
.franchise-opp {
  position: relative;
  background-image: url('../images/bg2.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
.franchise-opp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.82) 50%,
    rgba(0,0,0,0.60) 75%,
    rgba(0,0,0,0.40) 100%
  );
}
.franchise-opp-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.franchise-top {
  display: flex;
  align-items: flex-end;
  gap: 80px;
}
.franchise-top h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  flex-shrink: 0;
  max-width: 320px;
}
.franchise-top h2 span { color: var(--amber); }
.franchise-intro {
  flex: 1;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 48px;
}
.franchise-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.franchise-feature {
  padding: 32px 40px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.franchise-feature:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
.franchise-feature:nth-child(2) { padding-left: 40px; }
.feature-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}
.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.feature-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .franchise-opp-inner { padding: 0 40px; gap: 40px; }
  .franchise-top { gap: 48px; }
  .franchise-intro { padding-left: 32px; }
  .franchise-feature:nth-child(2) { padding-left: 24px; }
  .franchise-feature:last-child { padding-left: 24px; }
  .franchise-feature { padding-right: 24px; }
  .franchise-feature:last-child { padding-right: 0; }
}
@media (max-width: 768px) {
  .franchise-opp { background-position: right center; padding: 64px 0; }
  .franchise-opp-overlay { background: rgba(0,0,0,0.82); }
  .franchise-opp-inner { padding: 0 20px; gap: 32px; }
  .franchise-top { flex-direction: column; gap: 20px; align-items: flex-start; }
  .franchise-top h2 { max-width: 100%; }
  .franchise-intro { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; }
  .franchise-features { grid-template-columns: 1fr; border-top: none; }
  .franchise-feature { padding: 24px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .franchise-feature:last-child { border-bottom: none; padding-left: 0; }
  .franchise-feature:nth-child(2) { padding-left: 0; }
}


/* ══════════════════════════════════════════════════════════════
   GLOBAL EXPANSION
   ══════════════════════════════════════════════════════════════ */
.global-expand {
  background: var(--navy);
  padding: var(--section-py) 0;
}
.global-expand-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.global-expand-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.global-expand-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--amber);
  line-height: 1.15;
}
.global-expand-text > p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}
.global-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.global-pillars li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.global-pillars li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.global-pillars li strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.global-pillars li span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.global-expand-map {
  flex-shrink: 0;
  width: 480px;
}
.global-expand-map img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .global-expand-inner { padding: 0 40px; gap: 40px; }
  .global-expand-map { width: 380px; }
}
@media (max-width: 768px) {
  .global-expand-inner { padding: 0 20px; flex-direction: column; gap: 36px; }
  .global-expand-map { width: 100%; }
}


/* ══════════════════════════════════════════════════════════════
   OUTLET GALLERY
   ══════════════════════════════════════════════════════════════ */
.outlet-gallery {
  background: var(--grey-light);
  padding: var(--section-py) 0;
}
.map-embed {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* ══════════════════════════════════════════════════════════════
   7 REASONS (LIST FORMAT)
   ══════════════════════════════════════════════════════════════ */
.reasons-list {
  background: var(--white);
  padding: var(--section-py) 0;
}
.reasons-list-card {
  position: relative;
  padding: 56px 72px;
  border: 1.5px solid var(--blue);
  border-radius: 16px;
}
.reasons-list-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.reasons-big-num {
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  background: linear-gradient(to bottom, #2a6bc5, #0f1d3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reasons-text-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reasons-big-label {
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.reasons-list-sub {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reasons-list-sub span {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.reasons-list-rule {
  flex: 1;
  height: 1.5px;
  background: var(--grey-mid);
}
.reasons-ol {
  position: relative;
  z-index: 1;
  list-style: none;
  counter-reset: reasons-counter;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.reasons-ol li {
  counter-increment: reasons-counter;
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.65;
}
.reasons-ol li::before {
  content: counter(reasons-counter) ".";
  font-weight: 700;
  color: var(--navy);
  min-width: 24px;
  flex-shrink: 0;
}
.reasons-ol li strong {
  color: var(--navy);
}
.reasons-ol li strong::after {
  content: ': ';
}
.reasons-ol li span {
  color: var(--navy);
}

@media (max-width: 1024px) {
  .reasons-list-card { padding: 48px 52px; }
  .reasons-big-num   { font-size: 64px; }
  .reasons-big-label { font-size: 38px; }
}
@media (max-width: 768px) {
  .reasons-list-card  { padding: 40px 28px; }
  .reasons-big-num    { font-size: 52px; }
  .reasons-big-label  { font-size: 30px; }
  .reasons-list-sub span { font-size: 16px; }
  .reasons-list-rule  { display: none; }
}



/* ══════════════════════════════════════════════════════════════
   APP SECTION
   ══════════════════════════════════════════════════════════════ */
.app-section {
  position: relative;
  background-image: url('../images/bg3.png');
  background-size: cover;
  background-position: 60% center;
  padding: 80px 0;
}
.app-overlay { display: none; }
.app-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
}
.app-content {
  max-width: 42%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.app-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
}
.app-heading-white { color: var(--white); }
.app-heading-red   { color: #e53e3e; }
.app-subheading {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}
.app-body {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}
.app-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-bullets li {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  padding-left: 18px;
  position: relative;
}
.app-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.7);
}
.app-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.app-badge-img {
  height: 110px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .app-inner { padding: 0 40px; }
}
@media (max-width: 768px) {
  .app-section {
    background-position: center;
    padding: 72px 0;
  }
  .app-inner { padding: 0 24px; }
  .app-content { max-width: 100%; background: rgba(10,20,50,0.6); padding: 24px; border-radius: 12px; }
}


/* ══════════════════════════════════════════════════════════════
   DOWNLOAD FORMS
   ══════════════════════════════════════════════════════════════ */
.download-forms {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.download-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.25);
  margin: 0;
}
.download-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.download-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.download-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.btn-download {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background 0.2s;
  white-space: nowrap;
  width: fit-content;
}
.btn-download:hover { background: var(--amber-dark); }


/* ══════════════════════════════════════════════════════════════
   FINAL CTA + FORM
   ══════════════════════════════════════════════════════════════ */
.final-cta {
  background: var(--blue);
  padding: var(--section-py) 0;
}
.cta-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.cta-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cta-heading {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.cta-sub {
  font-size: 17px;
  color: var(--blue-pale);
  line-height: 1.65;
}
.form-card {
  flex-shrink: 0;
  width: 480px;
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.form-sub {
  font-size: 13px;
  color: var(--text-body);
  margin-top: -4px;
}
/* Forminator embed placeholder */
.forminator-embed {
  border: 2px dashed var(--grey-mid);
  border-radius: 8px;
  padding: 48px 20px;
  text-align: center;
  background: var(--grey-light);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.forminator-placeholder {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 13px;
  color: #64748b;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .nav-inner,
  .hero-inner,
  .stats-inner,
  .footer-inner { padding-left: 40px; padding-right: 40px; }

  .hero-img-wrap { width: 400px; height: 380px; }
  .cta-inner     { gap: 48px; }
  .form-card     { width: 420px; }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-py: 52px;
  }

  .container { padding: 0 20px; }
  .nav-inner,
  .hero-inner,
  .stats-inner,
  .footer-inner { padding-left: 20px; padding-right: 20px; }

  /* Nav: hide links, show hamburger */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--grey-mid);
    box-shadow: 0 8px 24px rgba(15,29,60,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-link {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
  }
  .nav-link::after { display: none; }
  .nav-cta  { display: none; }
  .nav-mobile-cta-item { display: block; padding: 8px 16px 4px; }
  .nav-mobile-cta-item .btn { width: 100%; justify-content: center; }
  .hamburger { display: flex; }
  .main-nav.scrolled .nav-links { top: 68px; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 48px; }
  .hero-inner { flex-direction: column; gap: 28px; }
  .hero-img-wrap { width: 100%; height: 220px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15px; }

  /* Stats */
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    height: auto;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .stat-divider { display: none; }
  .stat-num { font-size: 26px; }
  .stat-label { white-space: normal; text-align: center; font-size: 12px; }

  /* Map */
  .map-embed { height: 320px; }

  /* Reasons */
  .reasons-list-heading { flex-direction: row; align-items: center; gap: 12px; margin-bottom: 24px; }
  .reasons-big-num { font-size: 80px; }
  .reasons-big-label { font-size: 28px; }
  .reasons-list-sub span { font-size: 13px; white-space: normal; font-weight: 600; color: var(--text-body); }
  .reasons-list-rule { display: none; }
  .reasons-ol { gap: 10px; }
  .reasons-ol li {
    background: var(--white);
    border-radius: 10px;
    padding: 14px 16px;
    border-left: 3px solid var(--blue);
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 1px 4px rgba(15,29,60,0.06);
    flex-wrap: wrap;
  }
  .reasons-ol li::before { font-size: 15px; color: var(--blue); min-width: 20px; padding-top: 1px; }
  .reasons-ol li strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
  .reasons-ol li strong::after { content: ''; }
  .reasons-ol li span { display: block; font-size: 13px; color: var(--text-body); line-height: 1.5; }
  .reasons-ol li > div, .reasons-ol li > strong { flex: 1; }
  .reasons-list-card { background: var(--grey-light); border: none; }

  /* App section */
  .app-badge-img { height: 44px; }

  /* Download forms */
  .download-row { flex-direction: column; gap: 20px; }
  .download-item { width: 100%; }
  .btn-download { width: 100%; justify-content: center; white-space: normal; text-align: center; }

  /* CTA */
  .cta-inner { flex-direction: column; gap: 40px; }
  .cta-heading { font-size: 28px; }
  .cta-sub { font-size: 15px; }
  .form-card { width: 100%; }

  /* Footer */
  .footer-inner {
    height: auto;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1     { font-size: 26px; }
  .hero-btns   { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .stat-num    { font-size: 22px; }
  .reasons-list-card { padding: 28px 16px; }
  .form-card   { padding: 24px 16px; }
  .app-badge-img { height: 40px; }
}
