/* ============================================
   LAUNDRY DAY â€” SHARED STYLESHEET
   All pages: index, about, services, pricing,
   franchise, contact, apply
   ============================================ */

:root {
  --primary: #00B5C0;
  --primary-dark: #008892;
  --primary-darker: #006B73;
  --primary-soft: #E6F8FA;
  --accent: #FF7A00;
  --accent-dark: #E66A00;
  --yellow: #FFC72C;
  --bg: #FFFFFF;
  --bg-soft: #F5FAFB;
  --bg-cream: #FFF8EC;
  --text: #1A2B3B;
  --text-muted: #5C6B7A;
  --line: #E5EBF0;
  --green: #22C55E;
  --shadow: 0 10px 30px rgba(0, 137, 146, 0.10);
  --shadow-lg: 0 20px 50px rgba(0, 137, 146, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--primary-darker);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: #fff; opacity: 0.92; margin-left: 18px; }
.topbar a:hover { opacity: 1; }
.topbar .wa { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 720px) { .topbar .left { display: none; } }

/* ---------- HEADER / NAV ---------- */
header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1240px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 24px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 181, 192, 0.35);
}
.logo span { color: var(--primary); }
.logo small {
  display: block; font-size: 9px; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.15em;
  text-transform: uppercase; margin-top: -3px;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  color: var(--text); font-weight: 500; font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: inherit; font-weight: 600; font-size: 14px;
  cursor: pointer; border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.30);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.40);
}
.btn-outline {
  background: #fff; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1DAE54; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  background: var(--primary-soft);
  border: none; border-radius: 8px;
  cursor: pointer; color: var(--primary);
  align-items: center; justify-content: center;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 320px; max-width: 85%;
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  z-index: 100;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.open {
  opacity: 1; pointer-events: auto;
}
.mobile-menu-head {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-close {
  width: 36px; height: 36px;
  background: var(--primary-soft); color: var(--primary);
  border: none; border-radius: 8px;
  font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-links { padding: 14px 0; flex: 1; }
.mobile-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  font-size: 16px; font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: all 0.2s;
}
.mobile-links a:hover, .mobile-links a.active {
  background: var(--primary-soft); color: var(--primary);
}
.mobile-links a .arrow {
  margin-left: auto;
  color: var(--text-muted);
}
.mobile-cta {
  padding: 20px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

/* ---------- BUTTONS & SHARED ---------- */
.eyebrow {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
h2.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; line-height: 1.2;
  color: var(--text); margin-bottom: 14px;
  letter-spacing: -0.02em;
}
h2.section-title .accent { color: var(--primary); }
.section-desc {
  font-size: 16px; color: var(--text-muted);
  max-width: 64ch; margin: 0 auto;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
section { padding: 80px 0; }

/* ---------- PAGE HERO (used on inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--primary-soft) 0%, #fff 100%);
  padding: 70px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before, .page-hero::after {
  content: ''; position: absolute;
  border-radius: 50%;
  background: var(--primary); opacity: 0.06;
}
.page-hero::before { width: 200px; height: 200px; top: -60px; right: 5%; }
.page-hero::after { width: 140px; height: 140px; bottom: -30px; left: 8%; opacity: 0.04; }
.page-hero .container {
  position: relative; z-index: 2;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700; line-height: 1.15;
  color: var(--text); margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero h1 .accent { color: var(--primary); }
.page-hero p {
  font-size: 17px; color: var(--text-muted);
  max-width: 64ch; margin: 0 auto;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 18px;
  background: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb .sep { color: var(--line); }

/* ---------- FOOTER ---------- */
footer { background: #0E1924; color: #fff; padding: 70px 0 30px; }
.ft-tagline {
  text-align: center; margin-bottom: 50px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ft-tagline h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.1em;
}
.ft-tagline h3 span:nth-child(1) { color: var(--primary); }
.ft-tagline h3 span:nth-child(2) { color: var(--accent); }
.ft-tagline h3 span:nth-child(3) { color: var(--green); }
.ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px; margin-bottom: 50px;
}
.ft-brand .logo { color: #fff; margin-bottom: 18px; }
.ft-brand .logo span { color: var(--primary); }
.ft-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px; max-width: 38ch;
  margin-bottom: 20px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all 0.2s;
}
.socials a:hover { background: var(--primary); transform: translateY(-2px); }
.ft-col h6 {
  font-size: 14px; font-weight: 700;
  color: #fff; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.ft-col a {
  display: block; color: rgba(255,255,255,0.6);
  font-size: 14px; margin-bottom: 10px;
  transition: color 0.2s;
}
.ft-col a:hover { color: var(--primary); }
.ft-cities {
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.ft-cities h6 {
  color: var(--yellow); font-size: 13px; font-weight: 700;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em;
}
.ft-cities .list {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.ft-cities .list a {
  font-size: 12px; color: rgba(255,255,255,0.55);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: all 0.2s;
}
.ft-cities .list a:hover {
  color: var(--primary); border-color: var(--primary);
}
.ft-bot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
@media (max-width: 880px) { .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .ft-grid { grid-template-columns: 1fr; } }

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------- HOMEPAGE-SPECIFIC ---------- */
.hero {
  background: linear-gradient(120deg, var(--primary-soft) 0%, #fff 70%);
  padding: 70px 0 90px;
  position: relative; overflow: hidden;
}
.hero .container {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--primary-dark); margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.hero-tag .star { color: var(--yellow); }
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; line-height: 1.1;
  color: var(--text); letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.hero h1 .accent {
  color: var(--primary); position: relative; display: inline-block;
}
.hero h1 .accent::after {
  content: ''; position: absolute;
  bottom: 4px; left: 0; right: 0; height: 8px;
  background: var(--yellow); opacity: 0.4;
  z-index: -1; border-radius: 4px;
}
.hero .subtitle {
  font-size: 22px; font-weight: 600;
  color: var(--primary-dark); margin-bottom: 16px;
}
.hero .desc {
  font-size: 16px; color: var(--text-muted);
  margin-bottom: 32px; max-width: 52ch;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 38px;
  display: flex; gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text);
}
.trust-item .ic {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.hero-art { position: relative; aspect-ratio: 1; width: 100%; }
.hero-art svg { width: 100%; height: 100%; }

.bubble-decor {
  position: absolute; border-radius: 50%;
  background: var(--primary); opacity: 0.08;
  animation: floaty 6s ease-in-out infinite;
}
.bubble-decor.b1 { width: 200px; height: 200px; top: -60px; right: -40px; }
.bubble-decor.b2 { width: 120px; height: 120px; bottom: 40px; left: 8%; opacity: 0.06; animation-delay: -2s; }
.bubble-decor.b3 { width: 60px; height: 60px; top: 30%; right: 15%; background: var(--yellow); opacity: 0.18; animation-delay: -3s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { max-width: 480px; margin: 0 auto; }
}

/* AREA SEARCH BAR */
.area-section {
  background: var(--primary);
  padding: 28px 0;
  position: relative; overflow: hidden;
}
.area-section::before, .area-section::after {
  content: ''; position: absolute;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.area-section::before { top: -80px; left: 5%; }
.area-section::after { bottom: -100px; right: 8%; width: 220px; height: 220px; }
.area-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; color: #fff; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.area-row h3 { font-size: 22px; font-weight: 700; }
.area-row p { opacity: 0.9; font-size: 14px; margin-top: 2px; }
.area-search {
  display: flex; gap: 0; background: #fff;
  padding: 6px; border-radius: 100px;
  min-width: 380px;
}
.area-search input {
  flex: 1; border: none; outline: none;
  padding: 12px 20px; font-family: inherit; font-size: 14px;
  background: transparent;
}
.area-search button {
  background: var(--accent); color: #fff;
  border: none; padding: 12px 24px;
  border-radius: 100px; font-weight: 600; font-size: 14px;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s;
}
.area-search button:hover { background: var(--accent-dark); }
@media (max-width: 600px) { .area-search { min-width: 100%; } }

/* 3 TOP SERVICE CARDS */
.top-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ts-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 36px 28px;
  text-align: center; transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.ts-card::after {
  content: ''; position: absolute;
  top: 0; right: 0; width: 100px; height: 100px;
  background: var(--primary-soft);
  border-radius: 0 0 0 100%;
  transition: all 0.3s; opacity: 0.5;
}
.ts-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.ts-card:hover::after { background: var(--yellow); opacity: 0.5; }
.ts-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.ts-card:nth-child(2) .ts-icon { background: linear-gradient(135deg, var(--accent), #FF9933); }
.ts-card:nth-child(3) .ts-icon { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.ts-card h3 {
  font-size: 22px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
  position: relative; z-index: 1;
}
.ts-card p {
  color: var(--text-muted); font-size: 14px;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.ts-card .ts-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-weight: 600; font-size: 14px;
  position: relative; z-index: 1;
}
.ts-card .ts-link:hover { color: var(--accent-dark); }
@media (max-width: 880px) { .top-services { grid-template-columns: 1fr; } }

/* 8 SERVICE GRID */
.services-section { background: var(--bg-soft); }
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.sv-card {
  background: #fff; border-radius: 16px;
  padding: 26px 22px; text-align: center;
  border: 1px solid var(--line);
  transition: all 0.25s ease; cursor: pointer;
}
.sv-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.sv-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.sv-card h4 {
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.sv-card p {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.5; min-height: 36px;
}
.sv-card .price {
  display: inline-block; margin-top: 12px;
  background: var(--bg-cream); color: var(--accent);
  padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
}
@media (max-width: 880px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .service-grid { grid-template-columns: 1fr; } }

/* PROCESS */
.process-section { background: #fff; position: relative; }
.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 40px; position: relative;
}
.process::before {
  content: ''; position: absolute;
  top: 50px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(to right, var(--primary) 0, var(--primary) 8px, transparent 8px, transparent 16px);
  opacity: 0.4; z-index: 0;
}
.pr-step {
  text-align: center; position: relative; z-index: 1;
  background: var(--bg); padding: 10px;
}
.pr-num {
  width: 100px; height: 100px; margin: 0 auto 18px;
  background: #fff; border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); position: relative;
  transition: all 0.3s ease;
}
.pr-step:hover .pr-num {
  background: var(--primary); color: #fff;
  transform: scale(1.08);
}
.pr-num .badge {
  position: absolute; top: -8px; right: -8px;
  background: var(--accent); color: #fff;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #fff;
}
.pr-step h4 {
  font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.pr-step p {
  font-size: 14px; color: var(--text-muted);
  max-width: 26ch; margin: 0 auto;
}
@media (max-width: 880px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
}
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

/* DELIVERY OPTIONS */
.delivery-section { background: var(--bg-soft); }
.delivery {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 40px;
}
.dl-card {
  background: #fff; border-radius: 24px; padding: 36px;
  display: flex; gap: 24px; align-items: center;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.dl-card.express {
  background: linear-gradient(135deg, var(--accent), #FF9933);
  color: #fff; border: none;
}
.dl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.dl-icon {
  width: 90px; height: 90px;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dl-card.express .dl-icon {
  background: rgba(255,255,255,0.2); color: #fff;
}
.dl-card .time {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--primary-dark);
  margin-bottom: 4px;
}
.dl-card.express .time { color: rgba(255,255,255,0.95); }
.dl-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.dl-card .charge {
  display: inline-block; margin-top: 10px;
  background: var(--bg-cream); color: var(--accent);
  padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
}
.dl-card.express .charge { background: #fff; color: var(--accent); }
@media (max-width: 720px) { .delivery { grid-template-columns: 1fr; } }

/* ABOUT / STATS */
.about-section { background: linear-gradient(180deg, #fff 0%, var(--primary-soft) 100%); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: center;
}
.about-art { aspect-ratio: 1; position: relative; }
.about-art svg { width: 100%; height: 100%; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 32px;
}
.ab-stat {
  background: #fff; border-radius: 14px;
  padding: 18px; border: 1px solid var(--line);
}
.ab-stat h4 {
  font-size: 28px; font-weight: 800;
  color: var(--primary); margin-bottom: 4px;
}
.ab-stat h4 sup { color: var(--accent); font-size: 0.6em; }
.ab-stat p {
  font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 600;
}
.about-content h2 { text-align: left; }
.about-content .section-desc { margin: 0 0 28px; }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-art { max-width: 420px; margin: 0 auto; }
}

/* WHY US 5-COLUMN */
.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.wh-card {
  background: #fff; border-radius: 16px;
  padding: 24px 20px; text-align: center;
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.wh-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.wh-icon {
  width: 60px; height: 60px; margin: 0 auto 14px;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.wh-card:nth-child(2) .wh-icon { background: #FFE8CC; color: var(--accent); }
.wh-card:nth-child(3) .wh-icon { background: #DCFCE7; color: var(--green); }
.wh-card:nth-child(4) .wh-icon { background: #EDE9FE; color: #7C3AED; }
.wh-card:nth-child(5) .wh-icon { background: #FEF3C7; color: #D97706; }
.wh-card h4 {
  font-size: 15px; font-weight: 700;
  margin-bottom: 6px; color: var(--text);
}
.wh-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

/* TESTIMONIALS */
.testi-section { background: var(--primary-soft); position: relative; overflow: hidden; }
.testi-section::before {
  content: '"';
  position: absolute;
  font-family: Georgia, serif; font-size: 360px;
  color: var(--primary); opacity: 0.07;
  top: -80px; left: 20px; line-height: 1;
}
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; position: relative; z-index: 1;
}
.ts-quote {
  background: #fff; border-radius: 20px;
  padding: 30px 28px; position: relative;
  box-shadow: var(--shadow); transition: all 0.25s ease;
}
.ts-quote:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stars {
  color: var(--yellow); margin-bottom: 14px;
  font-size: 16px; letter-spacing: 2px;
}
.ts-quote p {
  font-size: 14px; color: var(--text);
  margin-bottom: 22px; line-height: 1.6;
}
.ts-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.ts-quote:nth-child(2) .av { background: linear-gradient(135deg, var(--accent), #FF9933); }
.ts-quote:nth-child(3) .av { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.ts-author h5 { font-size: 15px; font-weight: 700; color: var(--text); }
.ts-author span { font-size: 12px; color: var(--text-muted); }
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* APP PROMO */
.app-promo {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; position: relative; overflow: hidden;
}
.app-promo::before, .app-promo::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.app-promo::before { top: -100px; right: -50px; }
.app-promo::after { bottom: -120px; left: -80px; width: 260px; height: 260px; }
.app-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.app-content .eyebrow {
  background: rgba(255, 199, 44, 0.18);
  color: var(--yellow);
}
.app-content h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700; color: #fff;
  margin-bottom: 18px; letter-spacing: -0.02em; line-height: 1.15;
}
.app-content p {
  color: rgba(255,255,255,0.85);
  font-size: 16px; margin-bottom: 28px;
  max-width: 50ch;
}
.app-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin-bottom: 32px;
}
.af { display: flex; align-items: center; gap: 12px; }
.af-ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}
.af strong { display: block; font-size: 14px; font-weight: 600; }
.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; color: #fff;
  padding: 12px 20px; border-radius: 12px;
  transition: all 0.25s;
}
.store-btn:hover { transform: translateY(-2px); background: #1a1a1a; }
.store-btn .small { font-size: 10px; opacity: 0.8; }
.store-btn .big { font-size: 16px; font-weight: 700; line-height: 1; }
.app-art { position: relative; aspect-ratio: 1; }
.app-art svg { width: 100%; height: 100%; }
@media (max-width: 880px) {
  .app-grid { grid-template-columns: 1fr; }
  .app-art { max-width: 360px; margin: 0 auto; }
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
details {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 22px 26px;
  margin-bottom: 14px; transition: all 0.25s;
}
details[open] { border-color: var(--primary); box-shadow: var(--shadow); }
details summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 16px;
  color: var(--text);
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  width: 32px; height: 32px;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; margin-left: 16px;
  transition: all 0.3s ease;
}
details[open] summary::after {
  content: 'Ã—'; background: var(--primary); color: #fff;
}
details p {
  margin-top: 16px; color: var(--text-muted);
  font-size: 14px; line-height: 1.7;
}

/* ============================================
   ABOUT US PAGE
   ============================================ */
.story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.story-art {
  position: relative; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--primary-soft);
}
.story-art svg { width: 100%; height: 100%; }
.story-content h2 { text-align: left; }
.story-content .section-desc { margin: 0 0 16px; max-width: none; }
.story-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 16px; }
@media (max-width: 880px) { .story { grid-template-columns: 1fr; } }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--line);
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.value-card .num {
  position: absolute; top: 20px; right: 24px;
  font-size: 60px; font-weight: 800;
  color: var(--primary-soft);
  line-height: 1; z-index: 0;
}
.value-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.value-card:nth-child(2) .value-icon { background: linear-gradient(135deg, var(--accent), #FF9933); }
.value-card:nth-child(3) .value-icon { background: linear-gradient(135deg, var(--green), #16A34A); }
.value-card h3 {
  font-size: 22px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
  position: relative; z-index: 1;
}
.value-card p {
  color: var(--text-muted); font-size: 14px;
  line-height: 1.6; position: relative; z-index: 1;
}
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }

.timeline {
  position: relative; max-width: 920px; margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute; left: 12px; top: 12px; bottom: 12px;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-soft));
  border-radius: 2px;
}
.tl-item {
  position: relative; padding-bottom: 36px;
}
.tl-item::before {
  content: '';
  position: absolute; left: -34px; top: 8px;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.tl-year {
  display: inline-block;
  background: var(--primary); color: #fff;
  padding: 4px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: 0.05em;
}
.tl-item h4 {
  font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.tl-item p {
  font-size: 14px; color: var(--text-muted);
  max-width: 60ch;
}

.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 100px; height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800;
}
.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, var(--accent), #FF9933); }
.team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, var(--green), #16A34A); }
.team-card h4 {
  font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.team-card .role {
  font-size: 13px; color: var(--primary);
  font-weight: 600; margin-bottom: 12px;
}
.team-card .bio {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.55;
}
.team-card .socials-mini {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 16px;
}
.team-card .socials-mini a {
  width: 30px; height: 30px;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.team-card .socials-mini a:hover {
  background: var(--primary); color: #fff;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

.stats-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 60px 0;
  position: relative; overflow: hidden;
}
.stats-strip::before, .stats-strip::after {
  content: ''; position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.stats-strip::before { top: -50px; left: 10%; }
.stats-strip::after { bottom: -80px; right: 8%; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative; z-index: 1;
  text-align: center;
}
.st-item h3 {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800; color: #fff;
  margin-bottom: 6px; line-height: 1;
}
.st-item h3 sup { color: var(--yellow); font-size: 0.55em; }
.st-item p {
  color: rgba(255,255,255,0.85);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail-list {
  display: flex; flex-direction: column; gap: 50px;
}
.sd-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.sd-row:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.sd-row.flip { direction: rtl; }
.sd-row.flip > * { direction: ltr; }
.sd-art {
  aspect-ratio: 1; max-width: 380px; margin: 0 auto;
  background: var(--primary-soft);
  border-radius: 20px;
  padding: 30px;
  display: flex; align-items: center; justify-content: center;
}
.sd-art svg { width: 100%; height: 100%; }
.sd-content .eyebrow { background: var(--bg-cream); color: var(--accent); }
.sd-content h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.sd-content p {
  color: var(--text-muted);
  font-size: 15px; margin-bottom: 20px;
}
.sd-features {
  list-style: none; margin: 0 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.sd-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text);
}
.sd-features li::before {
  content: 'âœ“';
  width: 20px; height: 20px;
  background: var(--primary); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.sd-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.sd-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-soft);
  padding: 8px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--text);
}
.sd-pill strong { color: var(--primary); }
@media (max-width: 880px) {
  .sd-row, .sd-row.flip { grid-template-columns: 1fr; direction: ltr; padding: 28px; }
  .sd-features { grid-template-columns: 1fr; }
}

/* SPECIALTY SERVICES BANNER */
.specialty-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sp-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.sp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sp-card:nth-child(2) { background: linear-gradient(135deg, var(--accent), #FF9933); }
.sp-card:nth-child(3) { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.sp-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.sp-card h4 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 8px;
}
.sp-card p {
  font-size: 14px; opacity: 0.92; line-height: 1.55;
}
@media (max-width: 880px) { .specialty-grid { grid-template-columns: 1fr; } }

/* ============================================
   PRICING PAGE
   ============================================ */
.price-tabs {
  display: flex; gap: 8px;
  background: var(--bg-soft);
  padding: 8px;
  border-radius: 14px;
  max-width: fit-content;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}
.price-tab {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
}
.price-tab.active {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 12px rgba(0,181,192,0.3);
}
.price-tab:hover:not(.active) { color: var(--primary); }

.price-table {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
}
.price-table.active { display: block; }
.price-table .head {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 24px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.price-table .head h3 {
  font-size: 22px; font-weight: 700;
}
.price-table .head .badge {
  background: var(--yellow); color: var(--text);
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
}
.price-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background 0.2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg-soft); }
.price-row.headers {
  background: var(--bg-soft);
  font-size: 12px; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-row .item-name {
  font-size: 15px; font-weight: 600;
  color: var(--text);
}
.price-row .item-name small {
  display: block; font-weight: 400;
  color: var(--text-muted); font-size: 12px;
  margin-top: 2px;
}
.price-row .col {
  text-align: center;
  font-size: 15px; font-weight: 600;
  color: var(--text);
}
.price-row .col.dry { color: var(--accent); }
.price-row .col.premium { color: var(--primary); }
@media (max-width: 720px) {
  .price-row, .price-row.headers {
    grid-template-columns: 1.5fr 1fr;
    gap: 6px 12px;
    padding: 14px 20px;
  }
  .price-table .head { padding: 18px 20px; flex-direction: column; gap: 10px; text-align: center; }
  .price-row .col::before {
    content: attr(data-label);
    display: block;
    font-size: 10px; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 2px;
  }
  .price-row.headers { display: none; }
}

.price-note {
  max-width: 880px; margin: 40px auto 0;
  background: var(--bg-cream);
  border: 1px solid #FFE8A8;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.price-note .ic {
  width: 40px; height: 40px;
  background: var(--yellow); color: #8B5A00;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 700;
}
.price-note h5 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.price-note p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ============================================
   FRANCHISE PAGE
   ============================================ */
.fr-hero {
  background: linear-gradient(120deg, var(--primary-soft) 0%, #fff 100%);
  padding: 60px 0 80px;
  position: relative; overflow: hidden;
}
.fr-hero .container {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: start;
  position: relative; z-index: 2;
}
.fr-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 18px; letter-spacing: -0.02em;
}
.fr-hero h1 .accent { color: var(--primary); }
.fr-hero .lede {
  font-size: 17px; color: var(--text-muted);
  margin-bottom: 28px; max-width: 56ch;
}
.fr-badges {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.fr-badge {
  background: #fff; border: 1px solid var(--line);
  padding: 14px 18px; border-radius: 14px;
  display: flex; align-items: center; gap: 10px;
  min-width: 140px;
  box-shadow: var(--shadow);
}
.fr-badge .num {
  font-size: 22px; font-weight: 800;
  color: var(--primary); line-height: 1;
}
.fr-badge .num sup { color: var(--accent); font-size: 0.55em; }
.fr-badge .lab {
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 4px;
}

.enquiry-form {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: sticky; top: 100px;
}
.enquiry-form h3 {
  font-size: 22px; font-weight: 700;
  margin-bottom: 6px; color: var(--text);
}
.enquiry-form .sub {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 22px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 14px;
}
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit; font-size: 14px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  outline: none;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 10px;
  font-family: inherit; font-weight: 700; font-size: 15px;
  cursor: pointer; margin-top: 6px;
  transition: all 0.2s;
}
.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,122,0,0.3);
}
.form-note {
  font-size: 12px; color: var(--text-muted);
  text-align: center; margin-top: 14px;
}
@media (max-width: 880px) {
  .fr-hero .container { grid-template-columns: 1fr; }
  .enquiry-form { position: static; }
}

/* Investment Models */
.invest-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.invest-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  border: 2px solid var(--line);
  position: relative;
  transition: all 0.3s;
}
.invest-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.invest-card.featured {
  background: linear-gradient(135deg, var(--text), #0E1924);
  color: #fff;
  border-color: var(--accent);
}
.invest-card.featured .badge {
  position: absolute; top: -14px; left: 36px;
  background: var(--yellow); color: var(--text);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
}
.invest-card h3 {
  font-size: 24px; font-weight: 700;
  margin-bottom: 6px;
}
.invest-card .tagline {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 22px;
}
.invest-card.featured .tagline { color: rgba(255,255,255,0.7); }
.invest-card .amount {
  font-size: 44px; font-weight: 800;
  color: var(--primary); line-height: 1;
  margin-bottom: 4px;
}
.invest-card.featured .amount { color: var(--yellow); }
.invest-card .amount-sub {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 26px;
}
.invest-card.featured .amount-sub { color: rgba(255,255,255,0.6); }
.invest-feats {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-bottom: 28px;
}
.invest-card.featured .invest-feats { border-top-color: rgba(255,255,255,0.1); }
.invest-feats li {
  padding: 10px 0;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
}
.invest-feats li::before {
  content: 'âœ“';
  width: 22px; height: 22px;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.invest-card.featured .invest-feats li::before {
  background: rgba(255, 199, 44, 0.18); color: var(--yellow);
}
@media (max-width: 880px) { .invest-grid { grid-template-columns: 1fr; } }

/* Reasons accordion */
.reasons-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reason-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 22px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all 0.25s;
}
.reason-card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.reason-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--primary); color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.reason-card:nth-child(even) .reason-num { background: var(--accent); }
.reason-card h4 {
  font-size: 17px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.reason-card p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.55;
}
@media (max-width: 720px) { .reasons-grid { grid-template-columns: 1fr; } }

/* Process steps - 8 */
.process-8 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.p8-step {
  text-align: center; padding: 24px 18px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.25s;
}
.p8-step:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.p8-step .num {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  margin-bottom: 14px;
}
.p8-step h4 {
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.p8-step p {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 880px) { .process-8 { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-bottom: 60px;
}
.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.contact-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card:nth-child(2) .contact-icon { background: #FFE8CC; color: var(--accent); }
.contact-card:nth-child(3) .contact-icon { background: #DCFCE7; color: var(--green); }
.contact-card:nth-child(4) .contact-icon { background: #EDE9FE; color: #7C3AED; }
.contact-card h4 {
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.contact-card .info {
  font-size: 16px; font-weight: 600;
  color: var(--primary);
}
.contact-card .info-sub {
  font-size: 13px; color: var(--text-muted);
  margin-top: 4px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-main {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 50px; align-items: start;
}
.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 24px; font-weight: 700;
  margin-bottom: 8px;
}
.contact-form .sub {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 28px;
}
.contact-map {
  background: var(--primary-soft);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  border: 1px solid var(--line);
}
.contact-map svg { width: 100%; height: 100%; }
.contact-map .info-box {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.contact-map .info-box h5 {
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.contact-map .info-box p {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 4px;
}
@media (max-width: 880px) { .contact-main { grid-template-columns: 1fr; } }

/* ============================================
   FRANCHISE APPLICATION PAGE
   ============================================ */
.apply-wrapper {
  max-width: 920px; margin: 0 auto;
}
.apply-progress {
  display: flex; justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}
.apply-progress::before {
  content: '';
  position: absolute;
  top: 18px; left: 8%; right: 8%; height: 2px;
  background: var(--line);
  z-index: 0;
}
.apply-step {
  position: relative; z-index: 1;
  text-align: center;
  flex: 1;
}
.apply-step .dot {
  width: 38px; height: 38px;
  margin: 0 auto 8px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  color: var(--text-muted);
}
.apply-step.done .dot {
  background: var(--green); border-color: var(--green); color: #fff;
}
.apply-step.active .dot {
  background: var(--primary); border-color: var(--primary); color: #fff;
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.apply-step .label {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
}
.apply-step.active .label, .apply-step.done .label { color: var(--text); }

.apply-form {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-section { margin-bottom: 36px; }
.form-section:last-child { margin-bottom: 0; }
.form-section h4 {
  font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
  display: flex; align-items: center; gap: 10px;
}
.form-section h4 .num {
  width: 28px; height: 28px;
  background: var(--primary); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.form-section .desc {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 20px; padding-left: 38px;
}
.radio-group {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.radio-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border: 2px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.radio-pill:hover { border-color: var(--primary); }
.radio-pill input { accent-color: var(--primary); }
.radio-pill input:checked + span { color: var(--primary); font-weight: 600; }
.radio-pill:has(input:checked) {
  background: var(--primary-soft);
  border-color: var(--primary);
}
.radio-pill span { font-size: 14px; }
@media (max-width: 620px) {
  .apply-form { padding: 28px 24px; }
  .radio-group { grid-template-columns: 1fr; }
  .apply-progress .label { font-size: 10px; }
}

.checkbox-row {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--text-muted);
  margin: 20px 0;
}
.checkbox-row input { accent-color: var(--primary); margin-top: 3px; }

/* OPPORTUNITY SECTION (franchise page) */
.opportunity {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 50px; align-items: center;
}
.opportunity-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 24px;
  padding: 50px 40px;
  position: relative; overflow: hidden;
  text-align: center;
}
.opportunity-card::before, .opportunity-card::after {
  content: ''; position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.opportunity-card::before { width: 200px; height: 200px; top: -60px; right: -50px; }
.opportunity-card::after { width: 140px; height: 140px; bottom: -50px; left: -40px; }
.opportunity-card .big-num {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800; line-height: 1;
  color: var(--yellow);
  position: relative; z-index: 1;
  margin-bottom: 10px;
}
.opportunity-card .big-num sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.4em; font-weight: 600;
}
.opportunity-card .big-label {
  font-size: 18px; font-weight: 600;
  position: relative; z-index: 1;
  margin-bottom: 32px;
}
.opportunity-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.opportunity-stats .s h4 {
  font-size: 22px; font-weight: 800;
  color: var(--yellow);
}
.opportunity-stats .s p {
  font-size: 11px; opacity: 0.85;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.opportunity-content .eyebrow { background: var(--bg-cream); color: var(--accent); }
.opportunity-content h2 { text-align: left; }
.opportunity-content .section-desc { margin: 0 0 20px; max-width: none; }
.opportunity-content p {
  color: var(--text-muted); font-size: 15px;
  margin-bottom: 16px; line-height: 1.7;
}
@media (max-width: 880px) {
  .opportunity { grid-template-columns: 1fr; }
}

/* Misc helpers */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* Reveal-on-scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}