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

:root {
  --blue:        #1d3461;
  --blue-light:  #274a8a;
  --blue-dark:   #0e1e3d;
  --orange:      #f47920;
  --orange-dark: #d9680f;
  --orange-glow: rgba(244,121,32,0.12);
  --orange-soft: rgba(244,121,32,0.08);
  --light:       #f6f8fc;
  --white:       #ffffff;
  --text:        #1a2e4a;
  --muted:       #64748b;
  --muted-light: #94a3b8;
  --border:      #e4e9f0;
  --border-soft: #f0f3f8;
  --card-shadow: 0 2px 16px rgba(15,30,60,0.07), 0 1px 4px rgba(15,30,60,0.04);
  --card-shadow-hover: 0 12px 40px rgba(15,30,60,0.13), 0 4px 12px rgba(15,30,60,0.06);
  --radius-xs:   8px;
  --radius-sm:   10px;
  --radius-icon: 12px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }

h1,h2,h3,h4 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.stagger .fade-up:nth-child(1) { transition-delay: 0.04s; }
.stagger .fade-up:nth-child(2) { transition-delay: 0.10s; }
.stagger .fade-up:nth-child(3) { transition-delay: 0.16s; }
.stagger .fade-up:nth-child(4) { transition-delay: 0.22s; }
.stagger .fade-up:nth-child(5) { transition-delay: 0.28s; }
.stagger .fade-up:nth-child(6) { transition-delay: 0.34s; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(244,121,32,0.38);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(244,121,32,0.48);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(29,52,97,0.22);
}
.btn-dark:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(29,52,97,0.3);
}
.btn-call {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-call:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
  border-radius: var(--radius);
}

/* ========== SECTION LABELS ========== */
.label {
  display: inline-block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.8vw, 42px);
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.78;
}

/* ========== HEADER / NAV ========== */
header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(228,233,240,0.7);
  z-index: 1000;
  transition: box-shadow var(--transition);
  overflow: visible;
}
header.scrolled { box-shadow: 0 4px 32px rgba(14,30,61,0.10); }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 88px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 164px;
  width: auto;
  display: block;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
  padding: 6px 0;
  letter-spacing: 0.01em;
}
.menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}
.menu a:hover { color: var(--text); }
.menu a.active { color: var(--orange); font-weight: 600; }
.menu a:hover::after,
.menu a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: -0.02em;
}
.mobile-nav a.active { color: var(--orange); }
.mobile-nav a:hover  { color: var(--orange); }

/* ========== PAGE BANNER (inner pages) ========== */
.page-banner {
  background:
    linear-gradient(120deg, rgba(10,20,45,0.88) 0%, rgba(14,30,61,0.78) 50%, rgba(14,30,61,0.65) 100%),
    var(--blue-dark) center / cover no-repeat;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-breadcrumb { display: none; }
.page-banner h1 {
  font-size: clamp(24px, 4vw, 42px);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.page-banner h1 span { color: var(--orange); }
.page-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== HERO (home page) ========== */
.hero {
  background:
    linear-gradient(100deg,
      rgba(8,16,38,0.97) 0%,
      rgba(12,24,52,0.94) 42%,
      rgba(12,24,52,0.80) 65%,
      rgba(8,16,38,0.55) 100%),
    url('images/hero.jpeg') center / cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 56px;
  width: 100%;
}

.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,121,32,0.14);
  border: 1px solid rgba(244,121,32,0.35);
  color: #ffb87a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white);
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  line-height: 1.08;
}
.hero h1 span { color: var(--orange); }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 460px;
}

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

/* Trust bar pinned to bottom of hero */
.hero-stats-bar {
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
}
.hero-trust-item .ti {
  font-size: 18px;
  flex-shrink: 0;
}
.hero-trust-sep {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.trust-icon { font-size: 20px; }

/* ========== WHY CHOOSE ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
}
.why-card:hover {
  border-color: rgba(244,121,32,0.25);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}
.why-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.why-card:hover .why-card-img { transform: scale(1.05); }
.why-card-body {
  padding: 24px 24px 28px;
}
.why-icon {
  width: 46px; height: 46px;
  background: var(--orange-soft);
  border-radius: var(--radius-icon);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background var(--transition);
}
.why-card:hover .why-icon { background: var(--orange-glow); }
.why-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.why-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ========== SERVICES ========== */
.services-bg { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(244,121,32,0.25);
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img { transform: scale(1.04); }
.service-card-body {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
}
.service-icon-wrap {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--blue);
  border-radius: var(--radius-icon);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  transition: background var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--blue-light); }
