/* ============================================================
   Online Computer Technician — Design System
   Primary: G-55EQ3L82HH
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:      #0B1E3D;
  --navy-mid:  #122B56;
  --blue:      #1A5FD4;
  --blue-lt:   #2E7CF6;
  --accent:    #F5A623;
  --accent-lt: #FFB940;
  --green:     #16A97A;
  --white:     #FFFFFF;
  --off-white: #F4F7FC;
  --gray-100:  #EDF1F7;
  --gray-300:  #C4CCDA;
  --gray-500:  #7A8799;
  --gray-700:  #3D4A5C;
  --text:      #1A2333;

  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(11,30,61,0.10);
  --shadow-lg: 0 12px 48px rgba(11,30,61,0.16);

  --max-w: 1160px;
  --nav-h: 68px;
}

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

/* ── Layout Helpers ────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-lg { padding: 110px 0; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--gray-700); line-height: 1.75; }
.lead { font-size: 1.15rem; color: var(--gray-700); max-width: 640px; }
.mono { font-family: var(--font-mono); font-size: 0.85rem; }

/* ── Section Labels ────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26,95,212,0.08);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-lt);
  border-color: var(--blue-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,95,212,0.30);
}
.btn-accent {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.87rem; }
.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(11,30,61,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-logo-main {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 7px 12px;
  border-radius: 7px;
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--gray-100);
}
.nav-links .has-dropdown:hover .dropdown { display: block; }
.nav-links .dropdown a {
  display: block;
  color: var(--text);
  font-size: 0.875rem;
  padding: 9px 14px;
  border-radius: 6px;
  background: none;
}
.nav-links .dropdown a:hover { background: var(--off-white); color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  padding: 7px 14px;
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-phone:hover {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}

/* ── Mobile Nav ────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  padding: 20px 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,95,212,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.30);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.6; transform:scale(1.3); }
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero .lead { color: rgba(255,255,255,0.78); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-head);
}
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-card-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.service-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: all 0.2s;
}
.service-pill:hover {
  background: rgba(26,95,212,0.25);
  border-color: rgba(46,124,246,0.40);
  color: var(--white);
}
.service-pill .icon { font-size: 1.1rem; }
.hero-card-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-head);
}
.hero-card-footer strong { color: var(--accent); }

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item svg { color: var(--blue); }

/* ── Section Headings ──────────────────────────────────────── */
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin: 12px auto 0; }
.section-head h2 { margin-top: 6px; }

/* ── Service Cards ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all 0.25s 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(--blue-lt));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover {
  border-color: rgba(26,95,212,0.20);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(26,95,212,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: background 0.25s;
}
.service-card:hover .service-icon { background: rgba(26,95,212,0.14); }
.service-card h3 { margin-bottom: 9px; font-size: 1.05rem; }
.service-card p  { font-size: 0.9rem; line-height: 1.65; margin-bottom: 18px; }
.service-card .card-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.service-card:hover .card-link { gap: 8px; }

/* ── Why Us ────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}
.why-item:hover { box-shadow: var(--shadow); }
.why-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(26,95,212,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.why-item h4 { margin-bottom: 5px; font-size: 0.97rem; }
.why-item p  { font-size: 0.87rem; margin: 0; }

/* ── Process Steps ─────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 20px 32px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue);
}
.step h4 { margin-bottom: 8px; }
.step p   { font-size: 0.87rem; }

/* ── Pricing Card ──────────────────────────────────────────── */
.pricing-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pricing-list { display: flex; flex-direction: column; gap: 14px; }
.pricing-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.pricing-list-item svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pricing-highlight {
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.30);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.pricing-highlight .price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.pricing-highlight .price-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.60);
  margin-top: 6px;
  margin-bottom: 16px;
}
.pricing-highlight p { font-size: 0.87rem; color: rgba(255,255,255,0.70); }

/* ── Reviews ───────────────────────────────────────────────── */
.reviews-cta-box {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.stars-display {
  font-size: 2rem;
  letter-spacing: 4px;
  margin-bottom: 12px;
  color: var(--accent);
}
.reviews-cta-box p { margin-bottom: 24px; }

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.10) 0%, transparent 70%);
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,0.75); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin: 14px 0 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-certs {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ── Page Header (inner pages) ─────────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,95,212,0.15) 0%, transparent 70%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-top: 10px; }
.page-header .lead { color: rgba(255,255,255,0.72); margin-top: 12px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--accent); }

/* ── Info Cards (generic) ──────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--off-white); color: var(--blue); }
.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--gray-500);
  flex-shrink: 0;
}
.faq-question.open .faq-arrow { transform: rotate(180deg); color: var(--blue); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.75;
  background: var(--off-white);
}
.faq-answer.open { display: block; }

/* ── Suburb Tags ───────────────────────────────────────────── */
.suburb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.suburb-tag {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
  text-decoration: none;
}
.suburb-tag:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ── Utilities ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-accent { color: var(--accent) !important; }
.text-blue   { color: var(--blue) !important; }
.bg-off-white { background: var(--off-white); }
.bg-navy      { background: var(--navy); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.93rem;
  color: var(--gray-700);
}
.check-item svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero .container     { grid-template-columns: 1fr; gap: 40px; }
  .hero-card           { max-width: 520px; }
  .process-steps       { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .info-grid     { grid-template-columns: 1fr; }
  .two-col       { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .pricing-card  { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section       { padding: 56px 0; }
  .section-lg    { padding: 72px 0; }
}
@media (max-width: 480px) {
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 52px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-band .btn-group { flex-direction: column; align-items: center; }
}
