/* ════════════════════════════════════════════
   Infinite Roofing Solutions — Custom Styles
   Matching live site design tokens
   ════════════════════════════════════════════ */

:root {
  --background: 0 0% 100%;
  --foreground: 220 50% 12%;
  --card: 0 0% 100%;
  --card-foreground: 220 50% 12%;
  --primary: 220 65% 25%;
  --primary-foreground: 0 0% 100%;
  --secondary: 38 92% 50%;
  --secondary-foreground: 220 65% 12%;
  --muted: 220 20% 96%;
  --muted-foreground: 220 15% 40%;
  --accent: 220 55% 35%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 220 20% 88%;
  --input: 220 20% 88%;
  --ring: 38 92% 50%;
  --radius: .75rem;
  --brand-blue: 220 65% 25%;
  --brand-blue-light: 215 60% 40%;
  --brand-blue-dark: 220 70% 18%;
  --brand-orange: 38 92% 50%;
  --brand-orange-light: 42 95% 58%;
  --brand-orange-dark: 32 88% 42%;
  --brand-slate: 220 25% 30%;
}

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

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: hsl(220 50% 12%);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: hsl(220 50% 12%);
}

/* ── Layout ─────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

/* ── Colors (computed) ──────────────────────── */
.bg-navy       { background: hsl(220 65% 25%); }
.bg-navy-dark  { background: hsl(220 70% 18%); }
.bg-navy-deep  { background: hsl(220 75% 12%); }
.bg-orange     { background: hsl(38 92% 50%); }
.bg-white      { background: #fff; }
.bg-muted      { background: hsl(220 20% 96%); }
.bg-gradient-dark {
  background: linear-gradient(135deg, hsl(220 70% 20%) 0%, hsl(220 65% 28%) 50%, hsl(215 60% 35%) 100%);
}
.bg-gradient-hero {
  background: linear-gradient(135deg, hsl(220 70% 20%) 0%, hsl(220 65% 28%) 50%, hsl(215 60% 35%) 100%);
}

.text-navy     { color: hsl(220 65% 25%); }
.text-orange   { color: hsl(38 92% 50%); }
.text-white    { color: #fff; }
.text-gray     { color: hsl(220 15% 40%); }
.text-light    { color: hsl(220 20% 65%); }

/* ── Top Bar ────────────────────────────────── */
.top-bar {
  background: hsl(220 70% 18%);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.top-bar a {
  color: hsl(38 92% 50%);
  font-weight: 600;
  transition: opacity 0.2s;
}

.top-bar a:hover { opacity: 0.85; }

/* ── Header / Nav ───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid hsl(220 20% 90%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: hsl(220 50% 12%);
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: hsl(38 92% 50%);
  background: hsl(220 20% 96%);
}

.nav-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid hsl(220 20% 90%);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 200;
}

.nav-item:hover .nav-dropdown {
  display: block;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: hsl(220 50% 12%);
  transition: all 0.15s;
}

.dropdown-link:hover {
  background: hsl(220 20% 96%);
  color: hsl(38 92% 50%);
}

.dropdown-link .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(220 20% 96%);
  border-radius: 8px;
  flex-shrink: 0;
}

.dropdown-link:hover .icon {
  background: hsl(220 65% 25%);
  color: #fff;
}

.dropdown-link .icon svg {
  width: 18px;
  height: 18px;
}

.dropdown-link span {
  display: block;
}

.dropdown-link .link-title {
  font-weight: 600;
  font-size: 14px;
}

.dropdown-link .link-desc {
  font-size: 12px;
  color: hsl(220 15% 40%);
  margin-top: 2px;
}

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: hsl(38 92% 50%);
  color: hsl(220 65% 12%);
  box-shadow: 0 2px 8px rgba(234,160,28,0.3);
}

.btn-primary:hover {
  background: hsl(42 95% 58%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(234,160,28,0.4);
}

.btn-outline {
  background: transparent;
  color: hsl(220 65% 25%);
  border: 2px solid hsl(220 20% 88%);
}

.btn-outline:hover {
  border-color: hsl(220 65% 25%);
  background: hsl(220 20% 96%);
}

.btn-navy {
  background: hsl(220 65% 25%);
  color: #fff;
}

.btn-navy:hover {
  background: hsl(220 70% 18%);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: hsl(220 65% 25%);
}

.btn-white:hover {
  background: hsl(220 20% 96%);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* ── Hero Section ───────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(220,70%,18%,0.92) 0%, hsla(220,65%,25%,0.85) 50%, hsla(215,60%,35%,0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: hsl(38 92% 50%);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 strong, .hero h1 b {
  color: hsl(38 92% 50%);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 520px;
}

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

/* ── Stats Bar ──────────────────────────────── */
.stats-bar {
  background: hsl(220 70% 18%);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  color: #fff;
}

.stat-item .stat-value {
  font-size: 42px;
  font-weight: 800;
  color: hsl(38 92% 50%);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ── Service Cards ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid hsl(220 20% 90%);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: hsl(220 15% 40%);
  line-height: 1.6;
  flex: 1;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: hsl(220 65% 25%);
  margin-top: 16px;
  transition: color 0.2s;
}

.service-card .card-link:hover {
  color: hsl(38 92% 50%);
}

/* ── Section Headings ───────────────────────── */
.section-heading {
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
}

.section-heading h2 strong, .section-heading h2 b {
  color: hsl(38 92% 50%);
}

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: hsl(220 15% 40%);
  max-width: 640px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Trust/Why Choose Cards ─────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.trust-card {
  background: #fff;
  border: 1px solid hsl(220 20% 90%);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s;
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.trust-card .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(220 20% 96%);
  border-radius: 12px;
  margin-bottom: 20px;
  color: hsl(220 65% 25%);
}

.trust-card:hover .card-icon {
  background: hsl(220 65% 25%);
  color: #fff;
}

.trust-card .card-icon svg {
  width: 24px;
  height: 24px;
}

.trust-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 14px;
  color: hsl(220 15% 40%);
  line-height: 1.65;
}

/* ── Ticker / Trust Bar ─────────────────────── */
.trust-ticker {
  background: hsl(220 20% 96%);
  padding: 16px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: hsl(220 15% 40%);
  flex-shrink: 0;
}

.ticker-item svg {
  width: 18px;
  height: 18px;
  color: hsl(38 92% 50%);
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Fleet / Service Area ───────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-section img {
  border-radius: 16px;
}

.city-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: hsl(220 20% 96%);
  border: 1px solid hsl(220 20% 90%);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: hsl(220 50% 12%);
  transition: all 0.2s;
}

.city-badge:hover {
  background: hsl(220 65% 25%);
  color: #fff;
  border-color: hsl(220 65% 25%);
}

/* ── CTA Section ────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, hsl(220 70% 20%) 0%, hsl(220 65% 28%) 50%, hsl(215 60% 35%) 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ─────────────────────────────────── */
.site-footer {
  background: hsl(220 70% 18%);
  color: #fff;
  padding: 60px 0 0;
}

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

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, hsl(38 92% 50%), hsl(42 95% 58%));
  color: hsl(220 65% 12%);
  border-color: transparent;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: hsl(38 92% 50%);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: hsl(38 92% 50%); }

