/* ============================================
   ZAHRA NETTOYAGE SERVICES — STYLES
   ============================================ */

:root {
  --primary: #1239AC;
  --primary-dark: #06278A;
  --navy: #1A2E5A;
  --gold: #FFB400;
  --gold-dark: #e6a200;
  --white: #FFFFFF;
  --light: #F9F9F9;
  --text: #666666;
  --border: #e6e8ef;

  --shadow-sm: 0 2px 8px rgba(18, 57, 172, 0.06);
  --shadow-md: 0 10px 30px rgba(18, 57, 172, 0.08);
  --shadow-lg: 0 20px 60px rgba(18, 57, 172, 0.15);

  --radius: 14px;
  --radius-lg: 22px;

  --container: 1200px;
  --header-h: 80px;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(18, 57, 172, 0.25);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 180, 0, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-full { width: 100%; }
.btn-cta { padding: 11px 22px; font-size: 14px; }

/* BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.badge-gold {
  background: rgba(255, 180, 0, 0.15);
  color: var(--gold);
  border: 1px solid rgba(255, 180, 0, 0.4);
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 180, 0, 0.15);
  color: var(--gold-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(18, 57, 172, 0.08);
  transition: all .3s var(--ease);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(18, 57, 172, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.logo img { height: 48px; width: auto; }

.nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.phone-link:hover { color: var(--primary); }
.phone-short { display: none; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 39, 138, 0.92) 0%, rgba(18, 57, 172, 0.85) 50%, rgba(26, 46, 90, 0.9) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: left;
}
.hero-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 16px;
  margin-bottom: 6px;
  opacity: 0.92;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  margin: 10px 0 20px;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   EXPRESS BANNER
   ============================================ */
.express-banner {
  background: linear-gradient(90deg, #FFB400 0%, #FFC933 50%, #FFB400 100%);
  background-size: 200% 100%;
  animation: expressShine 6s linear infinite;
  color: var(--navy);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}
@keyframes expressShine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.express-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.express-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.express-icon {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulseBolt 1.8s ease-in-out infinite;
}
@keyframes pulseBolt {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(26, 46, 90, 0.5); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(26, 46, 90, 0); }
}
.express-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.express-text strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.express-text span {
  font-size: 0.92rem;
  color: rgba(26, 46, 90, 0.85);
  font-weight: 500;
}
.btn-express {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(26, 46, 90, 0.25);
}
.btn-express:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--primary);
  color: var(--white);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 15px;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================
   ZONES D'INTERVENTION (Reims)
   ============================================ */
.zones {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.zones-lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.zones-lead .pin { margin-right: 6px; }
.zones-lead strong { color: var(--primary); }
.zones-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.zones-list li {
  padding: 8px 18px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: all .2s var(--ease);
}
.zones-list li:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================
   SECTIONS GENERIC
   ============================================ */
.section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.section-head p { font-size: 1.05rem; }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 180, 0, 0.3);
}
.service-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(18, 57, 172, 0.08), rgba(255, 180, 0, 0.12));
  border-radius: 18px;
  margin-bottom: 20px;
  color: var(--primary);
}
.service-card-accent .service-icon { color: var(--gold); }
.service-card-express .service-icon { color: var(--gold-dark); }
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.service-card p { margin-bottom: 18px; }
.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: var(--gold-dark); gap: 8px; }

.service-card-accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}
.service-card-accent h3 { color: var(--white); }
.service-card-accent p { color: rgba(255, 255, 255, 0.9); }
.service-card-accent .service-icon {
  background: rgba(255, 180, 0, 0.2);
}
.service-card-accent .service-link { color: var(--gold); }

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-counter {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}
.about-counter strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-counter span {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}
.about-content > p { margin-bottom: 28px; }
.advantages { margin-bottom: 32px; }
.advantages li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--navy);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* ============================================
   REALISATIONS
   ============================================ */