.service-info { min-width: 0; flex: 1; }
.service-info h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -0.01em; }
.service-info p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ========== PLANS ========== */
/* Banner */
.plans-banner { padding: 44px 0 36px; }
.plans-banner-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.plans-banner-tag {
  display: inline-block;
  background: rgba(244,121,32,0.18);
  color: #ffb07a;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.13em;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(244,121,32,0.28);
  margin-bottom: 12px;
}
.plans-banner-inner h1 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 800; color: var(--white); margin-bottom: 8px; line-height: 1.15; }
.plans-banner-inner h1 span { color: var(--orange); }
.plans-banner-inner p  { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 16px; }
.plans-banner-perks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px;
}
.plans-banner-perks span {
  font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500;
}

/* Grid */
.plans-section { background: var(--light); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  box-shadow: 0 2px 16px rgba(15,30,60,0.06);
}
.plan-card:hover {
  box-shadow: 0 20px 52px rgba(15,30,60,0.13), 0 4px 12px rgba(15,30,60,0.06);
  transform: translateY(-6px);
  border-color: rgba(29,52,97,0.18);
}
.plan-card.featured {
  border: 2px solid var(--orange);
  background: linear-gradient(170deg, #fff9f5 0%, var(--white) 55%);
  box-shadow: 0 8px 40px rgba(244,121,32,0.14), 0 2px 8px rgba(244,121,32,0.08);
}
.plan-card.featured:hover {
  box-shadow: 0 24px 60px rgba(244,121,32,0.22), 0 4px 12px rgba(244,121,32,0.1);
  transform: translateY(-8px);
}
.plan-card.plan-elite {
  border: 1px solid rgba(29,52,97,0.25);
  background: linear-gradient(170deg, #f4f7fb 0%, var(--white) 60%);
}

/* Badge */
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(244,121,32,0.45);
}

/* Card header */
.plan-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.plan-icon { font-size: 26px; line-height: 1; }
.plan-name {
  font-size: 13px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.featured .plan-name { color: var(--orange); }

/* Price */
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 10px; }
.plan-currency { font-size: 17px; font-weight: 700; color: var(--orange); align-self: flex-start; padding-top: 8px; }
.plan-amount   { font-size: 52px; font-weight: 900; color: var(--text); letter-spacing: -0.05em; line-height: 1; }
.plan-period   { font-size: 14px; color: var(--muted); margin-left: 2px; }

/* Content */
.plan-tagline  { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.65; }
.plan-divider  { height: 1px; background: var(--border); margin-bottom: 22px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 0; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text); line-height: 1.55; }
.plan-features li .check  { color: #22c55e; font-size: 13px; line-height: 1.6; flex-shrink: 0; font-weight: 700; }
.plan-features li .cross  { color: #d1dae6; font-size: 13px; line-height: 1.6; flex-shrink: 0; }
.plan-features li .grayed { color: var(--muted-light); }
.plan-features li strong  { font-weight: 600; }

/* Footer */
.plan-footer { margin-top: 28px; }
.plan-cta  { width: 100%; text-align: center; justify-content: center; padding: 14px 20px; font-size: 14px; letter-spacing: -0.01em; }
.plan-cta:hover { transform: translateY(-2px); }
.plan-note { font-size: 12px; color: var(--muted-light); text-align: center; margin-top: 10px; }
.plans-footnote { text-align: center; margin-top: 36px; font-size: 13px; color: var(--muted); max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.plans-unsure { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; padding: 18px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); max-width: 680px; margin-left: auto; margin-right: auto; }
.plans-unsure span { font-size: 14px; font-weight: 600; color: var(--navy); }

/* Help section */
.plans-help-section { background: var(--white); padding: 80px 0; }
.plans-help-box {
  background: linear-gradient(135deg, #f4f7fb 0%, #eef2f9 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.plans-help-icon { font-size: 44px; margin-bottom: 20px; display: block; }
.plans-help-box h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--text); margin-bottom: 16px; letter-spacing: -0.02em; }
.plans-help-box p  { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.plans-help-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== PROCESS ========== */
.hiw-section {
  background: linear-gradient(160deg, #f4f7fb 0%, #eef2f9 60%, #f8f0e8 100%);
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}
.step-connector::after {
  content: '→';
  font-size: 22px;
  color: var(--orange);
  opacity: 0.5;
  font-weight: 300;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(15,30,60,0.08), 0 1px 4px rgba(15,30,60,0.04);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.step:hover {
  box-shadow: 0 16px 48px rgba(15,30,60,0.14), 0 4px 12px rgba(15,30,60,0.06);
  transform: translateY(-4px);
  border-color: rgba(244,121,32,0.3);
}
.step-icon {
  font-size: 26px;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  margin: 0 auto 12px;
  box-shadow: 0 4px 16px rgba(244,121,32,0.35);
  letter-spacing: -0.02em;
}
.step:hover .step-num {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(244,121,32,0.45);
}
.step h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -0.01em; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ========== ABOUT ========== */

/* Shared tag pill (used on about + plans banners) */
.page-tag {
  display: inline-block;
  background: rgba(244,121,32,0.18);
  color: #ffb07a;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(244,121,32,0.3);
  margin-bottom: 20px;
}
/* Section tag (light, used on white/light backgrounds) */
.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px;
}

/* About Banner */
.about-banner { padding: 44px 0 36px; }
.about-banner-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.about-banner-inner h1 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800; color: var(--white);
  margin-bottom: 8px; line-height: 1.15;
  letter-spacing: -0.02em;
}
.about-banner-inner h1 span { color: var(--orange); }
.about-banner-inner p  { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* About Story */
.about-story-section { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-text h2 {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--text); margin-bottom: 22px;
  letter-spacing: -0.03em; line-height: 1.1;
}
.about-text p  { font-size: 15px; color: var(--muted); margin-bottom: 18px; line-height: 1.85; }
.about-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 13px; margin-bottom: 34px;
}
.about-list li {
  display: flex; align-items: flex-start; gap: 13px;
  font-size: 14.5px; color: var(--text); line-height: 1.6;
}
.about-list li strong { font-weight: 600; }
.al-icon {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(34,197,94,0.12);
  color: #16a34a;
  font-weight: 800; font-size: 11px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* About section heading block */
.about-section-head { text-align: center; margin-bottom: 40px; }
.about-section-head .section-title { margin-top: 0; }

/* About Values */
.about-values-section { background: var(--light); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(15,30,60,0.06);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.value-card:hover {
  box-shadow: 0 16px 44px rgba(15,30,60,0.12), 0 4px 10px rgba(15,30,60,0.05);
  transform: translateY(-5px);
  border-color: rgba(244,121,32,0.22);
}
.value-card-img-wrap { overflow: hidden; height: 180px; flex-shrink: 0; }
.value-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.value-card:hover .value-card-img-wrap img { transform: scale(1.06); }
.value-card-body { padding: 26px 24px 28px; flex: 1; }
.value-icon {
  width: 48px; height: 48px;
  background: var(--orange-soft);
  border-radius: var(--radius-icon);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
  transition: background var(--transition);
}
.value-card:hover .value-icon { background: var(--orange-glow); }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.value-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.72; }

/* Coverage */
.about-coverage-section { background: var(--white); }
.about-coverage-foot {
  text-align: center; margin-top: 40px;
}
.about-coverage-foot p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }

.about-placeholder {
  background: var(--light);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  height: 420px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: var(--muted); font-size: 14px;
}
.about-placeholder .icon { font-size: 48px; }

/* ========== FAQ ========== */
.faq-banner { padding: 44px 0 36px; }
.faq-banner-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.faq-banner-inner h1 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800; color: var(--white);
  margin-bottom: 8px; line-height: 1.15;
  letter-spacing: -0.02em;
}
.faq-banner-inner h1 span { color: var(--orange); }
.faq-banner-inner p { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.6; }

.faq-section { background: var(--light); }
.faq-intro { text-align: center; margin-bottom: 32px; }
.faq-intro .section-title { margin-top: 0; }

/* Category groups */
.faq-group { max-width: 820px; margin: 0 auto 40px; }
.faq-group:last-of-type { margin-bottom: 0; }
.faq-group-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
  padding-left: 4px;
}
.faq-group-icon { font-size: 15px; }

/* FAQ list & items */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(15,30,60,0.05);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(15,30,60,0.09);
  border-color: rgba(29,52,97,0.15);
}
.faq-item.open {
  box-shadow: 0 6px 28px rgba(15,30,60,0.10);
  border-color: rgba(244,121,32,0.28);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 15.5px; font-weight: 600;
  color: var(--text);
  gap: 20px;
  user-select: none;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.faq-item.open .faq-q { color: var(--blue); }
.faq-chevron {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--light);
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
}
.faq-chevron::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform var(--transition), border-color var(--transition), margin-top var(--transition);
}
.faq-item.open .faq-chevron {
  background: var(--orange-glow);
  border-color: rgba(244,121,32,0.28);
}
.faq-item.open .faq-chevron::before {
  transform: rotate(-135deg);
  margin-top: 3px;
  border-color: var(--orange);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.faq-a-inner {
  padding: 4px 24px 24px;
  font-size: 15px; color: var(--muted); line-height: 1.82;
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
}
.faq-a-inner strong { color: var(--text); font-weight: 600; }
.faq-item.open .faq-a { max-height: 320px; }

/* Still have a question box */
.faq-help-box {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 820px; margin: 56px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: 0 2px 16px rgba(15,30,60,0.07);
  flex-wrap: wrap;
}
.faq-help-icon { font-size: 42px; flex-shrink: 0; }
.faq-help-text { flex: 1; min-width: 200px; }
.faq-help-text h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -0.02em; }
.faq-help-text p  { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
.faq-help-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ========== COVERAGE ========== */
.coverage-inner {
  display: block;
}
.coverage-map {
  background: var(--light);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: var(--muted); font-size: 14px;
}
.coverage-map .icon { font-size: 48px; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 0;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 14px 22px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: 0 2px 12px rgba(15,30,60,0.06);
}
.city-card:hover {
  box-shadow: 0 12px 36px rgba(15,30,60,0.12), 0 3px 8px rgba(15,30,60,0.05);
  border-color: rgba(244,121,32,0.3);
  transform: translateY(-4px);
}
.city-card-icon {
  font-size: 28px;
  width: 54px; height: 54px;
  background: var(--orange-soft);
  border-radius: var(--radius-icon);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: background var(--transition);
}
.city-card:hover .city-card-icon { background: var(--orange-glow); }
.city-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.city-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ========== CONTACT ========== */
.contact-bg { background: var(--light); }

/* Info cards row */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 0;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.contact-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
  border-color: transparent;
}
.contact-card-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  line-height: 1;
  margin: 0 auto 18px;
}
.contact-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.contact-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.contact-card-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--transition);
}
.contact-card-link:hover { border-color: var(--orange); }

