:root {
  --color-primary: #0a0b0c;
  --color-secondary: #232629;
  --color-accent: #d98228;
  --color-accent-dark: #a95e16;
  --color-dark: #111315;
  --color-light: #f8f5ef;
  --color-white: #ffffff;
  --color-muted: #71757a;
  --color-line: rgba(18, 20, 22, 0.12);
  --color-metal: #c9cdd1;
  --shadow-soft: 0 24px 70px rgba(11, 12, 14, 0.12);
  --shadow-strong: 0 36px 100px rgba(6, 8, 10, 0.28);
  --container: min(1160px, calc(100vw - 40px));
  --header-height: 82px;
  --radius: 8px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-primary);
  background: var(--color-light);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  color: var(--color-white);
  transition: color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.site-header::before {
  content: "";
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: -1;
  width: min(1200px, calc(100vw - 24px));
  height: 58px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 15, 17, 0.26);
  backdrop-filter: blur(16px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  color: var(--color-primary);
}

.site-header.is-scrolled::before,
body.menu-open .site-header::before {
  border-color: rgba(10, 11, 12, 0.08);
  background: rgba(248, 245, 239, 0.94);
  box-shadow: 0 18px 55px rgba(8, 9, 10, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.94);
}

.brand img {
  width: 96px;
  height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: currentColor;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 8px;
  color: var(--color-primary) !important;
  background: var(--color-white);
}

.site-header.is-scrolled .nav-cta,
body.menu-open .nav-cta {
  color: var(--color-white) !important;
  background: var(--color-primary);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--color-white);
  color: var(--color-primary);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-dark) var(--hero-poster) center / cover no-repeat;
  color: var(--color-white);
}

.hero-secondary {
  min-height: 70svh;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: var(--hero-poster) center / cover no-repeat;
}

.hero-media.image-only {
  background-position: center;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.82) 0%, rgba(5, 7, 10, 0.48) 42%, rgba(5, 7, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, 0.76) 0%, rgba(5, 7, 10, 0.18) 58%, rgba(5, 7, 10, 0.42) 100%);
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 0 9vh;
  max-width: 760px;
  justify-self: center;
}

.hero-content h1 {
  max-width: 760px;
  margin: 12px 0 20px;
  font-size: clamp(2.45rem, 6vw, 5.65rem);
  line-height: 0.98;
  font-weight: 740;
  letter-spacing: 0;
}

.hero-secondary .hero-content h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
}

.hero-copy {
  max-width: 600px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.hero-proof {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.eyebrow {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--color-accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--color-primary);
  background: var(--color-accent);
  box-shadow: 0 18px 45px rgba(217, 130, 40, 0.24);
}

.btn-primary:hover {
  background: #ec9637;
}

.btn-light {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: var(--color-white);
  background: var(--color-primary);
}

.btn-outline {
  color: var(--color-primary);
  border-color: rgba(10, 11, 12, 0.18);
  background: transparent;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 112px) 0;
}

.proof-strip {
  width: min(1180px, calc(100vw - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(248, 245, 239, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.proof-item {
  min-height: 84px;
  padding: 22px;
  border-right: 1px solid var(--color-line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.proof-item strong {
  display: block;
  font-size: clamp(0.92rem, 1.2vw, 1rem);
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  min-height: 84vh;
}

.section-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.section-media::after,
.service-feature::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 84px;
  height: 4px;
  background: var(--color-accent);
}

.section-media img,
.service-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.section-media:hover img,
.service-feature:hover img,
.service-detail:hover img {
  transform: scale(1.035);
}

.section-copy {
  max-width: 520px;
}

h2 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 720;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.section-copy p,
.section-heading p,
.service-card p,
.step p,
.testimonial-card p,
.contact-card p,
.faq-block p,
.service-detail p {
  color: var(--color-muted);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-secondary);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
}

.services-showcase {
  min-height: 100vh;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(520px, 1.16fr);
  gap: 26px;
  align-items: stretch;
}

.service-feature {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-dark);
  box-shadow: var(--shadow-soft);
}

.service-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(5, 7, 10, 0.82), rgba(5, 7, 10, 0.08));
}

.service-feature div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 34px;
  z-index: 2;
}

