/* ==========================================================================
   Entretien Pompe Chaleur — Design System v2
   Premium, local, trustworthy, conversion-focused
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #003f73;
  --color-primary-dark: #082033;
  --color-primary-light: #1a5f9b;
  --color-on-primary: #ffffff;
  --color-accent: #00843d;
  --color-accent-hover: #006f34;
  --color-accent-light: #e6f7ed;
  --color-on-accent: #ffffff;
  --color-bg: #f5f8fc;
  --color-bg-soft: #eef5ff;
  --color-bg-white: #ffffff;
  --color-text: #102033;
  --color-text-heading: #0a1628;
  --color-muted: #334155;
  --color-muted-light: #8a99ae;
  --color-border: rgba(15, 23, 42, 0.08);
  --color-border-light: rgba(15, 23, 42, 0.05);
  --color-error: #c1292e;
  --color-error-bg: #fef2f2;
  --color-error-border: #fecaca;
  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 8px 28px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 16px 40px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 100px;
  --container: 1200px;
  --pad-mobile: 20px;
  --pad-desktop: 48px;
  --ease-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: 1rem; font-weight: 400; line-height: 1.7; color: var(--color-text); background: var(--color-bg); min-height: 100vh; display: flex; flex-direction: column; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: var(--color-text); border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); padding: 13px 16px; background: var(--color-bg-white); transition: border-color var(--ease-fast), box-shadow var(--ease-fast); width: 100%; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(0, 63, 115, 0.1); }
::selection { background: rgba(0, 63, 115, 0.15); color: var(--color-primary-dark); }

/* ---------- Typography ---------- */
h1, .h1, .display { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.125rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.035em; color: var(--color-text-heading); }
h2, .h2, .headline-lg { font-family: var(--font-display); font-size: clamp(1.625rem, 3.5vw, 2.5rem); font-weight: 650; line-height: 1.18; letter-spacing: -0.025em; color: var(--color-text-heading); }
h3, .h3, .headline-md { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.3; letter-spacing: -0.015em; color: var(--color-text-heading); }
h4, .h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; line-height: 1.35; color: var(--color-text-heading); }
p, .body-text { font-size: 1rem; line-height: 1.7; color: var(--color-muted); }
.body-lg { font-size: clamp(1rem, 1.5vw, 1.125rem); line-height: 1.7; color: var(--color-muted); }
.body-sm { font-size: 0.9375rem; line-height: 1.65; color: var(--color-muted); }
.label { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-muted); }
.caption { font-size: 0.8125rem; line-height: 1.5; color: var(--color-muted-light); }
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.mt-auto { margin-top: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-left: auto; margin-right: auto; padding-left: var(--pad-mobile); padding-right: var(--pad-mobile); }
@media (min-width: 768px) { .container { padding-left: var(--pad-desktop); padding-right: var(--pad-desktop); } }
.section { padding: var(--space-4xl) 0; }
.section--tight { padding: var(--space-2xl) 0; }
.section--alt { background: var(--color-bg-soft); }
.section--white { background: var(--color-bg-white); }
@media (min-width: 768px) { .section { padding: var(--space-5xl) 0; } .section--tight { padding: var(--space-3xl) 0; } }
.section-header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-header h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.section-header h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #00477d, #00843d);
}
.section-header p {
  max-width: 660px;
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 1.65;
  color: #43566d;
}

