/* ============================================================
   INTERMOBILITY — Redesign 2026
   ============================================================ */

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

:root {
  --navy:      #0A1628;
  --navy-mid:  #0E2040;
  --navy-soft: #13305E;
  --green:     #12E96E;
  --green-dark:#0BBD55;
  --green-soft:#E8FBF1;
  --white:     #F8F8FE;
  --off-white: #ECECEC;
  --light-bg:  #F2F4F8;
  --text:      #1A1A2E;
  --text-mid:  #3D3D3D;
  --text-light:#6B7280;
  --border:    #E0E4EF;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(10,22,40,.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,.18);

  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--sm  { padding: 8px 20px;  font-size: .85rem; }
.btn--md  { padding: 12px 28px; font-size: .95rem; }
.btn--lg  { padding: 16px 36px; font-size: 1rem;   }

.btn--green       { background: var(--green); color: var(--navy); border-color: var(--green); }
.btn--green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18,233,110,.3); }

.btn--navy       { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-2px); }

.btn--outline-white       { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn--ghost       { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.25); }
.btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ---------- TAGS & BADGES ---------- */
.tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag--green { background: var(--green-soft); color: var(--green-dark); }

.badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 50px; font-size: .85rem; font-weight: 600; }
.badge--green { background: rgba(18,233,110,.15); color: var(--green); border: 1px solid rgba(18,233,110,.25); }

