/* ═══════════════════════════════════════════════════════════
   Mechayeh Tech Repair — Shared Stylesheet
   All pages link to this single file for zero duplication.
   ═══════════════════════════════════════════════════════════ */

/* ─── SELF-HOSTED FONTS ─── */
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/outfit-300.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/outfit-400.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/outfit-500.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/outfit-600.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/outfit-700.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 800; font-display: swap; src: url('/fonts/outfit-800.woff2') format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 900; font-display: swap; src: url('/fonts/outfit-900.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/dm-sans-400.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: italic; font-weight: 400; font-display: swap; src: url('/fonts/dm-sans-400i.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/dm-sans-500.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/dm-sans-700.woff2') format('woff2'); }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0f1b2d;
  --navy-mid: #162a45;
  --blue: #2980b9;
  --blue-light: #3498db;
  --cyan: #00d4ff;
  --white: #ffffff;
  --gray-100: #f0f4f8;
  --gray-200: #dce3eb;
  --gray-400: #a0aec0;
  --gray-500: #7b8fa3;
  --gray-700: #3a4a5c;
  --green: #27ae60;
  --red: #e74c3c;
  --shadow-sm: 0 2px 8px rgba(15,27,45,0.08);
  --shadow-md: 0 8px 30px rgba(15,27,45,0.12);
  --shadow-lg: 0 20px 60px rgba(15,27,45,0.18);
  --radius: 12px;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; scroll-padding-bottom: 80px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
}

a { color: var(--blue); }

img { max-width: 100%; height: auto; }

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: absolute; left: -9999px; top: 4px; z-index: 9999;
  padding: 8px 16px; background: var(--cyan); color: var(--navy);
  font-weight: 700; border-radius: 4px; text-decoration: none;
}
.skip-link:focus { left: 4px; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15, 27, 45, 0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: var(--nav-height);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; border-radius: 6px; }
.nav-logo-text { font-family: 'Outfit'; font-weight: 800; font-size: 1.1rem; color: var(--white); letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--cyan); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; font-family: 'Outfit'; }
.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  background: var(--cyan) !important; color: var(--navy) !important;
  padding: 10px 20px; border-radius: 8px; font-weight: 700 !important; font-size: 0.83rem !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,212,255,0.35); }

.nav-track {
  background: transparent !important; color: var(--cyan) !important;
  padding: 9px 18px; border-radius: 8px; font-weight: 600 !important; font-size: 0.83rem !important;
  border: 1px solid rgba(0,212,255,0.4) !important; transition: all 0.2s !important;
}
.nav-track:hover { background: rgba(0,212,255,0.1) !important; border-color: var(--cyan) !important; }

/* Hamburger with X transform */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; position: relative; width: 40px; height: 40px; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  position: absolute; left: 8px; transition: 0.3s; border-radius: 2px;
}
.mobile-toggle span:nth-child(1) { top: 12px; }
.mobile-toggle span:nth-child(2) { top: 19px; }
.mobile-toggle span:nth-child(3) { top: 26px; }
.mobile-toggle.active span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 45%, var(--blue) 100%);
  display: flex; align-items: center; position: relative; overflow: hidden; padding-top: var(--nav-height);
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(0,212,255,0.08) 0%, transparent 60%); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--white), transparent); pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,0.12); border: 1px solid rgba(0,212,255,0.25);
  padding: 8px 16px; border-radius: 100px; font-size: 0.82rem; color: var(--cyan); font-weight: 500; margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.avail-badge {
  display: none; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500;
  margin-bottom: 16px; animation: fadeInUp 0.6s ease 0.05s both;
}
.avail-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.avail-open { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.6); animation: pulse-dot 2s infinite; }
.avail-closed { background: #ef4444; }

.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--white); margin-bottom: 20px; letter-spacing: -0.03em; animation: fadeInUp 0.6s ease 0.1s both; }
.hero h1 .highlight { background: linear-gradient(135deg, var(--cyan), var(--blue-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 500px; line-height: 1.7; animation: fadeInUp 0.6s ease 0.2s both; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: var(--navy); padding: 16px 32px; border-radius: 10px;
  font-family: 'Outfit'; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.25s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,0.4); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); padding: 16px 32px; border-radius: 10px;
  font-family: 'Outfit'; font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2); transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white); padding: 16px 32px; border-radius: 10px;
  font-family: 'Outfit'; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.25s; border: none; cursor: pointer;
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(39,174,96,0.4); }

/* ─── HERO CARD ─── */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; animation: fadeInUp 0.8s ease 0.4s both; }

.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 40px; backdrop-filter: blur(20px); width: 100%; max-width: 440px;
}
.hero-card-header { text-align: center; margin-bottom: 30px; }
.hero-card-header img { width: 180px; border-radius: 12px; margin-bottom: 12px; }
.hero-card-tagline { color: var(--cyan); font-family: 'Outfit'; font-weight: 600; font-size: 1.05rem; }