/* ── Community Discount ─────────────────────── */
.discount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.discount-card {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border: 1px solid hsl(220 20% 90%);
  border-radius: 16px;
  transition: all 0.3s;
}

.discount-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.discount-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.discount-card h3 {
  font-size: 18px;
  font-weight: 700;
}

/* ── FAQ ────────────────────────────────────── */
.faq-item {
  border: 1px solid hsl(220 20% 90%);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: hsl(220 50% 12%);
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: hsl(220 20% 96%);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: hsl(220 15% 40%);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 15px;
  color: hsl(220 15% 40%);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ── Forms ──────────────────────────────────── */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: hsl(220 50% 12%);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid hsl(220 20% 88%);
  border-radius: 8px;
  background: #fff;
  color: hsl(220 50% 12%);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(38 92% 50%);
  box-shadow: 0 0 0 3px rgba(234,160,28,0.15);
}

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

.form-card {
  background: #fff;
  border: 1px solid hsl(220 20% 90%);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ── Page Hero (inner pages) ────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.page-hero .hero-overlay {
  background: linear-gradient(135deg, hsla(220,70%,18%,0.93) 0%, hsla(220,65%,25%,0.87) 50%, hsla(215,60%,35%,0.80) 100%);
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  color: #fff;
}

/* ── Benefits List ──────────────────────────── */
.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: hsl(220 15% 40%);
}