/* New 3-card contact row */
.contact-cards-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.contact-card-new {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(14,30,61,0.08);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-card-new:hover {
  box-shadow: 0 8px 48px rgba(14,30,61,0.14);
  transform: translateY(-4px);
}
.ccn-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  flex-shrink: 0;
}
.ccn-icon svg {
  width: 28px; height: 28px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ccn-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ccn-info {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  display: block;
}
.ccn-link {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.ccn-link:hover { color: var(--orange); }

/* Full-width form */
.contact-form-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: 0 4px 40px rgba(14,30,61,0.07);
  border: 1px solid var(--border);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.01em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  line-height: 1.5;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3.5px var(--orange-soft);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; font-size: 15px; justify-content: center; }

/* ========== SERVICES PAGE — BANNER ========== */
.svc-banner { padding: 44px 0 36px; }
.svc-banner-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.svc-banner-inner h1 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 800; color: var(--white); margin-bottom: 8px; line-height: 1.15; letter-spacing: -0.02em; }
.svc-banner-inner h1 span { color: var(--orange); }
.svc-banner-inner p { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ========== SERVICES PAGE — CARD GRID ========== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.svc-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
  border-color: rgba(244,121,32,0.22);
}
.svc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}
.svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.05); }
.svc-icon-badge {
  position: absolute;
  bottom: 14px; left: 16px;
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--radius-icon);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}
.svc-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.svc-body > p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.svc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
  flex: 1;
}
.svc-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.svc-bullets li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; min-width: 18px;
  background: rgba(34,197,94,0.1);
  color: #16a34a;
  font-weight: 800; font-size: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-cta {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 12px 20px;
}