/* ---------- Skip Link ---------- */
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--color-primary); color: #fff; padding: 8px 16px; border-radius: var(--radius-sm); z-index: 9999; font-weight: 600; }
.skip-link:focus { top: 8px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.9375rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-md);
  transition: all var(--ease); white-space: nowrap;
  letter-spacing: 0.01em; cursor: pointer; border: 1.5px solid transparent;
}
.btn--accent, .btn--secondary {
  background: var(--color-accent); color: var(--color-on-accent);
  border-color: var(--color-accent); box-shadow: 0 4px 12px rgba(0, 131, 61, 0.22);
}
.btn--accent:hover, .btn--secondary:hover {
  background: var(--color-accent-hover); border-color: var(--color-accent-hover);
  box-shadow: 0 6px 18px rgba(0, 131, 61, 0.3); transform: translateY(-1px);
}
.btn--primary {
  background: var(--color-primary); color: var(--color-on-primary);
  border-color: var(--color-primary); box-shadow: 0 4px 12px rgba(0, 63, 115, 0.18);
}
.btn--primary:hover {
  background: var(--color-primary-light); box-shadow: 0 6px 18px rgba(0, 63, 115, 0.25);
  transform: translateY(-1px);
}
.btn--outline {
  background: var(--color-bg-white); color: var(--color-primary);
  border-color: rgba(15, 23, 42, 0.15);
}
.btn--outline:hover { background: var(--color-bg-soft); border-color: var(--color-primary); }
.btn--white {
  background: #fff; color: var(--color-primary); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.btn--white:hover { background: #f0f4f8; box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.btn--lg { padding: 16px 34px; font-size: 1rem; border-radius: var(--radius-md); }
.btn--sm { padding: 10px 18px; font-size: 0.975rem; border-radius: var(--radius-sm); }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--ease-fast); }
.btn:hover svg.arrow-right { transform: translateX(3px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--ease); height: var(--header-h);
}
.site-header.scrolled {
  box-shadow: var(--shadow-xs); background: rgba(255,255,255,0.96);
}
.header-inner {
  display: flex; align-items: center; justify-content: flex-start;
  height: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 var(--pad-mobile); gap: var(--space-lg);
}
@media (min-width: 768px) { .header-inner { padding: 0 var(--pad-desktop); } }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { width: 42px; height: 42px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--color-primary); display: none; white-space: nowrap;
}
@media (min-width: 480px) { .brand-name { display: block; } }
.main-nav { display: none; align-items: center; gap: 4px; margin-left: auto; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a {
  font-size: 0.975rem; font-weight: 500; color: var(--color-muted);
  padding: 8px 15px; border-radius: var(--radius-sm);
  transition: all var(--ease-fast);
}
.main-nav a:hover { color: var(--color-primary); background: var(--color-bg-soft); }
.main-nav a.active { color: var(--color-primary); font-weight: 600; background: rgba(0,63,115,0.06); }
.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone {
  display: none; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.975rem; font-weight: 600;
  color: var(--color-primary); white-space: nowrap;
  padding: 10px 18px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all var(--ease-fast);
}
.header-phone:hover { color: var(--color-primary-light); border-color: var(--color-primary); background: var(--color-bg-soft); }
.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (min-width: 768px) { .header-phone { display: inline-flex; } }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius-sm);
}
.hamburger:hover { background: var(--color-bg-soft); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--color-text); border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--color-bg-white); z-index: 99;
  display: flex; flex-direction: column; padding: var(--space-lg);
  transform: translateX(100%); transition: transform var(--ease-slow);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 16px 0;
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 600;
  color: var(--color-text); border-bottom: 1px solid var(--color-border-light);
  transition: color var(--ease-fast);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--color-primary); }
.mobile-nav .mobile-cta { margin-top: var(--space-lg); text-align: center; }

/* ==========================================================================
   MOBILE STICKY CTA BAR
   ========================================================================== */
.mobile-cta-bar {
  display: flex;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 98;
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
  padding: 10px var(--pad-mobile); gap: 10px;
  box-shadow: 0 -4px 16px rgba(15,23,42,0.06);
}
@media (min-width: 1024px) { .mobile-cta-bar { display: none; } }
.mobile-cta-bar .btn { flex: 1; padding: 12px 16px; font-size: 0.875rem; }
@media (max-width: 1023px) { .site-footer { padding-bottom: 100px; } }

