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

:root {
  --bg: #0d0d0f;
  --bg2: #111116;
  --bg3: #16161d;
  --card: #1a1a24;
  --card2: #1e1e2a;
  --purple: #9b4dca;
  --purple2: #7c3aed;
  --purple-lt: #c084fc;
  --purple-glow: rgba(155, 77, 202, 0.35);
  --white: #ffffff;
  --grey: #8b8b9e;
  --grey2: #5a5a6e;
  --border: rgba(255, 255, 255, 0.07);
  --font: 'Montserrat', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-lt);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.section-sub {
  margin-top: 12px;
  color: var(--grey);
  font-size: 15px;
}

.section-header {
  margin-bottom: 50px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-lt), var(--purple2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff;
  box-shadow: 0 4px 24px var(--purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(124, 58, 237, 0.55);
}

.btn-outline {
  border: 1.5px solid rgba(155, 77, 202, 0.55);
  color: var(--white);
  background: rgba(155, 77, 202, 0.08);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: rgba(155, 77, 202, 0.18);
  border-color: var(--purple-lt);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  font-size: 10px;
  padding-left: 2px;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 clamp(20px, 3vw, 40px);
  height: 72px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13, 13, 15, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1540px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.logo-accent {
  color: var(--purple-lt);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--white);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.25s;
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn[aria-expanded="true"] {
  color: var(--white);
}

.nav-dropdown-arrow {
  transition: transform 0.25s ease;
}

.nav-dropdown-btn[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: rgba(16, 16, 22, 0.96);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  backdrop-filter: blur(16px);
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.nav-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  text-transform: none;
  letter-spacing: 0;
}

.nav-dropdown-item:hover {
  background: rgba(139, 43, 226, 0.15);
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.25s;
}

.nav-phone:hover {
  color: var(--purple-lt);
}

.nav-phone-icon {
  width: 18px;
  height: 18px;
  color: var(--purple-lt);
  flex-shrink: 0;
}

.nav-cta {
  font-size: 13px;
  padding: 10px 22px;
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
  background:
    url('../Imagens/immatlux-express-luxembourg-hero.png') center center / cover no-repeat;
  padding-top: 72px;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(100px, 12vw, 170px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(5, 6, 8, 0) 0%,
      rgba(5, 6, 8, 0.34) 54%,
      rgba(5, 6, 8, 0.78) 100%);
}

.hero-bg-glow {
  display: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero {
  padding-left: clamp(20px, 3vw, 40px);
  padding-right: clamp(20px, 3vw, 40px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1540px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 72px);
}

/* right column is purely decorative space — hero image fills it */
.hero-visual {
  display: none;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-title {
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 820px;
}

.hero-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--grey);
  max-width: 620px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.hero-cta .btn-outline-hero {
  margin-top: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--purple-lt);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-cta .btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-socials {
  display: flex;
  gap: 14px;
  padding-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--grey);
  transition: all 0.25s;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  border-color: var(--purple);
  color: var(--purple-lt);
  background: rgba(124, 58, 237, 0.12);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle-glow {
  position: relative;
  width: clamp(300px, 42vw, 560px);
  height: clamp(300px, 42vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(155, 77, 202, 0.7);
  box-shadow:
    0 0 30px rgba(124, 58, 237, 0.5),
    0 0 60px rgba(124, 58, 237, 0.25),
    inset 0 0 30px rgba(124, 58, 237, 0.1);
  animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5), 0 0 60px rgba(124, 58, 237, 0.25);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 50px rgba(155, 77, 202, 0.7), 0 0 100px rgba(124, 58, 237, 0.35);
    opacity: 0.85;
  }
}

.hero-car-wrap {
  width: 88%;
  height: 88%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.badge-num {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-lt), var(--purple2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--grey2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--grey2), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  position: relative;
  padding: 70px 0 86px;
  background:
    url('../Imagens/Immatriculation%20Voiture%20Luxembourg.webp') center center / cover no-repeat;
  isolation: isolate;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.05), transparent 24%),
    rgba(3, 4, 6, 0.44);
}

.services::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(90px, 10vw, 150px);
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(5, 6, 8, 0.72) 0%,
      rgba(5, 6, 8, 0.32) 52%,
      rgba(5, 6, 8, 0) 100%);
}

.services .container {
  position: relative;
  z-index: 1;
  max-width: 1745px;
  padding: 0 clamp(18px, 2.4vw, 42px);
}

.services-header {
  text-align: center;
}