/* ========== SERVICES PAGE — WHY CHOOSE ========== */
.svc-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.svc-why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px 26px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.svc-why-item:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(244,121,32,0.2);
}
.svc-why-icon {
  font-size: 32px;
  width: 60px; height: 60px;
  background: var(--orange-soft);
  border-radius: var(--radius-icon);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.svc-why-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.svc-why-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ========== SERVICES PAGE — PLAN PERKS ========== */
.svc-plan-perks {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.svc-plan-perks span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 18px;
  border-radius: 100px;
}

/* ========== SERVICES INLINE CTA ========== */
.services-cta-inline { padding: 0 0 80px; }
.services-cta-box {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.services-cta-box::before {
  content: '';
  position: absolute;
  top: -60%; right: -5%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(244,121,32,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.services-cta-text { flex: 1; min-width: 260px; position: relative; }
.services-cta-text h2 {
  font-size: clamp(20px, 2.8vw, 28px);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.services-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
}
.services-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
  position: relative;
}
.btn-wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: #1fba58;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
}


/* ========== QUICK QUOTE SECTION ========== */
.quote-section {
  background: var(--light);
  padding: 96px 0;
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quote-text h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.quote-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.quote-points { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 0; }
.quote-points li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text); font-weight: 500;
}
.quote-points li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(34,197,94,0.12);
  color: #16a34a;
  font-weight: 800; font-size: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.quote-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 8px 48px rgba(14,30,61,0.09);
  border: 1px solid var(--border);
}
.quote-form-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.quote-form-box p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(244,121,32,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.cta-banner p  { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 38px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ========== FOOTER ========== */
footer { background: var(--blue-dark); padding: 32px 0 0; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.50);
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 270px;
}
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.09);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.footer-logo { display: block; margin-top: 0; }
.footer-logo img { height: 160px !important; width: auto !important; max-width: none !important; object-fit: contain; filter: brightness(0) invert(1); }

/* Nav columns */
.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