/* ==========================================================================
   HERO — Light Editorial
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, #f8fafd 0%, #eef4fa 100%);
  border-bottom: 1px solid var(--color-border);
  padding: 50px 24px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 48fr 52fr; gap: 56px; }
}

.hero-left { }
.hero-left .hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0, 71, 125, 0.06);
  color: #00477d;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.04em;
}
.hero-left h1 {
  color: var(--color-text-heading); margin-bottom: var(--space-md); max-width: 620px;
}
.hero-left h1 span { color: #0a5fa5; }
.hero-left > p {
  color: #43566d; margin-bottom: var(--space-xl); max-width: 500px;
  font-size: 1.0625rem; line-height: 1.65;
}
.hero-actions .header-phone { display: inline-flex !important; }

.hero-left .hero-trust-row {
  display: flex; flex-wrap: wrap; gap: var(--space-md);
  font-size: 0.875rem; color: #43566d;
  font-family: var(--font-body); font-weight: 500;
}
.hero-left .hero-trust-row span {
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-left .hero-trust-row span::before {
  content: "✓"; color: var(--color-accent); font-weight: 700; font-size: 0.875rem;
}

/* Right image card */
.hero-right {
  position: relative;
}
.hero-img-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.06);
  animation: heroFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.35deg); }
}
.hero-img-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-floating-badge {
  position: absolute; bottom: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: #0a1628;
  font-family: var(--font-display); font-size: 0.8125rem; font-weight: 700;
  padding: 8px 16px; border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}
.hero-floating-badge::before {
  content: ""; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-accent);
}

/* Hero — interior pages */
.hero--page {
  min-height: auto; padding: var(--space-4xl) 0 var(--space-3xl);
  text-align: center; background: linear-gradient(180deg, #f8fafd 0%, #eef4fa 100%);
  border-bottom: 1px solid var(--color-border);
  position: relative; overflow: hidden;
}
.hero--page .hero-content { display: flex; flex-direction: column; align-items: center; }
.hero--page h1 { max-width: 800px; margin-bottom: var(--space-md); }
.hero--page h1 span { color: var(--color-primary); }
.hero--page .hero-badge { margin-left: auto; margin-right: auto; }
.hero--page > .hero-content > p { max-width: 620px; color: var(--color-muted); font-size: clamp(1rem, 1.5vw, 1.125rem); }

.dot-pattern {
  position: absolute; inset: 0; opacity: 0.2; pointer-events: none;
  background-image: radial-gradient(circle, var(--color-primary) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 18px 0;
  animation: trustFadeIn 0.6s ease both;
}
@keyframes trustFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.trust-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  color: #0f2340;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  font-family: var(--font-display);
  opacity: 0;
  animation: pillFadeUp 0.5s ease forwards;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.trust-strip__item:nth-child(1) { animation-delay: 0.05s; }
.trust-strip__item:nth-child(2) { animation-delay: 0.12s; }
.trust-strip__item:nth-child(3) { animation-delay: 0.19s; }
.trust-strip__item:nth-child(4) { animation-delay: 0.26s; }
.trust-strip__item:nth-child(5) { animation-delay: 0.33s; }
.trust-strip__item:hover {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  border-color: rgba(0, 132, 61, 0.18);
  background-color: #ffffff;
}
.trust-strip__item svg {
  color: #00843d;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 0.25s ease, color 0.25s ease;
  transform-origin: center;
}
.trust-strip__item:hover svg {
  transform: scale(1.16) rotate(-4deg);
  color: #006f34;
}
@keyframes pillFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
}

/* ==========================================================================
   CARD (Generic)
   ========================================================================== */
.card {
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: 32px; transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }

/* ==========================================================================
   BENTO GRID
   ========================================================================== */
.bento-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .bento-grid { grid-template-columns: repeat(3, 1fr); } }

.bento-card {
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--ease), transform var(--ease);
  position: relative; overflow: hidden;
}
.bento-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
@media (min-width: 768px) { .bento-card.span-2 { grid-column: span 2; } }