.section-divider {
  width: clamp(220px, 18vw, 330px);
  height: 3px;
  background: linear-gradient(90deg, #a855f7 0%, #8b5cf6 48%, #14b8e6 100%);
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-divider--left {
  margin-left: 0;
}

.section-divider--lg {
  width: clamp(300px, 30vw, 520px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 680px));
  gap: 26px;
  justify-content: center;
}

.service-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: clamp(320px, 20vw, 380px);
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 12, 0.52);
  transition: background 0.35s ease;
}

.service-card:hover::before {
  background: rgba(8, 8, 12, 0.62);
}

.service-card--darken::before {
  background: rgba(8, 8, 12, 0.62);
}

.service-card--darker::before,
.service-card--darker:hover::before {
  background: rgba(8, 8, 12, 0.78);
}

.service-card--light::before {
  background: rgba(8, 8, 12, 0.18);
}

.service-card--light:hover::before {
  background: rgba(8, 8, 12, 0.28);
}

.service-card--darken::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.service-card-inner {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 2.4vw, 38px);
  padding-bottom: clamp(36px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: clamp(320px, 20vw, 380px);
}

.service-card-inner h3 {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: none;
}

.service-card-inner p {
  font-size: clamp(16px, 1.35vw, 20px);
  color: rgba(210, 210, 220, 0.8);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 470px;
  text-shadow: none;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  padding: 0;
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  text-shadow: none;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

.service-features li::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple-lt);
}

.service-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}

.service-btn-sec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid rgba(155, 77, 202, 0.4);
  color: var(--purple-lt);
  background: rgba(155, 77, 202, 0.06);
  transition: all 0.3s ease;
  width: fit-content;
}

.service-btn-sec:hover {
  background: rgba(155, 77, 202, 0.15);
  border-color: var(--purple-lt);
}

.service-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 224px;
  min-height: 50px;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  background:
    linear-gradient(rgba(8, 8, 12, 0.92), rgba(8, 8, 12, 0.92)) padding-box,
    linear-gradient(110deg, #b84dff 0%, #6d4fc7 48%, #23c7f3 100%) border-box;
  transition: transform 0.25s cubic-bezier(.2, .8, .2, 1), filter 0.25s cubic-bezier(.2, .8, .2, 1);
  width: fit-content;
}

.service-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.15);
}

/* ============================================================
   CTA BAND
============================================================ */
.cta-band::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, #0d0d0f 100%);
  z-index: 2;
}

.cta-band {
  position: relative;
  width: 100vw;
  margin-top: -48px;
  margin-left: calc(50% - 50vw);
  border-top: none;
  border-bottom: none;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  min-height: 620px;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 1080px;
  background:
    url('../Imagens/immatlux-express-luxembourg-Immatriculation.png') 50% center / cover no-repeat;
}

/* Video hidden — only used in modal */
.cta-band-video {
  display: none;
}

/* left dark fade — text readable, right stays cinematic */
.cta-band-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right,
      rgba(8, 8, 12, 0.92) 0%,
      rgba(8, 8, 12, 0.70) 28%,
      rgba(8, 8, 12, 0.28) 52%,
      rgba(8, 8, 12, 0.05) 100%),
    linear-gradient(to bottom,
      rgba(8, 8, 12, 0.35) 0%,
      transparent 18%,
      transparent 80%,
      rgba(8, 8, 12, 0.45) 100%);
  pointer-events: none;
}


.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  max-width: 1540px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(96px, 8vw, 140px) clamp(20px, 3vw, 40px) clamp(96px, 8vw, 140px) 0;
}

/* Play button floats absolutely over the circles in the image */
.cta-band-visual {
  position: absolute;
  left: 68%;
  top: 42%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 0;
  margin: 0;
}

.cta-band-text {
  padding-left: 0;
}

.cta-band-text h2 {
  margin-top: 180px;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
  max-width: 820px;
}