.benefits-list li svg {
  width: 20px;
  height: 20px;
  color: hsl(38 92% 50%);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Areas / Location Grid ──────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.area-card {
  padding: 20px;
  background: #fff;
  border: 1px solid hsl(220 20% 90%);
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: hsl(220 50% 12%);
  transition: all 0.2s;
}

.area-card:hover {
  background: hsl(220 65% 25%);
  color: #fff;
  border-color: hsl(220 65% 25%);
}

/* ── Mobile Nav ─────────────────────────────── */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: hsl(220 50% 12%);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 300;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid hsl(220 20% 90%);
}

.mobile-nav-header img {
  height: 36px;
  width: auto;
}

.mobile-nav-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: hsl(220 50% 12%);
  border-radius: 8px;
  transition: background 0.15s;
}

.mobile-nav-close:hover {
  background: hsl(220 20% 96%);
}

.mobile-nav-links {
  padding: 12px 16px;
  flex: 1;
}

.mobile-nav-group {
  margin-bottom: 8px;
}

.mobile-nav-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  font-size: 15px;
  font-weight: 700;
  color: hsl(220 50% 12%);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.mobile-nav-group-title:hover {
  background: hsl(220 20% 96%);
}

.mobile-nav-group-title svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.mobile-nav-group.expanded .mobile-nav-group-title svg {
  transform: rotate(180deg);
}

.mobile-nav-sub {
  display: none;
  padding: 4px 0 8px 12px;
}

.mobile-nav-group.expanded .mobile-nav-sub {
  display: block;
}

.mobile-nav-sub a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: hsl(220 15% 40%);
  border-radius: 6px;
  transition: all 0.15s;
}

.mobile-nav-sub a:hover {
  background: hsl(220 20% 96%);
  color: hsl(38 92% 50%);
}

.mobile-nav-ctas {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid hsl(220 20% 90%);
}

.mobile-nav-ctas .btn {
  width: 100%;
  justify-content: center;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 250;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.visible {
  opacity: 1;
}

@media (max-width: 1024px) {
  .mobile-nav {
    display: flex;
  }
  .header-ctas {
    display: none;
  }
}

/* ── Scroll animations ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal delays for grids */
.service-card.reveal:nth-child(1) { transition-delay: 0s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.service-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.service-card.reveal:nth-child(6) { transition-delay: 0.4s; }

.trust-card.reveal:nth-child(1) { transition-delay: 0s; }
.trust-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.trust-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.trust-card.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Intro content section */
.intro-content {
  max-width: 800px;
  margin: 0 auto 48px;
}

.intro-content p {
  font-size: 17px;
  line-height: 1.75;
  color: hsl(220 15% 40%);
  margin-bottom: 16px;
}

.intro-content p:last-child {
  margin-bottom: 0;
}

.intro-content strong {
  color: hsl(220 50% 12%);
  font-weight: 600;
}

/* Section divider for premium feel */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, hsl(38 92% 50%), hsl(42 95% 58%));
  border-radius: 2px;
  margin: 16px auto 0;
}

.text-center .section-divider {
  margin-left: auto;
  margin-right: auto;
}

/* CTA button pair */
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Trust stat cards — 4-column on About page */
@media (max-width: 768px) {
  .trust-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .discount-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { min-height: 450px; }
  .hero h1 { font-size: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-padding { padding: 56px 0; }
  .page-hero { min-height: 280px; }
  .discount-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; }
  .header-ctas .btn-outline { display: none; }
}
