@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@600;700;800&display=swap');

:root {
  --color-primary: #0B1D3A;
  --color-accent: #2563EB;
  --color-accent-hover: #1D4ED8;
  --color-bg: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-text: #0F172A;
  --color-text-muted: #64748B;
  --color-border: #E2E8F0;
  --color-footer-bg: #0B1D3A;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --nav-height: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { transition: color 0.2s ease; }
section { padding: 88px 0; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   TYPOGRAPHY
============================== */

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; }

/* ==============================
   BUTTONS
============================== */

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 1.5;
}
.btn-primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); color: #fff; box-shadow: 0 4px 12px rgba(37,99,235,0.28); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  border-radius: 8px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 1.5;
}
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); background: #EFF6FF; }

.btn-outline-accent {
  background: transparent;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 8px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 1.5;
}
.btn-outline-accent:hover { background: var(--color-accent); color: #fff; transform: translateY(-1px); }

.btn-white {
  background: #fff;
  color: var(--color-primary);
  border: none;
  border-radius: 8px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 1.5;
}
.btn-white:hover { background: #F1F5F9; transform: translateY(-1px); color: var(--color-primary); }

.btn-full { width: 100%; text-align: center; display: block; }

/* ==============================
   NAVIGATION
============================== */

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease;
}
nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }

.nav-inner {
  display: flex;
  align-items: center;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
  height: var(--nav-height);
  position: relative;
}

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.nav-logo img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 150px;
  object-fit: contain;
}

.nav-logo:hover { opacity: 0.92; }

.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > button.nav-dropdown-btn {
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.15s ease;
}
.nav-links > li > a:hover,
.nav-links > li > button.nav-dropdown-btn:hover {
  color: var(--color-accent);
  background: #F1F5F9;
}

.nav-caret {
  width: 14px;
  height: 14px;
  opacity: 0.45;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav-links > li.open .nav-caret { transform: rotate(180deg); opacity: 0.65; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--color-primary);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 100;
}
.nav-links > li.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}

.nav-dropdown a {
  display: block;
  padding: 9px 13px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.1); color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-left: 16px;
  border-left: 1px solid var(--color-border);
}

.nav-phone { color: var(--color-text-muted); font-weight: 500; text-decoration: none; font-size: 0.85rem; white-space: nowrap; }
.nav-phone:hover { color: var(--color-accent); }

.nav-mobile-extras { display: none; }

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-primary);
  padding: 6px 10px;
  line-height: 1;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.hamburger:hover { background: #F1F5F9; }

/* ==============================
   FOOTER
============================== */

footer {
  background: var(--color-footer-bg);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 168px;
  object-fit: contain;
}

.footer-brand p { color: #94A3B8; font-size: 0.875rem; line-height: 1.75; margin-bottom: 16px; }
.footer-hours p { color: #64748B; font-size: 0.8125rem; line-height: 1.85; }

.footer-col h5 {
  color: #94A3B8;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; color: #CBD5E1; font-size: 0.875rem; }
.footer-col ul a { color: #CBD5E1; text-decoration: none; font-size: 0.875rem; transition: color 0.2s ease; }
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #475569;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #475569; text-decoration: none; transition: color 0.2s ease; }
.footer-bottom a:hover { color: #94A3B8; }

/* ==============================
   HERO - HOME
============================== */

.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  padding: 72px 24px 96px;
  background:
    linear-gradient(158deg, rgba(11,29,58,0.9) 0%, rgba(15,42,82,0.82) 48%, rgba(12,34,72,0.91) 100%),
    url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1800&q=80&fit=crop&crop=center') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: min(100%, 640px);
  padding: 40px 0;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,99,235,0.14);
  border: 1px solid rgba(37,99,235,0.3);
  color: #93C5FD;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: var(--font-heading);
}

.hero-headline {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 720px;
  margin: 0;
}
.hero-headline span { color: #60A5FA; }

.hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 540px;
  text-align: left;
  margin: 24px 0 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
}

.hero-device {
  position: relative;
  z-index: 1;
  width: min(420px, 38vw);
  min-width: 320px;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,0.24));
}

.device-window {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 14px;
  overflow: hidden;
}

.device-bar {
  height: 40px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
}

.device-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #CBD5E1;
}

.device-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 230px;
}

.device-sidebar {
  background: #EAF2FF;
  border-right: 1px solid var(--color-border);
  position: relative;
}