.cta-band-divider {
  width: min(100%, 420px);
  height: 3px;
  background: linear-gradient(90deg, #b84dff 0%, #7c3aed 42%, #23c7f3 100%);
  border-radius: 2px;
  margin-bottom: 24px;
}

.cta-band-text .cta-sub {
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(200, 200, 215, 0.75);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

.cta-rotator {
  position: relative;
  min-height: 100px;
  margin-bottom: 20px;
}

.cta-rotator-item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 480px;
}

.cta-rotator-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.cta-rotator-icon {
  font-size: 28px;
  line-height: 1;
}

.cta-rotator-item strong {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 800;
  color: #fff;
}

.cta-rotator-item p {
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(200, 200, 215, 0.8);
  line-height: 1.65;
  margin: 0;
}

.cta-rotator-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-dot.active {
  background: var(--purple-lt);
  transform: scale(1.4);
}

.cta-band-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-band-hint {
  font-size: 12px;
  color: var(--grey2);
  line-height: 1.6;
}

.btn-cta-grad {
  display: inline-flex;
  align-items: center;
  padding: 15px 38px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #3a2d8f 0%, #7c3aed 55%, #a855f7 100%);
  box-shadow: 0 4px 28px rgba(100, 50, 200, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.btn-cta-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(100, 50, 200, 0.65);
}

/* Floating play button — radar rings style */

.cta-play-mobile { display: none !important; }


.cta-play-btn {
  position: relative;
  width: 124px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* Radar ring 1 — tight */
.cta-play-pulse {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 0;
  background:
    conic-gradient(from 210deg,
      rgba(192, 132, 252, 0) 0deg,
      rgba(47, 184, 232, 0.14) 24deg,
      rgba(47, 184, 232, 0.36) 66deg,
      rgba(47, 184, 232, 0.66) 112deg,
      rgba(124, 58, 237, 0.82) 166deg,
      rgba(192, 132, 252, 1) 222deg,
      rgba(192, 132, 252, 0) 268deg,
      rgba(192, 132, 252, 0) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 2px));
  animation: playRingTrail 4.8s linear infinite;
  pointer-events: none;
}

/* Radar ring 2 */
.cta-play-btn::before {
  content: none;
}

/* Radar ring 3 — widest */
.cta-play-btn::after {
  content: none;
}

@keyframes playRingTrail {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cta-play-inner {
  position: relative;
  z-index: 2;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8f2dd4 0%, #7645d8 45%, #2fb8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 7px;
  box-shadow: 0 12px 42px rgba(60, 120, 210, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-play-inner svg {
  width: 46px;
  height: 46px;
}

.cta-play-btn:hover .cta-play-inner {
  transform: scale(1.08);
  box-shadow: 0 16px 58px rgba(60, 120, 210, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

/* ============================================================
   VIDEO MODAL
============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.video-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(155, 77, 202, 0.3);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(124, 58, 237, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #000;
}

.video-modal.open .video-modal-box {
  transform: scale(1) translateY(0);
}

.video-modal-player {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 10, 14, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
}

.video-modal-close:hover {
  background: rgba(124, 58, 237, 0.5);
  transform: rotate(90deg);
}

/* ============================================================
   PORTFOLIO
============================================================ */
.portfolio {
  position: relative;
  padding: 0 0 clamp(80px, 8vw, 122px);
  margin-top: -80px;
  background: #0d0d0f;
  overflow-x: hidden;
  overflow-y: visible;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  pointer-events: none;
  background: linear-gradient(180deg, #0d0d0f 0%, rgba(13, 13, 15, 0) 100%);
  z-index: 0;
}

.portfolio>.container:not(.portfolio-inner) {
  display: none;
}

.portfolio-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(560px, 670px) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(80px, 8vw, 140px);
  max-width: 1540px;
  padding-left: 0;
  padding-right: 0;
  --portfolio-card-width: min(670px, 41vw);
  --portfolio-card-height: calc(var(--portfolio-card-width) * 0.625);
  --portfolio-offscreen-width: clamp(92px, 6vw, 112px);
  --portfolio-viewport-gutter: max(0px, calc((100vw - 1540px) / 2));
}

.portfolio-media {
  position: relative;
  min-width: 0;
  padding-left: 26px;
  padding-bottom: 50px;
  overflow: visible;
}

.portfolio-card {
  position: relative;
  width: var(--portfolio-card-width);
  height: var(--portfolio-card-height);
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.62);
}

/* Carta stack 1 — cinzento claro, ligeiramente deslocada */
.portfolio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: #3a3a42;
  z-index: -1;
  transform: translateY(12px) translateX(-14px);
  pointer-events: none;
}

/* Carta stack 2 — cinzento mais escuro, mais deslocada */
.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: #26262e;
  z-index: -2;
  transform: translateY(22px) translateX(-26px);
  pointer-events: none;
}


.portfolio-card img,
.portfolio-peek img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card img {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 12, 0.28);
  border-radius: 14px;
  z-index: 2;
  pointer-events: none;
}

.portfolio-card.is-changing img {
  opacity: 0.2;
  transform: scale(1.025);
}

.portfolio-peek--left,
.portfolio-peek--stack,
.portfolio-peek--right {
  display: none;
}

.portfolio-card,
.portfolio-count {
  position: relative;
  z-index: 2;
}

.portfolio-count--mobile { display: none !important; }

.portfolio-count-current-mobile {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, #b84dff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 24px rgba(168, 85, 247, 0.45);
  line-height: 1;
}

.clone-card::before,
.clone-card::after {
  display: none;
}

/* carta actual desce para o stack enquanto nova sobe */
.portfolio-card.exit-to-stack {
  animation: cardGoDown 0.42s cubic-bezier(0.4, 0, 0.6, 1) forwards;
  z-index: 1;
}
.portfolio-card.enter-up {
  animation: cardComeUp 0.52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 3;
}

/* carta actual sobe do stack enquanto nova desce */
.portfolio-card.exit-to-top {
  animation: cardGoUp 0.42s cubic-bezier(0.4, 0, 0.6, 1) forwards;
  z-index: 1;
}
.portfolio-card.enter-down {
  animation: cardComeDown 0.52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 3;
}

@keyframes cardGoDown {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 1; }
  100% { transform: translateY(22px) translateX(-26px) scale(0.926); opacity: 0.35; }
}
@keyframes cardComeUp {
  0%   { transform: translateY(22px) translateX(-26px) scale(0.926); opacity: 0.35; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 1; }
}
@keyframes cardGoUp {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 1; }
  100% { transform: translateY(-22px) translateX(26px) scale(0.926); opacity: 0.35; }
}
@keyframes cardComeDown {
  0%   { transform: translateY(-22px) translateX(26px) scale(0.926); opacity: 0.35; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 1; }
}

.portfolio-peek::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 14, 0.4), rgba(10, 10, 14, 0.1));
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #141416;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), background 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.portfolio-arrow:active {
  transform: translateY(-50%) scale(0.97);
}