.bento-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
}
.bento-card__icon--blue { background: rgba(0,63,115,0.08); color: var(--color-primary); }
.bento-card__icon--green { background: var(--color-accent-light); color: var(--color-accent); }
.bento-card__icon--light { background: var(--color-bg-soft); color: var(--color-primary); }
.bento-card__icon svg { width: 26px; height: 26px; }
.bento-card h3 { margin-bottom: var(--space-sm); }
.bento-card > p { color: var(--color-muted); margin-bottom: var(--space-md); }

.bento-card__checklist { display: flex; flex-direction: column; gap: 10px; }
.bento-card__checklist li {
  display: flex; align-items: center; gap: 10px;
  color: var(--color-muted); font-size: 0.9375rem;
}
.bento-card__checklist li svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }

.bento-card--image { padding: 0; border: none; min-height: 280px; box-shadow: var(--shadow-card); }
.bento-card--image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.bento-card--image:hover img { transform: scale(1.04); }
.bento-card--image .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.08) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2rem); border-radius: var(--radius-lg);
}
.bento-card--image .overlay h3 { color: #fff; }
.bento-card--image .overlay p { color: rgba(255,255,255,0.78); }

.bento-card__accent {
  position: absolute; top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle at top right, rgba(0,63,115,0.03), transparent 70%);
  border-radius: 0 0 0 100%; pointer-events: none;
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card); transition: all var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
@media (min-width: 640px) { .service-card.span-2 { grid-column: span 2; } }

.service-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md); flex-shrink: 0;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: var(--space-sm); }
.service-card > p { color: var(--color-muted); margin-bottom: var(--space-md); }

.service-card__list { margin-bottom: var(--space-lg); display: flex; flex-direction: column; gap: 10px; }
.service-card__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9375rem; color: var(--color-muted);
}
.service-card__list li svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

.service-card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 0.9375rem; font-weight: 600;
  color: var(--color-primary); transition: color var(--ease-fast);
}
.service-card__link:hover { color: var(--color-primary-light); }
.service-card__link svg { width: 18px; height: 18px; transition: transform var(--ease-fast); }
.service-card__link:hover svg { transform: translateX(4px); }

.service-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-md); }
.service-card__tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.75rem; font-weight: 600; padding: 4px 10px;
  border-radius: var(--radius-full); background: var(--color-bg-soft);
  color: var(--color-muted);
}

.service-card__label {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--color-muted-light); margin-bottom: var(--space-xs);
}
.service-card--featured {
  border-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(0,131,61,0.08);
  position: relative;
}
.service-card__badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--color-accent); color: #fff;
  font-family: var(--font-display); font-size: 0.6875rem; font-weight: 700;
  padding: 4px 16px; border-radius: var(--radius-full); white-space: nowrap;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* CTA Strip */
.cta-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 28px 56px;
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 28px 36px;
  box-shadow: var(--shadow-card);
}
.cta-strip__title { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 600; color: var(--color-text-heading); margin-bottom: 12px; }
.cta-strip__sub { font-size: 1rem; color: var(--color-muted); }
.cta-strip__actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .cta-strip { text-align: center; }
  .cta-strip__actions { width: 100%; justify-content: center; }
  .cta-strip__actions .btn { flex: 1; }
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.process-steps { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); position: relative; }
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }

@media (min-width: 900px) {
  .process-steps::before {
    content: "";
    position: absolute;
    top: 62px;
    left: 13%;
    right: 13%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 71, 125, 0.18), rgba(0, 132, 61, 0.22));
    z-index: 0;
  }
  .process-step__number { position: relative; z-index: 2; background: #00477d; }
}