.device-sidebar::before,
.device-sidebar::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  height: 10px;
  border-radius: 999px;
  background: rgba(37,99,235,0.22);
}

.device-sidebar::before { top: 26px; }
.device-sidebar::after { top: 50px; }

.device-main {
  padding: 28px;
  background: #fff;
}

.device-line {
  height: 10px;
  width: 62%;
  border-radius: 999px;
  background: #CBD5E1;
  margin-bottom: 14px;
}

.device-line.wide {
  width: 82%;
  height: 16px;
  background: var(--color-primary);
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.device-grid span {
  min-height: 58px;
  border-radius: 10px;
  background: linear-gradient(135deg, #EFF6FF, #F8FAFC);
  border: 1px solid var(--color-border);
}

.btn-hero-primary {
  background: var(--color-accent);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,99,235,0.32);
}
.btn-hero-primary:hover { background: #1D4ED8; transform: translateY(-2px); color: #ffffff; box-shadow: 0 6px 20px rgba(37,99,235,0.42); }

.btn-hero-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.48); background: rgba(255,255,255,0.07); color: #fff; }

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 52px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.58);
  font-size: 0.8rem;
  font-weight: 500;
}
.hero-trust-item svg { flex-shrink: 0; color: #60A5FA; }

/* ==============================
   PAGE HERO
============================== */

.page-hero {
  background: var(--color-primary);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.775rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
  font-family: var(--font-heading);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  max-width: 680px;
  letter-spacing: -0.025em;
}

.page-hero-sub { color: rgba(255,255,255,0.68); max-width: 580px; margin-top: 14px; font-size: 1rem; }
.page-hero-note { color: rgba(255,255,255,0.5); font-size: 0.875rem; font-style: italic; margin-top: 10px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}

.google-review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.google-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.google-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.google-review-top h3 {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.google-review-top p,
.google-review-source {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.google-review-text {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 14px 0 18px;
}

.review-stars {
  color: #F59E0B;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.review-stars span {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  letter-spacing: 0;
  margin-left: 6px;
}

/* ==============================
   SECTION LABELS & TITLES
============================== */

.section-label {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.section-title {
  text-align: center;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: 12px;
  margin-bottom: 56px;
  font-size: 0.975rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-label { display: block; }
.section-header .section-title { margin-bottom: 0; }
.section-header .section-subtitle { margin-bottom: 0; }

/* ==============================
   WHY CHOOSE
============================== */

.why-section {
  background:
    linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-bottom: 1px solid var(--color-border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s ease;
}
.why-card:hover { box-shadow: var(--shadow-md); }

.why-icon {
  width: 64px;
  height: 64px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.why-icon svg { width: 28px; height: 28px; }

.why-card h3 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); font-size: 0.975rem; }
.why-card p { color: var(--color-text-muted); font-size: 0.875rem; line-height: 1.7; }

/* ==============================
   CORE SERVICES
============================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.18); }

.service-icon {
  width: 72px;
  height: 72px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.service-icon svg { width: 30px; height: 30px; }

.service-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 0.975rem; color: var(--color-primary); line-height: 1.3; }
.service-card p { color: var(--color-text-muted); font-size: 0.875rem; line-height: 1.7; flex: 1; }

.more-link {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.825rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: gap 0.2s ease;
}
.more-link:hover { gap: 8px; color: var(--color-accent-hover); }

/* ==============================
   WHO WE HELP
============================== */

.who-section {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.who-section .section-label { color: var(--color-accent); }
.who-section .section-title { color: var(--color-primary); }
.who-section .section-subtitle { color: var(--color-text-muted); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.who-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.who-card:hover { box-shadow: var(--shadow-md); border-color: rgba(37,99,235,0.18); }

.who-icon {
  width: 58px;
  height: 58px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.who-icon svg { width: 26px; height: 26px; }
.who-card h4 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); font-size: 0.925rem; }
.who-card p { color: var(--color-text-muted); font-size: 0.8rem; margin-top: 2px; }

/* ==============================
   PRICING / PLANS
============================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card.featured {
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.06);
}

.badge-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-family: var(--font-heading);
}

.pricing-card h3 { font-family: var(--font-heading); font-weight: 800; color: var(--color-primary); font-size: 1.05rem; margin-bottom: 8px; }

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.pricing-period { font-size: 0.875rem; font-weight: 500; color: var(--color-text-muted); }
.pricing-tag { color: var(--color-text-muted); font-size: 0.8rem; margin: 10px 0 20px; line-height: 1.5; }
.pricing-divider { border: none; border-top: 1px solid var(--color-border); margin: 20px 0; }

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  color: var(--color-text);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #EFF6FF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==============================
   TESTIMONIALS
============================== */

.testimonials-section { background: #F1F5F9; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars { display: flex; gap: 3px; color: #F59E0B; }

.testimonial-quote {
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; color: var(--color-primary); font-size: 0.875rem; font-family: var(--font-heading); }
.testimonial-meta { color: var(--color-text-muted); font-size: 0.775rem; margin-top: 1px; }

.testimonial-google {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.testimonial-google svg { flex-shrink: 0; }

/* ==============================
   SERVICE AREA ACCORDION
============================== */

.county-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.county-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}

.county-name { font-weight: 600; color: var(--color-primary); font-size: 0.9rem; font-family: var(--font-heading); }
.county-toggle { color: var(--color-accent); font-size: 1.1rem; font-weight: 700; }

.county-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.county-body-inner {
  padding: 12px 20px 16px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.county-item.open .county-body { max-height: 300px; }

.remote-note { font-style: italic; color: var(--color-text-muted); text-align: center; margin-top: 20px; font-size: 0.875rem; }

/* ==============================
   FAQ
============================== */

.faq-wrapper { max-width: 700px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  padding: 20px 0;
}
.faq-q-text { font-weight: 700; color: var(--color-primary); font-family: var(--font-heading); font-size: 0.925rem; }
.faq-toggle { color: var(--color-accent); font-size: 1.2rem; font-weight: 700; min-width: 24px; text-align: center; flex-shrink: 0; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--color-text-muted); line-height: 1.8; font-size: 0.9rem; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }

/* ==============================
   CONTACT SECTION
============================== */

.contact-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 36px; align-items: start; }
.contact-form-wrap { }
.contact-info-wrap { }

.form-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label { display: block; font-weight: 600; color: var(--color-text); margin-bottom: 7px; font-size: 0.85rem; }
.form-group label span { color: var(--color-text-muted); font-weight: 500; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-note { font-size: 0.775rem; color: var(--color-text-muted); margin-top: 5px; }
.field-error { display: none; color: #B91C1C; font-size: 0.775rem; margin-top: 5px; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #EF4444; }
.form-group.has-error .field-error { display: block; }
.form-group.has-error .radio-pills,
.form-group.has-error .checkbox-group { outline: 2px solid rgba(239,68,68,0.22); outline-offset: 4px; border-radius: 8px; }
.form-group.has-error .single-checkbox { outline: 2px solid rgba(239,68,68,0.22); outline-offset: 6px; border-radius: 8px; }
.form-step-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  color: #991B1B;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 18px;
  padding: 12px 14px;
}
.ajax-form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  color: #991B1B;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 18px;
  padding: 12px 14px;
}

button[disabled],
.btn-primary[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.radio-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-pill { display: inline-flex; }
.radio-pill input[type="radio"] { display: none; }
.radio-pill label {
  padding: 8px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: all 0.15s ease;
  margin: 0;
  display: block;
  font-family: var(--font-body);
}
.radio-pill input[type="radio"]:checked + label { border-color: var(--color-accent); background: #EFF6FF; color: var(--color-accent); }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.15s ease;
  user-select: none;
}
.checkbox-item:hover { border-color: var(--color-accent); }
.checkbox-item input[type="checkbox"] { accent-color: var(--color-accent); flex-shrink: 0; }

.single-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.single-checkbox input[type="checkbox"] { width: 17px; height: 17px; margin-top: 3px; flex-shrink: 0; accent-color: var(--color-accent); }
.checkbox-label-text { font-size: 0.9rem; color: var(--color-text); }

.contact-info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.biz-name { font-family: var(--font-heading); font-weight: 800; color: var(--color-primary); font-size: 1.1rem; margin-bottom: 4px; }
.biz-phone { color: var(--color-accent); font-weight: 700; font-size: 1.15rem; text-decoration: none; display: block; margin-bottom: 6px; }
.biz-phone:hover { color: var(--color-accent-hover); }
.biz-location { color: var(--color-text-muted); font-size: 0.875rem; }

.hours-block { margin: 20px 0; padding-top: 20px; border-top: 1px solid var(--color-border); }
.hours-block h4 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); margin-bottom: 10px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hours-block p { color: var(--color-text-muted); font-size: 0.875rem; line-height: 1.85; }

.quick-links { padding-top: 20px; border-top: 1px solid var(--color-border); }
.quick-links h4 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); margin-bottom: 10px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.quick-links ul { list-style: none; }
.quick-links ul li { margin-bottom: 8px; }
.quick-links ul li a { color: var(--color-accent); text-decoration: none; font-size: 0.875rem; }
.quick-links ul li a:hover { text-decoration: underline; }

/* ==============================
   HOW IT WORKS
============================== */

.steps-row { display: flex; align-items: flex-start; justify-content: center; margin-top: 48px; }

.step-connector {
  border-top: 2px dashed var(--color-border);
  flex: 1;
  margin-top: 28px;
  max-width: 80px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  flex-shrink: 0;
}

.step-circle {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-item h3 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); margin-top: 16px; font-size: 1rem; }
.step-item p { color: var(--color-text-muted); font-size: 0.875rem; max-width: 180px; margin-top: 8px; line-height: 1.65; }

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

.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-bio p { color: var(--color-text); line-height: 1.85; margin-bottom: 20px; font-size: 0.95rem; }
.about-bio p:last-child { margin-bottom: 0; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.stat-big { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--color-accent); }
.stat-label { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); margin-top: 6px; font-size: 0.875rem; }
.stat-sub { color: var(--color-text-muted); font-size: 0.775rem; margin-top: 4px; }

/* ==============================
   SERVICES PAGE
============================== */

.service-section-outer { }
.service-section-outer.alt { background: var(--color-bg); }

.service-section { max-width: 900px; margin: 0 auto; padding: 80px 24px; }

.service-tag {
  background: #EFF6FF;
  color: var(--color-accent);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-section h2 { font-family: var(--font-heading); color: var(--color-primary); font-weight: 800; font-size: 1.65rem; margin-bottom: 16px; letter-spacing: -0.02em; }
.service-desc { color: var(--color-text-muted); margin-bottom: 32px; font-size: 0.975rem; line-height: 1.8; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.info-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 20px; }
.info-card h4 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); margin-bottom: 10px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.info-card p { color: var(--color-text-muted); font-size: 0.875rem; }
.info-card ul { list-style: none; color: var(--color-text-muted); font-size: 0.875rem; }
.info-card ul li { margin-bottom: 5px; }
.info-card ul li::before { content: '- '; color: var(--color-accent); font-weight: 900; }

.examples-block {
  background: #F8FAFC;
  border-left: 3px solid var(--color-accent);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 28px;
}
.examples-block h4 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); margin-bottom: 12px; font-size: 0.875rem; }
.examples-block ul { list-style: none; }
.examples-block ul li {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.examples-block ul li::before { content: '>'; position: absolute; left: 0; color: var(--color-accent); font-style: normal; }

.how-help-block { margin-bottom: 28px; }
.how-help-block h4 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); margin-bottom: 8px; font-size: 0.875rem; }
.how-help-block p { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.75; }

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