.portfolio-arrow svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-arrow--prev {
  left: -27px;
}

.portfolio-arrow--next {
  right: -27px;
}

.portfolio-count {
  width: var(--portfolio-card-width);
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
}

.portfolio-count-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-lt);
}

.portfolio-count-nums {
  display: flex;
  align-items: center;
  gap: 4px;
}

.portfolio-count-scenario {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.portfolio-count-current {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #b84dff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 24px rgba(168, 85, 247, 0.45);
  line-height: 1;
}

.portfolio-count-total {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  align-self: flex-end;
  padding-bottom: 4px;
}

.portfolio-copy h2 {
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.18;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
  max-width: 680px;
}

.portfolio-divider {
  width: min(100%, 420px);
  height: 3px;
  margin: 24px 0 28px;
  border-radius: 3px;
  background: linear-gradient(90deg, #b84dff 0%, #7c3aed 42%, #23c7f3 100%);
}

.portfolio-copy p {
  max-width: 650px;
  color: rgba(230, 230, 238, 0.78);
  font-size: clamp(16px, 1.16vw, 19px);
  line-height: 1.56;
}

.portfolio-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.portfolio-cta {
  min-width: 370px;
  justify-content: center;
  min-height: 82px;
  border-radius: 999px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  background: linear-gradient(110deg, #8b2ed8 0%, #7c3aed 48%, #35b9ef 100%);
  box-shadow: 0 20px 46px rgba(124, 58, 237, 0.36), 0 0 30px rgba(35, 199, 243, 0.12);
}

.portfolio-actions span {
  color: rgba(220, 220, 230, 0.66);
  font-size: 14px;
  line-height: 1.32;
}

.portfolio-copy-wrap {
  height: var(--portfolio-card-height);
  display: flex;
  flex-direction: column;
}

.portfolio-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 22px;
}

.portfolio-copy--top { flex: 0 0 auto; }
.portfolio-copy--bottom { flex: 1 1 auto; justify-content: flex-start; padding-top: 12px; }

.portfolio-copy .portfolio-actions {
  margin-top: auto;
  padding-bottom: 8px;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 1080px;
  margin: -180px auto 0;
  padding: 0 clamp(20px, 3vw, 40px);
  background:
    url('../Imagens/immatlux-express-luxembourg-controle%20techique.png') center center / cover no-repeat;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(180deg, #0d0d0f 0%, rgba(13,13,15,0.7) 55%, rgba(13,13,15,0.2) 80%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, #0d0d0f 70%, #0d0d0f 100%);
  pointer-events: none;
  z-index: 1;
}

.contact-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1540px;
  margin: 0 auto;
  padding: clamp(40px, 4vw, 60px) 0;
  width: 100%;
  align-items: flex-start;
  box-sizing: border-box;
}

.contact-left {
  max-width: 820px;
}

.contact-right {
  margin-top: -40px;
}

.contact-title {
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 18px;
}

.contact-divider {
  width: clamp(300px, 30vw, 520px);
  height: 3px;
  background: linear-gradient(90deg, #a855f7 0%, #8b5cf6 48%, #14b8e6 100%);
  border-radius: 2px;
  margin-left: 0;
  margin-bottom: 24px;
}

.contact-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-lt);
  margin-bottom: 12px;
}

.contact-sub {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.contact-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin: 0 0 24px;
  padding-left: 0;
}

.contact-checklist ul:last-child {
  padding-left: 0;
  margin-left: -110px;
}

.contact-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-checklist li {
  color: #fff;
  font-size: 16px;
  padding-left: 22px;
  position: relative;
}

.contact-checklist li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--purple-lt);
  font-size: 18px;
  line-height: 1;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-trust span {
  color: var(--grey);
  font-size: 14px;
}

