/* ============================================================
   SteadyHandyman — Static Site CSS
   Matches the live React site at steady-handyman.replit.app
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --primary:       #066da7;
  --primary-dark:  #055a8c;
  --foreground:    #1a1a2e;
  --secondary:     #1a1a2e;
  --background:    #f5f5f5;
  --white:         #ffffff;
  --muted:         #e6e6e6;
  --muted-light:   #f0f2f5;
  --muted-fg:      #6d6d78;
  --border:        #d4d4d8;
  --yellow:        #facc15;
  --text-dark:     #1a1a2e;
  --text-body:     #3f3f46;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
  color: var(--text-dark);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  padding: 16px 0;
  transition: box-shadow 0.3s, padding 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 1px 8px rgba(0,0,0,0.12);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.navbar-logo img { height: 44px; width: auto; }
.navbar-links {
  display: none;
  gap: 24px;
}
.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(26,26,46,0.8);
  transition: color 0.2s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--primary); }
.navbar-actions {
  display: none;
  align-items: center;
  gap: 12px;
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-phone:hover { border-color: var(--primary); color: var(--primary); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }

/* Mobile menu toggle */
.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: none;
  color: var(--text-dark);
}
.navbar-toggle svg { width: 24px; height: 24px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.mobile-menu nav a {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}
.mobile-menu nav a:hover, .mobile-menu nav a.active {
  background: rgba(6,109,167,0.08);
  color: var(--primary);
}
.mobile-menu-actions {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-actions .btn-primary,
.mobile-menu-actions .btn-phone {
  width: 100%;
  justify-content: center;
  height: 48px;
  font-size: 15px;
}

/* ---- Responsive nav breakpoint ---- */
@media (min-width: 1024px) {
  .navbar-links { display: flex; }
  .navbar-actions { display: flex; }
  .navbar-toggle { display: none; }
}

/* ============================================================
   PAGE WRAPPER (offset for fixed nav)
   ============================================================ */
.page-wrapper { padding-top: 76px; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-lg.btn-blue { background: var(--primary); color: var(--white); border: none; }
.btn-lg.btn-blue:hover { background: var(--primary-dark); color: var(--white); }
.btn-lg.btn-white { background: var(--white); color: var(--primary); border: none; }
.btn-lg.btn-white:hover { background: rgba(255,255,255,0.9); color: var(--primary); }
.btn-lg.btn-glass {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-lg.btn-glass:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.btn-lg.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border);
}
.btn-lg.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-sm.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border);
}
.btn-sm.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm.btn-blue { background: var(--primary); color: var(--white); border: none; }

/* ============================================================
   HERO — HOMEPAGE (full bleed image)
   ============================================================ */
.hero-home {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-home-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/branding/van-hero.png');
  background-size: cover;
  background-position: center;
}
.hero-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,35,0.92) 0%, rgba(10,20,35,0.7) 50%, rgba(10,20,35,0.3) 100%);
}
.hero-home-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}
.hero-home-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.hero-home-eyebrow svg { color: var(--primary); }
.hero-home h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-home h1 .blue { color: var(--primary); }
.hero-home-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
}
.hero-badge svg { color: var(--primary); }

/* ============================================================
   TRUST STRIP (blue bar)
   ============================================================ */
.trust-strip {
  background: var(--primary);
  color: var(--white);
  padding: 16px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.trust-sep { color: rgba(255,255,255,0.4); }

/* ============================================================
   PAGE HERO — dark navy (services overview, contact, etc.)
   ============================================================ */
.hero-dark {
  background: var(--foreground);
  color: var(--white);
  padding: 80px 0;
}
.hero-dark-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.hero-dark h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-dark h1 .blue { color: var(--primary); }
.hero-dark-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-dark-center { text-align: center; }
.hero-dark-center h1 { max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-dark-center .hero-dark-subtitle { margin-left: auto; margin-right: auto; }

/* ============================================================
   PAGE HEADER — light gray (portfolio, faq, about, reviews)
   ============================================================ */
.page-header {
  background: var(--muted);
  padding: 80px 0;
  text-align: center;
}
.page-header h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 80px);
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 16px;
  line-height: 1.0;
}
.page-header p {
  font-size: 18px;
  color: var(--muted-fg);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: rgba(230,230,230,0.5);
  border-bottom: 1px solid rgba(212,212,216,0.4);
  padding: 12px 0;
}
.breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted-fg);
}
.breadcrumb nav a:hover { color: var(--primary); }
.breadcrumb nav .current { color: var(--text-dark); font-weight: 500; }