.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-stat {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 20px 16px; text-align: center; transition: all 0.3s;
}
.hero-stat-icon { font-size: 1.5rem; margin-bottom: 8px; }
.hero-stat-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.hero-stat-value { color: var(--white); font-family: 'Outfit'; font-weight: 700; font-size: 1rem; }
.hero-stat:hover { background: rgba(255,255,255,0.1); border-color: rgba(0,212,255,0.3); transform: translateY(-2px); }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--gray-100); padding: 28px 24px; border-bottom: 1px solid var(--gray-200); }
.trust-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--gray-700); font-size: 0.88rem; font-weight: 500; white-space: nowrap; }
.trust-item svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.trust-item--rating svg { color: #f59e0b; }
.trust-item--rating strong { color: var(--navy); font-weight: 700; }

/* ─── SECTIONS ─── */
.section { padding: 100px 24px; }
.section-dark { background: var(--navy); color: var(--white); }
.section-alt { background: var(--gray-100); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-label { display: inline-block; font-family: 'Outfit'; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); margin-bottom: 12px; }
.section-dark .section-label { color: var(--cyan); }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,0.55); }

/* ─── HOW IT WORKS ─── */
.steps-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 48px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--blue-light), var(--blue), var(--cyan)); opacity: 0.3; }
.step { text-align: center; padding: 16px 20px; position: relative; border-radius: 12px; transition: background 0.3s, transform 0.3s; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--blue)); color: var(--navy); font-family: 'Outfit'; font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 2; box-shadow: 0 4px 20px rgba(0,212,255,0.3); transition: transform 0.3s, box-shadow 0.3s; }
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.step p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.6; }
.step:hover { background: rgba(255,255,255,0.04); transform: translateY(-4px); }
.step:hover .step-num { transform: scale(1.1); box-shadow: 0 6px 30px rgba(0,212,255,0.5); }

/* ─── SERVICES ─── */
.services-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 32px 28px; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, rgba(41,128,185,0.1), rgba(0,212,255,0.1)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; }
.service-learn-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: 'Outfit'; font-weight: 600; font-size: 0.85rem; color: var(--blue); transition: color 0.2s, gap 0.2s; }
.service-card:hover .service-learn-more { color: var(--cyan); gap: 10px; }

/* ─── PRICING (simple grid) ─── */
.pricing-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: all 0.3s;
}
.price-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,212,255,0.25); transform: translateY(-3px); }
.price-icon { font-size: 2rem; margin-bottom: 12px; }
.price-service { font-family: 'Outfit'; font-weight: 700; font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.price-amount { font-family: 'Outfit'; font-weight: 800; font-size: 1.6rem; color: var(--cyan); margin-bottom: 4px; }
.price-note { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ─── WHY US ─── */
.why-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  display: flex; gap: 20px; padding: 28px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); transition: all 0.3s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon { width: 48px; height: 48px; border-radius: 10px; background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(41,128,185,0.12)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.why-card p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.6; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; background: none; border: none; padding: 24px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Outfit'; font-weight: 600; font-size: 1.05rem; color: var(--navy); text-align: left;
}
.faq-question:hover { color: var(--blue); }
.faq-chevron { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; color: var(--gray-500); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer-inner { padding: 0 0 24px; color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ─── REVIEWS (old simple) ─── */
.review-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px 28px; transition: all 0.3s;
}
.review-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,212,255,0.2); }
.review-stars { color: #f5c518; font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.review-author { font-family: 'Outfit'; font-weight: 600; color: var(--white); font-size: 0.9rem; }
.review-source { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin-top: 2px; }

/* ─── REVIEWS (enhanced) ─── */
.reviews-grid {
  max-width: 1100px; margin: 0 auto 48px; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 24px;
}
.reviews-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px 28px; position: relative;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.reviews-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.3);
}
.reviews-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.reviews-stars svg { width: 18px; height: 18px; fill: #fbbf24; }
.reviews-quote {
  font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.8);
  margin-bottom: 20px; font-style: italic;
}
.reviews-quote::before { content: '\201C'; font-size: 1.5rem; color: var(--cyan); margin-right: 4px; vertical-align: -4px; }
.reviews-quote::after { content: '\201D'; font-size: 1.5rem; color: var(--cyan); margin-left: 2px; vertical-align: -4px; }
.reviews-author { display: flex; align-items: center; gap: 12px; }
.reviews-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--white);
}
.reviews-author-info h4 {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: var(--white); margin-bottom: 2px;
}
.reviews-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--cyan); opacity: 0.85;
}
.reviews-badge svg { width: 12px; height: 12px; fill: var(--cyan); }
.reviews-cta { text-align: center; max-width: 600px; margin: 0 auto; }
.reviews-cta p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }

/* ─── REFERRAL ─── */
.referral-box {
  max-width: 800px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(41,128,185,0.08));
  border: 2px dashed rgba(0,212,255,0.3); border-radius: 20px; padding: 60px 40px;
}
.referral-amount { font-family: 'Outfit'; font-weight: 900; font-size: 3.5rem; color: var(--cyan); margin-bottom: 8px; }
.referral-box h3 { font-family: 'Outfit'; font-weight: 800; font-size: 1.5rem; margin-bottom: 16px; }
.referral-box p { color: var(--gray-500); font-size: 1rem; line-height: 1.7; margin-bottom: 12px; max-width: 520px; margin-left: auto; margin-right: auto; }
.referral-steps { display: flex; justify-content: center; gap: 40px; margin: 32px 0; flex-wrap: wrap; }
.referral-step { text-align: center; max-width: 160px; }
.referral-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--cyan); color: var(--navy); font-family: 'Outfit'; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.referral-step-text { font-size: 0.88rem; color: var(--gray-700); line-height: 1.5; }
.referral-fine { color: var(--gray-500); font-size: 0.8rem; margin-top: 24px; }

/* ─── SERVICE AREA ─── */
.area-content { max-width: 900px; margin: 0 auto; text-align: center; }
.area-map-placeholder {
  background: var(--navy); border-radius: 16px; padding: 48px 32px; margin-bottom: 40px;
  position: relative; overflow: hidden;
}
.area-map-placeholder::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 40% 50%, rgba(0,212,255,0.12), transparent 60%); }
.area-pin { font-size: 3rem; margin-bottom: 16px; }
.area-map-placeholder h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; position: relative; }
.area-map-placeholder p { color: rgba(255,255,255,0.55); font-size: 1rem; position: relative; }
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.area-tag { display: inline-block; background: var(--white); border: 1px solid var(--gray-200); padding: 10px 22px; border-radius: 100px; font-size: 0.9rem; font-weight: 500; color: var(--navy); transition: all 0.2s; text-decoration: none; }
.area-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ─── MODALS ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(15,27,45,0.85);
  z-index: 2000; align-items: center; justify-content: center; padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white); border-radius: 16px; width: 100%; max-width: 700px;
  max-height: 90vh; overflow: hidden; position: relative; box-shadow: var(--shadow-lg);
}
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px; border-bottom: 1px solid var(--gray-200);
}
.modal-header h3 { font-family: 'Outfit'; font-weight: 700; font-size: 1.2rem; }
.modal-close {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--gray-200);
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gray-500); transition: all 0.2s;
}
.modal-close:hover { background: var(--gray-100); color: var(--navy); }
.modal-body { padding: 0; height: 75vh; }
.modal-body iframe { width: 100%; height: 100%; border: none; }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-content p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 36px; line-height: 1.7; }
.cta-contact-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 40px; }
.cta-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.cta-contact-item svg { width: 18px; height: 18px; color: var(--cyan); }
.cta-contact-item a { color: var(--white); text-decoration: none; font-weight: 500; }
.cta-contact-item a:hover { color: var(--cyan); }