/* ---------- SECTION ---------- */
.section { padding: 96px 0; }
.section--white  { background: #fff; }
.section--light  { background: var(--light-bg); }
.section--dark   { background: var(--navy); color: #fff; }
.section--navy   { background: var(--navy-mid); color: #fff; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.section-header--light h2 { color: #fff; }
.section-header--light p  { color: rgba(255,255,255,.7); }

/* ---------- REMIX ICON BASE ---------- */
i[class^="ri-"], i[class*=" ri-"] {
  line-height: 1;
  vertical-align: middle;
}

/* ---------- UTILITIES ---------- */
.text-green  { color: var(--green); }
.text-navy   { color: var(--navy); }

.check-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: rgba(255,255,255,.85); }
.check-list--dark li { color: var(--text-mid); }
.check { color: var(--green); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.check--navy { color: var(--navy); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.header.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  padding: 12px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Logo */
.logo { display: inline-flex; align-items: center; }
.logo__img {
  height: 32px;
  width: auto;
  display: block;
}
/* Inverte a cor para branco em fundos escuros (mantém o verde do símbolo aproximado) */
.logo__img--white {
  filter: brightness(0) invert(1);
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav a:hover { color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ============================================================
   HERO  (FIX: container wraps both columns)
   ============================================================ */
.hero {
  min-height: 100svh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(18,233,110,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(18,100,200,.12) 0%, transparent 60%);
  pointer-events: none;
}

/* The container wraps the grid so margin-inline: auto works correctly */
.hero > .container {
  position: relative;
  z-index: 2;
  padding-block: 80px;
  width: min(1200px, 100% - 48px);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero__content { /* left column — no container needed here */ }

.hero__badge { margin-bottom: 20px; }

.hero__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero__trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero__trust-item { color: rgba(255,255,255,.8); font-size: .88rem; display: flex; align-items: center; gap: 6px; }

/* Right column — image */
.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image img {
  width: 100%;
  max-height: 75vh;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
}
.hero__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(18,233,110,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green);
  padding: 32px 0;
}
.stats-bar__grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-item__number { display: block; font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-item__label  { font-size: .82rem; font-weight: 600; color: var(--navy-soft); text-transform: uppercase; letter-spacing: .04em; }
.stat-divider { width: 1px; height: 48px; background: rgba(10,22,40,.2); flex-shrink: 0; }

/* ============================================================
   PAIN
   ============================================================ */
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.pain__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.pain__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain__card--bad { border-left: 4px solid #FF6B6B; }
.pain__icon { font-size: 2rem; margin-bottom: 12px; color: #FF6B6B; }
.pain__card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.pain__card p  { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

.pain__cta { text-align: center; }
.pain__cta p { color: var(--text-mid); margin-bottom: 20px; font-size: 1.05rem; font-weight: 500; }

/* ============================================================
   SOLUTION (FIX: position relative on image wrapper)
   ============================================================ */
.solution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution__desc { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: 1rem; line-height: 1.7; }

/* FIX: position relative so badge-float positions correctly */
.solution__image {
  position: relative;
}
.solution__img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-soft);
}
.solution__img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.solution__badge-float {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--green);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.solution__badge-float i { font-size: 1.8rem; }
.solution__badge-float strong { font-size: .9rem; display: block; }
.solution__badge-float small  { font-size: .78rem; opacity: .8; }

/* ============================================================
   DIFFERENTIALS
   ============================================================ */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.diff__card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform .2s, box-shadow .2s;
}
.diff__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: #fff; }
.diff__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.diff__icon i { font-size: 1.5rem; }
.diff__icon--green { background: var(--green-soft); }
.diff__icon--blue  { background: #E8F3FF; }
.diff__icon--navy  { background: #E8EEF8; }
.diff__card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.diff__card p  { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
}
.step__number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step__content h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step__content p  { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

.step__arrow {
  color: rgba(255,255,255,.3);
  font-size: 1.5rem;
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 16px;
  display: flex;
  align-items: center;
}
.step__arrow i { font-size: 1.5rem; }

/* ============================================================
   WHO WE SERVE (FIX: use <img> tags, no background-only)
   ============================================================ */
.serve__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.serve__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.serve__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.serve__card--featured { border: 2px solid var(--green); }

.serve__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--green);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 1;
}

/* FIX: image container with proper height and overflow */
.serve__img {
  height: 200px;
  overflow: hidden;
  background: var(--navy);
}
.serve__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.serve__card:hover .serve__img img { transform: scale(1.04); }

.serve__body { padding: 24px; }
.serve__body h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.serve__body h4 i { font-size: 1.2rem; color: var(--green-dark); flex-shrink: 0; }
.serve__body p  { font-size: .9rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.serve__body ul { display: flex; flex-direction: column; gap: 6px; }
.serve__body ul li { font-size: .85rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.serve__body ul li::before { content: '✓'; color: var(--green-dark); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   BRANDS
   ============================================================ */
.brands__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}
.brand-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  transition: border-color .2s, box-shadow .2s;
}
.brand-logo:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.brands__note { text-align: center; color: var(--text-light); font-size: .9rem; }

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.cert__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: background .2s;
}
.cert__card:hover { background: rgba(255,255,255,.1); }
.cert__icon { font-size: 2.2rem; margin-bottom: 14px; color: var(--green); }
.cert__icon i { font-size: 2.2rem; }
.cert__card h4 { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.cert__card p  { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============================================================
   ABOUT (FIX: position relative on about__image)
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* FIX: needs position relative so badge-float anchors here */
.about__image {
  position: relative;
}
.about__img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a3a6e 0%, #0a1628 100%);
}
.about__img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* Variante para foto de pessoa com fundo escuro */
.about__img-wrapper--person {
  aspect-ratio: unset;
  height: auto;
  background: none;
  display: block;
  overflow: visible;
  border-radius: var(--radius-lg);
}
.about__img-wrapper--person img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.about__badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--green);
  color: var(--navy);
  border: 2px solid var(--green);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about__badge-icon { font-size: 1.8rem; color: var(--navy); }
.about__badge-icon i { font-size: 1.8rem; }
.about__badge-float strong { font-size: .88rem; display: block; color: var(--navy); }
.about__badge-float small  { font-size: .78rem; color: rgba(0,0,0,.6); }

.about__text .tag { margin-bottom: 12px; }
.about__text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; color: #fff; }
.about__text p  { color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 14px; }

.about__specialist {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green);
}
.about__specialist-name strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.about__specialist-name span {
  font-size: .85rem;
  color: var(--text-light);
}

.about__highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.about__highlight strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--green); }
.about__highlight small  { font-size: .82rem; color: rgba(255,255,255,.6); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.testimonial__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.testimonial__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial__card--featured {
  border: 2px solid var(--navy);
  background: var(--navy);
  color: #fff;
}
.testimonial__card--featured p { color: rgba(255,255,255,.85); }

.testimonial__stars { color: #F59E0B; margin-bottom: 12px; font-size: 1rem; display: flex; gap: 2px; }
.testimonial__stars i { font-size: 1rem; }
.testimonial__card p { font-size: .92rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 20px; }

.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: .9rem; }
.testimonial__author small  { font-size: .8rem; color: var(--text-light); }
.testimonial__card--featured .testimonial__author small { color: rgba(255,255,255,.55); }
.testimonial__card--featured strong { color: #fff; }

.testimonials__cta { display: flex; justify-content: center; }
.rating-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 36px;
  box-shadow: var(--shadow-sm);
}
.rating-bar__score { font-size: 2.5rem; font-weight: 900; color: var(--navy); }
.rating-bar__stars { color: #F59E0B; font-size: 1.1rem; display: flex; gap: 2px; margin-bottom: 4px; }
.rating-bar__stars i { font-size: 1.1rem; }
.rating-bar small   { color: var(--text-light); font-size: .85rem; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.guarantee__icon { font-size: 5rem; flex-shrink: 0; color: var(--green); line-height: 1; }
.guarantee__icon i { font-size: 5rem; }
.guarantee__text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.guarantee__text p  { color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 14px; }
.guarantee__items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.guarantee__item { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: rgba(255,255,255,.85); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: linear-gradient(135deg, var(--green) 0%, #0BBD55 100%); padding: 72px 0; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner__text h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.cta-banner__text p  { color: var(--navy-soft); font-size: 1rem; max-width: 550px; }
.cta-banner .btn--green { background: var(--navy); color: #fff; border-color: var(--navy); }
.cta-banner .btn--green:hover { background: var(--navy-mid); }

/* ============================================================
   LOCATION
   ============================================================ */
.location__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.location__text .tag  { margin-bottom: 12px; }
.location__text h2    { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.location__text p     { color: var(--text-light); margin-bottom: 24px; }

.location__cities {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.location__city {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  flex: 1;
  min-width: 180px;
}
.location__city-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.location__city strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}
.location__city span {
  font-size: .8rem;
  color: var(--text-light);
}

.location__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.map-open-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  z-index: 1;
}
.map-open-link:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.map-open-link i { font-size: .85rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item details {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}
.faq__item details:hover { box-shadow: var(--shadow-sm); }
.faq__item details[open] { border-color: var(--navy); }

.faq__item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--text-light); flex-shrink: 0; }
.faq__item details[open] summary::after { content: '−'; }

.faq__item details p {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: .92rem;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 72px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo { margin-bottom: 16px; display: block; }
.footer__logo .logo__img { height: 28px; }

.footer__brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 280px; margin-bottom: 20px; }
.footer__social { display: flex; gap: 16px; }
.footer__social a { font-size: 1.4rem; opacity: .6; transition: opacity .2s; color: #fff; display: flex; align-items: center; }
.footer__social a:hover { opacity: 1; }
.footer__social i { font-size: 1.4rem; }

.footer__links h5, .footer__contact h5 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer__links a:hover { color: #fff; }

.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact p { font-size: .88rem; display: flex; align-items: center; gap: 8px; }
.footer__contact p i { font-size: 1rem; opacity: .7; flex-shrink: 0; }
.footer__contact .btn { margin-top: 12px; align-self: flex-start; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid        { grid-template-columns: 1fr; }
  .hero__image       { display: none; }
  .hero__content     { text-align: center; }
  .hero__actions     { justify-content: center; }
  .hero__trust       { justify-content: center; }

  .solution__inner   { grid-template-columns: 1fr; gap: 48px; }
  .about__inner      { grid-template-columns: 1fr; gap: 64px; }
  .location__inner   { grid-template-columns: 1fr; gap: 48px; }

  .footer__inner     { grid-template-columns: 1fr 1fr; }
}

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

  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .hamburger { display: flex; }

  .stats-bar__grid { flex-direction: column; gap: 24px; text-align: center; }
  .stat-divider { width: 80px; height: 1px; }

  .steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); }

  .guarantee__inner { flex-direction: column; gap: 24px; }
  .guarantee__items { grid-template-columns: 1fr; }

  .cta-banner__inner { flex-direction: column; text-align: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .diff__grid { grid-template-columns: 1fr; }
  .serve__grid { grid-template-columns: 1fr; }
  .certs__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .solution__badge-float { left: 0; bottom: -16px; }
  .about__badge-float    { right: 0; bottom: -16px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.8rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .rating-bar { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   BRAND HIDING — object-position crops + overlay masks
   ============================================================ */

/* Crop to right side: hides brand on left (ex: Komeco wall charger) */
.img--crop-right  { object-position: 80% center !important; }

/* Crop to top: hides brand at bottom (ex: Intelbras label) */
.img--crop-top    { object-position: center 15% !important; }

/* Crop to left side: alternative framing for repeated scene images */
.img--crop-left   { object-position: 20% center !important; }

/* Neutral center crop */
.img--crop-center { object-position: center center !important; }

/* Gradient overlay on serve__img — darkens bottom to mask any residual logo */
.serve__img {
  position: relative;
}
.serve__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.10) 40%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
}

/* For white-background product shots (Intelbras):
   blend bottom into the card background */
.serve__img--white-bg::after {
  background: linear-gradient(to top, #fff 0%, rgba(255,255,255,.9) 30%, transparent 60%);
}

/* Solution image wrapper overlay (subtle, top area) */
.solution__img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.35) 0%,
    transparent 35%,
    transparent 65%,
    rgba(10, 22, 40, 0.40) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* About image wrapper overlay */
.about__img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.25) 0%,
    transparent 30%
  );
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