/* ============================================================
   SECTION HEADING (h2 block with subtitle)
   ============================================================ */
.section-heading { margin-bottom: 40px; }
.section-heading h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-heading p {
  font-size: 17px;
  color: var(--muted-fg);
  max-width: 600px;
  line-height: 1.7;
}
.section-heading.center { text-align: center; }
.section-heading.center p { margin: 0 auto; }

/* ============================================================
   SECTIONS — spacing
   ============================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }
.section-muted { background: rgba(230,230,230,0.4); border-top: 1px solid rgba(212,212,216,0.3); border-bottom: 1px solid rgba(212,212,216,0.3); }
.section-white { background: var(--white); }
.section-dark { background: var(--foreground); color: var(--white); }
.section-blue { background: var(--primary); color: var(--white); }
.section-black { background: #000; }

/* ============================================================
   SERVICE CARDS (homepage grid)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 32px;
  display: block;
  transition: all 0.3s;
  height: 100%;
}
.service-card:hover {
  border-color: rgba(6,109,167,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  color: var(--text-dark);
}
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(6,109,167,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.service-card:hover .service-card-icon {
  background: var(--primary);
  color: var(--white);
}
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.service-card:hover h3 { color: var(--primary); }
.service-card p {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-card .learn-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.service-card:hover .learn-more { gap: 8px; }

.service-card-featured {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 32px;
  display: block;
  width: 100%;
  margin-bottom: 24px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(6,109,167,0.1);
}
.service-card-featured:hover {
  box-shadow: 0 8px 32px rgba(6,109,167,0.2);
  color: var(--text-dark);
}
.service-card-featured h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
  transition: color 0.2s;
}
.service-card-featured:hover h3 { color: var(--primary); }
.service-card-featured p {
  font-size: 15px;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 720px;
}
.service-card-featured .learn-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.service-card-featured:hover .learn-more { gap: 8px; }

.services-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .services-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.reviews-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }

.review-card {
  background: var(--white);
  border: 1px solid rgba(212,212,216,0.6);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stars { display: flex; gap: 2px; }
.star { color: var(--yellow); fill: var(--yellow); }
.review-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-fg);
  background: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
}
.review-text {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-author { border-top: 1px solid rgba(212,212,216,0.4); padding-top: 16px; }
.review-author-name { font-weight: 700; color: var(--text-dark); }
.review-author-meta { font-size: 12px; color: var(--muted-fg); }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.before-after-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: col-resize;
  user-select: none;
  touch-action: pan-y;
}
.before-after-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after-img { position: absolute; inset: 0; overflow: hidden; }
.ba-after-img img { width: 100%; height: 100%; }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--white);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  pointer-events: none;
}
.ba-handle svg { color: var(--foreground); width: 20px; height: 20px; }
.ba-label {
  position: absolute;
  top: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 5;
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
  border: 1px solid rgba(212,212,216,0.6);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--primary); }
.accordion-trigger svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--muted-fg);
  transition: transform 0.25s;
}
.accordion-trigger.open svg { transform: rotate(180deg); }
.accordion-content {
  display: none;
  padding: 0 24px 20px;
  color: var(--muted-fg);
  line-height: 1.7;
  font-size: 15px;
}
.accordion-content.open { display: block; }

/* ============================================================
   ACTION SHOTS (black grid)
   ============================================================ */
.action-shots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .action-shots-grid { grid-template-columns: repeat(4, 1fr); } }
.action-shot {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}
.action-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.4s, transform 0.5s;
}
.action-shot:hover img { opacity: 1; transform: scale(1.05); }

/* ============================================================
   ABOUT SECTION — photo grid
   ============================================================ */
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-photo-grid img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.about-photo-grid .photo-full {
  grid-column: 1 / -1;
  max-height: 260px;
}
.about-photo-grid .photo-offset { transform: translateY(32px); }

/* ============================================================
   CORE VALUES GRID
   ============================================================ */
.values-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
}
.value-card svg { width: 40px; height: 40px; color: var(--white); margin-bottom: 24px; }
.value-card h3 { font-size: 22px; color: var(--white); margin-bottom: 12px; }
.value-card p { color: rgba(255,255,255,0.8); line-height: 1.7; font-size: 17px; }

/* ============================================================
   CHECKLIST (what we handle, etc.)
   ============================================================ */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; }
