/* ── Tokens from Figma ── */
:root {
  --blue:      #1870b8;
  --blue-5:    rgba(24,112,184,0.05);
  --blue-15:   rgba(24,112,184,0.15);
  --text:      #121314;
  --text-dark: #1f2632;
  --page-bg:   #fbfbfb;
  --card-bg:   #f9f9f9;
  --card-bdr:  #e0e0e0;
  --input-bg:  #f3f3f3;
  --nav-bg:    rgba(167,167,167,0.2);
  --why-bdr:   rgba(14,63,126,0.1);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--page-bg);
  color: var(--text);
}
h1, h2, h3, h4, h5, h6, .poppins { font-family: 'Poppins', sans-serif; }

/* ── SVG Icons ── */
.icon-svg {
  height:35px;
  display: inline-block;
  vertical-align: -0.2em;
  flex-shrink: 0;
}
.icon-svg-white { filter: brightness(0) invert(1); }
.icon-svg-dark  { filter: brightness(0); }
.icon-svg-blue  { filter: invert(32%) sepia(90%) saturate(480%) hue-rotate(183deg) brightness(88%); }

/* hover sur boutons dark→white */
.carousel-nav-btn:hover .icon-svg { filter: brightness(0) invert(1); }
.faq-filter-btn.active .icon-svg  { filter: brightness(0) invert(1); }

/* ── Shared ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  border: 1px solid #f1f1f1;
  border-radius: 49px;
  padding: 6px 14px;
  font-size: .875rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--text);
}
.section-badge-dark {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: #f8fffd;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.125rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -1px;
  color: var(--text);
}
.section-title .opacity { opacity: .6; }
.dim { opacity: .6; }
.btn-primary-eg {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}
.btn-primary-eg:hover { background: #1460a0; color: #fff; }

/* ══════════════════════════
   1. NAVBAR
══════════════════════════ */
.navbar-eg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 2rem);
  max-width: 1296px;
  margin: 20px auto 0;
  background: var(--nav-bg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 7px 33px;
}
.navbar-eg .logo {
  height: 100px;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}
.btn-call:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ══════════════════════════
   2. HERO
══════════════════════════ */
.hero {
  min-height: 800px;
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(0,0,0,0.68) 50%, rgba(0,0,0,0.07) 100%),
    url('../img/Image hero entrepot.webp') center/cover no-repeat;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.4375rem);
  font-weight: 500;
  line-height: 1.11;
  color: #f6fffc;
  letter-spacing: -1px;
}
.hero .desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  max-width: 660px;
}
.hero > .container { padding-top: 60px; }

/* Hero CSS grid layout */
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-intro      { order: 1; }
.hero-form-col   { order: 2; }
.hero-bullets-col{ order: 3; }

@media (min-width: 992px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    grid-template-rows: auto auto;
    column-gap: 60px;
    row-gap: 2rem;
    align-items: start;
  }
  .hero-intro      { grid-column: 1; grid-row: 1; }
  .hero-form-col   { grid-column: 2; grid-row: 1 / 3; }
  .hero-bullets-col{ grid-column: 1; grid-row: 2; }
}

.hero-bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  transition: background .2s;
}
.hero-bullet:hover {
  background: rgba(255,255,255,0.16);
}
.hero-bullet i {
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: .9;
}
.hero-bullet .hb-title {
  font-size: .9rem;
  font-weight: 600;
  display: block;
  line-height: 1.3;
}
.hero-bullet .hb-sub {
  font-size: .75rem;
  opacity: .65;
  display: block;
  margin-top: 2px;
  line-height: 1.4;
}

/* Contact card */
.hero-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 26px;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.success-form { margin-bottom: 1rem; }
.success-form .alert {
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  line-height: 1.5;
}
.btn-primary-eg:disabled { opacity: .75; cursor: not-allowed; }

.hero-card .form-control.is-invalid {
  border-color: #e74c3c;
  background-image: none;
}
.hero-card .invalid-feedback {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: #e74c3c;
  margin-top: 4px;
  padding-left: 2px;
}
.hero-card .form-control.is-invalid ~ .invalid-feedback { display: block; }