.process-step {
  text-align: center; position: relative; z-index: 1;
  padding: 32px 26px; background: #ffffff;
  border-radius: 22px; border: 1px solid rgba(15, 23, 42, 0.08);
  border-top: 3px solid transparent;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.055);
  transition: border-color 0.25s ease, border-top-color 0.25s ease, box-shadow 0.25s ease;
}
.process-step:hover {
  border-color: rgba(0, 132, 61, 0.28);
  border-top-color: var(--color-accent);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.process-step__number {
  width: 56px; height: 56px; border-radius: 999px;
  background: #00477d; color: #ffffff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 20px;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 8px rgba(0, 71, 125, 0.08);
}

.process-step__icon {
  width: 22px; height: 22px; color: #00843d;
  margin: 0 auto 12px;
  transition: transform 0.25s ease;
}
.process-step__icon svg { width: 100%; height: 100%; }
.process-step:hover .process-step__icon { transform: scale(1.15); }
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: var(--color-muted); font-size: 1rem; }

/* ==========================================================================
   RISKS / URGENCY
   ========================================================================== */
.risk-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fef2f2; color: #dc2626;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 16px; border-radius: var(--radius-full);
  margin-bottom: 18px;
}
.risks-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 768px) { .risks-grid { grid-template-columns: repeat(2, 1fr); } }

.risk-card {
  position: relative; display: flex; gap: 18px;
  padding: 20px 24px; border-radius: 22px;
  background: linear-gradient(180deg, #fffafa 0%, #fff4f4 100%);
  border: 1px solid rgba(239, 68, 68, 0.18);
  box-shadow: 0 16px 45px rgba(127, 29, 29, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.risk-card::before {
  content: ""; position: absolute;
  left: 0; top: 22px; bottom: 22px; width: 4px;
  border-radius: 999px; background: rgba(239, 68, 68, 0.85);
}
.risk-card:hover { border-color: rgba(220, 38, 38, 0.3); box-shadow: 0 20px 50px rgba(127, 29, 29, 0.09); }
.risk-card:hover .risk-card__icon { transform: scale(1.08); }

.risk-card__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: #ffe4e6; color: #dc2626;
  flex-shrink: 0; transition: transform 0.25s ease;
}
.risk-card__icon svg { width: 22px; height: 22px; }
.risk-card__label {
  display: inline-flex; margin-bottom: 6px;
  color: #dc2626; font-size: 0.7875rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.risk-card__content h3 { margin-bottom: 4px; font-size: 1.0625rem; }
.risk-card__content p { color: var(--color-muted); font-size: 1rem; }

/* ==========================================================================
   COVERAGE / LOCAL
   ========================================================================== */
.coverage-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 1024px) { .coverage-grid { grid-template-columns: 7fr 5fr; } }

.coverage-map {
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card); min-height: 380px;
  display: flex; flex-direction: column;
}
.coverage-map__header { margin-bottom: var(--space-md); }
.coverage-map__header h3 { display: flex; align-items: center; gap: 8px; }
.coverage-map__header p { color: var(--color-muted); margin-top: 4px; }
.coverage-map__img {
  flex: 1; border-radius: var(--radius-md); background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light); position: relative; overflow: hidden;
  min-height: 280px; display: flex; align-items: center; justify-content: center;
}
.coverage-map__img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.coverage-map__pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px; z-index: 2;
}
.coverage-map__pin-icon {
  width: 40px; height: 40px; background: var(--color-primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,63,115,0.35); animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.coverage-map__pin-label {
  background: #fff; padding: 5px 14px; border-radius: var(--radius-full);
  font-family: var(--font-display); font-size: 0.8125rem; font-weight: 700;
  color: var(--color-primary); box-shadow: var(--shadow-card);
}

.coverage-list { display: flex; flex-direction: column; gap: var(--space-md); }
.coverage-list-card {
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 1.5rem);
  box-shadow: var(--shadow-card); transition: all var(--ease);
}
.coverage-list-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.coverage-list-card h4 { margin-bottom: var(--space-md); }
.coverage-department {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--color-border-light);
}
.coverage-department:last-child { border-bottom: none; }
.coverage-department__num {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  color: var(--color-primary); background: var(--color-bg-soft);
  padding: 4px 8px; border-radius: var(--radius-sm); min-width: 34px; text-align: center;
}
.coverage-department__name { font-weight: 600; font-size: 0.9375rem; }
.coverage-department__cities { font-size: 0.8125rem; color: var(--color-muted); }