.contact-left p {
  color: var(--grey);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(10, 10, 16, 0.78);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 40px;
  backdrop-filter: blur(12px);
  width: 580px;
  max-width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 8px 24px rgba(0,0,0,0.5);
}

.form-group--icon {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 16px;
}

.form-group--icon:last-of-type {
  border-bottom: none;
}

.form-group--icon svg {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: var(--grey2);
  pointer-events: none;
}

.form-group input {
  width: 100%;
  padding: 12px 40px 12px 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  outline: none;
}

.form-group input::placeholder {
  color: var(--grey);
}

.form-group input:focus {
  outline: none;
}

.form-group--select select {
  width: 100%;
  padding: 12px 40px 12px 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.form-group--select select option {
  background: #0e0e1a;
  color: var(--white);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 4px 0;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  padding: 0;
}

.form-checkbox span {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.4;
}

.form-trust {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}

.form-trust span {
  color: var(--grey);
  font-size: 12px;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
}

.form-submit-hint {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.4;
}

.form-group select option {
  background: var(--card);
  color: var(--white);
}

.form-notice {
  font-size: 11px;
  color: var(--grey2);
  margin-top: 8px;
}

/* ============================================================
   WHY VISUAL SECTION
============================================================ */
.whyvisual-section {
  position: relative;
  width: 100%;
  min-height: 1080px;
  margin-top: -160px;
  background: url('../Imagens/immatlux-express-luxembourg-snca.webp') center center / 1900px auto no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.whyvisual-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}
.whyvisual-section .wv-top-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, #0d0d0f 0%, #0d0d0f 20%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.whyvisual-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, #0d0d0f 100%);
  pointer-events: none;
  z-index: 1;
}
.whyvisual-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px) clamp(20px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.whyvisual-header {
  text-align: center;
  margin-bottom: 48px;
  margin-top: -30px;
}
.whyvisual-title {
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
}
.whyvisual-divider {
  width: clamp(220px, 18vw, 330px);
  height: 3px;
  background: linear-gradient(90deg, #b84dff 0%, #7c3aed 50%, #23c7f3 100%);
  border-radius: 2px;
  margin: 0 auto 16px;
}
.whyvisual-sub {
  color: var(--grey);
  font-size: 15px;
}
.whyvisual-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.whyvisual-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.whyvisual-item--left {
  align-items: flex-end;
  text-align: right;
}
.whyvisual-item--right {
  align-items: flex-start;
  text-align: left;
}
.whyvisual-num {
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}
.whyvisual-overlay-img {
  position: absolute;
  width: 150px;
  height: auto;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
}
.whyvisual-overlay-01 {
  left: -2%;
  top: 42%;
}
.whyvisual-overlay-02 {
  left: 26%;
  bottom: -18%;
  width: 135px;
}
.whyvisual-overlay-03 {
  right: 26%;
  top: 30%;
  width: 110px;
}
.whyvisual-label {
  position: absolute;
  z-index: 3;
  width: 300px;
}
.wv-accordion {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.wv-acc-title {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  text-align: left;
  padding: 0;
  line-height: 1.2;
  transition: opacity 0.2s;
}
.wv-acc-title:hover {
  opacity: 0.8;
}
.wv-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.wv-acc-body.open {
  max-height: 200px;
  opacity: 1;
}
.wv-acc-body p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.whyvisual-label-01 {
  left: 10%;
  top: 40%;
}
.whyvisual-label-01 p {
  text-align: left;
}
.whyvisual-label-02 {
  left: 38%;
  bottom: -18%;
}
.whyvisual-label-02 p {
  text-align: left;
}
.whyvisual-label-03 {
  right: 2%;
  top: 38%;
}
.whyvisual-label-03 p {
  text-align: left;
}
.whyvisual-thumb {
  width: 100px;
  height: 66px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.whyvisual-item p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.whyvisual-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.whyvisual-ring {
  display: none;
}
.whyvisual-ring::before {
  display: none;
}
.whyvisual-car {
  width: 380px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.6));
}
.whyvisual-bottom {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.whyvisual-item--bottom {
  align-items: center;
  text-align: center;
  max-width: 380px;
}
.whyvisual-item--bottom p {
  text-align: center;
  max-width: 380px;
}

/* ============================================================
   WHY SECTION
============================================================ */
.why-section {
  padding: 100px 0;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-lt);
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-text p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.65;
}

/* ============================================================
   PRICES
============================================================ */
.prices-section {
  padding: 100px 0;
  background:
    linear-gradient(to bottom, var(--bg) 0%, transparent 12%, transparent 88%, var(--bg) 100%),
    linear-gradient(to right, rgba(8,8,12,0.75) 0%, rgba(8,8,12,0.45) 50%, rgba(8,8,12,0.75) 100%),
    url('../Imagens/immatlux-express-luxembourg importation de votre véhicule au Luxembourg.webp') center center / cover no-repeat;
}

.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.calc-select-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}

.calc-select-wrap select {
  width: 100%;
  padding: 14px 44px 14px 16px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.calc-select-wrap select option {
  background: #0e0e1a;
  color: var(--white);
}

.calc-select-wrap svg {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--grey);
  pointer-events: none;
}

.calc-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  padding: 0 16px;
}