/* Contact column */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}
.footer-contact-icon {
  width: 28px; height: 28px; min-width: 28px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Bottom bar */
.footer-bottom {
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  position: relative;
}
.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -9999px; right: -9999px;
  background: rgba(0,0,0,0.3);
  z-index: 0;
}
.footer-bottom > * { position: relative; z-index: 1; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a {
  font-size: 12.5px; color: rgba(255,255,255,0.28); text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ========== FLOATING WHATSAPP ========== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.12);
  z-index: 9999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-enter 0.6s 1.5s both cubic-bezier(0.34,1.56,0.64,1);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.15);
}
@keyframes wa-enter {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ========== IMAGE HELPERS ========== */
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 28px 72px rgba(0,0,0,0.15);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 60%; height: 60%;
  border: 3px solid rgba(244,121,32,0.18);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: -1;
}
.coverage-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ========== GLOBAL SAFETY RULES ========== */
img { max-width: 100%; height: auto; }
.btn { min-height: 44px; }

/* ========== HOME PAGE — SECTION HEADER ========== */
.section-head { margin-bottom: 56px; }
.section-head .section-sub { margin-bottom: 0; }
.section-head[style*="text-align:center"] .label,
.section-head[style*="text-align: center"] .label { display: table; margin-left: auto; margin-right: auto; }

/* ========== HOME PAGE — CORE CATEGORIES ========== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.cat-img-wrap { position: relative; overflow: hidden; }
.cat-img-wrap img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.05); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(10,20,45,0.55) 100%); }
.cat-icon-badge {
  position: absolute; bottom: 14px; left: 16px;
  font-size: 26px; line-height: 1;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.cat-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cat-body h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.cat-body p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.cat-body .btn { align-self: flex-start; font-size: 13px; padding: 10px 20px; }

/* ========== HOME PAGE — CONTRACT SECTION ========== */
.contract-section { background: linear-gradient(135deg, #f4f7fb 0%, #eef2f9 60%, #f0edf8 100%); }
.contract-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contract-text h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--text); margin-bottom: 16px; }
.contract-text > p { font-size: 15.5px; color: var(--muted); line-height: 1.78; margin-bottom: 32px; }
.contract-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contract-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.contract-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.contract-img img {
  width: 100%; border-radius: var(--radius-xl);
  object-fit: cover; height: 480px;
  box-shadow: 0 24px 64px rgba(14,30,61,0.14);
}

/* ========== HOME PAGE — SERVICES ICON GRID ========== */
.svc-icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.svc-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default;
}
.svc-icon-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); border-color: var(--orange); }
.svc-icon-wrap { font-size: 34px; line-height: 1; }
.svc-icon-card span { font-size: 13px; font-weight: 600; color: var(--text); }

/* ========== HOME PAGE — WHY SECTION ========== */
.why-section { background: var(--blue-dark); }
.why-section .section-title,
.why-section .section-sub { color: rgba(255,255,255,0.9); }
.why-section .label { background: rgba(244,121,32,0.18); color: #ffb07a; border-color: rgba(244,121,32,0.28); }
.why-section .section-sub { color: rgba(255,255,255,0.6); }
.why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: background var(--transition), border-color var(--transition);
}
.why-point:hover { background: rgba(255,255,255,0.08); border-color: rgba(244,121,32,0.3); }
.wp-icon { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.wp-text h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.wp-text p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ========== HOME PAGE — PLANS (SIMPLIFIED) ========== */
.home-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}
.home-plan-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.home-plan-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.hp-featured { border-color: var(--orange); box-shadow: 0 8px 32px rgba(244,121,32,0.14); }
.hp-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.hp-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hp-icon { font-size: 28px; }
.hp-name { font-size: 18px; font-weight: 800; color: var(--text); }
.hp-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 8px; }
.hp-cur { font-size: 15px; font-weight: 700; color: var(--muted); }
.hp-amt { font-size: 42px; font-weight: 900; color: var(--text); letter-spacing: -0.03em; line-height: 1; }
.hp-per { font-size: 14px; color: var(--muted); }
.hp-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.hp-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 24px; }
.hp-features li { font-size: 13.5px; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }
.hp-cta { width: 100%; justify-content: center; font-size: 14px; }

/* ========== PROJECT CONTRACTING SECTION (dark navy) ========== */
.contracting-section { background: var(--blue-dark); }
.contracting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contracting-label { background: rgba(244,121,32,0.18); color: #ffb07a; border-color: rgba(244,121,32,0.28); }
.contracting-heading { font-size: clamp(28px, 3.8vw, 44px); color: var(--white); margin-bottom: 10px; line-height: 1.1; letter-spacing: -0.03em; }
.contracting-sub { font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.55); margin-bottom: 20px; letter-spacing: -0.01em; }
.contracting-body { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 28px; }
.contracting-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }
.contracting-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.85); }
.cl-icon {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(244,121,32,0.22); color: var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; margin-top: 2px;
}
.contracting-img img {
  width: 100%; border-radius: var(--radius-xl);
  height: 460px; object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.32);
}

/* ========== MAINTENANCE CONTRACTS SECTION (white/light) ========== */
.maintenance-section { background: var(--white); }
.maintenance-head { text-align: center; margin-bottom: 44px; }