/* ─── FOOTER ─── */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 36px; border-radius: 6px; }
.footer-brand-text { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-links { display: flex; gap: 32px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-copy { width: 100%; text-align: center; color: rgba(255,255,255,0.25); font-size: 0.78rem; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }

/* ─── REFERRAL MODAL ─── */
.referral-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.referral-overlay.active { opacity: 1; visibility: visible; }
.referral-modal-box {
  background: var(--white); border-radius: 16px; width: 100%; max-width: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); overflow: hidden;
}
.referral-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
}
.referral-modal-header h3 { font-family: 'Outfit'; font-weight: 700; font-size: 1.15rem; color: var(--navy); margin: 0; }
.referral-modal-body { padding: 24px; }
.referral-modal-body p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.referral-field { margin-bottom: 16px; }
.referral-field label {
  display: block; font-family: 'Outfit'; font-weight: 600; font-size: 0.85rem;
  color: var(--navy); margin-bottom: 6px;
}
.referral-field input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--gray-200); border-radius: 8px;
  font-family: 'DM Sans'; font-size: 0.92rem; color: var(--navy); outline: none;
  transition: border-color 0.2s; box-sizing: border-box;
}
.referral-field input:focus { border-color: var(--cyan); }
.referral-field input::placeholder { color: #adb5bd; }
.referral-divider {
  display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--gray-400); font-size: 0.8rem;
}
.referral-divider::before, .referral-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.referral-submit-btn {
  width: 100%; padding: 14px; background: var(--cyan); color: var(--navy); border: none; border-radius: 10px;
  font-family: 'Outfit'; font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: all 0.25s; margin-top: 8px;
}
.referral-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,212,255,0.35); }
.referral-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.referral-status {
  text-align: center; padding: 12px; border-radius: 8px; margin-top: 16px;
  font-size: 0.88rem; display: none;
}
.referral-status.success { display: block; background: #d4edda; color: #155724; }
.referral-status.error { display: block; background: #f8d7da; color: #721c24; }

/* ─── CUSTOMER PORTAL ─── */
.portal-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 960px; margin: 0 auto 48px;
}
.portal-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px 28px; text-align: center;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.portal-card:hover {
  transform: translateY(-4px); border-color: rgba(0,229,255,0.25);
  box-shadow: 0 8px 32px rgba(0,229,255,0.1);
}
.portal-card-icon {
  font-size: 2.2rem; margin-bottom: 16px;
  width: 64px; height: 64px; line-height: 64px; border-radius: 16px;
  background: rgba(0,229,255,0.08); display: inline-block;
}
.portal-card h3 { font-family: 'Outfit'; font-weight: 700; font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.portal-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.portal-login-box {
  max-width: 500px; margin: 0 auto; text-align: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 44px 40px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.portal-login-box h3 { font-family: 'Outfit'; font-weight: 700; font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.portal-login-box .portal-login-sub { color: rgba(255,255,255,0.5); font-size: 0.92rem; line-height: 1.6; margin-bottom: 28px; }
.portal-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto; }
.portal-form input[type="email"] {
  flex: 1; padding: 15px 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08); color: var(--white);
  font-family: 'DM Sans'; font-size: 0.95rem;
  outline: none; transition: border-color 0.25s, box-shadow 0.25s;
}
.portal-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.portal-form input[type="email"]:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,229,255,0.12); }
.portal-form button {
  padding: 15px 28px; border-radius: 12px; background: var(--cyan); color: var(--navy);
  font-family: 'Outfit'; font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  white-space: nowrap; transition: all 0.25s; letter-spacing: 0.01em;
}
.portal-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,229,255,0.35); }
.portal-note { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.portal-note svg { flex-shrink: 0; }
.portal-signup { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.portal-signup a { color: var(--cyan); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.portal-signup a:hover { color: #fff; }

/* ─── TERMS MODAL ─── */
.terms-overlay {
  display: none; position: fixed; inset: 0; background: rgba(15,27,45,0.85);
  z-index: 2000; align-items: center; justify-content: center; padding: 24px;
  backdrop-filter: blur(4px);
}
.terms-overlay.active { display: flex; }
.terms-box {
  background: var(--white); border-radius: 16px; width: 100%; max-width: 740px;
  max-height: 90vh; overflow: hidden; position: relative; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.terms-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px; border-bottom: 1px solid var(--gray-200); flex-shrink: 0;
}
.terms-header h3 { font-family: 'Outfit'; font-weight: 700; font-size: 1.2rem; }
.terms-body {
  padding: 28px 32px; overflow-y: auto; flex: 1;
  font-size: 0.92rem; line-height: 1.75; color: var(--gray-700);
}
.terms-body h4 { font-family: 'Outfit'; font-weight: 700; font-size: 1rem; color: var(--navy); margin: 24px 0 8px; }
.terms-body h4:first-child { margin-top: 0; }
.terms-body p { margin-bottom: 12px; }
.terms-body .terms-company { font-family: 'Outfit'; font-weight: 800; font-size: 1.1rem; color: var(--navy); text-align: center; margin-bottom: 4px; }
.terms-body .terms-subtitle { text-align: center; color: var(--gray-500); font-size: 0.85rem; margin-bottom: 24px; }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s; animation: whatsappPulse 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--white); color: var(--navy); padding: 10px 16px;
  border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  white-space: nowrap; box-shadow: var(--shadow-md); opacity: 0;
  pointer-events: none; transition: opacity 0.3s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); border-color: var(--blue); }
.back-to-top svg { width: 20px; height: 20px; }

/* ─── SCROLL PROGRESS BAR ─── */
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--blue-light));
    transform-origin: left; z-index: 1001;
    animation: growProgress linear;
    animation-timeline: scroll();
  }
  @keyframes growProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
}

/* ─── STICKY MOBILE CTA ─── */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: var(--navy); border-top: 1px solid rgba(0,212,255,0.2);
  padding: 8px 8px; padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  gap: 6px; box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease; will-change: transform;
}
.mobile-cta-bar.hidden { transform: translateY(100%); }
.mcta-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 8px 4px; border-radius: 8px; font-family: 'Outfit'; font-weight: 600;
  font-size: 0.72rem; text-decoration: none; color: var(--white);
  background: rgba(255,255,255,0.08); min-height: 44px; min-width: 44px; transition: background 0.2s;
  border: none; cursor: pointer;
}
.mcta-btn:hover, .mcta-btn:active { background: rgba(255,255,255,0.15); }
.mcta-btn svg { width: 20px; height: 20px; }

/* ─── STATUS CHECKER ─── */
.status-checker { max-width: 640px; margin: 0 auto; }
.status-form {
  display: flex; flex-direction: column; gap: 12px; max-width: 520px; margin: 0 auto 32px;
}
.status-form input {
  width: 100%; padding: 14px 18px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08); color: var(--white); font-family: 'DM Sans'; font-size: 0.95rem;
  outline: none; transition: border-color 0.2s; min-width: 0; box-sizing: border-box;
}
.status-form input::placeholder { color: rgba(255,255,255,0.35); }
.status-form input:focus { border-color: var(--cyan); }
.status-form button {
  padding: 14px 24px; border-radius: 10px; background: var(--cyan); color: var(--navy);
  font-family: 'Outfit'; font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  white-space: nowrap; transition: all 0.25s; width: 100%;
}
.status-form button:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,212,255,0.35); }
.status-form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.status-result {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px 24px; display: none;
}
.status-result.visible { display: block; }
.status-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.status-result-item { padding: 8px 0; }
.status-result-label {
  font-family: 'Outfit'; font-weight: 600; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 4px;
}
.status-result-value { color: var(--white); font-size: 0.95rem; font-weight: 500; }