.checklist li svg { color: var(--primary); width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.checklist li span { font-size: 15px; color: var(--muted-fg); line-height: 1.6; }
.checklist-white li svg { color: var(--white); }
.checklist-white li span { color: rgba(255,255,255,0.85); }

/* ============================================================
   HOW IT WORKS — 3 steps
   ============================================================ */
.steps-grid {
  display: grid;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-item { text-align: center; }
.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(6,109,167,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.step-item h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step-item p { font-size: 14px; color: var(--muted-fg); line-height: 1.7; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212,212,216,0.6);
  margin-top: 24px;
}
.pricing-table table { width: 100%; font-size: 14px; }
.pricing-table thead tr { background: var(--foreground); color: var(--white); }
.pricing-table th { padding: 12px 24px; text-align: left; font-weight: 600; }
.pricing-table th:last-child { text-align: right; }
.pricing-table td { padding: 12px 24px; color: var(--muted-fg); }
.pricing-table td:last-child { text-align: right; font-weight: 700; color: var(--text-dark); }
.pricing-table tr:nth-child(even) td { background: rgba(230,230,230,0.4); }
.pricing-table tr:nth-child(odd) td { background: var(--white); }

/* ============================================================
   NOTE CALLOUT
   ============================================================ */
.note-callout {
  background: rgba(6,109,167,0.05);
  border: 1px solid rgba(6,109,167,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 24px;
}
.note-callout p { font-size: 14px; color: var(--muted-fg); line-height: 1.7; }
.note-callout strong { color: var(--text-dark); }

/* ============================================================
   BLOCKQUOTE
   ============================================================ */
.pull-quote {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin-top: 24px;
}
.pull-quote p { font-size: 16px; color: var(--text-dark); font-weight: 500; font-style: italic; line-height: 1.7; }

/* ============================================================
   PROCESS STEPS (numbered grid)
   ============================================================ */
.process-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; } }
.process-card {
  background: rgba(230,230,230,0.5);
  border-radius: 12px;
  padding: 20px;
}
.process-card .pnum {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: rgba(6,109,167,0.25);
  line-height: 1;
  margin-bottom: 8px;
}
.process-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.process-card p { font-size: 14px; color: var(--muted-fg); line-height: 1.6; }

/* ============================================================
   OTHER SERVICES GRID
   ============================================================ */
.other-services-grid {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) { .other-services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .other-services-grid { grid-template-columns: repeat(4, 1fr); } }

.other-service-card {
  background: var(--white);
  border: 1px solid rgba(212,212,216,0.6);
  border-radius: 12px;
  padding: 20px;
  display: block;
  transition: all 0.2s;
}
.other-service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  color: var(--text-dark);
}
.other-service-card h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.other-service-card:hover h3 { color: var(--primary); }
.other-service-card p { font-size: 13px; color: var(--muted-fg); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================================
   TESTIMONIAL (dark bg)
   ============================================================ */
.testimonial-dark { text-align: center; }
.testimonial-dark .stars-lg { display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; }
.testimonial-dark blockquote {
  font-size: clamp(18px, 2.5vw, 22px);
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-dark .reviewer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(6,109,167,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
}
.reviewer-info { text-align: left; }
.reviewer-name { font-weight: 700; color: var(--white); }
.reviewer-meta { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-cards {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 640px) { .contact-cards { grid-template-columns: 1fr 1fr; } }

.contact-card {
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-card.blue { background: var(--primary); color: var(--white); }
.contact-card.white { background: var(--white); border: 1px solid var(--border); }
.contact-card svg { width: 48px; height: 48px; }
.contact-card.blue svg { color: rgba(255,255,255,0.9); }
.contact-card.white svg { color: var(--primary); }
.contact-card h3 { font-size: 22px; font-weight: 700; }
.contact-card p { font-size: 15px; opacity: 0.85; line-height: 1.6; }
.contact-card .phone-num { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 600; }
.contact-card .contact-btn {
  margin-top: 8px;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.contact-card.blue .contact-btn { background: rgba(255,255,255,0.15); color: var(--white); }
.contact-card.blue .contact-btn:hover { background: rgba(255,255,255,0.25); color: var(--white); }
.contact-card.white .contact-btn { background: var(--primary); color: var(--white); }
.contact-card.white .contact-btn:hover { background: var(--primary-dark); color: var(--white); }

/* ============================================================
   PORTFOLIO — project block
   ============================================================ */
.portfolio-project { margin-bottom: 64px; }
.portfolio-project:last-child { margin-bottom: 0; }
.portfolio-project h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.portfolio-project .description {
  font-size: 16px;
  color: var(--muted-fg);
  margin-bottom: 24px;
  max-width: 600px;
}

/* ============================================================
   SERVICES LIST (service page overview)
   ============================================================ */
.services-list-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .services-list-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-list-grid { grid-template-columns: repeat(3, 1fr); } }

.service-list-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: block;
  transition: all 0.25s;
}
.service-list-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,0.08); color: var(--text-dark); }
.service-list-card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(6,109,167,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
  transition: all 0.25s;
}
.service-list-card:hover .icon-wrap { background: var(--primary); color: var(--white); }
.service-list-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.service-list-card:hover h3 { color: var(--primary); }
.service-list-card p { font-size: 14px; color: var(--muted-fg); line-height: 1.6; margin-bottom: 16px; }
.service-list-card .arrow-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: var(--primary);
  transition: gap 0.2s;
}
.service-list-card:hover .arrow-link { gap: 8px; }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-full-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) { .reviews-full-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-full-grid { grid-template-columns: repeat(3, 1fr); } }

