/* =========================================================
   BEC — Benoît Électricité Climatisation
   Feuille de style principale
   ========================================================= */

:root {
  --color-dark: #1c2128;
  --color-dark-2: #262c35;
  --color-dark-3: #313945;
  --color-orange: #f5941e;
  --color-orange-dark: #d97c0d;
  --color-blue: #4cc3f0;
  --color-blue-dark: #2fa8d6;
  --color-white: #ffffff;
  --color-offwhite: #f6f7f9;
  --color-gray-light: #eef0f3;
  --color-gray: #6b7280;
  --color-text: #22262c;
  --color-border: #e2e5ea;

  --font-heading: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(28, 33, 40, 0.08);
  --shadow-md: 0 12px 32px rgba(28, 33, 40, 0.12);
  --shadow-lg: 0 24px 60px rgba(28, 33, 40, 0.18);

  --container-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

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

section {
  padding: 96px 0;
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue-dark);
  background: rgba(76, 195, 240, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 4px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--color-orange), var(--color-blue));
}

.section-head.align-left h2::after { margin-left: 0; }

.section-head p {
  color: var(--color-gray);
  font-size: 1.05rem;
}

.section-head.align-left {
  margin: 0 0 48px;
  text-align: left;
}

.bg-light { background: var(--color-offwhite); }
.bg-dark {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
}
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--color-white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(245, 148, 30, 0.35);
}
.btn-primary:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 148, 30, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.btn-dark:hover { background: var(--color-dark-2); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(28, 33, 40, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.main-nav a {
  padding: 10px 16px;
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.main-nav a.active {
  color: var(--color-white);
  background: rgba(76, 195, 240, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
}

.header-phone svg { width: 18px; height: 18px; color: var(--color-blue); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--color-white);
  flex-shrink: 0;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    background: var(--color-dark-2);
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { text-align: center; padding: 13px 16px; }
  .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 560px) {
  .brand-text span { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background:
    radial-gradient(circle at 12% 12%, rgba(76, 195, 240, 0.18), transparent 55%),
    radial-gradient(circle at 88% 88%, rgba(245, 148, 30, 0.16), transparent 55%),
    var(--color-dark);
  padding: 150px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
}

.hero-inner { max-width: 680px; }

.hero-visual {
  position: relative;
}
@media (max-width: 960px) {
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
}

.hero-visual-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4 / 5;
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 640px) {
  .hero-visual-frame { aspect-ratio: 4 / 3; }
}

.hero-float-badge {
  position: absolute;
  top: -20px;
  right: -18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
}
.hero-float-badge .icon-tile { width: 44px; height: 44px; }
.hero-float-badge .icon-tile svg { width: 22px; height: 22px; }
.hero-float-badge strong { display: block; font-family: var(--font-heading); font-size: 0.95rem; }
.hero-float-badge span { font-size: 0.74rem; color: var(--color-gray); }

.hero-float-stat {
  position: absolute;
  bottom: -22px;
  left: -20px;
  background: var(--color-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px;
  text-align: center;
}
.hero-float-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-orange);
  line-height: 1;
}
.hero-float-stat span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .hero-float-badge, .hero-float-stat {
    position: static;
    display: inline-flex;
    margin: 14px 8px 0;
  }
}

.hero .section-label {
  background: rgba(76, 195, 240, 0.18);
  color: var(--color-blue);
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-blue);
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badge svg {
  width: 22px;
  height: 22px;
  color: var(--color-blue);
  flex-shrink: 0;
}

/* ---------- Page hero (sous-pages) ---------- */
.page-hero {
  position: relative;
  color: var(--color-white);
  padding: 150px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, rgba(20, 24, 30, 0.85), rgba(20, 24, 30, 0.94)),
    url("../images/photo-3.jpg") center 25%/cover no-repeat;
}

.page-hero h1 { color: var(--color-white); font-size: clamp(2rem, 4vw, 2.9rem); }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--color-white); }

/* ---------- Icon tiles ---------- */
.icon-tile {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 148, 30, 0.12);
  color: var(--color-orange);
  box-shadow: inset 0 0 0 1px rgba(245, 148, 30, 0.16);
  flex-shrink: 0;
}
.icon-tile svg { width: 30px; height: 30px; }
.icon-tile.blue { background: rgba(76, 195, 240, 0.14); color: var(--color-blue-dark); box-shadow: inset 0 0 0 1px rgba(76, 195, 240, 0.2); }
.icon-tile.dark { background: rgba(255,255,255,0.08); color: var(--color-white); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14); }