.status-badge { display: inline-block; padding: 4px 14px; border-radius: 100px; font-family: 'Outfit'; font-weight: 600; font-size: 0.82rem; }
.status-badge.resolved { background: rgba(39,174,96,0.18); color: #2ecc71; }
.status-badge.in-progress { background: rgba(0,212,255,0.15); color: var(--cyan); }
.status-badge.waiting { background: rgba(243,156,18,0.18); color: #f39c12; }
.status-badge.other { background: rgba(255,255,255,0.1); color: var(--gray-500); }

.status-error { text-align: center; color: var(--red); font-size: 0.95rem; padding: 20px; display: none; }
.status-error.visible { display: block; }

.status-loading { text-align: center; padding: 24px; display: none; }
.status-loading.visible { display: flex; justify-content: center; align-items: center; gap: 10px; }
.status-spinner {
  width: 22px; height: 22px; border: 3px solid rgba(0,212,255,0.2);
  border-top-color: var(--cyan); border-radius: 50%;
  animation: statusSpin 0.7s linear infinite;
}
@keyframes statusSpin { to { transform: rotate(360deg); } }
.status-loading-text { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ─── SCHEDULE APPOINTMENT ─── */
.schedule-grid {
  max-width: 1000px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px;
}
.schedule-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.schedule-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan)); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
.schedule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.schedule-card:hover::before { transform: scaleX(1); }
.schedule-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.schedule-card h3 { font-family: 'Outfit'; font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.schedule-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; }
.schedule-cta { text-align: center; }

/* ─── BLOG INDEX ─── */
.blog-index { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem 2rem; }

/* ─── BLOG / TIPS ─── */
.blog-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.blog-card {
  background: rgba(255,255,255,0.75); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 32px 28px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.blog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card:hover::before { transform: scaleX(1); }
.blog-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.blog-card-top .blog-tag { margin-bottom: 0; }
.blog-read-time { font-size: 0.75rem; color: var(--gray-400); font-weight: 500; }
.blog-tag {
  display: inline-block; font-family: 'Outfit'; font-weight: 700;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--white); background: linear-gradient(135deg, var(--blue), var(--cyan));
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; width: fit-content;
}
.blog-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); line-height: 1.35; }
.blog-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Outfit'; font-weight: 600; font-size: 0.88rem;
  color: var(--blue); text-decoration: none; transition: gap 0.2s, color 0.2s;
}
.blog-link:hover { gap: 10px; color: var(--cyan); }

/* ─── PRICING CALCULATOR ─── */
.calc-wrapper { max-width: 1100px; margin: 0 auto; }
.calc-instruction { text-align: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 28px; font-family: 'DM Sans', sans-serif; }
.calc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.calc-card {
  position: relative; background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 24px 16px; text-align: center; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); user-select: none;
}
.calc-card:hover {
  background: rgba(0,229,255,0.06); border-color: rgba(0,229,255,0.25);
  transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,229,255,0.1);
}
.calc-card.selected {
  background: rgba(0,229,255,0.1); border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0,229,255,0.15), inset 0 0 24px rgba(0,229,255,0.05);
  transform: translateY(-4px);
}
.calc-card-check {
  position: absolute; top: 10px; right: 10px; width: 24px; height: 24px;
  border-radius: 50%; background: var(--cyan); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; opacity: 0; transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.calc-card.selected .calc-card-check { opacity: 1; transform: scale(1); }
.calc-card-icon { font-size: 2rem; margin-bottom: 10px; line-height: 1; }
.calc-card-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 6px; line-height: 1.3; }
.calc-card-price { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--cyan); line-height: 1.2; }
.calc-card-price.quote { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.45); }

.calc-results { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease; }
.calc-results.visible { max-height: 2000px; opacity: 1; }
.calc-results-inner {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px; margin-top: 8px;
}
.calc-results-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--white); margin-bottom: 20px; text-align: center; }
.calc-selected-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.calc-item {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid rgba(255,255,255,0.06);
}
.calc-item-icon { font-size: 1.6rem; flex-shrink: 0; }
.calc-item-info { flex: 1; }
.calc-item-name { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: 2px; }
.calc-item-desc { color: rgba(255,255,255,0.45); font-size: 0.82rem; line-height: 1.4; }
.calc-item-price { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--cyan); white-space: nowrap; flex-shrink: 0; }
.calc-item-price.quote { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.45); }