.hero-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.hero-card .form-control {
  background: var(--input-bg);
  border: none;
  border-radius: 6px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #a9a9a9;
  height: 53px;
}
.hero-card .form-control:focus {
  background: var(--input-bg);
  box-shadow: 0 0 0 2px rgba(24,112,184,.3);
  color: var(--text);
}
.hero-card .form-control::placeholder { color: #a9a9a9; font-weight: 400; }

/* ══════════════════════════
   3. STATS BAR
══════════════════════════ */
.stats-section { padding: 80px 0; background: #fff; }
.stats-bar {
  background: var(--blue);
  border-radius: 8px;
  padding: 26px 46px;
  display: flex;
  gap: 46px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.03);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon i { color: #fff; font-size: 1.25rem; }
.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1.95px;
  line-height: 1.05;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: -1.3px;
  line-height: 1.1;
  max-width: 264px;
}
.stats-section .section-title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-badge-light {
  background: rgba(255,255,255,.2);
  border: 1px solid #f1f1f1;
  border-radius: 49px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: .75rem;
}

.section-badge-light img {
     height: 22px;
}

/* ══════════════════════════
   4. ABOUT
══════════════════════════ */
.about-section { padding: 90px 0; background: var(--page-bg); }
.about-section .about-img-wrap {
  position: relative;
  border: 1px dashed rgba(0,0,0,.2);
  border-radius: 8px;
  padding: 7px 8px 7px 9px;
}
.about-section .about-img {
  border-radius: 8px;
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}
.about-section .img-label {
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  padding: 22px 48px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  background-color: rgba(255,255,255,0.12);
  background-image:
    linear-gradient(#fff, #fff) ,
    linear-gradient(#fff, #fff) ,
    linear-gradient(#fff, #fff) ,
    linear-gradient(#fff, #fff) ,
    linear-gradient(#fff, #fff) ,
    linear-gradient(#fff, #fff) ,
    linear-gradient(#fff, #fff) ,
    linear-gradient(#fff, #fff) ;
  background-size:
    20px 2px, 2px 20px,
    20px 2px, 2px 20px,
    20px 2px, 2px 20px,
    20px 2px, 2px 20px;
  background-position:
    top left, top left,
    top right, top right,
    bottom left, bottom left,
    bottom right, bottom right;
  background-repeat: no-repeat;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.125rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--text);
}
.about-text h2 .dim { opacity: .6; }
.about-text p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(18,19,20,.8);
  line-height: 1.6;
}

/* ══════════════════════════
   5. SERVICES
══════════════════════════ */
.services-section { padding: 90px 0; background: #fff; }
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bdr);
  border-radius: 8px;
  padding: 40px 32px;
  height: 100%;
  transition: box-shadow .25s;
  overflow: hidden;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.service-card.special {
  background: var(--blue-15);
  border: 1px dashed var(--blue);
  box-shadow: 0 15.5px 48.3px rgba(0,0,0,.08);
}
.service-card .svc-icon {
  width: 46px; height: 46px;
  background: var(--blue-5);
  border-radius: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.service-card.special .svc-icon { background: #f7f7f7; }
.service-card.special .svc-icon i { color: var(--text); }
.service-card .svc-icon i { color: var(--blue); font-size: 1.25rem; }
.service-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.service-card.special h5 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.75rem; }
.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 400;
  color: rgba(18,19,20,.7);
  letter-spacing: -.42px;
  line-height: 1.29;
  margin: 0;
}
.service-card.special p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 2.1;
}

/* ══════════════════════════
   6. EXPERTISE CAROUSEL
══════════════════════════ */
.expertise-section { padding: 80px 0; background: var(--page-bg); }
.expertise-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -1px;
  color: var(--text);
}
.carousel-nav-btn {
  width: 44px; height: 44px;
  background: #e8e9ec;
  border: none;
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.carousel-nav-btn:hover { background: var(--blue); color: #fff; }
.carousel-nav-btn i { font-size: 1rem; color: inherit; }
.expertise-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.carousel-nav-btn img {
  height: 25px;
}
.expertise-track-wrap::-webkit-scrollbar { display: none; }
.expertise-track {
  display: flex;
  gap: 18px;
  padding: 0 10px;
  width: max-content;
}
.expertise-card {
  position: relative;
  width: 319px;
  height: 424px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.expertise-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.expertise-card:hover img { transform: scale(1.04); }
.expertise-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.4) 62.8%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 46px;
  gap: 10px;
}
.expertise-card h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.625rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.expertise-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  line-height: 1.25;
  margin: 0;
}

/* ══════════════════════════
   7. WHY US
══════════════════════════ */
.why-section { padding: 90px 0; background: var(--card-bg); }
.why-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.125rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--text);
}
.why-section h2 .dim { opacity: .6; }
.why-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--why-bdr);
}
.why-item:first-child { border-top: 1px solid var(--why-bdr); }
.why-item i { color: var(--blue); font-size: 1.5rem; margin-bottom: 4px; }
.why-item h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
}
.why-item p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(31,38,50,.5);
  letter-spacing: -.08px;
  line-height: 1.5;
  margin: 0;
}
.why-img {
  width: 100%; height: 600px;
  object-fit: cover;
  border-radius: 8px;
}