.calc-currency {
  color: var(--grey);
  font-size: 15px;
  font-weight: 600;
}

.calc-input-wrap input {
  flex: 1;
  padding: 14px 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
}

.calc-input-wrap input::placeholder {
  color: var(--grey);
}

.calc-btn {
  margin-top: 4px;
  width: 100%;
}

.calc-result {
  background: rgba(10, 10, 16, 0.78);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 40px;
  backdrop-filter: blur(12px);
}

.calc-result-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-lt);
  margin-bottom: 24px;
}

.calc-result-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--grey);
}

.calc-result-row:last-child {
  border-bottom: none;
}

.calc-val {
  font-weight: 700;
  color: var(--white);
}

.calc-result-divider {
  height: 1px;
  background: rgba(124,58,237,0.3);
  margin: 8px 0;
}

.calc-result-total {
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
}

.calc-result-total .calc-val {
  color: var(--purple-lt);
  font-size: 20px;
}

.calc-result-cta {
  display: inline-block;
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--card);
  transition: background 0.2s, color 0.2s;
}

.faq-question:hover {
  background: var(--card2);
  color: var(--purple-lt);
}

.faq-question[aria-expanded="true"] {
  background: var(--card2);
  color: var(--purple-lt);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--purple-lt);
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(26, 26, 36, 0.5);
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 20px 28px;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
}

.faq-cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.faq-cta p {
  font-size: 15px;
  color: var(--grey);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: var(--purple-lt);
  transform: translateY(-4px);
}

.testimonial-stars {
  font-size: 18px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #2fb8e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--grey);
}

.testimonials-trust {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.testimonials-trust span {
  font-size: 13px;
  color: var(--grey);
  font-weight: 600;
}

.testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 300px;
}

.footer-logo {
  height: 30px;
  width: auto;
  filter: invert(1) brightness(1.5);
}

.footer-logo-link {
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 4px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--grey);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--purple-lt);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--grey);
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.7;
}

.footer-contact a {
  color: var(--grey);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--purple-lt);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--grey2);
}

/* ============================================================
   TOAST
============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: var(--card);
  border: 1px solid rgba(155, 77, 202, 0.4);
  border-radius: var(--radius);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-lt);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   PARTICLES (canvas dots)
============================================================ */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(155, 77, 202, 0.5);
  animation: floatParticle linear infinite;
  pointer-events: none;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100vh) translateX(30px);
    opacity: 0;
  }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   PORTFOLIO SCENARIO STEPS
============================================================ */
.portfolio-scenario {
  margin-bottom: 28px;
  margin-top: 0;
}

.portfolio-scenario-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-lt);
  margin-bottom: 20px;
}

.portfolio-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.portfolio-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  min-width: 70px;
}

.portfolio-step-icon {
  font-size: 22px;
  line-height: 1;
}

.portfolio-step-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.portfolio-step-sub {
  font-size: 10px;
  color: var(--grey);
  line-height: 1.2;
}

.portfolio-step-time {
  font-size: 10px;
  font-weight: 700;
  color: var(--purple-lt);
  background: rgba(155, 77, 202, 0.15);
  border-radius: 50px;
  padding: 1px 8px;
  margin-top: 2px;
}

.portfolio-step-arrow {
  font-size: 16px;
  color: rgba(155, 77, 202, 0.5);
  padding: 0 4px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* ============================================================
   PROCESS FLOWCHART
============================================================ */
.process-section {
  padding: 100px 0;
  background: var(--bg2);
}

.process-scenarios {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-scenario {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.process-scenario-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-lt);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.process-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.process-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.14);
  border: 1.5px solid rgba(124, 58, 237, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-lt);
}