.calc-total-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: rgba(0,229,255,0.08); border-radius: 12px;
  border: 1px solid rgba(0,229,255,0.2); margin-bottom: 8px;
}
.calc-total-label { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); }
.calc-total-amount { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--cyan); }
.calc-quote-note { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 10px; margin-bottom: 20px; font-style: italic; }
.calc-disclaimer { text-align: center; color: rgba(255,255,255,0.35); font-size: 0.78rem; margin-bottom: 24px; line-height: 1.5; }
.calc-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.calc-cta-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  background: var(--cyan); color: var(--navy); font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 1rem; border: none; border-radius: 10px;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
}
.calc-cta-primary:hover { background: #00f7ff; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,229,255,0.3); }
.calc-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  background: transparent; color: var(--white); font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 0.95rem; border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px; cursor: pointer; transition: all 0.25s; text-decoration: none;
}
.calc-cta-secondary:hover { border-color: var(--cyan); color: var(--cyan); }

/* ─── SUBPAGE SHARED STYLES ─── */
.svc-header, .blog-header, .b2b-header {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 45%, var(--blue) 100%);
  padding: 32px 24px 0;
}
.svc-header-inner, .blog-header-inner, .b2b-header-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.svc-logo, .blog-logo, .b2b-logo {
  text-decoration: none; font-family: 'Outfit'; font-weight: 800; font-size: 1.1rem; color: var(--white);
}
.svc-logo span, .blog-logo span, .b2b-logo span { color: var(--cyan); }
.svc-back, .blog-back, .b2b-back {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem;
  font-family: 'Outfit'; font-weight: 500; transition: color 0.2s;
}
.svc-back:hover, .blog-back:hover, .b2b-back:hover { color: var(--cyan); }
.svc-hero, .blog-hero, .b2b-hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 45%, var(--blue) 100%);
  padding: 48px 24px 56px; text-align: center;
}
.svc-tag, .blog-hero .blog-tag, .b2b-tag {
  display: inline-block; font-family: 'Outfit'; font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  padding: 4px 14px; border-radius: 100px; margin-bottom: 20px;
}
.svc-hero h1, .blog-hero h1, .b2b-hero h1 {
  color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800; max-width: 640px; margin: 0 auto 16px; letter-spacing: -0.02em;
}
.svc-hero .svc-sub, .blog-hero .blog-meta, .b2b-hero p {
  color: rgba(255,255,255,0.55); font-size: 0.95rem; max-width: 560px; margin: 0 auto;
}

/* Subpage article content */
article { max-width: 720px; margin: 0 auto; padding: 56px 24px 40px; }
article h2 { font-size: 1.35rem; font-weight: 700; margin: 36px 0 14px; color: var(--navy); }
article h3 { font-size: 1.1rem; font-weight: 700; margin: 28px 0 10px; color: var(--navy); }
article p { margin-bottom: 18px; font-size: 1.02rem; color: var(--gray-700); }
article ul, article ol { margin: 0 0 18px 24px; color: var(--gray-700); }
article li { margin-bottom: 8px; font-size: 1.02rem; }
.price-highlight {
  background: var(--gray-100); border-left: 4px solid var(--cyan);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0; font-family: 'Outfit'; font-size: 1.1rem; font-weight: 600; color: var(--navy);
}

/* Subpage CTA box */
.svc-cta-box, .blog-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
  margin: 48px 0 0; border: 1px solid rgba(0,212,255,0.15);
}
.svc-cta-box h3, .blog-cta-box h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; }
.svc-cta-box p, .blog-cta-box p { color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.svc-cta-box .cta-btn, .blog-cta-box .cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: var(--navy); padding: 14px 28px; border-radius: 10px;
  font-family: 'Outfit'; font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-cta-box .cta-btn:hover, .blog-cta-box .cta-btn:hover {
  transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,212,255,0.35);
}
.svc-cta-box .cta-phone, .blog-cta-box .cta-phone {
  display: block; margin-top: 16px; color: rgba(255,255,255,0.5); font-size: 0.9rem;
}
.svc-cta-box .cta-phone a, .blog-cta-box .cta-phone a {
  color: var(--cyan); text-decoration: none; font-weight: 600;
}

/* Subpage footers */
.svc-footer, .blog-footer {
  text-align: center; padding: 32px 24px;
  background: var(--navy); color: rgba(255,255,255,0.4); font-size: 0.82rem;
}
.svc-footer a, .blog-footer a { color: var(--cyan); text-decoration: none; }