/* ==============================
   CTA STRIPS
============================== */

.cta-strip { background: var(--color-primary); text-align: center; padding: 80px 24px; }
.cta-strip h2 { font-family: var(--font-heading); color: #fff; font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 14px; letter-spacing: -0.02em; }
.cta-strip p { color: rgba(255,255,255,0.68); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; font-size: 0.95rem; }

.cta-strip-light { background: var(--color-bg); text-align: center; padding: 64px 24px; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.cta-strip-light h3 { font-family: var(--font-heading); color: var(--color-primary); font-weight: 800; font-size: 1.35rem; margin-bottom: 10px; }
.cta-strip-light p { color: var(--color-text-muted); margin-bottom: 24px; font-size: 0.95rem; }

/* ==============================
   BUILD YOUR WEBSITE
============================== */

.builder-section { background: var(--color-surface); padding: 80px 0; }

.builder-layout { display: flex; gap: 32px; align-items: flex-start; }
.builder-form-wrap { flex: 2; min-width: 0; }
.builder-sidebar { flex: 1; position: sticky; top: 80px; min-width: 260px; }

.progress-bar-wrap { background: var(--color-border); border-radius: 9999px; height: 5px; margin-bottom: 20px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--color-accent); border-radius: 9999px; transition: width 0.3s ease; width: 10%; }

.step-tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 28px; }
.step-tab {
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: var(--color-text-muted);
  transition: all 0.15s ease;
  font-family: var(--font-body);
}
.step-tab.active { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.step-tab.completed { background: #EFF6FF; color: var(--color-accent); border-color: var(--color-accent); }

.form-step { display: none; }
.form-step.active { display: block; }
.form-step h3 { font-family: var(--font-heading); color: var(--color-primary); font-weight: 800; font-size: 1.3rem; margin-bottom: 8px; }
.step-desc { color: var(--color-text-muted); margin-bottom: 28px; font-size: 0.9rem; }

.selectable-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 12px; margin-bottom: 20px; }
.selectable-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  background: #fff;
  user-select: none;
}
.selectable-card:hover { border-color: var(--color-accent); }
.selectable-card.selected { border: 2px solid var(--color-accent); background: #EFF6FF; }
.selectable-card h4 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); font-size: 0.875rem; margin-bottom: 4px; }
.selectable-card p { color: var(--color-text-muted); font-size: 0.775rem; line-height: 1.4; }