.process-step-icon svg {
  width: 22px;
  height: 22px;
}

.process-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.process-step-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-lt);
  background: rgba(155, 77, 202, 0.12);
  border-radius: 50px;
  padding: 2px 10px;
}

.process-arrow {
  font-size: 20px;
  color: rgba(155, 77, 202, 0.5);
  padding: 0 8px;
  flex-shrink: 0;
  margin-bottom: 32px;
}

.process-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-lt);
  border: 1.5px solid rgba(155, 77, 202, 0.4);
  border-radius: 50px;
  padding: 9px 22px;
  transition: all 0.3s ease;
  background: rgba(155, 77, 202, 0.06);
}

.process-cta:hover {
  background: rgba(155, 77, 202, 0.16);
  border-color: var(--purple-lt);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }

  .portfolio-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    --portfolio-card-height: auto;
    --portfolio-card-width: 100%;
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
  }

  .portfolio-card { width: 100%; aspect-ratio: 1.58 / 1; height: auto; }

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

  .portfolio-item--large { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/7; }

  .contact-inner { grid-template-columns: 1fr; gap: 50px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ---- 768px: mobile ---- */
@media (max-width: 768px) {

  /* === NAVBAR === */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(13,13,15,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-btn { width: 100%; justify-content: center; gap: 6px; padding: 12px 24px; font-size: 15px; }
  .nav-dropdown-btn .nav-dropdown-arrow { display: inline-block; }
  .nav-dropdown-menu {
    position: static;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 8px;
    margin: 4px 16px 8px;
    padding: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
  }
  .nav-dropdown-menu.open { display: flex; }
  .nav-dropdown-item { font-size: 14px; padding: 10px 16px; text-align: center; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid var(--border); font-size: 15px; text-align: center; }
  .burger { display: flex; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }

  /* === HERO === */
  .hero { background-position: 70% 15%; }

  .hero-content {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - 72px);
    padding-top: 80px;
    padding-bottom: 40px;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
  }
  .hero-title { font-size: clamp(26px, 7.5vw, 38px); line-height: 1.15; }
  .hero-sub { font-size: 15px; max-width: 100%; margin-top: 0; }
  .hero-text { gap: 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-visual { display: none; }
  .hero-scroll-hint { display: none; }

  /* === SERVICES === */
  .services { padding: 52px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { min-height: 280px; }
  .service-card-inner { padding: 28px 20px; gap: 10px; }
  .service-card-inner h3 { font-size: clamp(20px, 5.5vw, 26px); }
  .service-card-inner p { font-size: 13px; }
  .service-features { gap: 4px; }
  .service-features li { font-size: 13px; }
  .service-btn { font-size: 13px; margin-top: 4px; }

  /* === CTA BAND === */
  .cta-band { padding: 0; min-height: auto; aspect-ratio: unset; }
  .cta-band-inner { display: flex; flex-direction: column; gap: 0; padding: 0 20px; }
  .cta-band-text { max-width: 100%; display: flex; flex-direction: column; padding-top: 20px; }
  .cta-band-text h2 { font-size: clamp(20px, 6vw, 30px); }
  .cta-band-visual { display: none; }
  .cta-play-mobile { display: flex !important; align-self: center; margin-top: 60px; margin-bottom: -100px; width: 95px; height: 95px; }
  .cta-play-mobile .cta-play-inner { width: 95px; height: 95px; padding-left: 6px; }
  .cta-play-mobile .cta-play-inner svg { width: 38px; height: 38px; }
  .cta-play-mobile .cta-play-pulse { inset: -25px; }
  .cta-rotator { height: auto; min-height: 100px; }
  .cta-rotator-item { font-size: 14px; gap: 8px; }
  .cta-rotator-item strong { font-size: 15px; }
  .cta-rotator-item p { font-size: 13px; }
  .cta-band-actions { margin-top: 16px; padding-bottom: 16px; }
  .cta-band::after { display: none; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .cta-band-actions .btn-cta-grad { background: linear-gradient(135deg, #6d28d9 0%, #8b2be2 55%, #a855f7 100%); box-shadow: 0 4px 24px rgba(139, 43, 226, 0.5); }
  .cta-band-divider { width: 100%; }

  /* === PORTFOLIO CAROUSEL === */
  .portfolio { padding: 52px 0; margin-top: 20px; }
  .portfolio-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .portfolio-media { padding-left: 0; position: relative; order: 2; }
  .portfolio-card { width: 100%; aspect-ratio: 4/3; height: auto; }
  .portfolio-peek { display: none; }
  .portfolio-copy-wrap { display: contents; }
  .portfolio-copy--top { order: 1; height: auto; padding-top: 0; }
  .portfolio-media { order: 2; }
  .portfolio-copy--bottom { order: 3; height: auto; padding-top: 0; justify-content: flex-start; }
  .portfolio-copy h2 { font-size: clamp(20px, 6.5vw, 30px); }
  .portfolio-arrow { width: 40px; height: 40px; }
  .portfolio-arrow--prev { left: 6px; }
  .portfolio-arrow--next { right: 6px; }
  .portfolio-count { display: none; }
  .portfolio-count--mobile { display: flex !important; margin-bottom: 8px; margin-top: -12px; }
  .portfolio-actions { align-items: stretch; }
  .portfolio-cta { width: 100%; min-width: 0; justify-content: center; text-align: center; }
  .portfolio-steps { flex-wrap: wrap; gap: 8px; }
  .portfolio-step { flex: 1 1 auto; min-width: 80px; }
  .portfolio-step-arrow { display: none; }

  /* Portfolio grid */
  .portfolio-grid { grid-template-columns: 1fr; gap: 10px; }
  .portfolio-item--large { grid-column: 1; aspect-ratio: 16/9; }
  .portfolio-item:not(.portfolio-item--large) { aspect-ratio: 16/9; }

  /* === CONTACT === */
  .contact-section {
    min-height: auto;
    margin: 0;
    padding: 52px 20px;
  }
  .contact-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }
  .contact-right { margin-top: 0; }
  .contact-title { font-size: clamp(20px, 6vw, 26px); line-height: 1.25; }
  .contact-divider { width: clamp(200px, 70vw, 400px); margin-left: 0; }
  .whyvisual-divider { width: clamp(200px, 70vw, 400px); margin: 0 0 16px 0; }
  .portfolio-divider { width: clamp(200px, 70vw, 400px); }
  .contact-sub { font-size: 14px; }
  .contact-checklist { grid-template-columns: 1fr; }
  .contact-checklist ul:last-child { margin-left: 0; }
  .contact-checklist li { font-size: 14px; }
  .contact-form { padding: 22px 16px; width: 100%; }
  .form-submit-row { flex-direction: column; }
  .form-submit-row .btn { width: 100%; justify-content: center; }

  /* === CALCULATOR === */
  .prices-section { padding: 52px 0; }
  .calc-wrap { display: flex; flex-direction: column; gap: 20px; }
  .calc-form { gap: 16px; }
  .calc-btn { width: 100%; justify-content: center; }
  .calc-result { padding: 20px 16px; }
  .calc-result-cta { width: 100%; text-align: center; justify-content: center; display: block; }

  /* === WHYVISUAL === */
  .whyvisual-section { padding: 40px 0; margin-top: 25px; min-height: auto; background-size: 450%; background-position: center center; }
  .whyvisual-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
  }
  .whyvisual-center { display: none; }
  .whyvisual-overlay-img { display: none; }
  .whyvisual-header { text-align: center; margin-bottom: 24px; }
  .whyvisual-label {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }
  .wv-accordion {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.03);
  }
  .wv-acc-title { font-size: 15px; width: 100%; }
  .wv-acc-body p { font-size: 13px; }

  /* === FAQ === */
  .faq-section { padding: 52px 0; }
  .faq-question span:first-child { font-size: 14px; line-height: 1.4; }

  /* === FOOTER === */
  .footer { padding: 48px 0 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; font-size: 12px; }

  /* === WHY GRID === */
  .why-grid { grid-template-columns: 1fr; }

  /* === PROCESS === */
  .process-section { padding: 52px 0; }
  .process-scenarios { grid-template-columns: 1fr; gap: 16px; }

  /* === TOAST === */
  .toast { right: 12px; left: 12px; bottom: 16px; }

  /* === TESTIMONIALS === */
  .testimonials-section { padding: 60px 0; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  .testimonial-card { padding: 24px 20px; }
  .testimonials-trust {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-top: 32px;
    padding: 20px 16px;
  }
  .testimonials-cta { margin-top: 28px; }
}

/* ---- 480px: phones pequenos ---- */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(22px, 8vw, 32px); }
  .section-title { font-size: clamp(20px, 6.5vw, 26px); }
  .service-card { min-height: 260px; }
  .portfolio-card { aspect-ratio: 1/1; }
  .contact-form { padding: 18px 12px; }
  .calc-result { padding: 16px 12px; }
  .wv-acc-title { font-size: 14px; }
  .footer-brand p { font-size: 13px; }
  .cta-band-text h2 { font-size: clamp(18px, 6vw, 26px); }
}