.realisations { background: var(--light); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--white);
  font-weight: 600;
  background: linear-gradient(to top, rgba(6, 39, 138, 0.9), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover figcaption { opacity: 1; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.price .currency {
  font-size: 0.85rem;
  color: var(--text);
  width: 100%;
}
.price strong {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.price .unit {
  font-size: 1rem;
  color: var(--text);
}
.price-card > p { margin-bottom: 24px; }
.price-card ul { margin-bottom: 28px; flex-grow: 1; }
.price-card ul li {
  padding: 8px 0;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
}

.price-card-featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.price-card-featured h3,
.price-card-featured .price strong,
.price-card-featured ul li { color: var(--white); }
.price-card-featured .price .currency,
.price-card-featured .price .unit,
.price-card-featured > p { color: rgba(255, 255, 255, 0.85); }
.price-card-featured .btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.price-card-featured .btn-primary:hover {
  background: var(--white);
  color: var(--primary);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ============================================
   RATING BADGES (Google / Trustpilot)
   ============================================ */
.rating-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
}
.rating-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 180, 0, 0.4);
}
.rating-logo {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: 14px;
}
.rating-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.rating-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-stars-icons {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 1px;
  line-height: 1;
}
.rating-stars-trustpilot { color: #00B67A; }
.rating-score {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.rating-label {
  font-size: 0.9rem;
  color: var(--text);
}
.rating-label strong { color: var(--navy); }
.rating-cta {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}
.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial p {
  font-style: italic;
  color: var(--navy);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.7;
}
.testimonial footer {
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial footer strong { color: var(--primary); }

/* ============================================
   BLOG
   ============================================ */
.blog { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 180, 0, 0.4);
}
.blog-media {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.blog-card:hover .blog-media img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.blog-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 500;
}
.blog-card h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p {
  flex-grow: 1;
  margin-bottom: 18px;
  font-size: 0.96rem;
}
.blog-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
}
.blog-link:hover { color: var(--gold-dark); }

.credit-link {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px dotted rgba(255, 180, 0, 0.5);
}
.credit-link:hover { color: var(--white); border-bottom-color: var(--white); }

/* ============================================
   FAQ
   ============================================ */
.faq-wrap { max-width: 860px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all .25s var(--ease);
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform .3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}
.faq-item p {
  margin-top: 14px;
  color: var(--text);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}
.contact .section-badge {
  background: rgba(255, 180, 0, 0.2);
  color: var(--gold);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { color: var(--white); }
.contact-info > p { color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; font-size: 1.05rem; }

.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: center;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-list span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}
.contact-list a,
.contact-list strong {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.contact-form h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  transition: all .2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(18, 57, 172, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.8rem;
  color: var(--text);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  margin-top: 16px;
  padding: 14px;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.9rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================
   FLOATING CALL
   ============================================ */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 180, 0, 0.45);
  z-index: 50;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ============================================
   ARTICLE PAGE
   ============================================ */
.article-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: calc(var(--header-h) + 60px) 0 60px;
  position: relative;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 20px;
}
.article-back:hover { color: var(--gold); }
.article-hero .blog-cat {
  position: static;
  display: inline-block;
  margin-bottom: 16px;
}
.article-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 880px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.article-content {
  max-width: 820px;
  padding-top: 50px;
  padding-bottom: 80px;
}
.article-cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: -100px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}
.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3d3d3d;
}
.article-body .lead {
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.article-body h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 18px;
  color: var(--navy);
  position: relative;
  padding-left: 18px;
}
.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 10px;
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.article-body h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--navy);
}
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol {
  margin: 0 0 24px 0;
  padding-left: 0;
}
.article-body ul li, .article-body ol li {
  position: relative;
  padding: 6px 0 6px 28px;
  list-style: none;
}
.article-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.article-body ol { counter-reset: article-ol; }
.article-body ol li { counter-increment: article-ol; }
.article-body ol li::before {
  content: counter(article-ol);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-body strong { color: var(--navy); }
.article-body a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(18, 57, 172, 0.25);
}
.article-body a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}
.article-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--light);
  padding: 20px 26px;
  margin: 28px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy);
}
.article-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.article-body th {
  background: var(--primary);
  color: var(--white);
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
}
.article-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.article-body tr:last-child td { border-bottom: none; }
.article-body tr:nth-child(even) td { background: var(--light); }

.article-callout {
  background: linear-gradient(135deg, rgba(255, 180, 0, 0.1), rgba(18, 57, 172, 0.05));
  border: 1px solid rgba(255, 180, 0, 0.35);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}
.article-callout strong {
  display: block;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.article-callout p:last-child { margin-bottom: 0; }

.article-cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 50px 0 20px;
}
.article-cta-box h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.article-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-size: 1rem;
}

.related-articles { background: var(--light); padding: 70px 0; }
.related-articles h2 { text-align: center; margin-bottom: 36px; font-size: 1.8rem; }