.city-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-md); }
.city-chip {
  font-size: 0.8125rem; font-weight: 500; color: var(--color-muted);
  background: var(--color-bg-soft); padding: 5px 14px;
  border-radius: var(--radius-full); border: 1px solid var(--color-border);
  transition: all var(--ease-fast);
}
.city-chip:hover { border-color: var(--color-primary); color: var(--color-primary); background: rgba(0,63,115,0.04); }

.coverage-search {
  background: var(--color-primary); border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem); color: #fff;
  text-align: center; box-shadow: var(--shadow-card);
}
.coverage-search h3 { color: #fff; margin-bottom: var(--space-sm); }
.coverage-search p { color: rgba(255,255,255,0.75); margin-bottom: var(--space-md); }
.coverage-search__form { display: flex; gap: 8px; }
.coverage-search__form input {
  flex: 1; border: 1px solid transparent; background: #fff;
  color: var(--color-text); border-radius: var(--radius-sm); padding: 13px 16px;
}
.coverage-search__form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.25); }
.coverage-search__form button {
  background: var(--color-accent); color: #fff; padding: 13px 18px;
  border-radius: var(--radius-sm); font-family: var(--font-display);
  font-weight: 600; font-size: 0.9375rem; transition: background var(--ease-fast); white-space: nowrap;
}
.coverage-search__form button:hover { background: var(--color-accent-hover); }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card); text-align: center;
  transition: all var(--ease); display: flex; flex-direction: column; position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--color-primary);
  box-shadow: 0 12px 32px rgba(0,63,115,0.1); transform: scale(1.03); z-index: 1;
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--color-accent); color: #fff;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  padding: 5px 18px; border-radius: var(--radius-full); white-space: nowrap;
}
.pricing-card__name { margin-bottom: var(--space-sm); }
.pricing-card__price {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: var(--color-primary); margin-bottom: var(--space-xs);
}
.pricing-card__price small { font-size: 1rem; font-weight: 400; color: var(--color-muted); }
.pricing-card__desc { color: var(--color-muted); margin-bottom: var(--space-md); font-size: 0.9375rem; }

.pricing-card__features { text-align: left; margin-bottom: var(--space-lg); display: flex; flex-direction: column; gap: 10px; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9375rem; color: var(--color-muted); }
.pricing-card__features li svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { margin-top: auto; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { background: var(--color-bg-soft); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-card); transition: box-shadow var(--ease), transform var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: var(--space-md); }
.testimonial-card__stars svg { width: 18px; height: 18px; color: #f5a623; }
.testimonial-card__text { font-style: italic; color: var(--color-muted); margin-bottom: var(--space-md); font-size: 0.9375rem; line-height: 1.65; }
.testimonial-card__author { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--color-border-light); padding-top: var(--space-md); }
.testimonial-card__author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-card__author-name { font-weight: 600; font-size: 0.9375rem; }
.testimonial-card__author-loc { font-size: 0.8125rem; color: var(--color-muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-item.open { box-shadow: var(--shadow-card); border-color: var(--color-primary); }
.faq-item__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md); padding: 18px 24px;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--color-text); text-align: left; transition: color var(--ease-fast);
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform var(--ease); color: var(--color-primary); }
.faq-item.open .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height var(--ease-slow), padding var(--ease-slow); }
.faq-item.open .faq-item__answer { max-height: 400px; }
.faq-item__answer p { padding: 0 24px 20px; color: var(--color-muted); font-size: 0.9375rem; line-height: 1.7; }

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; } }

