/* =============================================
   SALTY DAWGZ ROOFING — Mobile-First Styles
   ============================================= */

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

:root {
  /* Brand */
  --brand: #E63946;
  --brand-dark: #C1121F;
  --brand-light: #FFF0F1;
  --navy: #1D3557;
  --navy-dark: #0F1D35;
  --navy-light: #274773;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Accents */
  --green: #10B981;
  --amber: #F59E0B;

  /* Spacing & Radius */
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--brand-dark); }

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.35);
}

.btn--white {
  background: var(--white);
  color: var(--gray-800);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  color: var(--gray-900);
}

.btn--outline {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn--sm { padding: 8px 18px; font-size: 13px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--success {
  background: var(--green) !important;
  border-color: var(--green) !important;
}

/* =============================================
   STICKY CTA (MOBILE)
   ============================================= */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  gap: 8px;
  background: var(--navy-dark);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.sticky-cta--visible {
  transform: translateY(0);
}

.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

.sticky-cta__call {
  background: var(--brand);
  color: var(--white) !important;
}
.sticky-cta__call:hover { background: var(--brand-dark); color: var(--white) !important; }

.sticky-cta__quote {
  background: var(--white);
  color: var(--gray-900) !important;
}
.sticky-cta__quote:hover { background: var(--gray-100); color: var(--gray-900) !important; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 502;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.header--scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
}

.header__name {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: 17px;
  color: var(--navy);
  display: block;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.header__tagline {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header__nav {
  display: none;
  gap: 28px;
}

.header__nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--brand); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-800) !important;
  padding: 8px 12px;
  border-radius: 100px;
  background: var(--gray-100);
  transition: background 0.2s;
}
.header__phone:hover { background: var(--gray-200); }
.header__phone span { display: none; }

.header__cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 501;
  background: var(--white);
  padding-top: 72px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 24px 24px;
  gap: 4px;
}

.mobile-menu__nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu__nav a:last-child {
  border-bottom: none;
  margin-top: 16px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: var(--navy-dark);
  padding: 52px 0 60px;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(29,53,87,0.75) 100%);
  pointer-events: none;
}

.hero[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--brand);
}

.hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.trust-bar__item {
  padding: 20px 8px;
}

.trust-bar__number {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.2;
}

.trust-bar__label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2px;
}

.trust-bar__divider {
  display: none;
}

/* =============================================
   SECTION COMMON
   ============================================= */
section {
  padding: 56px 0;
}

.section__eyebrow {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.section__eyebrow--light {
  color: var(--brand);
  opacity: 0.8;
}

.section__title {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.section__subtitle {
  font-size: 15px;
  color: var(--gray-500);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  background: var(--gray-50);
}

.services__grid {
  display: grid;
  gap: 12px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(24px);
}

.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 30px rgba(230,57,70,0.08);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand) !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card__link:hover { gap: 8px; }

/* =============================================
   WHY US
   ============================================= */
.why__grid {
  display: grid;
  gap: 12px;
}

.why__card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  border: 1px solid var(--gray-100);
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.4s ease;
}

.why__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why__number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: var(--brand);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 10px;
}

.why__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.why__card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--brand);
  padding: 48px 0;
  position: relative;
  background-size: cover;
  background-position: center;
}

.cta-banner[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(230,57,70,0.85);
}

.cta-banner[style*="background-image"] .container {
  position: relative;
  z-index: 1;
}

.cta-banner__inner {
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin: 0 auto;
}

.cta-banner .btn--primary {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}
.cta-banner .btn--primary:hover {
  background: var(--gray-100);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-banner .btn--white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.cta-banner .btn--white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  background: var(--gray-50);
}

.process__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 36px;
}

.process__timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--gray-200);
}

.process__step {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
}

.process__step.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.process__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-left: -36px;
}

.process__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.process__content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.process__content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* =============================================
   SERVICE AREAS
   ============================================= */
.areas__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.area-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  color: var(--gray-600);
  transition: all 0.2s;
}

.area-tag:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

.areas__note {
  text-align: center;
  font-size: 14px;
  color: var(--gray-400);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: var(--gray-50);
}

.faq__list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item[open] {
  border-color: var(--brand);
}

.faq__item summary {
  padding: 18px 20px;
  padding-right: 44px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  color: var(--gray-800);
  position: relative;
  line-height: 1.4;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--gray-400);
  transition: transform 0.2s;
}

.faq__item[open] summary::after {
  content: '\2212';
}

.faq__item p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--navy-dark);
  padding: 56px 0;
  padding-bottom: max(56px, calc(env(safe-area-inset-bottom) + 80px));
}

.contact__wrapper {
  display: grid;
  gap: 32px;
}

.contact__text {
  color: var(--white);
}

.contact__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.contact__subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact__perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact__perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.contact__direct {
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

.contact__direct p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}

.contact__phone-big {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: var(--brand) !important;
}

/* Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  color: var(--gray-800);
}

.contact__form-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 5px;
}

.optional {
  font-weight: 400;
  color: var(--gray-400);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.5);
  padding: 32px 0 24px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.footer__name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  display: block;
  line-height: 1.2;
}

.footer__sub {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  display: block;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer__links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45) !important;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--white) !important;
}

.footer__bottom {
  text-align: center;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   SCROLL ANIMATION BASE
   ============================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE — TABLET (640px+)
   ============================================= */
