/*
Theme Name: W. Evans Damp Proofing
Theme URI:
Author: W. Evans Damp Proofing
Description: Custom WordPress theme for W. Evans Damp Proofing — Southport, Liverpool & Manchester.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: w-evans-theme
*/

:root {
  --navy: #0d2b6b;
  --navy-mid: #1a3d8f;
  --sky: #1e90d4;
  --sky-light: #5bb8f5;
  --sky-pale: #dbeeff;
  --white: #ffffff;
  --off-white: #f4f8ff;
  --text-dark: #0a1e42;
  --text-mid: #3a5272;
  --text-light: #6b8ab0;
  --border: #d0e4f7;
  --shadow: 0 4px 32px rgba(13,43,107,0.10);
  --shadow-lg: 0 12px 60px rgba(13,43,107,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 70px;
  box-shadow: 0 2px 20px rgba(13,43,107,0.07);
  overflow: hidden;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.nav-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.nav-logo-text span { color: var(--sky); display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px;
  background: var(--sky); transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active-page { color: var(--sky); }
.nav-cta {
  background: var(--navy); color: var(--white) !important;
  padding: 0.5rem 1.2rem; border-radius: 6px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sky) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.5rem 5vw; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow);
}
.mobile-menu a { text-decoration: none; color: var(--text-dark); font-weight: 500; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0e4a8a 100%);
  display: flex; align-items: center;
  padding: 100px 5vw 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 70vw; height: 70vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(30,144,212,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -10%; left: -5%;
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(91,184,245,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,184,245,0.15); border: 1px solid rgba(91,184,245,0.3);
  color: var(--sky-light); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; color: #4cef8a; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--sky-light); }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--sky); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(30,144,212,0.4);
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--sky-light); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.35); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s; background: transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 3rem; }
.stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 1.2rem; text-align: center;
}
.stat-num { font-size: 2rem; color: var(--sky-light); font-weight: 900; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 2.5rem; backdrop-filter: blur(10px);
}
.hero-card-title { color: var(--white); font-size: 1.3rem; margin-bottom: 1.5rem; }
.service-list { list-style: none; }
.service-list li {
  padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }
.trust-bar {
  background: var(--sky-pale); border-bottom: 1px solid var(--border);
  padding: 1rem 5vw; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: var(--navy); font-size: 0.85rem; font-weight: 600; }
.trust-icon { font-size: 1.1rem; }

/* ── SECTIONS COMMON ── */
section { padding: 90px 5vw; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sky); margin-bottom: 0.8rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { color: var(--text-mid); font-size: 1.05rem; max-width: 560px; margin-bottom: 3rem; }
.max-w { max-width: 1200px; margin: 0 auto; }

/* ── SERVICES ── */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; transition: all 0.3s; cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-light));
  transform: scaleX(0); transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sky-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 0.7rem; }
