/* ===================================================
   POINT Z MATÉRIAUX — Stylesheet
   Charte couleurs basée sur le logo : bleu, gris, noir, blanc
   =================================================== */

:root {
  --blue: #1E5FA8;
  --blue-dark: #154579;
  --blue-light: #4A85C7;
  --silver: #B8BCC2;
  --silver-light: #E8EAED;
  --black: #111418;
  --grey-900: #1A1F26;
  --grey-700: #3F4651;
  --grey-500: #6B727C;
  --grey-300: #C9CDD3;
  --grey-100: #F4F5F7;
  --white: #FFFFFF;
  --accent: #F5A623;
  --success: #2ECC71;

  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 6px rgba(17, 20, 24, 0.06);
  --shadow-md: 0 8px 24px rgba(17, 20, 24, 0.08);
  --shadow-lg: 0 20px 50px rgba(17, 20, 24, 0.15);

  --container: 1240px;
  --transition: 0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--grey-900);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }

p { color: var(--grey-700); }

.container {
  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 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-dark:hover { background: var(--blue); color: var(--white); }

.btn-cta {
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn-cta:hover { background: var(--blue-dark); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.topbar {
  background: var(--grey-900);
  color: var(--silver);
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar-item { color: var(--silver); }
.topbar-phone { color: var(--white); font-weight: 600; }
.topbar-phone:hover { color: var(--blue-light); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo {
  height: 60px;
  width: auto;
  border-radius: 50%;
}
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  line-height: 1;
}
.logo-text strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.02em;
}
.logo-text span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--grey-700);
  letter-spacing: 0.18em;
  margin-top: 2px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--grey-900);
  position: relative;
  padding: 6px 0;
}
.main-nav a:not(.btn-cta):hover { color: var(--blue); }
.main-nav a.active::after,
.main-nav a:not(.btn-cta):hover::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
}
.main-nav a.btn-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 102;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--grey-900);
  border-radius: 3px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--grey-900);
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: var(--grey-900);
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,20,24,0.85) 0%, rgba(30,95,168,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px 80px;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 900;
}
.hero-subtitle {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 700px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-trust {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust div {
  display: flex;
  flex-direction: column;
}
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.hero-trust span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SECTION HEAD */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; }
.section-eyebrow {
  display: inline-block;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.section-head-light .section-eyebrow,
.section-head-light h2,
.section-head-light p { color: var(--white); }
.section-head-light .section-eyebrow { color: var(--blue-light); }
.section-head-light p { color: rgba(255,255,255,0.8); }

/* ADVANTAGES */
.advantages {
  padding: 80px 0;
  background: var(--grey-100);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.adv-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--silver-light);
  transition: var(--transition);
}
.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.adv-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.adv-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--blue);
}
.adv-card p { font-size: 0.92rem; }

/* CATEGORIES */
.categories { padding: 100px 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.cat-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--grey-900);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,20,24,0) 30%, rgba(17,20,24,0.92) 100%);
  transition: var(--transition);
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(180deg, rgba(30,95,168,0.2) 0%, rgba(17,20,24,0.95) 100%);
}
.cat-card h3, .cat-card span {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.cat-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.cat-card span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}

/* PROMO HIGHLIGHT */
.promo-highlight {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--grey-900) 0%, var(--blue-dark) 100%);
  color: var(--white);
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  color: var(--grey-900);
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.promo-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--silver-light);
}
.promo-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--grey-900);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
}
.promo-body { padding: 24px; }
.promo-body h3 {
  margin-bottom: 8px;
  color: var(--grey-900);
}
.promo-body p {
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.promo-link {
  color: var(--blue);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.promo-link:hover { color: var(--blue-dark); }
.center-cta { text-align: center; }

/* ABOUT PREVIEW */
.about-preview { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  height: 480px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--silver-light);
  box-shadow: var(--shadow-md);
}
.about-body h2 { margin-bottom: 20px; }
.about-body p { margin-bottom: 16px; }
.about-bullets {
  margin: 24px 0 30px;
}
.about-bullets li {
  padding: 8px 0;
  color: var(--grey-700);
  font-weight: 500;
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: var(--grey-100);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
}
.stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 16px;
  color: var(--grey-700);
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--grey-900);
  font-size: 0.9rem;
}

/* CTA BAND */
.cta-band {
  padding: 70px 0;
  background: var(--blue);
  color: var(--white);
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 8px;
}
.cta-band p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.cta-band .btn-primary:hover {
  background: var(--grey-100);
  color: var(--blue-dark);
}