/* Area page nearby links */
.nearby-areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.nearby-areas a {
  background: var(--gray-100); border: 1px solid var(--gray-200); padding: 8px 18px;
  border-radius: 100px; font-size: 0.85rem; font-weight: 500; color: var(--navy);
  text-decoration: none; transition: all 0.2s;
}
.nearby-areas a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Subpage breadcrumb */
.breadcrumb {
  max-width: 720px; margin: 0 auto; padding: 16px 24px 0;
  font-size: 0.82rem; color: var(--gray-500);
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { margin: 0 6px; }

/* ─── B2B PAGE ─── */
.b2b-header-inner, .b2b-hero h1 { max-width: 900px; }
.b2b-hero h1 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); max-width: 700px; }
.b2b-hero p { color: rgba(255,255,255,0.65); font-size: 1.08rem; }
.b2b-section { max-width: 900px; margin: 0 auto; padding: 64px 24px; }
.b2b-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; text-align: center;
  margin-bottom: 40px; letter-spacing: -0.01em; color: var(--navy);
}
.b2b-section h2 span { color: var(--cyan); }
.b2b-section-alt { background: var(--gray-100); }
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--gray-200); transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.card p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.55; margin: 0; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.benefit { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon {
  font-size: 1.5rem; flex-shrink: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(26,115,232,0.08));
  border-radius: 10px;
}
.benefit h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.benefit p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.5; margin: 0; }
.b2b-section .steps { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.b2b-section .step {
  flex: 1; min-width: 200px; max-width: 280px; text-align: center; padding: 24px;
}
.b2b-section .step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white); font-family: 'Outfit'; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.b2b-section .step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.b2b-section .step p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.55; margin: 0; }
.b2b-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 72px 24px; text-align: center;
}
.b2b-cta h2 { color: var(--white); font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 14px; }
.b2b-cta p { color: rgba(255,255,255,0.6); font-size: 1.02rem; max-width: 520px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Outfit'; font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn-primary { background: var(--cyan); color: var(--navy); }
.cta-btn-primary:hover { box-shadow: 0 4px 20px rgba(0,212,255,0.35); }
.cta-btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.cta-btn-outline:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 4px 20px rgba(0,212,255,0.15); }
.cta-note { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 20px; }
.b2b-footer {
  text-align: center; padding: 32px 24px;
  background: var(--navy); color: rgba(255,255,255,0.4); font-size: 0.82rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.b2b-footer a { color: var(--cyan); text-decoration: none; }
@media (max-width: 640px) {
  .b2b-hero { padding: 40px 20px 48px; }
  .b2b-section { padding: 48px 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .b2b-section .steps { flex-direction: column; align-items: center; }
  .b2b-section .step { max-width: 100%; }
  .b2b-cta { padding: 56px 20px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ─── 404 PAGE ─── */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 45%, var(--blue) 100%);
  text-align: center; padding: 40px 24px;
}
.error-page h1 { font-size: clamp(4rem, 10vw, 8rem); font-weight: 900; color: var(--cyan); margin-bottom: 16px; }
.error-page h2 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.error-page p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .referral-steps { gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 540px; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .calc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: rgba(15,27,45,0.98); padding: 24px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
    animation: fadeInUp 0.3s ease;
  }
  .hero { min-height: auto; padding-top: var(--nav-height); padding-bottom: 40px; }
  .hero-inner { padding: 60px 24px; }
  .hero-card { padding: 28px 24px; }
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 64px 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary, .btn-green { width: 100%; justify-content: center; }
  .trust-inner { gap: 24px; }
  .cta-contact-row { flex-direction: column; align-items: center; }
  .portal-features { grid-template-columns: 1fr; max-width: 400px; }
  .portal-login-box { padding: 32px 24px; }
  .portal-form { flex-direction: column; }
  .referral-amount { font-size: 2.5rem; }
  .referral-steps { flex-direction: column; align-items: center; }
  .whatsapp-float { bottom: 80px; right: 20px; width: 54px; height: 54px; }
  .back-to-top { bottom: 148px; right: 20px; }
  .status-form { flex-direction: column; }
  .status-form input { min-width: 0; width: 100%; }
  .status-result-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .calc-card { padding: 18px 12px; }
  .calc-card-icon { font-size: 1.6rem; }
  .calc-card-name { font-size: 0.85rem; }
  .calc-card-price { font-size: 0.95rem; }
  .calc-results-inner { padding: 20px 16px; }
  .calc-total-bar { flex-direction: column; gap: 4px; text-align: center; }
  .calc-cta-row { flex-direction: column; align-items: center; }
  .calc-cta-primary, .calc-cta-secondary { width: 100%; justify-content: center; }
  .calc-item { flex-wrap: wrap; }
  .calc-item-price { width: 100%; text-align: right; }
  /* Subpage responsive */
  article { padding: 40px 20px 32px; }
  .svc-cta-box, .blog-cta-box { padding: 32px 20px; }
  /* Show mobile CTA bar */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 400px) {
  .calc-grid { grid-template-columns: 1fr; }
}

/* ─── SOCIAL PROOF TICKER ─── */
.proof-ticker {
  overflow: hidden; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0; white-space: nowrap;
}
.proof-ticker-track {
  display: inline-flex; gap: 40px;
  animation: tickerScroll 40s linear infinite;
}
.proof-item {
  font-size: 0.8rem; color: rgba(255,255,255,0.45); font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.proof-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); opacity: 0.6; flex-shrink: 0;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .proof-ticker-track { animation: none; }
}