@media (max-width: 768px) {
  .article-cover { height: 240px; margin-top: -60px; }
  .article-body { font-size: 1rem; line-height: 1.7; }
  .article-body .lead { font-size: 1.05rem; }
  .article-body h2 { font-size: 1.35rem; margin-top: 36px; }
  .article-body h3 { font-size: 1.1rem; }
  .article-cta-box { padding: 36px 24px; }
  .article-cta-box h3 { font-size: 1.3rem; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-media img { height: 460px; }
  .pricing-grid, .testimonials-grid, .gallery, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card-featured { transform: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .nav ul { gap: 22px; }
  .nav a { font-size: 14px; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  html { font-size: 15px; }

  .container { padding: 0 18px; }
  .section { padding: 60px 0; }

  /* Buttons: minimum 44px touch target */
  .btn { padding: 14px 22px; font-size: 15px; min-height: 48px; }
  .btn-cta { display: none; } /* hidden on mobile — replaced by burger menu + floating call */

  /* Nav mobile */
  .header-inner { gap: 8px; }
  .logo img { height: 38px; }
  .header-actions { gap: 10px; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px 18px 28px;
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }
  .nav a {
    display: block;
    padding: 14px 8px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav a::after { display: none; }
  .burger { display: flex; }
  .phone-full { display: none; }
  .phone-short { display: inline; }
  .phone-link {
    gap: 6px;
    padding: 8px 12px;
    background: rgba(18, 57, 172, 0.08);
    border-radius: 999px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
  }
  .phone-link svg { width: 16px; height: 16px; }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 40px) 0 50px;
  }
  .hero h1 { font-size: 2.2rem; margin: 16px 0; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats {
    gap: 18px;
    padding-top: 24px;
    justify-content: space-between;
  }
  .stat strong { font-size: 1.4rem; }
  .stat span { font-size: 0.82rem; }
  .stat-divider { display: none; }
  .badge { font-size: 12px; padding: 6px 12px; }

  /* Trust bar mobile */
  .trust-bar { padding: 22px 0; }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .trust-item { font-size: 14px; }

  /* Zones mobile */
  .zones { padding: 32px 0; }
  .zones-lead { font-size: 0.95rem; margin-bottom: 16px; }
  .zones-list { gap: 8px; }
  .zones-list li { padding: 7px 14px; font-size: 13px; }

  /* Sections heads */
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 1.75rem; }
  .section-head p { font-size: 0.98rem; }

  /* Cards grids → 1 col */
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .gallery,
  .blog-grid,
  .footer-grid,
  .form-row,
  .rating-badges {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rating-badges { margin-bottom: 40px; }
  .rating-badge { padding: 16px 20px; }

  /* Express banner mobile */
  .express-inner { gap: 14px; }
  .express-icon { width: 44px; height: 44px; font-size: 1.6rem; }
  .express-text strong { font-size: 1rem; }
  .express-text span { font-size: 0.85rem; }
  .btn-express { width: 100%; }
  .express-left { flex: 1 1 100%; }

  /* About */
  .about-media img { height: 320px; }
  .about-counter { position: static; margin-top: 20px; display: inline-block; }
  .about-content h2 { font-size: 1.6rem; }

  /* Price card */
  .price .currency { font-size: 0.8rem; }
  .price strong { font-size: 2.2rem; }

  /* Blog */
  .blog-body { padding: 22px; }
  .blog-card h3 { font-size: 1.1rem; }

  /* FAQ */
  .faq-item { padding: 16px 18px; }
  .faq-item summary { font-size: 0.98rem; }

  /* Contact */
  .contact-form { padding: 26px 20px; }
  .contact-form h3 { font-size: 1.3rem; margin-bottom: 18px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* prevent iOS zoom */
    padding: 14px 14px;
  }
  .contact-list li { gap: 12px; }
  .contact-icon { width: 42px; height: 42px; font-size: 1.1rem; }
  .contact-list a, .contact-list strong { font-size: 0.98rem; }

  /* Footer */
  .footer { padding-top: 50px; }
  .footer-grid { padding-bottom: 30px; }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* Floating call */
  .floating-call {
    display: flex;
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 380px) {
  .phone-short { display: none; }
  .phone-link {
    width: 38px; height: 38px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 1.55rem; }

  .hero h1 { font-size: 1.9rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-stats { gap: 12px; flex-direction: column; align-items: flex-start; }
  .stat { flex-direction: row; align-items: baseline; gap: 8px; }
  .stat strong { font-size: 1.3rem; }

  .service-card, .price-card, .testimonial { padding: 26px 20px; }
  .service-icon { width: 56px; height: 56px; font-size: 1.6rem; }
  .service-card h3 { font-size: 1.1rem; }

  .blog-body { padding: 20px; }
  .blog-card h3 { font-size: 1.05rem; }
  .blog-cat { font-size: 11px; padding: 5px 12px; }

  .about-media img { height: 260px; }
  .about-counter { padding: 14px 20px; }
  .about-counter strong { font-size: 1.7rem; }

  .price strong { font-size: 2rem; }
  .price-card-featured { transform: none; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