/* ---------- Services grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 38px 28px 34px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--color-orange);
}
.card:has(.icon-tile.blue)::before { background: var(--color-blue); }
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card h3 { font-size: 1.18rem; margin: 20px 0 10px; }
.card p { color: var(--color-gray); font-size: 0.95rem; }
.card .icon-tile { margin-bottom: 4px; }

.card-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-text);
}
.card-list li svg {
  width: 16px;
  height: 16px;
  color: var(--color-orange);
  margin-top: 4px;
  flex-shrink: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-blue-dark);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.card-link:hover svg { transform: translateX(4px); }

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

.split-media {
  position: relative;
}
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.split-media.reverse { order: 2; }

.stat-chip {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 24px;
  text-align: center;
}
.stat-chip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-blue-dark);
  line-height: 1;
}
.stat-chip span {
  font-size: 0.78rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 560px) {
  .stat-chip { right: 12px; bottom: -20px; padding: 14px 20px; }
  .split-media img { height: 320px; }
}

.split-body p { color: var(--color-gray); margin-bottom: 16px; }
.split-body ul { margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.split-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}
.split-body ul li svg {
  width: 22px; height: 22px; color: var(--color-orange); flex-shrink: 0; margin-top: 2px;
}

/* ---------- Certification banner ---------- */
.cert-banner {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 30px 34px;
}
.cert-banner .icon-tile { background: rgba(76, 195, 240, 0.18); color: var(--color-blue); width: 68px; height: 68px; }
.cert-banner .icon-tile svg { width: 34px; height: 34px; }
.cert-banner h4 { color: var(--color-white); margin-bottom: 6px; font-size: 1.05rem; }
.cert-banner p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin: 0; }

@media (max-width: 640px) {
  .cert-banner { flex-direction: column; text-align: center; }
}

/* ---------- Zone d'intervention ---------- */
.zone-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .zone-wrap { grid-template-columns: 1fr; }
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.zone-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.zone-tags span:hover {
  border-color: var(--color-blue);
  color: var(--color-blue-dark);
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 380px; border: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 20px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(10,12,16,0.82));
  color: var(--color-white);
}
.gallery-caption strong { display: block; font-family: var(--font-heading); font-size: 0.98rem; }
.gallery-caption span { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

.gallery-item.tall { grid-row: span 2; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 30px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.step-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-white);
  background: var(--color-orange);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h4 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--color-gray); }
.steps .step:nth-child(even) .step-number { background: var(--color-blue-dark); }

/* ---------- Social section ---------- */
.social-panel {
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.social-panel::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(76, 195, 240, 0.22), transparent 70%);
  pointer-events: none;
}
.social-panel::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -140px;
  left: -100px;
  background: radial-gradient(circle, rgba(245, 148, 30, 0.16), transparent 70%);
  pointer-events: none;
}
.social-panel > * { position: relative; z-index: 1; }
@media (max-width: 860px) {
  .social-panel { grid-template-columns: 1fr; padding: 40px 26px; text-align: center; }
}

.social-panel h2 { color: var(--color-white); }
.social-panel p { color: rgba(255,255,255,0.72); margin: 14px 0 26px; }

.social-links { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 860px) { .social-links { justify-content: center; } }

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-btn:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.social-btn svg { width: 20px; height: 20px; }
.social-btn.instagram svg { color: #e1306c; }
.social-btn.google svg { color: var(--color-blue); }
.social-btn.facebook svg { color: #4267B2; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.insta-grid a {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease, opacity 0.3s ease; }
.insta-grid a:hover img { transform: scale(1.08); opacity: 0.85; }
.insta-grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(76,195,240,0.2);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.insta-grid a:hover::after { opacity: 1; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--color-blue-dark), var(--color-orange));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--color-white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.9); }
.cta-banner .btn-dark:hover { background: #10131a; }

@media (max-width: 640px) {
  .cta-banner { padding: 36px 26px; text-align: center; justify-content: center; }
}

/* ---------- Testimonial / trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px 40px;
  position: relative;
  z-index: 5;
  margin-top: -78px;
}
@media (max-width: 640px) {
  .trust-strip { margin-top: -48px; padding: 26px 24px; }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 200px;
}
.trust-item svg {
  width: 24px;
  height: 24px;
  padding: 12px;
  box-sizing: content-box;
  border-radius: 50%;
  color: var(--color-orange);
  background: rgba(245, 148, 30, 0.12);
  flex-shrink: 0;
}
.trust-item:nth-child(even) svg { color: var(--color-blue-dark); background: rgba(76, 195, 240, 0.12); }
.trust-item strong { display: block; font-family: var(--font-heading); font-size: 1rem; }
.trust-item span { font-size: 0.82rem; color: var(--color-gray); }

/* ---------- Contact page ---------- */
.contact-info-card {
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
}
.contact-info-card h3 { color: var(--color-white); margin-bottom: 6px; }
.contact-info-card > p { color: rgba(255,255,255,0.65); margin-bottom: 30px; font-size: 0.92rem; }

.contact-standalone {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 44px;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-line:first-of-type { border-top: none; }
.contact-line .icon-tile { background: rgba(76,195,240,0.16); color: var(--color-blue); width: 46px; height: 46px; }
.contact-line .icon-tile svg { width: 22px; height: 22px; }
.contact-line strong { display: block; font-size: 0.98rem; margin-bottom: 2px; }
.contact-line span, .contact-line a { font-size: 0.9rem; color: rgba(255,255,255,0.68); }
.contact-line a:hover { color: var(--color-blue); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
}
.faq-item h4 { font-size: 1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.faq-item h4 svg { width: 18px; height: 18px; color: var(--color-blue-dark); flex-shrink: 0; }
.faq-item p { color: var(--color-gray); font-size: 0.93rem; padding-left: 28px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.65);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; }
.footer-brand strong { color: var(--color-white); font-family: var(--font-heading); font-size: 1.05rem; }
.footer-col h4 { color: var(--color-white); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a:hover { color: var(--color-white); }
.footer-col p { font-size: 0.9rem; }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--color-blue-dark); }
.footer-social svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--color-white); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