.mc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.mc-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.mc-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.mc-card-navy { border-color: var(--blue); box-shadow: 0 4px 20px rgba(29,52,97,0.1); }
.mc-card-navy:hover { border-color: var(--blue-light); box-shadow: 0 12px 40px rgba(29,52,97,0.15); }
.mc-featured { border-color: var(--orange); box-shadow: 0 8px 32px rgba(244,121,32,0.14); }
.mc-featured:hover { box-shadow: 0 16px 48px rgba(244,121,32,0.2); }
.mc-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.mc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.mc-icon { font-size: 32px; line-height: 1; }
.mc-name { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.mc-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.mc-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.mc-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 28px; }
.mc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.mc-check {
  width: 20px; height: 20px; min-width: 20px;
  background: rgba(34,197,94,0.12); color: #16a34a;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; margin-top: 1px;
}
.mc-cta { width: 100%; justify-content: center; font-size: 14px; }

/* ========== REDESIGNED PLANS SECTION ========== */

/* Plans Hero */
.plans-hero {
  background: linear-gradient(135deg, #080f26 0%, #0d1c40 60%, #111433 100%);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.plans-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(244,121,32,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.plans-hero-inner { position: relative; max-width: 640px; margin: 0 auto; }
.plans-hero-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}
.plans-hero-title {
  font-size: clamp(44px, 7vw, 72px); font-weight: 900;
  color: var(--white); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 20px;
}
.plans-hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75;
  max-width: 500px; margin: 0 auto;
}

/* Shared tag used in both sections */
.plans-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: #ffb07a; margin-bottom: 18px;
}
.plans-tag-dark {
  color: var(--orange);
}

/* Shared section title */
.plans-section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  color: var(--white); letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 10px;
}
.plans-section-title-dark { color: var(--text); }

/* ── Project Contracting ── */
.plans-contracting-section {
  background: var(--blue-dark);
  padding: 80px 0;
}
.plans-contracting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.plans-tagline {
  font-size: 17px; font-weight: 600;
  color: rgba(255,255,255,0.45); letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.plans-body {
  font-size: 15px; color: rgba(255,255,255,0.68);
  line-height: 1.85; margin-bottom: 32px;
}
.plans-checklist {
  list-style: none; display: flex; flex-direction: column;
  gap: 14px; margin-bottom: 40px;
}
.plans-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.85);
}
.plans-check {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(244,121,32,0.2); color: var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; margin-top: 2px;
}
.plans-contracting-img img {
  width: 100%; border-radius: 20px;
  height: 500px; object-fit: cover;
  box-shadow: 0 32px 80px rgba(0,0,0,0.38);
}

/* ── Annual Maintenance ── */
.plans-maintenance-section {
  background: #f8f9fc;
  padding: 80px 0;
}
.plans-maint-head {
  text-align: center; max-width: 620px; margin: 0 auto 48px;
}
.plans-maint-sub-title {
  font-size: 22px; font-weight: 700; color: var(--blue);
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.plans-maint-body {
  font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px;
}
.plans-maint-intro {
  font-size: 14px; font-weight: 600; color: var(--text);
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px;
}

/* ── Plan Cards ── */
.plans-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 44px;
}
.plans-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 32px 36px;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.plans-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.plans-card-featured {
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(244,121,32,0.15);
}
.plans-card-featured:hover {
  box-shadow: 0 24px 64px rgba(244,121,32,0.22);
}
.plans-card-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 100px; white-space: nowrap;
}
.plans-card-top { margin-bottom: 4px; }
.plans-card-icon { font-size: 36px; margin-bottom: 14px; line-height: 1; }
.plans-card-name {
  font-size: 20px; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.plans-card-desc {
  font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 0;
}
.plans-card-divider {
  height: 1px; background: #e8ecf2;
  margin: 22px 0;
}
.plans-card-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; flex: 1; margin-bottom: 30px;
}
.plans-card-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text); line-height: 1.5;
}
.pcf-check {
  width: 20px; height: 20px; min-width: 20px;
  background: rgba(29,52,97,0.08); color: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 800; margin-top: 1px;
}
.plans-card-featured .pcf-check {
  background: rgba(244,121,32,0.12); color: var(--orange);
}
.plans-card-cta {
  display: block; text-align: center; text-decoration: none;
  padding: 13px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
  background: var(--blue-dark); color: var(--white);
  border: 2px solid var(--blue-dark);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-top: auto;
}
.plans-card-cta:hover {
  background: var(--blue); border-color: var(--blue);
}
.plans-card-cta-featured {
  background: var(--orange); border-color: var(--orange);
}
.plans-card-cta-featured:hover {
  background: #e06a10; border-color: #e06a10;
}
.plans-footnote {
  text-align: center; font-size: 13px; color: var(--muted);
  line-height: 1.7; max-width: 560px; margin: 0 auto;
}