/* FOOTER */
.site-footer {
  background: var(--grey-900);
  color: var(--silver);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.site-footer p, .site-footer a {
  color: var(--silver);
  font-size: 0.92rem;
}
.site-footer a:hover { color: var(--white); }
.site-footer ul li { padding: 4px 0; }
.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.site-footer address { font-style: normal; }
.site-footer address p { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom p { color: var(--grey-500); }
.footer-bottom a { color: var(--silver); margin: 0 4px; }

/* PAGE HEADER (sub-pages) */
.page-header {
  position: relative;
  padding: 90px 0 70px;
  background: linear-gradient(135deg, var(--grey-900) 0%, var(--blue-dark) 100%);
  color: var(--white);
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-header p {
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }

/* PRODUCT FILTERS */
.filters {
  padding: 30px 0;
  border-bottom: 1px solid var(--silver-light);
  background: var(--white);
  position: sticky;
  top: 95px;
  z-index: 50;
}
.filter-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--grey-100);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-700);
  border: 2px solid transparent;
  transition: var(--transition);
}
.filter-btn:hover { background: var(--silver-light); }
.filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* PRODUCTS LISTING */
.products { padding: 60px 0 100px; }
.product-section { margin-bottom: 70px; scroll-margin-top: 200px; }
.product-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--blue);
}
.product-section h2::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 32px;
  background: var(--blue);
  border-radius: 3px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.product-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--silver-light);
}
.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--grey-900);
}
.product-body p {
  font-size: 0.88rem;
  margin-bottom: 14px;
  flex: 1;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--silver-light);
}
.product-price {
  font-family: var(--font-display);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}
.product-action {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* PROMOTIONS PAGE */
.promo-list { padding: 80px 0; }
.promo-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  transition: var(--transition);
}
.promo-item:hover { box-shadow: var(--shadow-md); }
.promo-item-img {
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--silver-light);
}
.promo-item-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--grey-900);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 14px;
  width: fit-content;
}
.promo-item h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.promo-item-meta {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--grey-500);
}

/* SERVICES PAGE */
.services-page { padding: 80px 0; }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.service-block:nth-child(even) .service-img { order: 2; }
.service-img {
  height: 380px;
  background-size: cover;
  background-position: center;
  background-color: var(--silver-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.service-body span.section-eyebrow { margin-bottom: 12px; }
.service-body h2 { margin-bottom: 16px; }
.service-features {
  margin-top: 20px;
}
.service-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--grey-700);
}
.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ABOUT PAGE */
.about-page-content { padding: 80px 0; }
.about-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.about-page-text p { margin-bottom: 18px; font-size: 1rem; }
.about-page-text h2 { margin: 30px 0 16px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--grey-100);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--blue);
}
.value-card h3 {
  color: var(--blue);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.value-card p { font-size: 0.92rem; }

.about-side-card {
  background: var(--grey-900);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 120px;
  height: fit-content;
}
.about-side-card h3 { color: var(--white); margin-bottom: 16px; }
.about-side-card ul { margin-bottom: 24px; }
.about-side-card ul li {
  padding: 6px 0;
  color: var(--silver);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.about-side-card ul li:last-child { border: none; }

/* CONTACT PAGE */
.contact-page { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--silver-light);
}
.contact-form h2 {
  margin-bottom: 24px;
  font-size: 1.6rem;
}
.form-group { margin-bottom: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--grey-900);
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,95,168,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info-card {
  background: var(--grey-100);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.contact-info-card h3 {
  color: var(--blue);
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-item .icon {
  background: var(--blue);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-item h4 {
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.92rem;
  color: var(--grey-700);
}
.contact-info-item a:hover { color: var(--blue); }

.map-section {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-section iframe { display: block; width: 100%; height: 420px; border: 0; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid,
  .service-block,
  .service-block:nth-child(even) .service-img,
  .about-page-grid,
  .contact-grid,
  .promo-item {
    grid-template-columns: 1fr;
  }
  .service-block:nth-child(even) .service-img { order: initial; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-img, .service-img { height: 320px; }
  .promo-item-img { height: 240px; }
  .promo-item-body { padding: 30px; }
  .about-side-card { position: static; }
}

@media (max-width: 768px) {
  .topbar-inner { justify-content: center; gap: 14px; font-size: 0.78rem; padding: 10px 16px; }
  .topbar-item:not(.topbar-phone) { display: none; }
  .header-inner { padding: 14px 20px; }
  .logo { height: 50px; }
  .logo-text strong { font-size: 1.15rem; }
  .logo-text span { font-size: 0.65rem; letter-spacing: 0.14em; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    padding: 100px 30px 30px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 101;
  }
  .main-nav.open { right: 0; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav ul li {
    border-bottom: 1px solid var(--silver-light);
  }
  .main-nav ul li a {
    display: block;
    padding: 16px 0;
    font-size: 1.05rem;
  }
  .main-nav ul li a.active::after,
  .main-nav ul li a:not(.btn-cta):hover::after { display: none; }
  .main-nav ul li a.btn-cta {
    margin-top: 20px;
    text-align: center;
  }

  .hero { min-height: 70vh; }
  .hero-content { padding: 60px 20px 60px; }
  .hero-trust { gap: 28px; }
  .hero-trust strong { font-size: 1.3rem; }

  .advantages, .categories, .promo-highlight,
  .about-preview, .testimonials, .promo-list,
  .services-page, .about-page-content, .contact-page { padding: 60px 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .filters { top: 80px; }
  .filter-group { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .filter-btn { white-space: nowrap; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn { padding: 12px 22px; font-size: 0.85rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .container { padding: 0 18px; }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.45s; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