.service-feature span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.service-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.testimonial-card,
.step,
.contact-card,
.form-card,
.faq-block {
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 54px rgba(15, 16, 18, 0.06);
}

.service-card {
  min-height: 194px;
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 130, 40, 0.42);
  box-shadow: var(--shadow-soft);
}

.service-number {
  display: block;
  margin-bottom: 18px;
  color: var(--color-accent-dark);
  font-weight: 900;
}

.service-card p {
  margin: 0 0 18px;
  font-size: 0.94rem;
}

.service-card a {
  display: inline-flex;
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-accent);
}

.wow-band {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  color: var(--color-white);
  background: var(--color-dark) var(--band-image) center / cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}

.wow-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.9), rgba(7, 8, 10, 0.52), rgba(7, 8, 10, 0.22)),
    radial-gradient(circle at 22% 50%, rgba(217, 130, 40, 0.18), transparent 38%);
}

.wow-content {
  width: var(--container);
  max-width: 700px;
  margin: 0 auto;
  justify-self: center;
}

.wow-content h2 {
  color: var(--color-white);
}

.wow-content p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.76);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 30px;
}

.badge-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.steps-section {
  min-height: 82vh;
  display: grid;
  align-content: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.step {
  position: relative;
  padding: 30px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: inset 0 -4px 0 var(--color-accent);
  font-weight: 900;
}

.testimonials-section {
  min-height: 82vh;
  display: grid;
  align-content: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.testimonial-card {
  padding: 24px;
}

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

.testimonial-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 900;
}

.testimonial-top::after {
  content: "★★★★★";
  margin-left: auto;
  color: var(--color-accent);
  font-size: 0.78rem;
}

.request-section {
  padding-top: 44px;
}

.request-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  color: var(--color-primary);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.52)),
    linear-gradient(135deg, rgba(217, 130, 40, 0.11), rgba(10, 11, 12, 0.04));
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.form-card {
  padding: 26px;
}

.form-card.large {
  padding: clamp(26px, 4vw, 42px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-secondary);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(10, 11, 12, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-primary);
  padding: 14px 14px;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

textarea {
  resize: vertical;
  min-height: 118px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(217, 130, 40, 0.15);
  background: var(--color-white);
}

.form-message {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--color-accent-dark);
  font-weight: 800;
}

.form-message.is-error {
  color: #9b1c1c;
}

.contact-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
  padding-top: 24px;
}

.compact-band {
  grid-template-columns: 1fr 1fr;
}

.contact-card {
  padding: clamp(26px, 4vw, 42px);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-line);
}

.contact-list strong {
  color: var(--color-primary);
}

.contact-list a,
.contact-list span {
  color: var(--color-muted);
}

.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(10, 11, 12, 0.1);
  background:
    linear-gradient(135deg, rgba(10, 11, 12, 0.84), rgba(10, 11, 12, 0.58)),
    url("assets/poster3_ABpneus.jpg") center / cover no-repeat;
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.map-placeholder span {
  max-width: 320px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 800;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: start;
}

.inline-actions.stacked {
  display: grid;
}

.faq-block {
  padding: clamp(26px, 4vw, 42px);
}

details {
  border-bottom: 1px solid var(--color-line);
  padding: 17px 0;
}

summary {
  cursor: pointer;
  color: var(--color-primary);
  font-weight: 850;
}

details p {
  margin-bottom: 0;
}

.service-detail-list {
  display: grid;
  gap: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(26px, 4vw, 50px);
  align-items: center;
  min-height: 460px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 54px rgba(15, 16, 18, 0.06);
}

.service-detail.reverse img {
  order: 2;
}

.service-detail img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  overflow: hidden;
  transition: transform 600ms ease;
}

.service-detail h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 56px 0 92px;
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 30px;
  border-top: 1px solid var(--color-line);
  color: var(--color-secondary);
}

.footer-brand img {
  width: 132px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 16px;
  background: var(--color-white);
}