/* ========== HOME PAGE — STRONG CTA ========== */
.home-cta-section {
  background: linear-gradient(120deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  padding: 88px 0;
}
.home-cta-inner { text-align: center; }
.home-cta-text h2 { font-size: clamp(28px, 4vw, 46px); color: var(--white); margin-bottom: 14px; line-height: 1.12; letter-spacing: -0.03em; }
.home-cta-sub { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.home-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== RESPONSIVE ========== */

/* ---- 1280px: Large laptop ---- */
@media (max-width: 1280px) {
  .plans-grid { gap: 18px; }
  .about-inner { gap: 64px; }
  .cat-grid { gap: 18px; }
  .plans-contracting-inner { gap: 56px; }
}

/* ---- 1024px: Tablet landscape / small laptop ---- */
@media (max-width: 1024px) {
  .container { width: 92%; }
  .section { padding: 72px 0; }

  /* Plans redesign */
  .plans-contracting-inner { grid-template-columns: 1fr; gap: 48px; }
  .plans-contracting-img img { height: 360px; }
  .plans-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .plans-cards-grid .plans-card:last-child { grid-column: 1 / -1; max-width: 460px; margin: 0 auto; width: 100%; }

  /* Hero */
  .hero-inner { padding: 80px 0 52px; }

  /* Home page new grids */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why-points { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .svc-icons-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .home-plans-grid { gap: 18px; }
  .contract-inner { gap: 48px; }
  .mc-grid { gap: 18px; }
  .contracting-inner { gap: 52px; }

  /* Index grids */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  /* Services page */
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .svc-why-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  /* Plans */
  .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .quote-inner { grid-template-columns: 1fr; gap: 48px; }

  /* About */
  .value-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .about-inner { gap: 52px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 32px; align-items: flex-start; }
  .footer-desc { max-width: 340px; margin-bottom: 0; }
  .footer-logo { margin-top: 0; }
}

/* ---- 900px: Tablet portrait ---- */
@media (max-width: 900px) {
  .section { padding: 64px 0; }

  /* Hero */
  .hero { min-height: 90vh; }
  .hero-inner { padding: 110px 0 48px; }
  .hero-text { max-width: 100%; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-placeholder { display: none; }
  .about-banner { padding: 80px 0 64px; }
  .about-img { height: 380px; }

  /* Coverage */
  .coverage-inner { display: block; }
  .coverage-map { display: none; }
  .cities-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; }

  /* Plans */
  .plans-banner { padding: 80px 0 64px; }

  /* FAQ */
  .faq-banner { padding: 80px 0 64px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; }
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .contact-cards-new { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .contact-form-full { padding: 40px 36px; }

  /* How it works */
  .process-steps { grid-template-columns: 1fr; gap: 20px; max-width: 480px; }
  .step-connector { display: none; }

  /* Values */
  .value-grid { grid-template-columns: repeat(2, 1fr); }

  /* Home new sections */
  .contract-inner { grid-template-columns: 1fr; gap: 40px; }
  .contract-img { display: none; }
  .svc-icons-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .why-points { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ---- 768px: Hamburger threshold / large mobile ---- */
@media (max-width: 768px) {
  .container { width: 100%; padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }

  /* Plans redesign */
  .plans-hero { padding: 60px 0 52px; }
  .plans-contracting-section, .plans-maintenance-section { padding: 72px 0; }
  .plans-cards-grid { grid-template-columns: 1fr; }
  .plans-cards-grid .plans-card:last-child { grid-column: auto; max-width: none; }
  .plans-card { padding: 36px 24px 30px; }
  .plans-maint-head { margin-bottom: 44px; }

  /* Header */
  .menu { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .nav { height: 72px; }
  .logo img { height: 64px; }

  /* Hero — center text on mobile */
  .hero { min-height: 85vh; }
  .hero-inner { padding: 72px 0 40px; }
  .hero-text { text-align: center; max-width: 100%; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; gap: 12px; }
  .hero-trust-item { padding: 14px 16px; font-size: 12px; }
  .hero-trust-sep { display: none; }

  /* Page banners */
  .page-banner { padding: 44px 0 36px; }
  .plans-banner { padding: 72px 0 56px; }
  .about-banner { padding: 72px 0 56px; }
  .faq-banner { padding: 72px 0 56px; }
  .plans-banner-inner p { font-size: 15px; }
  .about-banner-inner p { font-size: 15px; }
  .faq-banner-inner p { font-size: 15px; }

  /* Index — why grid */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-card-img { height: 160px; }

  /* Services page */
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .svc-why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; gap: 20px; }
  .plans-help-box { padding: 40px 28px; }
  .plans-help-actions { flex-direction: column; }
  .plans-help-actions .btn { width: 100%; justify-content: center; }

  /* Services inline CTA */
  .services-cta-box { flex-direction: column; text-align: center; padding: 36px 28px; gap: 24px; }
  .services-cta-actions { width: 100%; justify-content: center; flex-wrap: wrap; }

  /* Quote form */
  .quote-form-box { padding: 32px 24px; }

  /* About */
  .value-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .about-cta-row { flex-direction: column; }
  .about-cta-row .btn { width: 100%; justify-content: center; }
  .cities-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; }
  .city-card { padding: 20px 10px 18px; }

  /* FAQ */
  .faq-intro { margin-bottom: 44px; }
  .faq-help-box { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 18px; }
  .faq-help-actions { width: 100%; flex-direction: column; }
  .faq-help-actions .btn { width: 100%; justify-content: center; }
  .faq-q { font-size: 14.5px; padding: 18px 20px; }
  .faq-a-inner { padding: 16px 20px 22px; font-size: 14px; }

  /* Contact */
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .contact-cards-new { grid-template-columns: 1fr; gap: 16px; }
  .contact-form-full { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner { padding: 64px 0; }

  /* Home new sections — 768px */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .home-plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .home-cta-section { padding: 64px 0; }
  .home-cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .home-cta-actions .btn { width: 100%; max-width: 340px; justify-content: center; }
  .svc-icons-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .why-points { grid-template-columns: 1fr; gap: 14px; }
  .why-point { padding: 20px; }
  .mc-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .contracting-inner { grid-template-columns: 1fr; gap: 40px; }
  .contracting-img { display: none; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; flex-direction: column; }
  .footer-desc { max-width: 100%; margin-bottom: 20px; }
  .footer-logo { margin-top: 0; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .trust-items { justify-content: flex-start; gap: 16px; }
}

/* ---- 600px: Mobile landscape / narrow tablet ---- */
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .svc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
  .contact-cards-new { grid-template-columns: 1fr; }
  .plans-help-box { padding: 36px 20px; }
  .faq-group { margin-bottom: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .svc-icons-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 480px: Standard mobile portrait ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 36px 0; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-inner { padding: 72px 0 36px; }
  .nav { height: 68px; }
  .logo img { height: 60px; }
  .hero h1 { font-size: clamp(28px, 8vw, 38px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust-item { padding: 12px 14px; font-size: 11.5px; }

  /* Banners */
  .page-banner { padding: 36px 0 28px; }
  .plans-banner { padding: 60px 0 48px; }
  .about-banner { padding: 60px 0 48px; }
  .faq-banner { padding: 60px 0 48px; }
  .about-banner-inner h1 { font-size: clamp(28px, 8vw, 40px); }
  .faq-banner-inner h1 { font-size: clamp(28px, 8vw, 40px); }
  .plans-banner-inner h1 { font-size: clamp(28px, 8vw, 42px); }
  .plans-banner-perks { gap: 8px 14px; }

  /* How it works */
  .step { padding: 36px 20px 32px; }
  .step-icon { font-size: 32px; }
  .step-num { width: 46px; height: 46px; font-size: 18px; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; }
  .plan-cta { padding: 16px 20px; }
  .plan-amount { font-size: 44px; }
  .plans-help-box { padding: 32px 18px; }
  .plans-section .section-title { font-size: clamp(22px, 6vw, 28px); }

  /* Services */
  .svc-plan-perks { gap: 8px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .service-img { height: 180px; }
  .svc-why-grid { grid-template-columns: 1fr 1fr; }
  .services-cta-actions { flex-direction: column; }
  .services-cta-actions .btn { width: 100%; justify-content: center; }

  /* About */
  .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-img { height: 300px; }
  .value-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-q { font-size: 14px; padding: 16px 18px; gap: 14px; }
  .faq-a-inner { padding: 14px 18px 20px; font-size: 14px; }
  .faq-group-label { font-size: 10px; }

  /* CTA */
  .cta-banner { padding: 52px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 340px; }

  /* Contact */
  .contact-cards-row { grid-template-columns: 1fr; }
  .contact-cards-new { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-legal { gap: 16px; }

  /* Misc */
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 22px; }
  .section-title { font-size: clamp(22px, 6vw, 32px); }
}

/* ---- 380px: Very small mobile ---- */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .section { padding: 52px 0; }

  .hero h1 { font-size: clamp(24px, 7.5vw, 32px); }
  .hero-trust-item { padding: 10px 10px; font-size: 11px; }

  .svc-why-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .faq-q { padding: 14px 16px; gap: 12px; }
  .faq-chevron { width: 28px; height: 28px; min-width: 28px; }

  .btn-lg { padding: 14px 22px; font-size: 14px; }
  .plan-amount { font-size: 40px; }
  .section-title { font-size: clamp(20px, 6vw, 28px); }
  .plans-banner-inner h1,
  .about-banner-inner h1,
  .faq-banner-inner h1 { font-size: clamp(24px, 7.5vw, 36px); }
}