.review-link-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.review-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.2s;
}
.review-link-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
  padding-bottom: 32px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand img { height: 48px; width: auto; margin-bottom: 24px; }
.footer-tagline { font-size: 14px; max-width: 260px; margin-bottom: 16px; line-height: 1.6; }
.footer-insured {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 12px; margin-bottom: 24px; }
.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  display: flex;
}
.footer-social a:hover { color: var(--primary); }
.footer-social svg { width: 20px; height: 20px; }
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.footer-cta-btn:hover { background: var(--primary-dark); color: var(--white); }
.footer-fastest { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; }

.footer-col h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--primary); }
.footer-contact-item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item .label { font-weight: 600; color: var(--white); display: block; margin-bottom: 2px; }
.footer-link-list { display: flex; flex-direction: column; gap: 12px; }
.footer-link-list a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-link-list a:hover { color: var(--primary); }
.footer-link-list .view-all { font-size: 14px; font-weight: 700; color: var(--primary); }
.footer-link-list .view-all:hover { text-decoration: underline; }

.footer-payment { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; margin-top: 16px; }
.footer-payment p { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.payment-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-tag { font-size: 12px; background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 999px; color: rgba(255,255,255,0.65); }

.footer-quick-links {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-quick-links nav { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; }
.footer-quick-links nav a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-quick-links nav a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom p, .footer-bottom span { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   FINAL CTA (blue bg)
   ============================================================ */
.final-cta { text-align: center; position: relative; overflow: hidden; }
.final-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.final-cta-dark h2 { color: var(--white); }
.final-cta-dark p { color: rgba(255,255,255,0.7); }
.final-cta-dark .sub-note { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 32px; }

/* ============================================================
   TWO-COL LAYOUT
   ============================================================ */
.two-col { display: grid; gap: 48px; align-items: center; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .two-col { gap: 80px; } }

/* ============================================================
   PRIVACY / TERMS
   ============================================================ */
.prose-content { max-width: 800px; margin: 0 auto; }
.prose-content h2 { font-size: 24px; font-weight: 700; margin: 40px 0 12px; color: var(--text-dark); }
.prose-content h3 { font-size: 18px; font-weight: 700; margin: 24px 0 8px; color: var(--text-dark); }
.prose-content p { font-size: 15px; color: var(--muted-fg); line-height: 1.8; margin-bottom: 16px; }
.prose-content ul { margin: 12px 0 16px 20px; }
.prose-content ul li { font-size: 15px; color: var(--muted-fg); line-height: 1.8; list-style: disc; margin-bottom: 4px; }
.prose-content a { color: var(--primary); text-decoration: underline; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-fg); }
.text-white { color: var(--white); }
.font-oswald { font-family: 'Oswald', sans-serif; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.max-w-3xl { max-width: 768px; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 900px; margin-left: auto; margin-right: auto; }
.flex-center { display: flex; justify-content: center; }
.gap-4 { gap: 16px; }
.flex-wrap-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ============================================================
   SVG ICON helpers
   ============================================================ */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }

/* ============================================================
   PLATFORM REVIEW CARDS (reviews page)
   ============================================================ */
.platform-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .platform-cards-grid { grid-template-columns: 1fr; } }
.platform-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(212,212,216,0.5);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.platform-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.platform-card-logo-name { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600; color: var(--text-dark); }
.platform-card-tagline { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.platform-card-desc { font-size: 14px; color: var(--muted-fg); line-height: 1.75; flex: 1; }
.platform-card-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.platform-btn-see {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid var(--primary); color: var(--primary); background: transparent;
  padding: 10px 16px; border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: background 0.2s, color 0.2s; text-decoration: none;
}
.platform-btn-see:hover { background: var(--primary); color: var(--white); }
.platform-btn-leave {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary); color: var(--white);
  padding: 10px 16px; border-radius: 8px; font-size: 14px; font-weight: 700;
  transition: background 0.2s; text-decoration: none;
}
.platform-btn-leave:hover { background: var(--primary-dark); color: var(--white); }
.platform-btn-leave svg { flex-shrink: 0; }
.review-why-box {
  background: #1a1a2e; color: rgba(255,255,255,0.85);
  border-radius: 16px; padding: 36px 40px; margin-top: 40px; text-align: center;
}
.review-why-box h3 { font-family: 'Oswald', sans-serif; font-size: 20px; color: #fff; margin-bottom: 12px; }
.review-why-box p { font-size: 15px; line-height: 1.75; max-width: 640px; margin: 0 auto; }

/* ============================================================
   MAKE-READY GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-pair {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212,212,216,0.4);
}
.gallery-pair-images { display: grid; grid-template-columns: 1fr 1fr; }
.gallery-pair-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.gallery-pair-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-img-label {
  position: absolute; bottom: 6px; left: 6px;
  background: rgba(0,0,0,0.65); color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 3px 8px; border-radius: 4px;
}
.gallery-pair-caption {
  padding: 10px 14px;
  font-size: 13px; color: var(--muted-fg); font-weight: 500; line-height: 1.4;
}

/* ============================================================
   PHOTO CAROUSEL
   ============================================================ */
.photo-carousel-wrap { overflow: hidden; }
.photo-carousel-track {
  display: flex; gap: 12px;
  transition: transform 0.35s ease;
  will-change: transform;
}
.photo-carousel-item {
  flex: 0 0 calc(25% - 9px); min-width: 0;
  border-radius: 12px; overflow: hidden;
  position: relative; background: #111;
}
.photo-carousel-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
}
.ci-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 4px 10px; border-radius: 20px;
  color: #fff; pointer-events: none;
}
.ci-badge-before { background: #222; }
.ci-badge-after  { background: #16a34a; }
.ci-badge-during { background: #ea6c00; }
.ci-badge-gallery{ background: var(--primary); }
.carousel-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; background: var(--white);
  border: none; border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: background 0.15s, color 0.15s;
}
.carousel-nav-btn:hover { background: var(--primary); }
.carousel-nav-btn:hover svg { stroke: #fff; }
.carousel-nav-btn svg { width: 18px; height: 18px; stroke: var(--text-dark); fill: none; }
.carousel-nav-prev { left: -20px; }
.carousel-nav-next { right: -20px; }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.2); border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--primary); transform: scale(1.3); }
.carousel-cta-line { text-align: center; margin-top: 24px; font-size: 15px; color: var(--muted-fg); }
.carousel-cta-link { color: var(--primary); font-weight: 700; text-decoration: none; }
.carousel-cta-link:hover { text-decoration: underline; }
@media (max-width: 900px)  { .photo-carousel-item { flex: 0 0 calc(50% - 6px); } }
@media (max-width: 520px)  { .photo-carousel-item { flex: 0 0 100%; } }