/* ─── SERVICE COMPARISON TABLE ─── */
.compare-table-wrap { max-width: 800px; margin-left: auto; margin-right: auto; }
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 0.9rem;
}
.compare-table th {
  text-align: left; padding: 10px 16px; font-family: 'Outfit'; font-weight: 700;
  color: var(--cyan); border-bottom: 2px solid rgba(0,212,255,0.3); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.compare-table td {
  padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.75);
}
.compare-table td a { color: var(--cyan); text-decoration: none; font-weight: 500; }
.compare-table td a:hover { text-decoration: underline; }
.compare-table tbody tr:hover { background: rgba(0,212,255,0.04); }
@media (max-width: 600px) {
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 8px 10px; }
}

/* ─── QUICK QUOTE FORM ─── */
.quick-quote {
  max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px;
}
.qq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.qq-field { display: flex; flex-direction: column; gap: 6px; }
.qq-field label { font-family: 'Outfit'; font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.qq-field input, .qq-field select, .qq-field textarea {
  padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 10px;
  font-family: 'DM Sans'; font-size: 0.95rem; color: var(--navy);
  background: var(--white); outline: none; transition: border-color 0.2s;
}
.qq-field input:focus, .qq-field select:focus, .qq-field textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.qq-field textarea { resize: vertical; min-height: 80px; }
.qq-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 10px; background: var(--cyan); color: var(--navy);
  font-family: 'Outfit'; font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; align-self: center; margin-top: 4px;
}
.qq-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,212,255,0.35); }
.qq-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.qq-status { text-align: center; font-size: 0.9rem; font-weight: 600; min-height: 1.4em; }
.qq-status.success { color: var(--green); }
.qq-status.error { color: var(--red); }
@media (max-width: 600px) {
  .qq-row { grid-template-columns: 1fr; }
}

/* ─── HUB PAGE GRID (Services + Areas index) ─── */
.svc-hub-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin: 32px 0 40px;
}
.svc-hub-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px; border-radius: var(--radius); text-decoration: none; color: var(--navy);
  background: var(--gray-100); border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.svc-hub-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}
.svc-hub-icon { font-size: 2rem; line-height: 1; }
.svc-hub-card h3 { font-family: 'Outfit'; font-size: 1.05rem; font-weight: 700; margin: 0; }
.svc-hub-card p { font-size: 0.88rem; color: var(--gray-700); margin: 0; line-height: 1.5; }
.svc-hub-price { font-family: 'Outfit'; font-weight: 700; font-size: 0.9rem; color: var(--blue); margin-top: auto; }

/* Steps (areas index "How It Works") */
.svc-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin: 24px 0 40px; }
.svc-step { text-align: center; padding: 20px; }
.svc-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cyan); color: var(--navy); font-family: 'Outfit';
  font-weight: 800; font-size: 1.1rem; margin-bottom: 12px;
}
.svc-step h3 { font-family: 'Outfit'; font-size: 1rem; font-weight: 700; margin: 0 0 6px; }
.svc-step p { font-size: 0.88rem; color: var(--gray-700); margin: 0; }

@media (max-width: 600px) {
  .svc-hub-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc-hub-card { padding: 16px; }
  .svc-hub-icon { font-size: 1.5rem; }
  .svc-hub-card h3 { font-size: 0.95rem; }
}
@media (max-width: 380px) {
  .svc-hub-grid { grid-template-columns: 1fr; }
}

/* ─── SCROLL-DRIVEN FADE-IN (progressive enhancement) ─── */
@supports (animation-timeline: view()) {
  .animate-on-scroll {
    animation: scrollFadeIn linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 30%;
  }
  @keyframes scrollFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* Disable JS-based class toggling when native scroll animations are available */
  .animate-on-scroll.visible { animation: scrollFadeIn linear both; animation-timeline: view(); animation-range: entry 0% entry 30%; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .animate-on-scroll { opacity: 1; transform: none; }
}

/* ─── PROMO BANNER ─── */
.promo-banner {
  display: none;
  width: 100%;
  padding: 0.75rem 1.5rem;
  text-align: center;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  z-index: 90;
  animation: slideDown 0.35s ease-out;
}
.promo-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.5rem;
}
.promo-banner a:hover { opacity: 0.85; }
.promo-banner-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}
.promo-banner-close:hover { color: #fff; }
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 600px) {
  .promo-banner { font-size: 0.85rem; padding: 0.6rem 2.5rem 0.6rem 1rem; }
}

/* ─── PRINT STYLES ─── */
@media print {
  .nav, .whatsapp-float, .back-to-top, .mobile-cta-bar,
  .modal-overlay, .referral-overlay, .terms-overlay,
  .cta-section, .mobile-toggle { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; }
  .hero { min-height: auto; background: none; color: #000; padding-top: 0; }
  .hero h1, .hero h1 .highlight { color: #000; -webkit-text-fill-color: #000; }
  .section-dark { background: #f5f5f5; color: #000; }
  a { color: #000; text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