.footer-brand p,
.footer-contact span {
  color: var(--color-muted);
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.mobile-sticky {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: #1c8f55;
  box-shadow: 0 14px 45px rgba(8, 9, 10, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  :root {
    --container: min(92vw, 900px);
  }

  .services-layout,
  .split-section,
  .contact-band,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .section-media,
  .service-feature {
    min-height: 440px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
    --container: calc(100vw - 32px);
  }

  .site-header {
    height: var(--header-height);
  }

  .site-header::before {
    top: 8px;
    height: 54px;
    width: calc(100vw - 16px);
  }

  .brand {
    height: 42px;
    padding: 5px 10px;
  }

  .brand img {
    width: 88px;
    height: 31px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 55;
    display: grid;
    gap: 0;
    padding: 92px 18px 28px;
    background: rgba(248, 245, 239, 0.98);
    color: var(--color-primary);
    box-shadow: var(--shadow-strong);
    transform: translateY(-110%);
    transition: transform 280ms ease;
  }

  body.menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 17px 8px;
    border-bottom: 1px solid var(--color-line);
    font-size: 0.9rem;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin: 16px 0 0;
    justify-content: center;
    color: var(--color-white) !important;
    background: var(--color-primary);
  }

  .hero,
  .hero-secondary {
    min-height: 82svh;
    align-items: end;
  }

  .hero-video {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 7, 10, 0.84) 0%, rgba(5, 7, 10, 0.42) 55%, rgba(5, 7, 10, 0.54) 100%),
      linear-gradient(90deg, rgba(5, 7, 10, 0.62), rgba(5, 7, 10, 0.16));
  }

  .hero-content {
    padding: 118px 0 72px;
  }

  .hero-content h1,
  .hero-secondary .hero-content h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
    line-height: 1.02;
  }

  .hero-actions,
  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .proof-strip {
    width: calc(100vw - 24px);
    margin-top: -26px;
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item {
    min-height: 108px;
    padding: 18px;
    border-bottom: 1px solid var(--color-line);
  }

  .proof-item:nth-child(2n) {
    border-right: 0;
  }

  .proof-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .split-section {
    min-height: auto;
  }

  .section-media,
  .service-feature,
  .map-placeholder {
    min-height: 320px;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .services-layout {
    gap: 18px;
  }

  .service-grid,
  .steps,
  .testimonial-grid,
  .form-grid,
  .compact-band {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step,
  .testimonial-card,
  .contact-card,
  .form-card {
    padding: 22px;
  }

  .wow-band {
    min-height: 76svh;
  }

  .badge-row span {
    flex: 1 1 auto;
    text-align: center;
  }

  .request-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px;
  }

  .service-detail.reverse img {
    order: 0;
  }

  .service-detail img {
    height: 270px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 104px;
  }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 44;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 8, 10, 0.24);
  }

  .mobile-sticky a {
    display: grid;
    min-height: 52px;
    place-items: center;
    color: var(--color-white);
    background: var(--color-primary);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.82rem;
  }

  .mobile-sticky a:last-child {
    color: var(--color-primary);
    background: var(--color-accent);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 78px;
    width: 50px;
    height: 50px;
  }
}

/* Passe premium v2 */
body {
  background:
    linear-gradient(90deg, rgba(10, 11, 12, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #fbf8f2 0%, #f4f0e9 46%, #fbf8f2 100%);
}

.site-header::before {
  top: 10px;
  height: 60px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(14, 17, 20, 0.45), rgba(14, 17, 20, 0.18));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.12);
}

.site-header.is-scrolled::before,
body.menu-open .site-header::before {
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 54px rgba(10, 11, 12, 0.12);
}

.brand,
.menu-toggle,
.site-nav a,
.mobile-sticky,
.nav-cta {
  border-radius: 999px;
}

.brand,
.menu-toggle {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
}

.nav-cta,
.site-header.is-scrolled .nav-cta,
body.menu-open .nav-cta {
  background: linear-gradient(135deg, #f4a44a, var(--color-accent));
  color: #15110c !important;
  box-shadow: 0 14px 36px rgba(217, 130, 40, 0.24);
}

.hero-media::after,
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media::after {
  z-index: 1;
  background:
    radial-gradient(circle at 20% 62%, rgba(217, 130, 40, 0.22), transparent 34%),
    linear-gradient(115deg, rgba(4, 8, 14, 0.72), rgba(9, 15, 23, 0.32) 52%, rgba(10, 11, 12, 0.1));
}

.hero-media::before {
  z-index: 2;
  box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.58);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 8, 13, 0.9) 0%, rgba(5, 10, 16, 0.52) 44%, rgba(5, 7, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, 0.76) 0%, rgba(5, 7, 10, 0.16) 58%, rgba(5, 7, 10, 0.45) 100%);
}