.service-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-img-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px; padding: 3rem; display: flex; flex-direction: column; gap: 1.5rem;
}
.why-img-block img { width: 100%; border-radius: 12px; object-fit: cover; height: 220px; }
.guarantee-pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; padding: 1rem 1.5rem; color: white; font-size: 0.9rem;
  display: flex; align-items: center; gap: 1rem;
}
.guarantee-pill .big { font-size: 2rem; color: var(--sky-light); }
.features-list { display: flex; flex-direction: column; gap: 1.2rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--sky-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.feature-item h4 { color: var(--navy); font-weight: 600; margin-bottom: 0.2rem; }
.feature-item p { color: var(--text-mid); font-size: 0.88rem; }

/* ── LAW BANNER ── */
.law-banner { background: linear-gradient(135deg, var(--navy) 0%, #0a3d7a 100%); padding: 70px 5vw; }
.law-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.law-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,107,0.15); border: 1px solid rgba(255,107,107,0.3);
  color: #ff9090; padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.law-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: white; margin-bottom: 1rem; }
.law-banner p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 1.5rem; }
.law-points { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.law-points li { display: flex; gap: 0.8rem; align-items: flex-start; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.law-points li::before { content: '✓'; color: #4cef8a; font-weight: 700; flex-shrink: 0; }
.law-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 2.5rem; }
.law-card-title { color: var(--sky-light); font-size: 1.2rem; margin-bottom: 1rem; }
.law-fine { font-size: 3rem; color: #ff9090; font-weight: 900; margin-bottom: 0.3rem; }
.law-fine-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 1.5rem; }
.law-link { color: var(--sky-light); font-weight: 600; font-size: 0.9rem; text-decoration: none; display: flex; align-items: center; gap: 0.4rem; }
.law-link:hover { text-decoration: underline; }

/* ── REVIEWS ── */
.reviews-section { background: var(--off-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: box-shadow 0.3s; }
.review-card:hover { box-shadow: var(--shadow); }
.stars { color: #f5a623; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.reviewer-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.reviewer-date { font-size: 0.78rem; color: var(--text-light); }

/* ── AREAS ── */
.areas-section { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 1rem; }
.area-chip { border: 1.5px solid var(--border); border-radius: 10px; padding: 1rem; text-align: center; color: var(--text-mid); font-weight: 500; font-size: 0.88rem; transition: all 0.2s; }
.area-chip:hover { border-color: var(--sky); color: var(--sky); background: var(--sky-pale); }

/* ── CONTACT ── */
.contact-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-section .section-title { color: white; }
.contact-section .section-label { color: var(--sky-light); }
.contact-section .section-sub { color: rgba(255,255,255,0.7); }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-detail-text a { color: var(--sky-light); text-decoration: none; font-size: 1.05rem; font-weight: 600; }
.contact-detail-text a:hover { text-decoration: underline; }
.contact-detail-label { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.contact-form { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 2.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 0.4rem; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 8px;
  padding: 0.85rem 1rem; color: white; font-family: 'Nunito', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--sky); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--navy); }
.form-submit { width: 100%; }
.form-success { background: rgba(76,239,138,0.15); border: 1px solid #4cef8a; border-radius: 8px; padding: 1rem 1.2rem; margin-bottom: 1.5rem; color: #4cef8a; font-weight: 600; font-size: 0.92rem; }

/* ── FOOTER ── */
footer { background: #07183a; padding: 3rem 5vw 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 0.8rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: var(--sky-light); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--sky-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-logo-text { color: white; font-size: 1.1rem; font-weight: 700; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #0a3d7a 100%); padding: 120px 5vw 70px; text-align: center; }
.page-hero h1 { color: white; font-size: clamp(2rem,4vw,3.2rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.law-content { max-width: 1200px; margin: 0 auto; }
.law-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.law-section-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; margin-bottom: 2rem; box-shadow: var(--shadow); }
.law-section-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 1rem; }
.law-section-card p, .law-section-card li { color: var(--text-mid); font-size: 0.93rem; line-height: 1.75; }
.law-section-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.8rem; }
.law-section-card ul li { padding-left: 1.3rem; position: relative; }
.law-section-card ul li::before { content: '›'; position: absolute; left: 0; color: var(--sky); font-weight: 700; }
.warning-box { background: #fff3cd; border: 1px solid #ffd966; border-left: 4px solid #f5a623; border-radius: 8px; padding: 1.2rem 1.5rem; margin: 1.5rem 0; }
.warning-box p { color: #7a5800; font-size: 0.9rem; }
.danger-box { background: #ffeaea; border: 1px solid #ffb3b3; border-left: 4px solid #ff4444; border-radius: 8px; padding: 1.2rem 1.5rem; margin: 1.5rem 0; }
.danger-box p { color: #8b0000; font-size: 0.9rem; }
.info-box { background: var(--sky-pale); border: 1px solid var(--border); border-left: 4px solid var(--sky); border-radius: 8px; padding: 1.2rem 1.5rem; margin: 1.5rem 0; }
.info-box p { color: var(--navy); font-size: 0.9rem; }
.cta-strip { background: linear-gradient(135deg, var(--sky) 0%, var(--navy) 100%); border-radius: 20px; padding: 3rem; text-align: center; margin-top: 3rem; }
.cta-strip h3 { color: white; font-size: 1.8rem; margin-bottom: 0.8rem; }
.cta-strip p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.btn-white { background: white; color: var(--navy); padding: 0.85rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 0.95rem; display: inline-block; transition: all 0.2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .svc-block { grid-template-columns: 1fr !important; }
  .svc-block > div[style*="order:2"] { order: unset !important; }
  .svc-block > div[style*="order:1"] { order: unset !important; }
  .hero-inner, .why-grid, .law-inner, .contact-grid, .footer-grid, .law-intro-grid, #who-we-help .max-w > div:last-child { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  nav { height: 62px; padding: 0 4vw; background: var(--navy); overflow: hidden; }
  .nav-logo-text { color: var(--white); }
  .nav-logo-text span { color: var(--sky-light); }
  .hamburger span { background: var(--white); width: 22px; }
  .hamburger { display: flex; padding: 8px; border-radius: 6px; background: rgba(255,255,255,0.12); }
  .mobile-menu { top: 62px; background: var(--navy); border-bottom: none; padding: 0.5rem 4vw 1rem; gap: 0; z-index: 99; }
  .mobile-menu a { color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.9rem 0; font-size: 1rem; }
  .mobile-menu a:last-child { border-bottom: none; margin-top: 0.5rem; background: var(--sky); color: white; text-align: center; border-radius: 8px; padding: 0.9rem 1rem; }
  .hero { min-height: auto; padding: 86px 5vw 50px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions a { text-align: center; justify-content: center; width: 100%; }
  .trust-bar { gap: 0.75rem 1.5rem; padding: 1rem 4vw; justify-content: flex-start; }
  .trust-item { font-size: 0.8rem; }
  section { padding: 50px 4vw; }
  .section-title { font-size: 1.6rem !important; }
  .section-sub { font-size: 0.92rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-block img { height: 180px; }
  .law-banner { padding: 50px 4vw; }
  .law-inner { grid-template-columns: 1fr; gap: 2rem; }
  .law-fine { font-size: 2.2rem; }
  #who-we-help .max-w > div:last-child { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; border-radius: 14px; }
  .page-hero { padding: 90px 4vw 50px; text-align: left; }
  .page-hero h1 { font-size: 1.9rem; }
  .page-hero p { font-size: 0.92rem; }
  .svc-pill-bar { padding: 0.75rem 4vw; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  footer { padding: 2.5rem 4vw 1.5rem; }
  .btn-primary, .btn-outline, .btn-white { padding: 0.8rem 1.5rem; font-size: 0.92rem; width: 100%; text-align: center; justify-content: center; display: flex !important; box-sizing: border-box; }
  .cta-strip { padding: 2rem 1.5rem; border-radius: 14px; }
  .cta-strip h3 { font-size: 1.4rem; }
  .law-intro-grid { grid-template-columns: 1fr; }
  .law-section-card { padding: 1.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr !important; }
  .stat { padding: 1rem; }
  .stat-num { font-size: 1.6rem; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr !important; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }

/* ── HAMBURGER ANIMATION ── */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger span { transition: transform 0.25s, opacity 0.2s; }