/* ══════════════════════════
   8. VIDEO
══════════════════════════ */
.video-section {
  padding: 80px 0;
  background: #fff;
}
.video-card-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  box-shadow: 0 6px 32px rgba(0,0,0,.09);
  aspect-ratio: 16 / 6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.08);
}
.play-btn {
  position: relative; z-index: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform .2s;
  line-height: 0;
}
.play-btn img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.35));
}
.play-btn:hover { transform: scale(1.08); }

/* Video modal */
.video-modal-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.video-modal-backdrop.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: 90%;
  max-width: 960px;
}
.video-modal-inner video {
  width: 100%;
  border-radius: 8px;
}
.video-modal-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ══════════════════════════
   Ascenseur flottant
══════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: #e8e9ec;
  border: none;
  border-radius:4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .2s, background .2s;
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-btn:hover { background: var(--blue); transform: translateY(-3px); }
.scroll-top-btn:hover .icon-svg { filter: brightness(0) invert(1); }
.scroll-top-btn i {
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* ══════════════════════════
   9. FAQ
══════════════════════════ */
.faq-section { padding: 90px 0; background: #fff; }
.faq-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.125rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--text);
}
.faq-section .faq-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(18,19,20,.8);
}
.faq-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(13,33,29,.5);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}

.faq-filter-btn img {
   height: 30px;
}

.faq-filter-btn.active {
  background: var(--blue);
  border-color: #4194d8;
  color: #fff;
  box-shadow: 0 0 5.25px rgba(0,0,0,.14);
}
.faq-filter-btn:hover:not(.active) { border-color: var(--blue); color: var(--blue); }
.faq-filter-btn i { opacity: .5; }
.faq-filter-btn.active i { opacity: 1; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.06); }
.faq-hidden { display: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
}
.faq-question span {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #141721;
  letter-spacing: -.54px;
  flex: 1;
}
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--blue);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 10px;
  transition: transform .25s, opacity .25s;
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after  { width: 2px; height: 12px; }
.faq-item.open .faq-toggle { background: #d3ebff; }
.faq-item.open .faq-toggle::before { background: var(--blue); }
.faq-item.open .faq-toggle::after  { background: var(--blue); transform: scaleY(0); }
.faq-answer {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(18,19,20,.6);
  line-height: 1.67;
  padding-bottom: 18px;
}
.faq-item.open .faq-answer { display: block; }

/* ══════════════════════════
   10. FINAL CTA
══════════════════════════ */
.cta-wrapper {
  background: #fbfbfb;
  padding: 60px 0 0;
}
.cta-section {
  padding: 68px 50px;
  background:
    linear-gradient(to right, rgba(33,33,33,.9) 21%, rgba(0,0,0,0) 107.5%),
    url('../img/Image CTA final.webp') center/cover no-repeat;
  border-radius: 8px;
  margin: 0 132px;
  position: relative;
  overflow: hidden;
}
.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.1vw, 2.8125rem);
  font-weight: 500;
  color: #f6fffc;
  line-height: 1.2;
  max-width: 558px;
}
.cta-section p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #f6fffc;
  opacity: .74;
  max-width: 582px;
  line-height: 1.5;
}