.hero-fallback {
  display: none;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-copy,
.hero-actions,
.hero-proof {
  animation: heroFadeUp 800ms ease both;
}

.hero-content h1 {
  animation-delay: 90ms;
}

.hero-copy {
  animation-delay: 160ms;
}

.hero-actions {
  animation-delay: 240ms;
}

.hero-proof {
  animation-delay: 320ms;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  border-radius: 999px;
  min-height: 52px;
  padding: 15px 26px;
  overflow: hidden;
}

.btn-primary {
  position: relative;
  background: linear-gradient(135deg, #ffb15b 0%, var(--color-accent) 58%, #c96e1d 100%);
  box-shadow: 0 20px 48px rgba(217, 130, 40, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 600ms ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.btn-dark {
  background: linear-gradient(135deg, #171a1d, #050607);
  box-shadow: 0 18px 42px rgba(10, 11, 12, 0.18);
}

.btn-outline {
  border-color: rgba(10, 11, 12, 0.14);
  background: rgba(255, 255, 255, 0.54);
}

.proof-strip,
.request-panel,
.service-card,
.testimonial-card,
.step,
.contact-card,
.form-card,
.faq-block,
.service-detail {
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.proof-strip {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 253, 248, 0.86);
}

.section {
  padding: clamp(54px, 6vw, 88px) 0;
}

.split-section,
.steps-section,
.testimonials-section {
  min-height: 76vh;
}

.services-showcase {
  min-height: 88vh;
}

.section-media,
.service-feature,
.service-detail,
.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
}

.section-media {
  min-height: 500px;
}

.section-media::before,
.service-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(217, 130, 40, 0.16), transparent 34%, rgba(7, 10, 14, 0.18));
  pointer-events: none;
}

.section-media .floating-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(10, 11, 12, 0.58);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-feature {
  min-height: 540px;
}

.service-feature::before {
  background:
    linear-gradient(0deg, rgba(5, 7, 10, 0.88), rgba(5, 7, 10, 0.08)),
    radial-gradient(circle at 76% 22%, rgba(217, 130, 40, 0.2), transparent 32%);
}

.service-grid {
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 168px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    linear-gradient(135deg, rgba(217, 130, 40, 0.08), transparent);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 360ms ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(217, 130, 40, 0.7);
  border-radius: 50%;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(10, 11, 12, 0.24);
  border-radius: 50%;
}

.service-icon::after {
  inset: 14px;
  background: var(--color-accent);
}

.service-card a {
  border-bottom: 0;
}

.service-card a::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  transition: transform var(--transition);
}

.service-card:hover a::after {
  transform: translateX(4px);
}

.wow-band {
  min-height: 74vh;
}

.wow-band::before {
  background:
    linear-gradient(90deg, rgba(4, 7, 12, 0.94), rgba(5, 9, 15, 0.66), rgba(5, 7, 10, 0.18)),
    radial-gradient(circle at 28% 54%, rgba(217, 130, 40, 0.24), transparent 34%);
}

.badge-row span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
}

.step {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    linear-gradient(180deg, rgba(217, 130, 40, 0.08), transparent);
}

.step::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.72);
}

.request-panel {
  padding: clamp(26px, 4vw, 46px);
}

input,
select,
textarea {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.form-message:not(:empty) {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(217, 130, 40, 0.12);
}

.whatsapp-float {
  border-radius: 50%;
  background: #25d366;
  color: var(--color-white);
  box-shadow: 0 16px 44px rgba(37, 211, 102, 0.28), 0 8px 30px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 54px rgba(37, 211, 102, 0.34), 0 10px 34px rgba(0, 0, 0, 0.2);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 16px 44px rgba(37, 211, 102, 0.24), 0 8px 30px rgba(0, 0, 0, 0.16);
  }
  50% {
    box-shadow: 0 16px 54px rgba(37, 211, 102, 0.38), 0 8px 30px rgba(0, 0, 0, 0.16);
  }
}