@media (min-width: 640px) {
  .hero__title {
    font-size: 44px;
  }

  .hero__ctas {
    flex-direction: row;
  }

  .section__title {
    font-size: 32px;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner__actions {
    flex-direction: row;
    max-width: 500px;
  }

  .trust-bar__number {
    font-size: 26px;
  }

  .trust-bar__label {
    font-size: 11px;
  }

  .contact__wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact__title {
    font-size: 32px;
  }
}

/* =============================================
   RESPONSIVE — DESKTOP (960px+)
   ============================================= */
@media (min-width: 960px) {
  .container {
    padding: 0 40px;
  }

  section {
    padding: 80px 0;
  }

  .hero {
    padding: 80px 0 88px;
  }

  .hero__title {
    font-size: 56px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .section__title {
    font-size: 38px;
  }

  /* Show desktop nav, hide hamburger */
  .header__nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .header__phone span {
    display: inline;
  }

  .header__cta {
    display: inline-flex;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .process__timeline {
    padding-left: 0;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }

  .process__timeline::before {
    left: 22px;
    right: 22px;
    top: 22px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .process__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 16px;
    transform: translateY(20px);
  }

  .process__step.is-visible {
    transform: translateY(0);
  }

  .process__icon {
    margin-left: 0;
    margin-bottom: 16px;
  }

  .trust-bar__inner {
    gap: 20px;
  }

  .trust-bar__number {
    font-size: 30px;
  }

  .trust-bar__label {
    font-size: 12px;
  }

  .cta-banner__inner {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 40px;
  }

  .cta-banner p {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  .cta-banner__actions {
    flex-direction: row;
    flex-shrink: 0;
  }

  .contact {
    padding-bottom: 80px;
  }

  .sticky-cta {
    display: none;
  }
}

/* =============================================
   LARGE DESKTOP (1200px+)
   ============================================= */
@media (min-width: 1200px) {
  .hero__title {
    font-size: 62px;
  }
}

/* =============================================
   IMAGE BANNER (About Section)
   ============================================= */
.img-banner {
  padding: 48px 0;
  background: var(--white);
}

.img-banner__inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.img-banner__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 16/10;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.img-banner__text h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 26px;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.15;
}

.img-banner__text p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .img-banner__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (min-width: 960px) {
  .img-banner {
    padding: 72px 0;
  }
  .img-banner__text h2 {
    font-size: 32px;
  }
}

/* =============================================
   SHOWCASE GRID
   ============================================= */
.showcase {
  padding: 0;
  background: var(--gray-900);
}

.showcase .container {
  max-width: 100%;
  padding: 0;
}

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

.showcase__grid img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

@media (min-width: 640px) {
  .showcase__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .showcase__grid img {
    aspect-ratio: 4/3;
  }
}

/* =============================================
   SERVICE PAGES
   ============================================= */

/* Service Hero */
.svc-hero {
  background: var(--navy-dark);
  padding: 40px 0 52px;
  position: relative;
  overflow: hidden;
}

.svc-hero[style*="background-image"] {
  background-size: cover;
  background-position: center;
}

.svc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(29,53,87,0.78) 100%);
  pointer-events: none;
}

.svc-hero .container {
  position: relative;
  z-index: 1;
}

.svc-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.svc-hero__back:hover {
  color: rgba(255,255,255,0.8) !important;
}

.svc-hero__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 34px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.svc-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 28px;
}

.svc-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Service Content */
.svc-content {
  padding: 48px 0;
}

.svc-content__grid {
  display: grid;
  gap: 40px;
}

.svc-content__main h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: var(--gray-900);
  margin-bottom: 14px;
  margin-top: 40px;
  line-height: 1.2;
}

.svc-content__main h2:first-child {
  margin-top: 0;
}

.svc-content__main p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Service Steps */
.svc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
}

.svc-step {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}

.svc-step:last-child {
  border-bottom: none;
}

.svc-step__num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.svc-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.svc-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Service Checklist */
.svc-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
  padding: 0;
}

.svc-checklist li {
  font-size: 15px;
  color: var(--gray-600);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.svc-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
}

/* Service Inline Image */
.svc-img {
  margin: 28px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.svc-img img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Service Sidebar */
.svc-content__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-sidebar-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.svc-sidebar-card--cta {
  background: var(--navy-dark);
  border-color: transparent;
  text-align: center;
}

.svc-sidebar-card--cta h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.svc-sidebar-card--cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.5;
}

.svc-sidebar-phone {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.7) !important;
}

.svc-sidebar-phone:hover {
  color: var(--white) !important;
}

.svc-sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.svc-sidebar-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-sidebar-links li {
  border-bottom: 1px solid var(--gray-200);
}

.svc-sidebar-links li:last-child {
  border-bottom: none;
}

.svc-sidebar-links a {
  display: block;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600) !important;
  transition: color 0.2s, padding-left 0.2s;
}

.svc-sidebar-links a:hover {
  color: var(--brand) !important;
  padding-left: 6px;
}

/* Service Page Responsive */
@media (min-width: 640px) {
  .svc-hero__title {
    font-size: 44px;
  }

  .svc-hero__ctas {
    flex-direction: row;
  }
}

@media (min-width: 960px) {
  .svc-hero {
    padding: 56px 0 72px;
  }

  .svc-hero__title {
    font-size: 52px;
  }

  .svc-content {
    padding: 64px 0;
  }

  .svc-content__grid {
    grid-template-columns: 1fr 340px;
    gap: 48px;
  }

  .svc-content__main h2 {
    font-size: 26px;
  }

  .svc-content__sidebar {
    position: sticky;
    top: 80px;
  }
}