/* ══════════════════════════
   11. FOOTER
══════════════════════════ */
footer {
  background: #fff;
  border-top: 1px solid #e9e9e9;
  padding: 38px 0 10px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items:start;
}
.footer-logo {
    height: 77px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}
.footer-logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  color: rgba(18,19,20,.7);
  line-height: 1.25;
  max-width: 200px;
  margin: 0;
}
.footer-coords {
  font-size: .875rem;
  color: var(--text);
  text-align: right;
}
.footer-coords strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  display: block;
  margin-bottom: 8px;
}
.footer-coords span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  opacity: .7;
  line-height: 1.5;
}
.footer-coords a {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  opacity: .7;
  color: var(--text);
  text-decoration: underline;
}
.footer-bottom {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  color: rgba(0,0,0,.3);
  line-height: 1.67;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  color: rgba(0,0,0,.3);
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }

@media (max-width: 575px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .footer-coords {
    text-align: left;
  }
}

/* ══════════════════════════
   rectangle-text-icon
══════════════════════════ */
.rectangle-text-icon {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rectangle-text-icon__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
}
.rectangle-text-icon__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214,153,111,0.08);
  border-radius: 8px;
}
.rectangle-text-icon__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rectangle-text-icon__title {
  font-size: 15px;
  font-weight: 600;
  color: #1f2632;
  margin: 0;
  line-height: 1.3;
}
.rectangle-text-icon__desc {
  font-size: 13px;
  font-weight: 400;
  color: #5a6070;
  margin: 0;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .navbar-eg { padding: 6px 20px; }
  .navbar-eg .logo { height: 64px; }
  .hero { padding: 0 0 60px; }
  .stats-section { padding: 60px 0; }
  .stats-bar { flex-direction: column; align-items: flex-start; gap: 24px; padding: 28px; }
  .stats-section .section-title-wrap { text-align: left; }
  .about-section { padding: 60px 0; }
  .expertise-section { padding: 60px 0; }
  .video-section { padding: 60px 0; }
  .cta-section { margin: 0 16px; padding: 50px 32px; }
}
@media (max-width: 767px) {
  .hero { padding: 0 0 50px; min-height: unset; }
  .hero > .container { padding-top: 40px; }
  .hero-card { padding: 20px 16px; }
  .hero-bullets-grid { grid-template-columns: 1fr; }
  .about-section .about-img { height: 280px; }
  .about-section .img-label { font-size: .875rem; padding: 16px 32px; }
  .expertise-card { width: 260px; height: 340px; }
  .why-img { height: 300px; margin-top: 1.5rem; }
  .faq-section { padding: 60px 0; }
  .cta-section { margin: 0; border-radius: 0; padding: 40px 20px; }
  .section-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
}

/* rectangle-text-icon responsive */
@media (min-width: 576px) {
  .rectangle-text-icon {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .rectangle-text-icon__card {
    flex: 1 1 calc(50% - 8px);
  }
}
@media (min-width: 992px) {
  .rectangle-text-icon__card {
    flex: 1 1 calc(33.333% - 11px);
  }
}
@media (min-width: 1200px) {
  .rectangle-text-icon__card { padding: 24px; }
  .rectangle-text-icon__title { font-size: 16px; }
  .rectangle-text-icon__desc { font-size: 14px; }
}

/* ══════════════════════════
   Scroll animations
══════════════════════════ */
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity  1.1s cubic-bezier(.22, 1, .36, 1),
    transform 1.1s cubic-bezier(.22, 1, .36, 1);
}
[data-anim="up"]    { transform: translateY(36px); }
[data-anim="left"]  { transform: translateX(-42px); }
[data-anim="right"] { transform: translateX(42px); }
[data-anim="scale"] { transform: scale(0.95) translateY(20px); }
[data-anim].in      { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1; transform: none; transition: none; }
}