.reveal {
  transform: translateY(24px);
  transition-duration: 760ms;
}

.service-detail {
  position: relative;
  min-height: 410px;
}

.service-detail img {
  height: 350px;
  border-radius: var(--radius);
}

.service-detail:nth-child(2) img,
.service-detail:nth-child(5) img {
  object-position: center 58%;
}

.mobile-sticky a:first-child {
  background: linear-gradient(135deg, #1b1e21, #070809);
}

.mobile-sticky a:last-child {
  background: linear-gradient(135deg, #ffb15b, var(--color-accent));
}

@media (max-width: 1040px) {
  .section-media,
  .service-feature {
    min-height: 380px;
  }

  .services-showcase,
  .split-section,
  .steps-section,
  .testimonials-section {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header::before {
    border-radius: 24px;
  }

  .site-nav {
    border-radius: 0 0 24px 24px;
  }

  .hero-video {
    display: block;
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .hero-content h1,
  .hero-secondary .hero-content h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .section {
    padding: 46px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
  }

  .proof-item {
    min-height: 92px;
    padding: 16px;
  }

  .section-media,
  .service-feature,
  .map-placeholder {
    min-height: 260px;
  }

  .service-feature {
    min-height: 340px;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .service-card p {
    margin-bottom: 14px;
  }

  .step span {
    margin-bottom: 18px;
  }

  .testimonial-grid,
  .steps {
    gap: 12px;
  }

  .request-panel,
  .form-card.large,
  .form-card {
    padding: 20px;
  }

  label {
    margin-bottom: 12px;
  }

  textarea {
    min-height: 96px;
  }

  .service-detail {
    min-height: 0;
  }

  .service-detail img {
    height: 230px;
  }

  .wow-band {
    min-height: 68svh;
  }

  .whatsapp-float {
    bottom: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-copy,
  .hero-actions,
  .hero-proof,
  .whatsapp-float {
    animation: none !important;
  }

  .reveal {
    transition-delay: 0ms !important;
  }
}

/* Couche dynamique V3 */
.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, opacity;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 18px rgba(217, 130, 40, 0.6);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217, 130, 40, 0.55);
  border-radius: 50%;
  background: rgba(217, 130, 40, 0.04);
  box-shadow: 0 0 30px rgba(217, 130, 40, 0.12);
  transition: width 220ms ease, height 220ms ease, border-color 220ms ease, background 220ms ease;
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-dot {
  opacity: 0.85;
  box-shadow: 0 0 24px rgba(217, 130, 40, 0.88);
}

body.cursor-hover .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: rgba(217, 130, 40, 0.82);
  background: rgba(217, 130, 40, 0.09);
}

.interactive {
  position: relative;
}

.brand,
.site-nav a,
.btn,
.service-card,
.step,
.testimonial-card,
.contact-card,
.form-card,
.faq-block,
.service-detail,
.section-media,
.service-feature,
.map-placeholder,
.whatsapp-float {
  -webkit-tap-highlight-color: transparent;
}

.brand,
.site-nav a,
.btn,
.whatsapp-float {
  will-change: transform;
}

.brand:hover {
  transform: translateY(-1px) scale(1.015);
}

.site-nav a:not(.nav-cta)::after {
  transition: transform 320ms ease, opacity 320ms ease;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--color-accent);
}

.nav-cta:hover {
  box-shadow: 0 18px 44px rgba(217, 130, 40, 0.34);
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 20px 52px rgba(10, 11, 12, 0.16), 0 0 34px rgba(217, 130, 40, 0.18);
}

.btn-light:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.18);
}

.section-media,
.service-feature,
.service-detail img,
.map-placeholder {
  will-change: transform;
}

.section-media::before,
.service-feature::before,
.service-detail::before {
  transition: opacity 300ms ease, background 300ms ease;
}

.section-media:hover img,
.service-feature:hover img,
.service-detail:hover img,
.map-placeholder:hover {
  transform: scale(1.03);
}

.section-media:hover::before,
.service-detail:hover::before {
  opacity: 0.84;
}

.floating-badge,
.badge-row span {
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.section-media:hover .floating-badge,
.badge-row span:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 130, 40, 0.5);
  box-shadow: 0 14px 34px rgba(217, 130, 40, 0.18);
}