.contact-form {
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
}
.contact-form h2 { margin-bottom: var(--space-lg); }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-md); margin-bottom: var(--space-md); }
@media (min-width: 640px) { .form-row--2col { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 600; color: var(--color-text-heading); letter-spacing: 0.02em; }
.form-group .input-wrapper { position: relative; }
.form-group .input-wrapper > svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--color-muted-light); pointer-events: none; }
.form-group .input-wrapper input, .form-group .input-wrapper select { padding-left: 44px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: var(--space-md); margin-bottom: var(--space-md); }
@media (max-width: 400px) { .form-trust { grid-template-columns: 1fr; } }
.form-trust li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--color-muted); font-weight: 500; }
.form-trust li svg { width: 16px; height: 16px; color: var(--color-accent); flex-shrink: 0; }
.contact-form > form > .btn { width: 100%; margin-top: var(--space-sm); }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info__card {
  background: var(--color-bg-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 1.5rem);
  box-shadow: var(--shadow-card); display: flex; align-items: flex-start; gap: var(--space-md);
  transition: all var(--ease); position: relative; overflow: hidden;
}
.contact-info__card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.contact-info__icon { width: 46px; height: 46px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon--blue { background: rgba(0,63,115,0.08); color: var(--color-primary); }
.contact-info__icon--green { background: var(--color-accent-light); color: var(--color-accent); }
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__card h4 { margin-bottom: 4px; }
.contact-info__card p { color: var(--color-muted); font-size: 1rem; }
.contact-info__phone { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-accent); }
.contact-info__urgent { display: flex; align-items: center; gap: 6px; color: var(--color-accent); font-size: 0.8125rem; font-weight: 600; }
.contact-info__urgent span { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); display: inline-block; }

.contact-map { flex: 1; min-height: 220px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-card); position: relative; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.contact-map__overlay { position: absolute; bottom: 12px; right: 12px; background: #fff; padding: 6px 14px; border-radius: var(--radius-sm); box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 600; color: var(--color-primary); }
.contact-map__overlay svg { width: 16px; height: 16px; }

.emergency-block { background: var(--color-error-bg); border: 1px solid var(--color-error-border); border-radius: var(--radius-lg); padding: var(--space-xl); text-align: center; }
.emergency-block .emergency-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(193,41,46,0.1); color: var(--color-error); margin-bottom: var(--space-md); }
.emergency-block .emergency-icon svg { width: 28px; height: 28px; }

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section { background: var(--color-primary); color: #fff; position: relative; overflow: hidden; }
.cta-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at center, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 28px 28px; opacity: 0.6; }
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-lg); }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,0.72); max-width: 560px; font-size: 1.0625rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-bg);
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl) var(--space-2xl);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-mobile);
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 28fr 17fr 27fr 28fr;
    padding: 0 var(--pad-desktop);
    gap: 28px;
  }
  .footer-inner > :nth-child(2) { margin-left: 10px; }
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--color-primary); margin-bottom: var(--space-sm);
}
.footer-brand-desc { color: var(--color-muted); font-size: 0.9375rem; max-width: 320px; margin-bottom: var(--space-md); }
.footer-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--color-primary); font-family: var(--font-display);
  font-size: 0.9375rem; font-weight: 600;
}
.footer-phone svg { width: 18px; height: 18px; }
.footer-heading {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9375rem; color: var(--color-muted);
  transition: color var(--ease-fast);
}
.footer-links a:hover { color: var(--color-primary); }
.footer-links span { font-size: 0.9375rem; color: var(--color-muted); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  font-size: 0.9375rem;
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  padding-left: var(--pad-mobile); padding-right: var(--pad-mobile);
  padding-bottom: var(--space-md);
}
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.9375rem; color: var(--color-muted); }
.footer-legal a:hover { color: var(--color-primary); }
@media (min-width: 768px) { .footer-bottom { padding-left: var(--pad-desktop); padding-right: var(--pad-desktop); } }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 767px) {
  .hero { padding: 40px 20px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-wrap: wrap; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}