.step-nav { display: flex; gap: 12px; margin-top: 28px; justify-content: space-between; }

.summary-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 24px; }
.summary-card h4 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); margin-bottom: 4px; font-size: 0.95rem; }
.summary-sub { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 16px; }
.summary-divider { border: none; border-top: 1px solid var(--color-border); margin: 12px 0; }

.summary-list { list-style: none; margin-bottom: 16px; }
.summary-list li { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 10px; font-size: 0.8375rem; }
.sum-label { color: var(--color-text-muted); white-space: nowrap; }
.sum-value { color: var(--color-primary); font-weight: 600; text-align: right; }
.empty-state { color: var(--color-text-muted); font-style: italic; font-size: 0.8375rem; }

.post-submit-steps { margin-top: 16px; }
.post-submit-step { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.post-submit-num { width: 28px; height: 28px; background: var(--color-accent); border-radius: 50%; color: #fff; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-heading); }
.post-submit-text h5 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); font-size: 0.875rem; }
.post-submit-text p { color: var(--color-text-muted); font-size: 0.775rem; margin-top: 2px; }

.support-request-section { background: var(--color-bg); }

.form-experience-hidden {
  display: none !important;
}

.inline-thank-you {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: 0 auto;
  max-width: 760px;
  opacity: 0;
  padding: clamp(32px, 6vw, 56px);
  text-align: center;
  transform: translateY(14px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.inline-thank-you.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.inline-thank-you-icon {
  align-items: center;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 50%;
  color: var(--color-accent);
  display: inline-flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 18px;
  width: 64px;
}

.inline-thank-you-kicker {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.inline-thank-you h2 {
  color: var(--color-primary);
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.inline-thank-you p:not(.inline-thank-you-kicker) {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 auto 18px;
  max-width: 560px;
}

.inline-thank-you-phone {
  color: var(--color-primary);
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 28px;
  text-decoration: none;
}

.inline-thank-you-phone:hover { color: var(--color-accent); }

.inline-thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.support-form-section {
  background: #F8FAFC;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.support-form-section h2 {
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.support-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.support-section-heading h2 { margin-bottom: 4px; }
.support-section-heading p { color: var(--color-text-muted); font-size: 0.875rem; line-height: 1.6; }
.btn-add-request { flex-shrink: 0; padding: 10px 16px; }

.service-request-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.service-request-card:last-child { margin-bottom: 0; }

.request-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.request-card-header h3 {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.btn-remove-request {
  background: transparent;
  border: none;
  color: #B91C1C;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 0;
}

.btn-remove-request:hover { color: #7F1D1D; }

.request-summary {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
}

.summary-request {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.summary-request:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.summary-request h3 {
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.summary-request p {
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.support-submit { padding: 14px 28px; font-size: 0.95rem; }

.legal-section { background: var(--color-surface); }

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 28px 0 10px;
}

.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--color-text); font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; }
.legal-content a { color: var(--color-accent); font-weight: 600; text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

.error-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  background: var(--color-bg);
}

.error-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.error-code {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.error-card h1 {
  color: var(--color-primary);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.error-card p:not(.error-code) {
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.error-card .service-actions { justify-content: center; }

.thank-you-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(158deg, rgba(11,29,58,0.94), rgba(15,42,82,0.9)),
    url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1800&q=80&fit=crop&crop=center') center/cover no-repeat;
  padding: 72px 0;
}

.thank-you-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 56px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.thank-you-kicker {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.thank-you-card h1 {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 5vw, 2.45rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.thank-you-card p:not(.thank-you-kicker) {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto 18px;
}

.thank-you-phone {
  display: inline-block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  margin: 4px 0 28px;
}

.thank-you-phone:hover { color: var(--color-accent); }

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.summary-review-card { background: #F8FAFC; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 24px; margin-top: 16px; }
.summary-review-section { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--color-border); }
.summary-review-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.summary-review-section h4 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); font-size: 0.72rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.summary-review-section p { color: var(--color-text-muted); font-size: 0.875rem; line-height: 1.75; }

/* ==============================
   CONTENT SPLIT (image + text)
============================== */

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  overflow: hidden;
}

.content-split.visual-break {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.content-split-img {
  background-size: cover;
  background-position: center;
  min-height: 340px;
}

.content-split-text {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-surface);
}

.content-split-text .section-label { display: block; margin-bottom: 14px; }

.content-split-text h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 18px;
}

.content-split-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.content-split-text .split-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* ==============================
   SERVICES OVERVIEW PAGE
============================== */

.services-overview-section { background: var(--color-surface); }
.services-overview-section.alt { background: var(--color-bg); }

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.services-overview-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.services-overview-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.18); }
.services-overview-card .svc-icon {
  width: 74px;
  height: 74px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-bottom: 4px;
}
.services-overview-card .svc-icon svg { width: 31px; height: 31px; }
.services-overview-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--color-primary); }
.services-overview-card p { color: var(--color-text-muted); font-size: 0.875rem; line-height: 1.7; flex: 1; }

.services-overview-section.alt .services-overview-card { background: var(--color-surface); }

/* NAV dropdown divider */
.nav-dropdown-divider { border-top: 1px solid rgba(255,255,255,0.12); margin: 4px 0; pointer-events: none; }
.nav-dropdown a.nav-dropdown-all { color: rgba(255,255,255,0.92) !important; font-weight: 700 !important; }

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

@media (max-width: 1024px) {
  .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { flex-direction: column; text-align: center; }
  .hero-content { text-align: center; }
  .hero-headline,
  .hero-sub { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-device { width: min(520px, 88vw); }
}

@media (max-width: 900px) {
  .content-split { grid-template-columns: 1fr; }
  .content-split-img { min-height: 280px; order: -1; }
  .content-split-text { padding: 52px 36px; }
  .hamburger { display: block; margin-left: auto; }
  .nav-right { display: none; }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 8px 16px 20px;
    gap: 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-menu.nav-open { display: flex; }

  .nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-links > li { border-bottom: 1px solid var(--color-border); }
  .nav-links > li:last-child { border-bottom: none; }
  .nav-links > li > a,
  .nav-links > li > button.nav-dropdown-btn {
    padding: 14px 8px;
    width: 100%;
    justify-content: space-between;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border-radius: 8px;
    background: #F8FAFC;
    margin: 0 0 6px;
    padding: 0;
    transition: max-height 0.25s ease, padding 0.2s ease, visibility 0s linear 0.25s;
  }
  .nav-links > li.open .nav-dropdown {
    visibility: visible;
    max-height: 400px;
    padding: 6px 8px;
    transition: max-height 0.25s ease, padding 0.2s ease, visibility 0s;
  }
  .nav-dropdown a { color: var(--color-text-muted); padding: 10px 12px; }
  .nav-dropdown a:hover { color: var(--color-accent); background: #EFF6FF; }

  .nav-mobile-extras {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 8px 4px;
    border-top: 1px solid var(--color-border);
    margin-top: 4px;
  }
  .nav-mobile-extras .nav-phone { font-size: 0.95rem; font-weight: 600; color: var(--color-primary); }
  .nav-mobile-extras .btn-primary { text-align: center; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .support-section-heading { flex-direction: column; }
  .btn-add-request { width: 100%; text-align: center; }
  .request-card-header { align-items: flex-start; }
  .builder-layout { flex-direction: column; }
  .builder-sidebar { position: static; width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .google-reviews-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .services-overview-grid { grid-template-columns: 1fr; }
  .content-split-text { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { display: none; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 32px 0 10px; }
  .hero-headline { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; max-width: 320px; margin: 32px auto 0; }
  .hero-device { min-width: 0; width: min(320px, 92vw); }
  .device-body { grid-template-columns: 70px 1fr; min-height: 190px; }
  .device-main { padding: 22px; }
  .hero-trust { gap: 14px; }
  .hero-trust-item { font-size: 0.775rem; }

  .form-card { padding: 24px 20px; }
  .legal-content,
  .error-card { padding: 28px 22px; }
  .error-card .service-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