/* ============================================================
   OTHER SERVICES GRID
   ============================================================ */
.other-services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 900px)  { .other-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .other-services-grid { grid-template-columns: 1fr; } }
.other-svc-card {
  background: var(--white); border-radius: 12px; padding: 24px;
  border: 1px solid rgba(212,212,216,0.5); text-decoration: none;
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.other-svc-card:hover { box-shadow: 0 4px 20px rgba(6,109,167,0.12); border-color: var(--primary); }
.other-svc-card h3 { font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600; color: var(--text-dark); }
.other-svc-card p  { font-size: 14px; color: var(--muted-fg); flex: 1; }
.other-svc-card .arrow-link { color: var(--primary); font-size: 13px; font-weight: 700; margin-top: 4px; }

/* featured variant on services page */
.service-list-card-featured {
  border-color: var(--primary);
  background: rgba(6,109,167,0.04);
  position: relative;
}
.service-list-card-featured::before {
  content: 'FEATURED';
  position: absolute; top: -1px; right: 16px;
  background: var(--primary); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  padding: 2px 10px; border-radius: 0 0 6px 6px;
}

/* ============================================================
   MOBILE STICKY BOTTOM CTA
   ============================================================ */
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #0d1b2a;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    align-items: center;
  }
  .mobile-sticky-cta .msb-text {
    flex: 1;
    background: #066da7;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    padding: 13px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }
  .mobile-sticky-cta .msb-call {
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    padding: 13px 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
  }
  /* Push content above the bar */
  .page-wrapper { padding-bottom: 78px; }
}