.service-card,
.testimonial-card,
.contact-card,
.form-card,
.faq-block,
.service-detail,
.step {
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease,
    background 280ms ease;
}

.service-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.form-card:hover,
.faq-block:hover,
.service-detail:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 130, 40, 0.34);
  box-shadow: 0 28px 80px rgba(10, 11, 12, 0.12), 0 0 34px rgba(217, 130, 40, 0.08);
}

.service-card h3,
.service-card p,
.service-card a,
.service-card .service-number,
.service-detail h2,
.service-detail p,
.service-detail .check-list li,
.service-detail .btn,
.check-list li,
.step h3,
.step p,
.testimonial-card p,
.contact-list li {
  transition: transform 250ms ease, color 250ms ease, opacity 250ms ease, box-shadow 250ms ease;
}

.service-card:hover h3,
.service-detail:hover h2 {
  transform: translateX(4px);
}

.service-card:hover p {
  color: #565a60;
  transform: translateX(3px);
}

.service-card:hover .service-number,
.service-detail:hover .eyebrow {
  color: var(--color-accent);
}

.service-card:hover .service-icon {
  border-color: var(--color-accent);
  box-shadow: 0 0 24px rgba(217, 130, 40, 0.22);
}

.service-card:hover .service-icon::after {
  transform: scale(1.35);
}

.service-icon::after {
  transition: transform 240ms ease;
}

.service-card:hover a,
.service-detail:hover .btn {
  transform: translateX(4px);
}

.service-detail:hover .check-list li,
.section-copy:hover .check-list li {
  transform: translateX(7px);
}

.service-detail:hover .check-list li:nth-child(2),
.section-copy:hover .check-list li:nth-child(2) {
  transition-delay: 45ms;
}

.service-detail:hover .check-list li:nth-child(3),
.section-copy:hover .check-list li:nth-child(3) {
  transition-delay: 90ms;
}

.check-list li::before {
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.service-detail:hover .check-list li::before,
.section-copy:hover .check-list li::before {
  background: var(--color-accent);
  box-shadow: 0 0 18px rgba(217, 130, 40, 0.42);
  transform: scale(1.08);
}

.step {
  will-change: transform;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 130, 40, 0.38);
  box-shadow: 0 30px 80px rgba(10, 11, 12, 0.14), 0 0 40px rgba(217, 130, 40, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64)),
    radial-gradient(circle at 22% 15%, rgba(217, 130, 40, 0.16), transparent 35%);
}

.step:hover span {
  box-shadow: inset 0 -4px 0 var(--color-accent), 0 0 28px rgba(217, 130, 40, 0.32);
}

.step:hover h3 {
  transform: translateY(-3px);
}

.step:hover p {
  color: #555a60;
}

.step::after {
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 320ms ease;
}

.step:hover::after {
  transform: scaleX(1);
}

.testimonial-card:hover .testimonial-top span {
  background: linear-gradient(135deg, #171a1d, #050607);
  box-shadow: 0 0 24px rgba(217, 130, 40, 0.2);
}

.contact-card:hover .contact-list li {
  transform: translateX(3px);
}

.reveal {
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-media.reveal,
.service-feature.reveal,
.service-detail.reveal {
  clip-path: inset(0 0 8% 0 round 8px);
  transition-property: opacity, transform, clip-path;
}

.section-media.reveal.is-visible,
.service-feature.reveal.is-visible,
.service-detail.reveal.is-visible {
  clip-path: inset(0 0 0 0 round 8px);
}

@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .service-card:hover,
  .testimonial-card:hover,
  .contact-card:hover,
  .form-card:hover,
  .faq-block:hover,
  .service-detail:hover,
  .step:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  .service-card,
  .testimonial-card,
  .contact-card,
  .form-card,
  .faq-block,
  .service-detail,
  .step,
  .section-media.reveal,
  .service-feature.reveal,
  .service-detail.reveal {
    transition: none !important;
    clip-path: none !important;
  }
}
