:root {
  --bg: #050505;
  --bg-soft: #101010;
  --surface: #0b0b0b;
  --surface-strong: #151515;
  --ink: #f6f6f6;
  --ink-soft: #c6c6c6;
  --accent: #ff7a2f;
  --accent-strong: #e95f14;
  --stroke: #2a2a2a;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% -8%, rgba(255, 122, 47, 0.34), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(233, 95, 20, 0.2), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 52%, #111111 100%);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 52px 0;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin-top: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid rgba(255, 122, 47, 0.22);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 84px;
}

.brand-logo {
  width: 108px;
  height: auto;
}

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

.main-nav a {
  font-weight: 600;
  color: #f2f2f2;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: #161616;
  color: var(--ink);
  border-radius: 10px;
  font-weight: 700;
  padding: 8px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 20px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(233, 95, 20, 0.45);
}

.btn-secondary {
  background: #1b1b1b;
  color: #fff;
}

.btn-ghost {
  border-color: #3a3a3a;
  color: #ffe6d8;
  background: rgba(20, 20, 20, 0.75);
}

.btn-nav {
  background: var(--accent-strong);
  color: #fff !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.hero-fullscreen {
  position: relative;
  min-height: 104svh;
  padding: clamp(96px, 12vh, 140px) 0 70px;
  overflow: hidden;
  background-image:
    linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 45%, rgba(22, 11, 4, 0.74) 100%),
    url("images/logo.png");
  background-size: 96%;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.hero-fullscreen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 122, 47, 0.3), transparent 44%),
    radial-gradient(circle at 10% 78%, rgba(255, 122, 47, 0.22), transparent 38%);
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

.hero-glass {
  backdrop-filter: blur(8px);
  background: rgba(13, 13, 13, 0.72);
  border: 1px solid rgba(255, 122, 47, 0.28);
}

.hero-copy,
.hero-card,
.card,
.contact-card,
.contact-info {
  background: var(--surface-strong);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 122, 47, 0.2);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(24px, 4vw, 44px);
}

.hero-copy p {
  color: var(--ink-soft);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.stats li {
  background: #1a1a1a;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.stats strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.stats span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.hero-card {
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 122, 47, 0.22), transparent 44%),
    #151515;
}

.hero-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
}

.section-head {
  margin-bottom: 24px;
  text-align: center;
}

.section-head p {
  color: var(--ink-soft);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.specialties-title {
  max-width: 30ch;
  margin-inline: auto;
  text-align: center;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff4ec;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.specialties-title span {
  color: #ffb286;
  position: relative;
}

.specialties-title span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 122, 47, 0.95), rgba(255, 192, 157, 0.95));
  opacity: 0.85;
}

.specialties-kicker {
  text-align: center;
}

.specialties-section .section-head p {
  text-align: center;
}

.specialties-section .specialty-card {
  text-align: center;
}

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

.card {
  padding: 22px;
}

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

.specialty-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: linear-gradient(155deg, rgba(20, 20, 20, 0.95) 0%, rgba(12, 12, 12, 0.9) 100%);
  border: 1px solid rgba(255, 122, 47, 0.24);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.specialty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 14%, rgba(255, 122, 47, 0.22), transparent 42%);
  pointer-events: none;
}

.specialty-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 152, 106, 0.52);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.specialty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 180, 143, 0.5);
  background: rgba(255, 122, 47, 0.18);
  color: #ffcfb3;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.specialty-card h3 {
  margin-bottom: 10px;
}

.specialty-card p {
  margin: 0 0 14px;
  color: #f0d2c2;
}

.specialty-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 186, 154, 0.45);
  background: rgba(255, 122, 47, 0.12);
  color: #ffbd99;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.specialties-cta {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.card p,
.service-item p,
.project p {
  color: var(--ink-soft);
}

.quote cite {
  font-style: normal;
  font-weight: 600;
  color: #ffc29f;
}

.testimonials-section .section-head {
  text-align: center;
}

.reviews-carousel {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 14px;
}

.reviews-static-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.reviews-auto-carousel {
  margin-top: 10px;
}

.reviews-auto-viewport {
  overflow: hidden;
  border-radius: 14px;
  touch-action: pan-y;
}

.reviews-auto-track {
  display: flex !important;
  grid-template-columns: none !important;
  width: max-content;
  gap: 10px;
  will-change: transform;
}

.reviews-auto-track .testimonial-card {
  flex: 0 0 clamp(250px, 30vw, 340px) !important;
  min-width: clamp(250px, 30vw, 340px) !important;
  max-width: clamp(250px, 30vw, 340px) !important;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 8px;
  transition: transform 0.46s ease;
  will-change: transform;
}

.reviews-track .testimonial-card {
  flex: 0 0 calc((100% - 20px) / 3);
}

.reviews-nav {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 178, 142, 0.44);
  background: rgba(10, 10, 10, 0.82);
  color: #ffb88f;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .reviews-static-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .reviews-static-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reviews-auto-track {
    gap: 8px;
  }

  .reviews-auto-track .testimonial-card {
    flex: 0 0 clamp(245px, 82vw, 300px) !important;
    min-width: clamp(245px, 82vw, 300px) !important;
    max-width: clamp(245px, 82vw, 300px) !important;
  }
}

.testimonial-card {
  border: 1px solid rgba(255, 122, 47, 0.3);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 122, 47, 0.2), transparent 36%),
    linear-gradient(160deg, rgba(18, 18, 18, 0.98) 0%, rgba(12, 12, 12, 0.92) 100%);
  padding: 14px;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  row-gap: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 166, 125, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.testimonial-card p {
  margin: 0;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.review-source {
  display: inline-flex;
  width: fit-content;
  min-height: 20px;
  padding: 1px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 185, 152, 0.45);
  background: rgba(255, 122, 47, 0.12);
  color: #ffcaac;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.review-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.review-logo {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 180, 142, 0.45);
}

.review-brand span {
  color: #ffe8dc;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.review-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.testimonial-text {
  color: #f4ddd1;
  line-height: 1.58;
  font-size: 0.86rem;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.58em * 7);
}

.testimonial-card cite {
  display: block;
  min-height: 2.8em;
  line-height: 1.4;
  margin-top: 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 178, 140, 0.22);
}

.review-meta {
  margin: 0;
  color: #ffc3a3;
  font-size: 0.76rem;
  opacity: 0.95;
}

.review-card-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.review-link,
.review-more {
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 185, 152, 0.38);
  background: rgba(12, 12, 12, 0.55);
  color: #ffd3bc;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.review-link:hover,
.review-more:hover {
  border-color: rgba(255, 185, 152, 0.6);
}

.reviews-summary {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 136, 0.4);
  background: rgba(11, 11, 11, 0.6);
}

.reviews-summary-stars {
  color: #ffbc96;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.reviews-summary strong {
  font-family: "Sora", "Space Grotesk", sans-serif;
  color: #ffe6d8;
  font-size: 0.82rem;
}

.google-rating-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.google-rating-link:hover strong,
.google-rating-link:hover span {
  color: #fff2e8;
}

.reviews-summary span {
  color: #f4cbb5;
  font-size: 0.8rem;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.review-modal[hidden] {
  display: none;
}

.review-modal-dialog {
  width: min(640px, 96vw);
  max-height: 84vh;
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 166, 125, 0.42);
  background: linear-gradient(160deg, rgba(18, 18, 18, 0.98) 0%, rgba(12, 12, 12, 0.95) 100%);
  padding: 18px;
}

.review-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.review-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 136, 0.45);
  background: rgba(255, 122, 47, 0.12);
  color: #ffccaf;
  font-size: 1rem;
  cursor: pointer;
}

.review-modal-author {
  margin: 0 0 6px;
  font-family: "Sora", "Space Grotesk", sans-serif;
}

.review-modal-meta {
  margin: 0 0 10px;
  color: #ffbf9e;
  font-size: 0.86rem;
}

.review-modal-text {
  margin: 0;
  line-height: 1.58;
}

.review-stars {
  margin: 0;
  color: #ffba93;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.review-rating {
  margin: 0;
  min-height: 18px;
  padding: 1px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 180, 142, 0.45);
  background: rgba(255, 122, 47, 0.14);
  color: #ffd3bc;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.reviews-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
}

.reviews-dot.active {
  width: 22px;
  background: linear-gradient(90deg, #ff7a2f, #ffb98f);
}

.reviews-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews-actions p {
  margin: 0;
}

.band {
  background: linear-gradient(120deg, #141414 0%, #1d1d1d 48%, #2a2a2a 100%);
  color: #fff4ee;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 122, 47, 0.25);
}

.band .kicker {
  color: #ff9e6a;
}

.band-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.service-item {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: #151515;
  padding: 20px;
}

/* ---- Realisations Page ---- */
.realisations-main {
  padding-top: 22px;
}

.realisations-hero-section {
  padding-top: 24px;
  padding-bottom: 10px;
}

.realisations-hero {
  border-radius: 20px;
  border: 1px solid rgba(255, 122, 47, 0.28);
  padding: clamp(22px, 3.8vw, 34px);
  text-align: center;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 122, 47, 0.2), transparent 36%),
    linear-gradient(160deg, rgba(18, 18, 18, 0.97), rgba(10, 10, 10, 0.92));
  box-shadow: var(--shadow);
}

.realisations-hero h1 {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.realisations-hero p {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  color: #f0d1be;
}

.realisations-hero-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.realisations-hero-stats article {
  border-radius: 12px;
  border: 1px solid rgba(255, 171, 130, 0.33);
  background: rgba(8, 8, 8, 0.48);
  padding: 10px;
}

.realisations-hero-stats strong {
  display: block;
  color: #fff2e8;
  font-size: 1.16rem;
  font-family: "Sora", "Space Grotesk", sans-serif;
}

.realisations-hero-stats span {
  color: #f1d4c6;
  font-size: 0.84rem;
}

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.realisations-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  background: linear-gradient(155deg, rgba(15, 15, 15, 0.96), rgba(9, 9, 9, 0.92));
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease,
    background 0.28s ease;
}

.realisations-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 146, 89, 0.58);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 122, 47, 0.2);
  background: linear-gradient(155deg, rgba(19, 14, 11, 0.98), rgba(10, 9, 8, 0.95));
}

.realisations-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.realisations-city {
  min-height: 26px;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 177, 139, 0.38);
  background: rgba(255, 122, 47, 0.1);
  color: #ffd2bc;
  font-size: 0.74rem;
  font-weight: 700;
}

.realisations-card h3 {
  margin: 0 0 2px;
  color: #fff1e8;
  font-size: 1.06rem;
}

.realisations-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 6px;
}

.realisations-photos figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 150, 100, 0.28);
  background: rgba(11, 11, 11, 0.86);
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.realisations-card:hover .realisations-photos figure {
  border-color: rgba(255, 166, 124, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 47, 0.18);
}

.realisations-photos img {
  width: 100%;
  height: 158px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.realisations-card:hover .realisations-photos img {
  transform: scale(1.05);
}

.realisations-photos figcaption {
  padding: 8px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffd6c2;
  font-weight: 700;
  border-top: 1px solid rgba(255, 150, 100, 0.2);
}

.realisations-card p {
  margin: 0;
  color: #f0d1be;
  font-size: 0.92rem;
  line-height: 1.55;
}

.realisations-label {
  margin-top: 6px !important;
  color: #ffd0b7 !important;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.realisations-card ul {
  margin: 6px 0 0;
  padding-left: 18px;
  color: #f4d7c8;
  display: grid;
  gap: 4px;
  font-size: 0.86rem;
}

.realisations-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  isolation: isolate;
}

.realisations-method-grid::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 122, 47, 0.15), rgba(255, 122, 47, 0.85), rgba(255, 122, 47, 0.15));
  box-shadow: 0 0 16px rgba(255, 122, 47, 0.45);
  z-index: 0;
}

.realisations-method-grid article {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 47, 0.28);
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 122, 47, 0.2), transparent 42%),
    linear-gradient(160deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  padding: 16px 14px 15px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  opacity: 0;
  transform: translateY(18px);
  animation: methodCardIn 0.65s ease forwards;
}

.realisations-method-grid article:nth-child(1) {
  animation-delay: 0.06s;
}

.realisations-method-grid article:nth-child(2) {
  animation-delay: 0.14s;
}

.realisations-method-grid article:nth-child(3) {
  animation-delay: 0.22s;
}

.realisations-method-grid article:nth-child(4) {
  animation-delay: 0.3s;
}

.realisations-method-grid article::after {
  content: "";
  position: absolute;
  inset: auto 14px 8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 122, 47, 0.9), rgba(255, 185, 150, 0.22));
  opacity: 0.38;
}

.realisations-method-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 166, 118, 0.6);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 122, 47, 0.24);
}

.realisations-method-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 188, 153, 0.54);
  background: rgba(255, 122, 47, 0.2);
  color: #ffe0cf;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 0 0 5px rgba(255, 122, 47, 0.08);
  animation: methodBadgePulse 2.8s ease-in-out infinite;
}

.realisations-method-grid h3 {
  margin: 11px 0 6px;
  color: #fff0e6;
  font-size: 1.04rem;
}

.realisations-method-grid p {
  margin: 0;
  color: #f0d4c5;
  font-size: 0.9rem;
  line-height: 1.56;
}

@keyframes methodCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes methodBadgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(255, 122, 47, 0.08);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(255, 122, 47, 0.02);
  }
}

.realisations-gallery-section {
  padding-top: 6px;
}

.chantier-reportage-section {
  padding-top: 18px;
}

.chantier-reportage-head {
  max-width: 760px;
}

.chantier-reportage-head > p {
  margin: 0;
  color: #e9cabb;
  line-height: 1.65;
}

.chantier-reportage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.chantier-reportage-item {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 47, 0.26);
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(15, 15, 15, 0.96), rgba(9, 9, 9, 0.93));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.chantier-reportage-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 153, 102, 0.56);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 122, 47, 0.2);
}

.chantier-reportage-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0a0a0a;
}

.chantier-reportage-item:not(.chantier-reportage-item--wide) .chantier-reportage-photo {
  aspect-ratio: 4 / 3;
}

.chantier-reportage-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.chantier-reportage-item:hover .chantier-reportage-photo img {
  transform: scale(1.035);
}

.chantier-reportage-step {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 198, 169, 0.48);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.82);
  color: #ffe5d7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.chantier-reportage-item figcaption {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 4px;
  padding: 13px 15px 15px;
  border-top: 1px solid rgba(255, 150, 100, 0.22);
  flex: 1;
}

.chantier-reportage-item figcaption strong {
  color: #fff1e8;
  font-size: 0.96rem;
}

.chantier-reportage-item figcaption span {
  color: #e9cabb;
  font-size: 0.84rem;
  line-height: 1.5;
}

.realisations-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.realisations-gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 47, 0.26);
  background: linear-gradient(155deg, rgba(15, 15, 15, 0.95), rgba(9, 9, 9, 0.92));
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.realisations-gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 153, 102, 0.56);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 122, 47, 0.2);
}

.realisations-gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.42s ease;
}

.realisations-gallery-item:hover img {
  transform: scale(1.06);
}

.realisations-gallery-item figcaption {
  padding: 10px 12px;
  color: #f1d2c1;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 150, 100, 0.22);
}

.realisations-cta-section {
  padding-top: 10px;
  padding-bottom: 18px;
}

.realisations-cta-box {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.28);
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 122, 47, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  box-shadow: var(--shadow);
}

.realisations-cta-box h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 24ch;
}

.realisations-cta-box p {
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch;
}

.realisations-cta-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---- Services Page ---- */
.services-main {
  padding-top: 22px;
}

.services-page .services-hero-section {
  padding-top: 26px;
  padding-bottom: 10px;
}

.services-hero-shell {
  border-radius: 22px;
  border: 1px solid rgba(255, 122, 47, 0.3);
  padding: clamp(22px, 4vw, 38px);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 122, 47, 0.2), transparent 36%),
    radial-gradient(circle at 14% 86%, rgba(255, 169, 130, 0.15), transparent 40%),
    linear-gradient(160deg, rgba(18, 18, 18, 0.97), rgba(10, 10, 10, 0.92));
  box-shadow: var(--shadow);
  text-align: center;
  animation: servicesShellIn 0.7s ease both;
}

.services-hero-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 172, 128, 0.58);
  background: rgba(16, 16, 16, 0.82);
  color: #fff2e8;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(1.04rem, 2.4vw, 1.44rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  animation: servicesPhoneIn 0.65s ease both;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.services-hero-phone:hover {
  border-color: rgba(255, 196, 162, 0.86);
  background: rgba(255, 122, 47, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 122, 47, 0.28), 0 12px 24px rgba(255, 122, 47, 0.22);
  transform: translateY(-1px);
}

.services-hero-shell h1 {
  margin: 12px auto 10px;
  max-width: 24ch;
  animation: servicesTextIn 0.7s 0.08s ease both;
}

.services-hero-lead {
  margin: 0 auto;
  max-width: 66ch;
  color: #efd1bf;
  animation: servicesTextIn 0.7s 0.16s ease both;
}

.services-hero-quick {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  animation: servicesTextIn 0.7s 0.24s ease both;
}

.services-hero-quick span {
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 137, 0.45);
  background: rgba(255, 122, 47, 0.12);
  color: #ffd2bb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.services-hero-quick span:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 190, 154, 0.75);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.22);
}

.services-hero-shell .services-hero-actions {
  margin-top: 16px;
  justify-content: center;
  animation: servicesTextIn 0.7s 0.32s ease both;
}

.services-hero-shell .services-hero-actions .btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-hero-shell .services-hero-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

@keyframes servicesShellIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

.services-hero-split {
  border-radius: 22px;
  border: 1px solid rgba(255, 122, 47, 0.28);
  padding: clamp(20px, 3.6vw, 34px);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 122, 47, 0.2), transparent 36%),
    radial-gradient(circle at 18% 84%, rgba(255, 169, 130, 0.14), transparent 40%),
    linear-gradient(160deg, rgba(18, 18, 18, 0.97), rgba(10, 10, 10, 0.92));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 14px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.services-hero-split::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 122, 47, 0.2), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(255, 173, 135, 0.16), transparent 38%);
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
}

.services-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.services-hero-left h1 {
  max-width: 18ch;
  margin-bottom: 10px;
}

.services-hero-left p {
  max-width: 62ch;
  color: #f0d0be;
}

.services-hero-right {
  display: grid;
  gap: 10px;
}

.services-hero-right article {
  border-radius: 14px;
  border: 1px solid rgba(255, 175, 137, 0.34);
  background: rgba(8, 8, 8, 0.46);
  padding: 12px;
  transform: translateY(10px);
  opacity: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.services-hero-right article::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -55%;
  width: 38%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255, 218, 197, 0.42), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.services-hero-right span {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 175, 136, 0.45);
  background: rgba(255, 122, 47, 0.12);
  color: #ffc7a8;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.services-hero-right strong {
  display: block;
  margin: 8px 0 4px;
  color: #fff1e8;
  font-size: 0.96rem;
}

.services-hero-right p {
  margin: 0;
  color: #efcfbe;
  font-size: 0.86rem;
  line-height: 1.45;
}

.services-hero-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.services-page .services-hero-split.reveal.visible {
  animation: servicesHeroIn 0.75s ease both;
}

.services-page .services-hero-split.reveal.visible::before {
  animation: servicesHeroGlow 0.9s ease forwards, servicesHeroGlowFloat 5s 1s ease-in-out infinite alternate;
}

.services-page .services-hero-split.reveal.visible .services-hero-right article {
  animation: servicesHeroCardIn 0.55s ease forwards, servicesHeroCardFloat 3.4s 1s ease-in-out infinite alternate;
}

.services-page .services-hero-split.reveal.visible .services-hero-right article:nth-child(2) {
  animation-delay: 0.12s;
}

.services-page .services-hero-split.reveal.visible .services-hero-right article:nth-child(3) {
  animation-delay: 0.24s;
}

.services-page .services-hero-split.reveal.visible .services-hero-right article::after {
  opacity: 1;
  animation: servicesHeroCardSweep 3s 1.2s ease-in-out infinite;
}

.services-page .services-hero-split.reveal.visible .services-hero-right article:nth-child(2)::after {
  animation-delay: 1.5s;
}

.services-page .services-hero-split.reveal.visible .services-hero-right article:nth-child(3)::after {
  animation-delay: 1.8s;
}

.services-hero-right article:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255, 172, 128, 0.58);
  box-shadow: 0 14px 28px rgba(10, 5, 2, 0.34);
}

@keyframes servicesHeroIn {
  from {
    transform: translateY(18px) scale(0.99);
  }
  to {
    transform: translateY(0) scale(1);
  }
}

@keyframes servicesHeroGlow {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 0.85;
    transform: scale(1);
  }
}

@keyframes servicesHeroGlowFloat {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.2%, 1%, 0) scale(1.03);
  }
}

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

@keyframes servicesHeroCardFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-3px);
  }
}

@keyframes servicesHeroCardSweep {
  0% {
    left: -55%;
  }
  100% {
    left: 125%;
  }
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 38px;
  row-gap: 28px;
}

.services-catalog-section {
  position: relative;
  overflow: clip;
}

.services-catalog-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: 12%;
  right: -140px;
  background: radial-gradient(circle, rgba(255, 122, 47, 0.2) 0%, rgba(255, 122, 47, 0) 68%);
  filter: blur(8px);
  pointer-events: none;
  animation: servicesCatalogGlow 8s ease-in-out infinite alternate;
}

.services-catalog-head {
  margin-bottom: 20px;
}

.services-catalog-badges {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.services-catalog-badges span {
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 137, 0.42);
  background: rgba(255, 122, 47, 0.12);
  color: #ffd2bb;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.service-pro-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 47, 0.22);
  background: linear-gradient(155deg, rgba(15, 15, 15, 0.96), rgba(9, 9, 9, 0.9));
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.service-pro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 122, 47, 0.92), rgba(255, 198, 166, 0.86));
  opacity: 0.9;
}

.service-pro-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 65%;
  height: 260%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 12%, rgba(255, 179, 142, 0.18) 45%, rgba(255, 255, 255, 0) 78%);
  transform: rotate(16deg);
  opacity: 0;
  transition: left 0.55s ease, opacity 0.35s ease;
  pointer-events: none;
}

.service-pro-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 162, 118, 0.56);
  box-shadow: 0 18px 36px rgba(10, 5, 2, 0.4), 0 0 0 1px rgba(255, 162, 118, 0.15);
}

.service-pro-card:hover::after,
.service-pro-card:focus-visible::after {
  left: 120%;
  opacity: 1;
}

.service-pro-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.service-pro-index {
  min-width: 34px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 171, 129, 0.45);
  background: rgba(255, 122, 47, 0.12);
  color: #ffc9aa;
  font-size: 0.76rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  letter-spacing: 0.05em;
}

.service-pro-card h3 {
  margin: 0;
  font-size: 1.06rem;
  color: #fff1e8;
}

.service-pro-card p {
  margin: 0;
  color: #efcfbd;
  font-size: 0.92rem;
  line-height: 1.52;
}

.service-pro-need,
.service-pro-purpose {
  border: 1px solid rgba(255, 173, 133, 0.18);
  border-radius: 10px;
  background: rgba(255, 122, 47, 0.06);
  padding: 8px 10px;
}

.service-pro-need strong,
.service-pro-purpose strong,
.service-pro-note strong {
  color: #ffd1ba;
  font-weight: 700;
}

.service-pro-note {
  margin-top: auto !important;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 176, 138, 0.2);
  color: #ffc9ad !important;
  font-size: 0.84rem !important;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;
  border-color: rgba(255, 150, 105, 0.38);
  box-shadow: 0 10px 22px rgba(7, 3, 2, 0.22);
}

.service-card-link:hover,
.service-card-link:focus-visible {
  border-color: rgba(255, 172, 128, 0.74);
  box-shadow: 0 16px 30px rgba(9, 4, 2, 0.34), 0 0 0 1px rgba(255, 172, 128, 0.25);
}

.service-card-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 137, 0.5);
  background: rgba(255, 122, 47, 0.14);
  color: #ffd2bb;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card-cta {
  margin-top: auto !important;
  border-radius: 10px;
  border: 1px solid rgba(255, 176, 137, 0.34);
  background: rgba(255, 122, 47, 0.1);
  color: #ffd5c0 !important;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card-link:hover .service-card-cta,
.service-card-link:focus-visible .service-card-cta {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 182, 146, 0.58);
  background: rgba(255, 122, 47, 0.16);
}

.services-page .services-catalog-grid > .service-pro-card.reveal.visible {
  animation: servicesCardIn 0.6s cubic-bezier(0.21, 0.72, 0.3, 1) both;
}

.services-page .services-catalog-grid > .service-pro-card.reveal.visible:nth-child(1) { animation-delay: 0.03s; }
.services-page .services-catalog-grid > .service-pro-card.reveal.visible:nth-child(2) { animation-delay: 0.08s; }
.services-page .services-catalog-grid > .service-pro-card.reveal.visible:nth-child(3) { animation-delay: 0.13s; }
.services-page .services-catalog-grid > .service-pro-card.reveal.visible:nth-child(4) { animation-delay: 0.18s; }
.services-page .services-catalog-grid > .service-pro-card.reveal.visible:nth-child(5) { animation-delay: 0.23s; }
.services-page .services-catalog-grid > .service-pro-card.reveal.visible:nth-child(6) { animation-delay: 0.28s; }

@keyframes servicesCardIn {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes servicesCatalogGlow {
  0% {
    transform: translateY(0) scale(0.96);
    opacity: 0.56;
  }
  100% {
    transform: translateY(-24px) scale(1.08);
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-catalog-section::before,
  .services-page .services-catalog-grid > .service-pro-card.reveal.visible {
    animation: none !important;
  }

  .service-pro-card,
  .service-card-cta,
  .service-pro-card::after {
    transition: none !important;
  }
}

/* ---- Service Detail Pages ---- */
.service-detail-main {
  padding-top: 24px;
}

.service-detail-hero {
  border-radius: 20px;
  border: 1px solid rgba(255, 122, 47, 0.28);
  padding: clamp(20px, 3.6vw, 34px);
  background:
    radial-gradient(circle at 84% 15%, rgba(255, 122, 47, 0.2), transparent 36%),
    linear-gradient(160deg, rgba(18, 18, 18, 0.97), rgba(10, 10, 10, 0.92));
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.service-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #ffd5c0;
  font-weight: 700;
  font-size: 0.83rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.service-detail-back:hover {
  color: #ffe5d7;
}

.service-detail-hero .kicker {
  margin-bottom: 8px;
}

.service-detail-hero h1 {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-hero p {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-sublead {
  color: #f0d2c1;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-top: 10px;
}

.service-detail-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.service-detail-highlights {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.service-detail-highlights li {
  min-height: 28px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 178, 140, 0.44);
  background: rgba(255, 122, 47, 0.12);
  color: #ffd3bd;
  font-size: 0.77rem;
  letter-spacing: 0.03em;
}

.service-detail-main .section-head h2 {
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

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

.service-detail-grid article {
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 47, 0.22);
  background: rgba(11, 11, 11, 0.82);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-detail-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 122, 47, 0.95), rgba(255, 195, 162, 0.9));
}

.service-detail-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 172, 128, 0.58);
  box-shadow: 0 14px 28px rgba(9, 4, 2, 0.32);
}

.service-detail-grid h3 {
  margin: 0 0 10px;
  color: #fff2e8;
  font-size: 1.14rem;
  letter-spacing: 0.01em;
}

.service-detail-grid p {
  margin: 0;
  color: #f1d3c2;
  font-size: 1rem;
  line-height: 1.66;
}

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

.service-tip-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  background: rgba(11, 11, 11, 0.82);
  padding: 14px;
}

.service-tip-card h3 {
  margin: 0 0 8px;
  color: #fff1e8;
  font-size: 1rem;
}

.service-tip-card ul {
  margin: 0;
  padding-left: 18px;
  color: #f1d6c8;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.service-detail-cta {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.28);
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 122, 47, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  box-shadow: var(--shadow);
}

.service-detail-cta h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 24ch;
}

.service-detail-cta p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.service-detail-cta-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.service-detail-shell {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  background: linear-gradient(155deg, rgba(15, 15, 15, 0.96), rgba(9, 9, 9, 0.92));
  box-shadow: var(--shadow);
  padding: 20px;
}

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

.service-include-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 47, 0.22);
  background: rgba(11, 11, 11, 0.8);
  padding: 14px;
}

.service-include-card h3 {
  margin: 0 0 8px;
  color: #fff1e8;
  font-size: 1.02rem;
}

.service-include-card p {
  margin: 0;
  color: #efd0bf;
  font-size: 0.96rem;
  line-height: 1.6;
}

.service-include-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #f2d7c9;
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-warning {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.26);
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 122, 47, 0.16), transparent 32%),
    linear-gradient(155deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  box-shadow: var(--shadow);
  padding: 22px;
  text-align: center;
}

.service-warning h2 {
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.service-warning ul {
  margin: 12px auto 0;
  padding-left: 18px;
  max-width: 66ch;
  text-align: left;
  color: #f4d8ca;
  display: grid;
  gap: 6px;
  line-height: 1.55;
}

.service-rich-layout {
  display: grid;
  gap: 10px;
}

.service-rich-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 47, 0.22);
  background: rgba(11, 11, 11, 0.8);
  padding: 14px;
}

.service-rich-card h3 {
  margin: 0 0 8px;
  color: #fff1e8;
  font-size: 1.04rem;
}

.service-rich-card p {
  margin: 0 0 10px;
  color: #efd0bf;
  font-size: 0.96rem;
  line-height: 1.6;
}

.service-rich-card p:last-child {
  margin-bottom: 0;
}

.service-emphasis {
  color: #ffd0b7 !important;
}

.service-extra-note {
  margin: 12px 0 0;
  color: #ffceb2;
  font-size: 0.9rem;
  text-align: center;
}

.services-method-section {
  padding-top: 8px;
}

.services-method-head {
  margin-bottom: 18px;
}

.services-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.services-method-grid article {
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 47, 0.23);
  background: rgba(12, 12, 12, 0.82);
  padding: 14px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.services-method-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 168, 125, 0.56);
  box-shadow: 0 12px 28px rgba(10, 4, 2, 0.3);
}

.services-method-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 170, 126, 0.48);
  background: rgba(255, 122, 47, 0.12);
  color: #ffc6a6;
  font-size: 0.74rem;
  font-weight: 700;
}

.services-method-grid h3 {
  margin: 10px 0 6px;
  color: #fff0e6;
  font-size: 1rem;
}

.services-method-grid p {
  margin: 0;
  color: #edcfbf;
  font-size: 0.88rem;
  line-height: 1.5;
}

.services-method-grid small {
  display: block;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 173, 133, 0.22);
  color: #ffc9ad;
  font-size: 0.8rem;
  line-height: 1.45;
}

.services-choice-section {
  padding-top: 12px;
}

.services-choice-head {
  margin-bottom: 20px;
}

.services-choice-head p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

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

.services-choice-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 143, 93, 0.34);
  background: linear-gradient(160deg, rgba(15, 15, 15, 0.97), rgba(10, 10, 10, 0.94));
  padding: 18px 16px 16px;
  display: grid;
  gap: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-choice-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.services-choice-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 122, 47, 0.9), rgba(255, 191, 161, 0.85));
  opacity: 0.9;
}

.services-choice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 171, 129, 0.62);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 164, 120, 0.18);
}

.services-choice-card:focus-visible {
  outline: none;
  transform: translateY(-4px);
  border-color: rgba(255, 172, 128, 0.74);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 172, 128, 0.26);
}

.choice-index {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 183, 145, 0.5);
  background: rgba(255, 122, 47, 0.12);
  color: #ffd8c4;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  position: absolute;
  right: 14px;
  top: 12px;
}

.services-choice-grid h3 {
  margin: 2px 0 0;
  color: #fff4ec;
  font-size: 1.1rem;
  line-height: 1.3;
}

.services-choice-grid p {
  margin: 0;
  color: #f1d4c4;
  font-size: 0.92rem;
  line-height: 1.52;
}

.services-choice-grid p strong {
  color: #ffd9c4;
}

.choice-label {
  color: #ffcfb6 !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-service {
  margin-top: 2px !important;
  color: #f2d8ca !important;
  line-height: 1.5;
}

.choice-cta {
  margin-top: 2px !important;
  color: #ffbe9d !important;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: 0.84rem !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.service-choice-link:hover .choice-cta,
.service-choice-link:focus-visible .choice-cta {
  transform: translateX(2px);
  color: #ffd7c1 !important;
}

.services-page .services-choice-grid > .services-choice-card.reveal.visible {
  animation: servicesCardIn 0.6s cubic-bezier(0.21, 0.72, 0.3, 1) both;
}

.services-page .services-choice-grid > .services-choice-card.reveal.visible:nth-child(1) { animation-delay: 0.03s; }
.services-page .services-choice-grid > .services-choice-card.reveal.visible:nth-child(2) { animation-delay: 0.08s; }
.services-page .services-choice-grid > .services-choice-card.reveal.visible:nth-child(3) { animation-delay: 0.13s; }
.services-page .services-choice-grid > .services-choice-card.reveal.visible:nth-child(4) { animation-delay: 0.18s; }
.services-page .services-choice-grid > .services-choice-card.reveal.visible:nth-child(5) { animation-delay: 0.23s; }
.services-page .services-choice-grid > .services-choice-card.reveal.visible:nth-child(6) { animation-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  .choice-cta {
    transition: none !important;
  }

  .services-page .services-choice-grid > .services-choice-card.reveal.visible {
    animation: none !important;
  }
}

.services-cta-section {
  padding-top: 10px;
  padding-bottom: 18px;
}

.services-cta-box {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.28);
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 122, 47, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  box-shadow: var(--shadow);
}

.services-cta-box h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 24ch;
}

.services-cta-box p {
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch;
}

.services-cta-points {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.services-cta-points span {
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 137, 0.45);
  background: rgba(255, 122, 47, 0.12);
  color: #ffd2bb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.services-cta-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

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

.project ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.tag {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 47, 0.45);
  color: #ffb48a;
  background: rgba(255, 122, 47, 0.2);
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-v2-main {
  padding-top: 22px;
}

.about-v2-hero-section {
  padding-top: 24px;
  padding-bottom: 12px;
}

.about-v2-hero {
  border-radius: 24px;
  border: 1px solid rgba(255, 122, 47, 0.34);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 122, 47, 0.28), transparent 36%),
    radial-gradient(circle at 8% 90%, rgba(255, 177, 138, 0.15), transparent 40%),
    linear-gradient(160deg, rgba(15, 15, 15, 0.98), rgba(8, 8, 8, 0.94));
  padding: clamp(20px, 3.8vw, 34px);
  box-shadow: var(--shadow);
  display: block;
  text-align: center;
}

.about-v2-topline {
  width: fit-content;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 137, 0.45);
  background: rgba(255, 122, 47, 0.12);
  color: #ffd2bb !important;
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  margin: 0 auto 10px !important;
}

.about-v2-hero-content h1 {
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.about-v2-hero-content p {
  max-width: 70ch;
  color: #f2d7c8;
  margin-left: auto;
  margin-right: auto;
}

.about-v2-actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.about-v2-hero-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.about-v2-hero-metrics article {
  border-radius: 11px;
  border: 1px solid rgba(255, 171, 132, 0.34);
  background: rgba(255, 122, 47, 0.1);
  padding: 10px 12px;
  text-align: center;
}

.about-v2-hero-metrics strong {
  display: block;
  color: #fff1e6;
  font-size: 1.12rem;
  font-family: "Sora", "Space Grotesk", sans-serif;
}

.about-v2-hero-metrics span {
  color: #ffd8c3;
  font-size: 0.8rem;
}

.about-v2-pillars-section {
  padding-top: 8px;
  padding-bottom: 8px;
}

.about-v2-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-v2-pillar {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  background: linear-gradient(150deg, rgba(19, 19, 19, 0.95), rgba(11, 11, 11, 0.93));
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.about-v2-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 122, 47, 0.94), rgba(255, 197, 166, 0.9));
}

.about-v2-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 162, 116, 0.58);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 122, 47, 0.2);
}

.about-v2-pillar h3 {
  margin: 0 0 10px;
  color: #fff3ea;
  font-size: 1.12rem;
}

.about-v2-pillar p {
  margin: 0;
  color: #f0d3c3;
  font-size: 0.96rem;
  line-height: 1.62;
}

.about-v2-story-section {
  padding-top: 8px;
  padding-bottom: 8px;
}

.about-v2-story {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  background: linear-gradient(160deg, rgba(16, 16, 16, 0.96), rgba(8, 8, 8, 0.93));
  padding: clamp(18px, 3vw, 28px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.about-v2-story p {
  color: #f0d4c4;
}

.about-v2-service-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #f0d4c4;
  display: grid;
  gap: 6px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.about-v2-story blockquote {
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 171, 132, 0.35);
  background: rgba(255, 122, 47, 0.1);
  color: #ffdcc9;
  padding: 18px;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.6;
  display: grid;
  place-items: center;
  text-align: center;
}

.about-v2-timeline-section {
  padding-top: 10px;
  padding-bottom: 8px;
}

.about-v2-timeline {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  background: linear-gradient(160deg, rgba(15, 15, 15, 0.95), rgba(9, 9, 9, 0.92));
  padding: clamp(16px, 2.6vw, 24px);
  position: relative;
  overflow: hidden;
}

.about-v2-timeline::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 122, 47, 0.22), rgba(255, 122, 47, 0.92), rgba(255, 122, 47, 0.22));
}

.about-v2-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 8px 0;
}

.about-v2-timeline span {
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 185, 150, 0.55);
  background: rgba(255, 122, 47, 0.16);
  color: #ffe4d5;
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 6px rgba(255, 122, 47, 0.08);
}

.about-v2-timeline h3 {
  margin: 0 0 5px;
  color: #fff0e7;
  font-size: 1.02rem;
}

.about-v2-timeline p {
  margin: 0;
  color: #efcfbe;
  font-size: 0.91rem;
  line-height: 1.56;
}

.about-v2-trust-section {
  padding-top: 10px;
  padding-bottom: 18px;
}

.about-v2-zone-section {
  padding-top: 8px;
  padding-bottom: 8px;
}

.about-v2-zone-box {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  background: linear-gradient(160deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  padding: clamp(18px, 3vw, 28px);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-v2-zone-box h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 24ch;
}

.about-v2-zone-box p {
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  color: #f0d4c4;
}

.about-v2-trust {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.28);
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 122, 47, 0.22), transparent 34%),
    linear-gradient(160deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  padding: clamp(18px, 3vw, 28px);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-v2-trust h2 {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.about-v2-trust-points {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.about-v2-trust-points span {
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 137, 0.42);
  background: rgba(255, 122, 47, 0.12);
  color: #ffd2bb;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.contact-v2-main {
  padding-top: 22px;
}

.contact-v2-hero-section {
  padding-top: 24px;
  padding-bottom: 12px;
}

.contact-v2-hero {
  border-radius: 22px;
  border: 1px solid rgba(255, 122, 47, 0.3);
  padding: clamp(20px, 3.6vw, 32px);
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 122, 47, 0.23), transparent 36%),
    radial-gradient(circle at 16% 86%, rgba(255, 172, 132, 0.14), transparent 40%),
    linear-gradient(160deg, rgba(18, 18, 18, 0.97), rgba(10, 10, 10, 0.92));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 0.82fr;
  gap: 14px;
}

.contact-v2-hero-content h1 {
  max-width: 22ch;
}

.contact-v2-hero-content p {
  max-width: 64ch;
  color: #f0d3c2;
}

.contact-v2-hero-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-v2-hero-panel {
  border-radius: 15px;
  border: 1px solid rgba(255, 122, 47, 0.25);
  background: rgba(8, 8, 8, 0.62);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.contact-v2-hero-panel article {
  border-radius: 10px;
  border: 1px solid rgba(255, 175, 137, 0.35);
  background: rgba(255, 122, 47, 0.08);
  padding: 10px 12px;
}

.contact-v2-hero-panel strong {
  display: block;
  color: #fff1e7;
  font-size: 1.04rem;
  font-family: "Sora", "Space Grotesk", sans-serif;
}

.contact-v2-hero-panel span {
  color: #ffd7c2;
  font-size: 0.82rem;
}

.contact-v2-form-section {
  padding-top: 8px;
  padding-bottom: 8px;
}

.contact-v2-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: start;
}

.contact-v2-form-card,
.contact-v2-info-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.25);
  background: linear-gradient(160deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  box-shadow: var(--shadow);
  padding: clamp(16px, 2.8vw, 24px);
}

.contact-v2-form-head p {
  max-width: 62ch;
}

.contact-v2-form {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-v2-field {
  display: grid;
  gap: 6px;
}

.contact-v2-field-wide {
  grid-column: 1 / -1;
}

.contact-v2-form label {
  font-weight: 700;
  color: #ffe6d8;
  font-size: 0.92rem;
}

.contact-v2-form input,
.contact-v2-form select,
.contact-v2-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 166, 120, 0.34);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  background: rgba(11, 11, 11, 0.86);
  color: #f8f8f8;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-v2-form input:focus,
.contact-v2-form select:focus,
.contact-v2-form textarea:focus {
  border-color: rgba(255, 180, 142, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 122, 47, 0.16);
  background: rgba(14, 14, 14, 0.94);
  outline: none;
}

.contact-v2-submit {
  margin-top: 4px;
  justify-content: center;
}

.contact-v2-info-card h2 {
  margin: 0 0 12px;
}

.contact-v2-line {
  margin: 0;
  padding: 9px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid rgba(255, 175, 136, 0.16);
}

.contact-v2-line strong {
  color: #ffcfb6;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-v2-line a,
.contact-v2-line span {
  color: #f4d7c8;
  font-size: 0.95rem;
}

.contact-v2-line a:hover {
  color: #fff0e5;
}

.contact-v2-urgency {
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 170, 128, 0.38);
  background: rgba(255, 122, 47, 0.1);
  padding: 12px;
}

.contact-v2-urgency h3 {
  margin: 0 0 5px;
  color: #ffe8da;
  font-size: 1rem;
}

.contact-v2-urgency p {
  margin: 0 0 10px;
  color: #f3d5c4;
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-v2-urgency .btn {
  width: 100%;
  justify-content: center;
}

.contact-v2-badges {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-v2-badges span {
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 173, 133, 0.42);
  background: rgba(255, 122, 47, 0.12);
  color: #ffd5bf;
  font-size: 0.77rem;
  font-weight: 700;
}

.contact-v2-cta-section {
  padding-top: 10px;
  padding-bottom: 18px;
}

.contact-v2-cta {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.28);
  padding: clamp(18px, 3vw, 28px);
  text-align: center;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 122, 47, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  box-shadow: var(--shadow);
}

.contact-v2-cta h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 26ch;
}

.contact-v2-cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 62ch;
}

.contact-v2-cta-actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---- Contact V3 ---- */
.contact-v3-main {
  padding-top: 22px;
}

.contact-v3-hero-section {
  padding-top: 24px;
  padding-bottom: 8px;
}

.contact-v3-hero {
  border-radius: 22px;
  border: 1px solid rgba(255, 122, 47, 0.34);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 122, 47, 0.24), transparent 34%),
    linear-gradient(160deg, rgba(17, 17, 17, 0.97), rgba(8, 8, 8, 0.93));
  padding: clamp(18px, 3.4vw, 30px);
  box-shadow: var(--shadow);
}

.contact-v3-hero-topline {
  min-height: 30px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 137, 0.45);
  background: rgba(255, 122, 47, 0.12);
  color: #ffd2bb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
}

.contact-v3-hero-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.contact-v3-hero-content h1 {
  max-width: 22ch;
}

.contact-v3-hero-content p {
  max-width: 64ch;
  color: #f1d4c3;
}

.contact-v3-hero-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-v3-hero-stack {
  display: grid;
  gap: 9px;
}

.contact-v3-hero-stack article {
  border-radius: 12px;
  border: 1px solid rgba(255, 177, 140, 0.35);
  background: rgba(255, 122, 47, 0.08);
  padding: 12px;
}

.contact-v3-hero-stack strong {
  display: block;
  color: #fff1e6;
  font-size: 0.98rem;
}

.contact-v3-hero-stack span {
  color: #ffd9c3;
  font-size: 0.84rem;
}

.contact-v3-quick-section {
  padding-top: 8px;
  padding-bottom: 6px;
}

.contact-v3-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-v3-quick-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  background: linear-gradient(155deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  padding: 16px;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.contact-v3-quick-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 160, 110, 0.56);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 122, 47, 0.2);
}

.contact-v3-quick-card h3 {
  margin: 0 0 6px;
  color: #fff2e8;
  font-size: 1.02rem;
}

.contact-v3-quick-card p {
  margin: 0 0 8px;
  color: #f0d1c0;
  font-size: 0.9rem;
  line-height: 1.52;
}

.contact-v3-quick-card strong {
  color: #ffcbaf;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.contact-v3-process-section {
  padding-top: 8px;
  padding-bottom: 6px;
}

.contact-v3-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-v3-process-grid article {
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  background: linear-gradient(155deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  padding: 16px;
  box-shadow: var(--shadow);
}

.contact-v3-process-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 180, 142, 0.5);
  background: rgba(255, 122, 47, 0.14);
  color: #ffd9c4;
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-v3-process-grid h3 {
  margin: 10px 0 6px;
  color: #fff2e8;
  font-size: 1.02rem;
}

.contact-v3-process-grid p {
  margin: 0;
  color: #efd1c0;
  font-size: 0.9rem;
  line-height: 1.54;
}

.contact-v3-form-section {
  padding-top: 8px;
  padding-bottom: 18px;
}

.contact-v3-form-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.contact-v3-form-card,
.contact-v3-aside-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.25);
  background: linear-gradient(160deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  box-shadow: var(--shadow);
}

.contact-v3-form-card {
  padding: clamp(16px, 2.6vw, 24px);
}

.contact-v3-form {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-v3-field {
  display: grid;
  gap: 6px;
}

.contact-v3-wide {
  grid-column: 1 / -1;
}

.contact-v3-form label {
  color: #ffe6d7;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-v3-form input,
.contact-v3-form select,
.contact-v3-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 166, 120, 0.34);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  font-size: 16px;
  background: rgba(11, 11, 11, 0.86);
  color: #f7f7f7;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-v3-form input:focus,
.contact-v3-form select:focus,
.contact-v3-form textarea:focus {
  border-color: rgba(255, 180, 142, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 122, 47, 0.16);
  outline: none;
}

.contact-v3-submit {
  margin-top: 3px;
  justify-content: center;
}

.form-feedback {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(127, 201, 149, 0.45);
  background: rgba(42, 101, 59, 0.22);
  color: #d8f2df;
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.form-error {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 130, 130, 0.44);
  background: rgba(112, 28, 28, 0.26);
  color: #ffd6d6;
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-success-hero {
  border-radius: 16px;
  border: 1px solid rgba(255, 172, 132, 0.42);
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 122, 47, 0.2), transparent 34%),
    linear-gradient(160deg, rgba(24, 16, 11, 0.97), rgba(11, 9, 8, 0.94));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
  padding: clamp(20px, 3.4vw, 34px);
  text-align: center;
  animation: formSuccessIn 0.35s ease;
}

.form-success-kicker {
  margin: 0 0 8px;
  color: #ffbf9d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-success-hero h3 {
  margin: 0 0 10px;
  color: #fff3ea;
  font-size: clamp(1.55rem, 2.7vw, 2rem);
  line-height: 1.2;
}

.form-success-hero p {
  margin: 0 auto;
  color: #f1d6c7;
  font-size: 1rem;
  line-height: 1.64;
  max-width: 56ch;
}

.form-success-soft {
  margin-top: 8px !important;
  color: #ffd3bc !important;
}

.form-success-hero .btn {
  margin-top: 14px;
}

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

.contact-v3-aside {
  display: grid;
  gap: 10px;
}

.contact-v3-aside-card {
  padding: 16px;
}

.contact-v3-aside-card h3 {
  margin: 0 0 10px;
}

.contact-v3-aside-card p {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 175, 136, 0.16);
  display: grid;
  gap: 2px;
}

.contact-v3-aside-card p strong {
  color: #ffcfb6;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-v3-aside-card p a,
.contact-v3-aside-card p span {
  color: #f4d7c8;
  font-size: 0.92rem;
}

.contact-v3-aside-card p:last-of-type {
  border-bottom: none;
}

.contact-v3-aside-urgency {
  border-color: rgba(255, 170, 128, 0.38);
  background: linear-gradient(160deg, rgba(33, 19, 12, 0.95), rgba(17, 11, 8, 0.92));
  text-align: center;
}

.contact-v3-aside-urgency h3 {
  text-align: center;
}

.contact-v3-aside-urgency p {
  border-bottom: none;
  color: #f2d5c4;
  font-size: 0.9rem;
  line-height: 1.55;
  padding-top: 0;
  text-align: center;
}

.contact-v3-aside-urgency .btn {
  width: 100%;
  justify-content: center;
}

.contact-v3-aside-urgency a.btn-call + a.btn-sms,
.contact-v3-aside-urgency a.btn-sms + a.btn-whatsapp {
  margin-left: 0;
}

.contact-v3-aside-trust ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.contact-v3-aside-trust li {
  min-height: 32px;
  padding: 0 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 175, 136, 0.32);
  background: rgba(255, 122, 47, 0.09);
  color: #f6dacb;
  font-size: 0.86rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% -8%, rgba(255, 122, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  color: #e6e6e6;
  padding: 44px 0 34px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 122, 47, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 20px;
}

.footer h3 {
  color: #ffbf9f;
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-grid > div {
  position: relative;
}

.footer-grid > div:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 122, 47, 0.26), rgba(255, 122, 47, 0.06));
}

.footer a,
.footer p {
  color: #f0f0f0;
  display: block;
  margin: 5px 0;
  line-height: 1.45;
}

.footer a {
  width: fit-content;
  color: #ffdcca;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer a:hover {
  color: #fff2ea;
  transform: translateX(2px);
}

.footer-grid > div:nth-child(2) a {
  position: relative;
  padding: 3px 2px;
  border-radius: 6px;
  overflow: hidden;
}

.footer-grid > div:nth-child(2) a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255, 122, 47, 0.28), transparent 68%);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}

.footer-grid > div:nth-child(2) a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 122, 47, 0.2), rgba(255, 184, 146, 0.95), rgba(255, 122, 47, 0.2));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.footer-grid > div:nth-child(2) a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.footer-grid > div:nth-child(2) a:hover::after {
  opacity: 1;
}

.footer-grid > div:nth-child(3) p {
  width: fit-content;
  margin: 8px 0;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 174, 134, 0.34);
  background: rgba(255, 122, 47, 0.1);
  color: #ffe5d6;
}

.legal-main {
  padding-top: 18px;
}

.legal-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.25);
  background: linear-gradient(160deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.8vw, 28px);
}

.legal-card h2 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #ffe8da;
  font-size: 1.18rem;
}

.legal-card p {
  color: #f1d3c2;
}

.legal-list {
  margin: 0;
  padding-left: 18px;
  color: #f1d5c6;
  display: grid;
  gap: 5px;
}

.legal-note {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 170, 126, 0.22);
  color: #ffcfb5;
  font-size: 0.86rem;
}

.footer-logo {
  width: 126px;
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.footer-credit {
  margin-top: 8px !important;
  color: #ffcfb4 !important;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.footer-grid > div:first-child {
  text-align: center;
}

.footer-grid > div:first-child .footer-logo {
  margin-left: auto;
  margin-right: auto;
}

.footer-grid > div:first-child a {
  margin-left: auto;
  margin-right: auto;
}

.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.visible,
.reveal-delay.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-delay.visible {
  transition-delay: 0.12s;
}

@media (max-width: 1020px) {
  .hero-grid,
  .contact-layout,
  .contact-v2-grid,
  .contact-v3-form-layout {
    grid-template-columns: 1fr;
  }

  .hero-fullscreen {
    min-height: auto;
    padding: 88px 0 54px;
    background-position: 62% center;
  }

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

  .about-v2-hero,
  .about-v2-story,
  .projects-grid,
  .specialties-grid {
    grid-template-columns: 1fr;
  }

  .about-v2-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-v3-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    right: 4vw;
    left: 4vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    background: #111111;
    border: 1px solid var(--stroke);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav .btn-nav {
    text-align: center;
  }

  .service-list,
  .cards-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-v2-hero,
  .contact-v2-grid,
  .contact-v2-form,
  .contact-v3-hero-grid,
  .contact-v3-quick-grid,
  .contact-v3-process-grid,
  .contact-v3-form,
  .contact-v3-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-v2-hero,
  .contact-v2-form-card,
  .contact-v2-info-card,
  .contact-v2-cta,
  .contact-v3-hero,
  .contact-v3-form-card,
  .contact-v3-aside-card {
    padding: 16px;
  }

  .contact-v2-hero-content {
    text-align: center;
  }

  .contact-v2-hero-content h1,
  .contact-v2-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-v3-hero-content {
    text-align: center;
  }

  .contact-v3-hero-content h1,
  .contact-v3-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-v2-hero-actions {
    justify-content: center;
  }

  .contact-v3-hero-actions {
    justify-content: center;
  }

  .contact-v2-hero-actions .btn,
  .contact-v2-cta-actions .btn,
  .contact-v2-submit,
  .contact-v3-hero-actions .btn,
  .contact-v3-submit {
    width: 100%;
    justify-content: center;
  }

  .contact-v3-hero-topline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about-v2-pillars-grid {
    grid-template-columns: 1fr;
  }

  .about-v2-hero,
  .about-v2-story,
  .about-v2-timeline,
  .about-v2-trust {
    padding: 16px;
  }

  .about-v2-hero-content {
    text-align: center;
  }

  .about-v2-topline {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .about-v2-hero-content h1,
  .about-v2-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-v2-actions {
    justify-content: center;
  }

  .about-v2-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-v2-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-v2-timeline::before {
    left: 21px;
  }

  .about-v2-timeline article {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }

  .footer-grid > div:not(:first-child)::before {
    display: none;
  }

  .footer-grid > div:nth-child(3) p {
    width: 100%;
  }

  .band-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 42px 0;
  }

  .hero-fullscreen {
    padding: 72px 0 46px;
  }
}

/* ---- Typography + Header Upgrade ---- */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

body {
  font-family: "Outfit", "Barlow", sans-serif;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
.main-nav a,
.btn {
  font-family: "Sora", "Space Grotesk", sans-serif;
}

.topbar {
  animation: navDrop 0.65s cubic-bezier(0.2, 0.72, 0.2, 1) both;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 122, 47, 0.72) 50%, transparent 100%);
  opacity: 0.6;
}

.topbar.scrolled {
  background: rgba(6, 6, 6, 0.96);
  border-bottom-color: rgba(255, 122, 47, 0.36);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.45);
}

.nav-wrap {
  min-height: 66px;
  transition: min-height 0.35s ease;
}

.topbar.scrolled .nav-wrap {
  min-height: 58px;
}

.brand-logo {
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: drop-shadow(0 0 0 rgba(255, 122, 47, 0));
}

.brand:hover .brand-logo {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 0 20px rgba(255, 122, 47, 0.28));
}

.main-nav {
  gap: 20px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.24s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ffb389);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

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

.btn-nav {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(233, 95, 20, 0.38);
}

.btn-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.34) 45%, transparent 78%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.btn-nav:hover::before {
  transform: translateX(130%);
}

.menu-toggle {
  transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 47, 0.58);
  box-shadow: 0 8px 18px rgba(233, 95, 20, 0.22);
}

.hero-copy {
  animation: cardRise 0.7s ease both;
}

.hero-card {
  animation: cardRise 0.7s ease 0.12s both;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 860px) {
  .main-nav.open {
    animation: mobileMenuIn 0.24s ease both;
  }

  .main-nav a {
    padding: 10px 6px;
  }
}


/* ---- Pro Header Max Upgrade ---- */
.site-header {
  position: relative;
  z-index: 30;
}

.top-strip {
  background: linear-gradient(90deg, #2a1105 0%, #3a1708 45%, #4a1c09 100%);
  border-bottom: 1px solid rgba(255, 122, 47, 0.35);
}

.top-strip-wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.top-strip p {
  margin: 0;
  text-align: center;
  color: #ffd9c4;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 47, 0.16);
  border: 1px solid rgba(255, 176, 136, 0.5);
  color: #fff4ec;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.header-call:hover {
  transform: translateY(-1px);
  background: rgba(255, 122, 47, 0.32);
}

.topbar {
  top: 0;
  background: rgba(6, 6, 6, 0.9);
}

.home-page .topbar {
  background: rgba(6, 6, 6, 0.78);
}

.nav-wrap {
  min-height: 62px;
}

.topbar.scrolled .nav-wrap {
  min-height: 54px;
}

.brand-logo {
  width: 96px;
}

.main-nav {
  align-items: center;
  gap: 16px;
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(255, 122, 47, 0.15);
  border-radius: 999px;
  padding: 5px 12px;
}

.main-nav a {
  font-size: 0.88rem;
}

.main-nav a:not(.btn) {
  color: #ececec;
  padding: 8px 4px;
}

.main-nav a:not(.btn).active {
  color: #ffab7c;
}

.btn-call {
  background: #1f1f1f;
  border: 1px solid rgba(255, 170, 126, 0.45);
  color: #ffd8c3;
}

.btn-call:hover {
  box-shadow: 0 8px 18px rgba(255, 122, 47, 0.2);
  border-color: rgba(255, 184, 145, 0.8);
  background: rgba(255, 122, 47, 0.14);
  color: #fff2e8;
}

.btn-sms {
  background: #1b1b1b;
  border: 1px solid rgba(255, 182, 145, 0.5);
  color: #ffe2d2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.btn-sms:hover {
  box-shadow: 0 8px 18px rgba(255, 122, 47, 0.14);
  border-color: rgba(255, 184, 145, 0.8);
  background: rgba(255, 122, 47, 0.12);
  color: #fff2e8;
}

.btn-whatsapp {
  background: #1d1d1d;
  border: 1px solid rgba(255, 176, 136, 0.5);
  color: #ffe2d2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.btn-sms,
.btn-whatsapp,
.mobile-cta-sms,
.mobile-cta-whatsapp {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

a.btn-call + a.btn-sms,
a.btn-sms + a.btn-whatsapp {
  margin-left: 8px;
}

.diagnostic-urgent-card .btn-sms,
.diagnostic-urgent-card .btn-whatsapp {
  display: flex;
  width: 100%;
  margin-left: 0;
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 18px rgba(255, 122, 47, 0.16);
  border-color: rgba(255, 184, 145, 0.8);
  background: rgba(255, 122, 47, 0.12);
  color: #fff2e8;
}

.main-nav .btn {
  padding: 9px 15px;
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .top-strip-wrap {
    min-height: 34px;
  }

  .top-strip p {
    font-size: 0.69rem;
  }

  .header-call {
    font-size: 0.71rem;
    padding: 4px 10px;
  }
}

@media (max-width: 860px) {
  .top-strip-wrap {
    justify-content: center;
  }

  .top-strip p {
    text-align: center;
  }

  .top-strip .header-call {
    display: none;
  }

  .nav-wrap {
    min-height: 60px;
  }

  .brand-logo {
    width: 90px;
  }

  .main-nav {
    top: 66px;
    left: 3.5vw;
    right: 3.5vw;
    border-radius: 16px;
    border-color: rgba(255, 122, 47, 0.36);
    padding: 14px;
    background: rgba(12, 12, 12, 0.97);
  }

  .main-nav a:not(.btn) {
    padding: 8px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

/* ---- Hero Pro Upgrade ---- */
.hero-fullscreen {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding: clamp(88px, 11vh, 128px) 0 clamp(34px, 6vh, 74px);
  background-position: center center;
}

.hero-fullscreen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.62) 62%, rgba(0, 0, 0, 0.86) 100%);
  pointer-events: none;
}

.hero-content-wrap,
.hero-trust-bar {
  position: relative;
  z-index: 2;
}

.hero-content-wrap {
  width: 100%;
}

.hero-content {
  max-width: 720px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 20px;
  border: 1px solid rgba(255, 142, 95, 0.35);
  background: linear-gradient(145deg, rgba(12, 12, 12, 0.72) 0%, rgba(12, 12, 12, 0.56) 100%);
  backdrop-filter: blur(7px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 12px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 172, 132, 0.45);
  background: rgba(255, 122, 47, 0.18);
  color: #ffe4d5;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-phone-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 22px;
  margin: -8px 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 170, 126, 0.66);
  background: linear-gradient(120deg, rgba(28, 20, 15, 0.95), rgba(16, 16, 16, 0.92));
  color: #ffe3d1;
  font-family: "Space Grotesk", "Barlow", sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 158, 109, 0.2), inset 0 0 0 1px rgba(255, 122, 47, 0.08);
  text-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-phone-top:hover {
  border-color: rgba(255, 194, 160, 0.84);
  box-shadow: 0 12px 24px rgba(255, 122, 47, 0.28), 0 0 0 1px rgba(255, 194, 160, 0.24), inset 0 0 0 1px rgba(255, 122, 47, 0.14);
  transform: translateY(-1px);
  filter: none;
}

.hero-content h1 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 5.2vw, 4.2rem);
}

.hero-lead {
  max-width: 58ch;
  color: #f2d6c8;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  margin-bottom: 22px;
}

.hero-content .hero-actions {
  margin: 0;
}

.hero-content .btn-call {
  border-color: rgba(255, 176, 136, 0.66);
  background: rgba(25, 25, 25, 0.72);
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 6, 6, 0.56);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.14rem;
  font-family: "Sora", "Space Grotesk", sans-serif;
}

.hero-stats span {
  color: #f4cbb7;
  font-size: 0.8rem;
}

.hero-trust-bar {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 6, 6, 0.7);
}

.hero-trust-inner {
  min-height: 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.trust-item {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-height: 74px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 166, 122, 0.34);
  background: linear-gradient(155deg, rgba(19, 19, 19, 0.78) 0%, rgba(10, 10, 10, 0.52) 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(255, 122, 47, 0.18);
  border: 1px solid rgba(255, 179, 142, 0.42);
  color: #ffb489;
  font-size: 0.72rem;
  font-weight: 700;
}

.trust-item strong {
  color: #ffe8db;
  text-align: center !important;
  justify-self: center;
  width: 100%;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trust-item small {
  color: #efbda1;
  font-size: 0.84rem;
  text-align: center !important;
  justify-self: center;
  width: 100%;
  letter-spacing: 0.01em;
}

@media (max-width: 1020px) {
  .hero-fullscreen {
    min-height: 94svh;
    padding-top: 84px;
    padding-bottom: 44px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-fullscreen {
    min-height: 92svh;
    padding-top: 70px;
    padding-bottom: 36px;
    background-size: 108%;
    background-position: center 35%;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-phone-top {
    width: 100%;
    justify-content: center;
    min-height: 54px;
    font-size: 1.34rem;
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: -6px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 174, 132, 0.2);
  }

  .hero-content .hero-actions {
    flex-direction: column;
  }

  .hero-content .hero-actions .btn {
    width: 100%;
  }

  .hero-trust-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 12px 0;
    gap: 8px;
  }

  .trust-item {
    width: 100%;
    justify-items: start;
    text-align: left;
    padding: 12px 14px;
  }

  .trust-item strong,
  .trust-item small {
    text-align: center;
  }

}


/* ---- Hero Text Only ---- */
.hero-content-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text-only {
  max-width: 900px;
  text-align: center;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-text-only .hero-badge {
  margin: 0 auto 14px;
}

.hero-text-only .hero-lead {
  margin: 0 auto 24px;
}

.hero-text-only .hero-actions {
  justify-content: center;
}

.hero-stats {
  margin: 22px auto 0;
  max-width: 760px;
}

.hero-stats li {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.mobile-cta {
  display: none;
}

.hero-trust-flat {
  background: transparent;
  border-top: 0;
  margin-top: clamp(36px, 6vh, 64px);
}

.hero-trust-flat .hero-trust-inner {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .hero-text-only {
    max-width: 100%;
  }

  .hero-stats {
    gap: 14px 10px;
  }

  .home-page {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(8, 8, 8, 0.96);
    border-top: 1px solid rgba(255, 122, 47, 0.35);
    backdrop-filter: blur(8px);
  }

  .mobile-cta-btn {
    min-height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", "Space Grotesk", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
  }

  .mobile-cta-call {
    background: #1d1d1d;
    color: #ffe0d0;
    border: 1px solid rgba(255, 176, 136, 0.42);
  }

  .mobile-cta-quote {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(233, 95, 20, 0.35);
  }

  .mobile-cta-sms {
    background: #1b1b1b;
    color: #ffe2d2;
    border: 1px solid rgba(255, 176, 136, 0.42);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .mobile-cta-whatsapp {
    background: #1b1b1b;
    color: #ffe2d2;
    border: 1px solid rgba(255, 176, 136, 0.42);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* ---- Specialties Redesign V2 ---- */
.specialties-section .service-board {
  margin-top: 14px;
  border: 1px solid rgba(255, 122, 47, 0.26);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 122, 47, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.94), rgba(10, 10, 10, 0.92));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.specialties-section .service-line {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.specialties-section .service-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 122, 47, 0.96), rgba(255, 196, 163, 0.84));
  opacity: 0;
  transform: scaleY(0.5);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.specialties-section .service-line:last-child {
  border-bottom: 0;
}

.specialties-section .service-line:hover {
  background: rgba(255, 122, 47, 0.06);
  transform: translateX(3px);
}

.specialties-section .service-line:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.specialties-section .service-index {
  min-width: 46px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 173, 133, 0.55);
  color: #ffc7a9;
  background: rgba(255, 122, 47, 0.14);
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.specialties-section .service-line h3 {
  margin: 0 0 4px;
  font-size: 1.28rem;
  color: #fff4ec;
}

.specialties-section .service-line p {
  margin: 0;
  color: #efcdbb;
  font-size: 1.04rem;
  line-height: 1.45;
}

.specialties-section .service-chip {
  min-height: 30px;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 186, 153, 0.45);
  color: #ffbf9e;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.engagement-band .band-content {
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.engagement-band {
  position: relative;
  overflow: hidden;
}

.engagement-band::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 122, 47, 0.15), transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(255, 160, 110, 0.1), transparent 40%);
  opacity: 0.45;
  pointer-events: none;
  animation: engagementGlow 10s ease-in-out infinite alternate;
}

.engagement-band .band-content p {
  margin-left: auto;
  margin-right: auto;
}

.engagement-band h2 {
  margin-bottom: 10px;
}

.engagement-quick-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.engagement-quick-grid > .engagement-quick-card {
  grid-column: span 2;
}

.engagement-quick-grid > .btn-sms,
.engagement-quick-grid > .btn-whatsapp {
  grid-column: span 3;
  width: 100%;
  min-height: 48px;
  justify-self: center;
}

.engagement-quick-card {
  min-height: 138px;
  border-radius: 16px;
  border: 1px solid rgba(255, 148, 102, 0.42);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 122, 47, 0.2), transparent 44%),
    linear-gradient(150deg, rgba(18, 18, 18, 0.9), rgba(11, 11, 11, 0.86));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.engagement-quick-card strong {
  color: #fff1e7;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(1.28rem, 2.4vw, 1.7rem);
  letter-spacing: 0.01em;
}

.engagement-quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 182, 146, 0.72);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.engagement-points {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.engagement-points article {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 178, 140, 0.32);
  background: rgba(8, 8, 8, 0.34);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(14px);
}

.engagement-points strong {
  display: block;
  margin-bottom: 4px;
  color: #ffe8db;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.engagement-points span {
  color: #f0c8b2;
  font-size: 0.88rem;
}

.engagement-band.visible .engagement-points article {
  animation: engagementCardIn 0.7s ease forwards;
}

.engagement-band.visible .engagement-points article:nth-child(2) {
  animation-delay: 0.12s;
}

.engagement-band.visible .engagement-points article:nth-child(3) {
  animation-delay: 0.24s;
}

.engagement-points article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 162, 118, 0.52);
  box-shadow: 0 14px 32px rgba(8, 4, 2, 0.35);
}

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

@keyframes engagementGlow {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .engagement-band::before {
    animation: none;
  }

  .engagement-points article {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

@media (max-width: 1020px) {
  .specialties-section .service-line {
    grid-template-columns: auto 1fr;
  }

  .specialties-section .service-chip {
    grid-column: 2 / 3;
    justify-self: start;
    margin-top: 2px;
  }

  .engagement-points {
    grid-template-columns: 1fr;
  }

  .engagement-quick-grid {
    grid-template-columns: 1fr;
  }

  .reviews-carousel {
    grid-template-columns: 40px 1fr 40px;
  }

  .reviews-track .testimonial-card {
    flex-basis: calc((100% - 10px) / 2);
  }
}

@media (max-width: 860px) {
  .specialties-section .service-line {
    gap: 12px;
    padding: 16px 14px;
    transform: none;
  }

  .specialties-section .service-line h3 {
    font-size: 1rem;
  }

  .specialties-section .service-line:hover {
    transform: none;
  }

  .engagement-quick-card {
    min-height: 102px;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .reviews-nav {
    display: none;
  }

  .testimonial-card {
    padding: 16px;
    aspect-ratio: auto;
    min-height: 230px;
    grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  }

  .review-stars {
    font-size: 0.76rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
    -webkit-line-clamp: 4;
    max-height: calc(1.58em * 4);
  }

  .reviews-track .testimonial-card {
    flex-basis: 100%;
  }

  .review-card-links {
    flex-direction: column;
  }

  .review-link,
  .review-more {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }
}

/* ---- Diagnostic Section ---- */
.diagnostic-section {
  padding-top: 54px;
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 18px;
}

.diagnostic-main,
.diagnostic-side {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.2);
  background: linear-gradient(160deg, rgba(15, 15, 15, 0.96) 0%, rgba(9, 9, 9, 0.92) 100%);
  box-shadow: var(--shadow);
}

.diagnostic-main {
  padding: 26px;
}

.diagnostic-main h2 {
  margin-bottom: 10px;
  max-width: 18ch;
}

.diagnostic-main p {
  margin-bottom: 16px;
  color: #efd0be;
  max-width: 62ch;
}

.diagnostic-checklist {
  margin: 12px 0 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.diag-item {
  border: 1px solid rgba(255, 173, 133, 0.24);
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.5);
  color: #f3d8c9;
  font-size: 0.94rem;
  line-height: 1.42;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.diag-item:hover {
  border-color: rgba(255, 144, 86, 0.45);
}

.diag-item input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: #ff7a2f;
}

.diag-item:has(input:checked) {
  border-color: rgba(255, 122, 47, 0.65);
  background: rgba(255, 122, 47, 0.12);
  transform: translateY(-1px);
}

.diagnostic-result-card {
  border: 1px solid rgba(255, 173, 133, 0.28);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(15, 15, 15, 0.85), rgba(30, 13, 3, 0.4));
  padding: 14px;
  margin-bottom: 16px;
}

.diag-score-label {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ffbf9c;
}

.diag-score-title {
  margin: 0 0 6px;
  font-size: 1.22rem;
  color: #fff4ec;
}

.diag-score-text {
  margin: 0;
  color: #f4d9ca;
  font-size: 0.93rem;
  line-height: 1.5;
}

.diagnostic-result-card.is-watch {
  border-color: rgba(255, 176, 72, 0.55);
}

.diagnostic-result-card.is-urgent {
  border-color: rgba(255, 100, 55, 0.68);
  box-shadow: 0 0 0 1px rgba(255, 100, 55, 0.15), 0 14px 32px rgba(12, 5, 2, 0.34);
}

.diagnostic-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.diagnostic-side {
  padding: 24px;
}

.diagnostic-side-logo {
  width: 92px;
  height: auto;
  margin-bottom: 12px;
  display: block;
}

.diagnostic-side h3 {
  margin-bottom: 12px;
  color: #fff1e7;
}

.diagnostic-side ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.diagnostic-side li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  color: #f2d6c7;
  font-size: 0.96rem;
}

.diagnostic-side li span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 165, 121, 0.36);
  background: rgba(255, 122, 47, 0.12);
  color: #ffcbb0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.diagnostic-note {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 0.88rem;
  color: #ffbf9c;
}

.diagnostic-trust {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.diagnostic-trust span {
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 166, 123, 0.35);
  background: rgba(255, 122, 47, 0.1);
  color: #ffd1b9;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.diagnostic-urgent-card {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 134, 78, 0.52);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 122, 47, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(28, 14, 8, 0.86), rgba(12, 12, 12, 0.86));
  padding: 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.diagnostic-urgent-card h4 {
  margin: 0 0 6px;
  font-size: 1.24rem;
  color: #fff1e8;
}

.diagnostic-urgent-card p {
  margin: 0 0 12px;
  color: #f3d6c5;
  font-size: 0.9rem;
  line-height: 1.45;
}

.diagnostic-urgent-card .btn {
  width: 100%;
  min-height: 50px;
  justify-content: center;
  font-size: 0.96rem;
  font-weight: 700;
  border-radius: 10px;
}

.diagnostic-urgent-card .btn + .btn {
  margin-top: 8px;
}

.diagnostic-urgent-card a.btn-call + a.btn-sms,
.diagnostic-urgent-card a.btn-sms + a.btn-whatsapp {
  margin-left: 0;
}

.diagnostic-urgent-card .btn-primary {
  background: linear-gradient(120deg, #ff7a2f 0%, #ff965e 100%);
  border-color: rgba(255, 189, 155, 0.78);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 122, 47, 0.24);
}

.diagnostic-urgent-card .btn-sms,
.diagnostic-urgent-card .btn-whatsapp {
  background: rgba(18, 18, 18, 0.82);
  border-color: rgba(255, 170, 126, 0.45);
  color: #ffe2d2;
}

.diagnostic-urgent-card .btn:hover {
  border-color: rgba(255, 196, 162, 0.82);
  background: rgba(255, 122, 47, 0.14);
  color: #fff1e8;
}

.diagnostic-response-times {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.diagnostic-response-times p {
  margin: 0;
  color: #f2d7c8;
  font-size: 0.88rem;
}

.diagnostic-response-times strong {
  color: #ffd4bd;
}

@media (max-width: 1020px) {
  .diagnostic-layout {
    grid-template-columns: 1fr;
  }

  .diagnostic-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .diagnostic-main,
  .diagnostic-side {
    padding: 16px;
  }

  .diagnostic-actions {
    flex-direction: column;
  }

  .diagnostic-actions .btn {
    width: 100%;
  }
}

/* ---- FAQ / Zone / Process / CTA / Before-After ---- */
.faq-section .section-head p,
.intervention-section .section-head p,
.process-section .section-head p,
.before-after-section .section-head p {
  max-width: 70ch;
}

.faq-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 122, 47, 0.24);
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.72);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 122, 47, 0.22) 50%, transparent 100%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.faq-item::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 150, 103, 0.28) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff0e5;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.faq-question::after {
  content: "✦";
  color: #ff9f6a;
  font-size: 1.02rem;
  transition: transform 0.35s ease, color 0.35s ease, text-shadow 0.35s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(135deg) scale(1.1);
  color: #ffd2b9;
  text-shadow: 0 0 16px rgba(255, 155, 105, 0.7);
}

.faq-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 16px;
  transform: translateY(-8px) scale(0.985);
  transition: height 0.48s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, padding 0.48s cubic-bezier(0.22, 1, 0.36, 1), transform 0.42s ease;
}

.faq-answer p {
  margin: 0;
  color: #efd3c2;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  opacity: 1;
  padding: 0 16px 14px;
  transform: translateY(0) scale(1);
}

.faq-item.open {
  border-color: rgba(255, 150, 101, 0.55);
  box-shadow: 0 14px 30px rgba(9, 4, 2, 0.38), 0 0 0 1px rgba(255, 150, 101, 0.24);
  transform: translateY(-2px) scale(1.005);
  animation: faqPulse 0.5s ease;
}

.faq-item.open::before {
  opacity: 1;
  animation: faqSweep 0.85s ease;
}

.faq-item.burst::after {
  opacity: 1;
  animation: faqBurst 0.55s ease-out;
}

@keyframes faqSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes faqBurst {
  from {
    opacity: 0.7;
    transform: scale(0.35);
  }
  to {
    opacity: 0;
    transform: scale(1.05);
  }
}

@keyframes faqPulse {
  0% {
    transform: translateY(-2px) scale(1.005);
  }
  50% {
    transform: translateY(-2px) scale(1.012);
  }
  100% {
    transform: translateY(-2px) scale(1.005);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-answer,
  .faq-question::after {
    transition: none;
    animation: none;
  }
}

.intervention-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.intervention-section {
  position: relative;
  overflow: hidden;
}

.intervention-section::before {
  content: "";
  position: absolute;
  inset: -25% -15%;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 122, 47, 0.1), transparent 35%),
    radial-gradient(circle at 78% 78%, rgba(255, 165, 122, 0.08), transparent 38%);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.intervention-main,
.intervention-cities,
.intervention-map-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  background: linear-gradient(155deg, rgba(15, 15, 15, 0.96), rgba(10, 10, 10, 0.92));
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px);
}

.intervention-main {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intervention-main h2 {
  margin-bottom: 10px;
  max-width: 24ch;
  text-align: center;
}

.intervention-main p {
  max-width: 56ch;
  color: #efd4c6;
  margin-bottom: 14px;
  text-align: center;
}

.intervention-map-card {
  padding: 10px;
  display: grid;
  gap: 10px;
}

.intervention-map-card iframe {
  width: 100%;
  min-height: 270px;
  border-radius: 12px;
  border: 0;
}

.intervention-map-card p {
  margin: 0;
  color: #efcfbb;
  font-size: 0.88rem;
}

.intervention-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 162, 116, 0.45);
  color: #ffd7c2;
  background: rgba(255, 122, 47, 0.11);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.intervention-map-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 162, 116, 0.68);
  background: rgba(255, 122, 47, 0.18);
}

.intervention-cities {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 8px;
}

.intervention-cities.seo-cities-hidden {
  display: none;
}

.intervention-cities span {
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 166, 122, 0.35);
  background: rgba(255, 122, 47, 0.12);
  color: #ffd2bc;
  font-size: 0.82rem;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.intervention-section.visible::before {
  opacity: 0.45;
  transform: scale(1);
}

.intervention-section.visible .intervention-main {
  animation: interventionPanelIn 0.65s ease forwards;
}

.intervention-section.visible .intervention-cities {
  animation: interventionPanelIn 0.65s 0.12s ease forwards;
}

.intervention-section.visible .intervention-map-card {
  animation: interventionPanelIn 0.65s 0.12s ease forwards;
}

.intervention-section.visible .intervention-cities span {
  animation: interventionChipIn 0.45s ease forwards;
}

.intervention-section.visible .intervention-cities span:nth-child(2) { animation-delay: 0.05s; }
.intervention-section.visible .intervention-cities span:nth-child(3) { animation-delay: 0.1s; }
.intervention-section.visible .intervention-cities span:nth-child(4) { animation-delay: 0.15s; }
.intervention-section.visible .intervention-cities span:nth-child(5) { animation-delay: 0.2s; }
.intervention-section.visible .intervention-cities span:nth-child(6) { animation-delay: 0.25s; }
.intervention-section.visible .intervention-cities span:nth-child(7) { animation-delay: 0.3s; }
.intervention-section.visible .intervention-cities span:nth-child(8) { animation-delay: 0.35s; }
.intervention-section.visible .intervention-cities span:nth-child(9) { animation-delay: 0.4s; }
.intervention-section.visible .intervention-cities span:nth-child(10) { animation-delay: 0.45s; }
.intervention-section.visible .intervention-cities span:nth-child(11) { animation-delay: 0.5s; }
.intervention-section.visible .intervention-cities span:nth-child(12) { animation-delay: 0.55s; }

.intervention-cities span:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 167, 122, 0.58);
  box-shadow: 0 10px 22px rgba(10, 5, 3, 0.28);
}

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

@keyframes interventionChipIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intervention-section::before,
  .intervention-main,
  .intervention-map-card,
  .intervention-cities,
  .intervention-cities span {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.process-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.process-section {
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 122, 47, 0.14), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(255, 170, 130, 0.1), transparent 38%);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.process-step {
  border-radius: 14px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  background: rgba(11, 11, 11, 0.78);
  padding: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 168, 127, 0.36);
  background: rgba(255, 122, 47, 0.1);
  color: #ffc8aa;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.process-step h3 {
  margin: 10px 0 6px;
  color: #fff0e6;
  font-size: 1.02rem;
}

.process-step p {
  margin: 0;
  color: #ecd1c3;
  font-size: 0.9rem;
  line-height: 1.5;
}

.process-section.visible::before {
  opacity: 0.6;
  transform: scale(1);
}

.process-section.visible .process-step {
  animation: processStepIn 0.62s ease forwards;
}

.process-section.visible .process-step:nth-child(2) {
  animation-delay: 0.1s;
}

.process-section.visible .process-step:nth-child(3) {
  animation-delay: 0.2s;
}

.process-section.visible .process-step:nth-child(4) {
  animation-delay: 0.3s;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 162, 118, 0.56);
  box-shadow: 0 14px 32px rgba(10, 4, 2, 0.34);
}

.process-step:hover span {
  border-color: rgba(255, 170, 125, 0.58);
  background: rgba(255, 122, 47, 0.17);
  box-shadow: 0 0 0 1px rgba(255, 165, 121, 0.2), 0 0 18px rgba(255, 122, 47, 0.26);
}

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

.final-cta-box {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 47, 0.28);
  padding: 24px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 122, 47, 0.2), transparent 35%),
    linear-gradient(155deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.92));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.final-cta-box h2 {
  margin-bottom: 8px;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-box p {
  margin: 0;
  color: #efcfbc;
  text-align: center;
}

.final-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.before-after-section .section-head {
  margin-bottom: 14px;
}

.compare-widget {
  border-radius: 16px;
  border: 1px solid rgba(255, 122, 47, 0.24);
  padding: 14px;
  background: linear-gradient(160deg, rgba(16, 16, 16, 0.94), rgba(8, 8, 8, 0.9));
  box-shadow: var(--shadow);
}

.compare-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: clamp(300px, 44vw, 520px);
  --compare-pos: 50%;
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.compare-before {
  object-position: 50% 56%;
  filter: grayscale(0.95) brightness(0.48) contrast(1.08);
}

.compare-after {
  object-position: 50% 56%;
  clip-path: inset(0 calc(100% - var(--compare-pos)) 0 0);
  filter: none;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos);
  width: 2px;
  background: #ffd6bf;
  box-shadow: 0 0 0 1px rgba(13, 13, 13, 0.35);
  transform: translateX(-1px);
}

.compare-handle::after {
  content: "< >";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(255, 183, 143, 0.5);
  background: rgba(22, 22, 22, 0.94);
  color: #ffbf9e;
  min-width: 46px;
  min-height: 28px;
  display: grid;
  place-items: center;
  letter-spacing: 0.08em;
  font-size: 0.65rem;
  font-weight: 700;
}

.compare-tag {
  position: absolute;
  top: 10px;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 183, 145, 0.45);
  background: rgba(16, 16, 16, 0.86);
  color: #ffd6c1;
  font-size: 0.75rem;
  font-weight: 700;
}

.compare-tag.before {
  left: 10px;
}

.compare-tag.after {
  right: 10px;
}

.compare-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-note {
  margin: 12px 2px 0;
  color: #ecccba;
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-method-grid,
  .services-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .realisations-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .realisations-method-grid::before {
    display: none;
  }

  .realisations-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chantier-reportage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-tips-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1020px) {
  .intervention-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .services-hero-shell {
    padding: 18px 16px;
  }

  .services-hero-phone {
    width: 100%;
    min-height: 48px;
    font-size: 1.2rem;
  }

  .services-hero-shell h1,
  .services-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .services-hero-quick {
    justify-content: center;
  }

  .intervention-main,
  .intervention-cities,
  .final-cta-box {
    padding: 16px;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-hero-split,
  .services-cta-box {
    padding: 16px;
  }

  .services-hero-split {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .services-hero-left {
    text-align: center;
  }

  .services-hero-left h1,
  .services-hero-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .services-catalog-grid,
  .services-method-grid,
  .services-choice-grid {
    grid-template-columns: 1fr;
  }

  .realisations-grid,
  .realisations-method-grid,
  .realisations-hero-stats {
    grid-template-columns: 1fr;
  }

  .realisations-gallery-grid,
  .realisations-photos {
    grid-template-columns: 1fr;
  }

  .chantier-reportage-grid {
    grid-template-columns: 1fr;
  }

  .chantier-reportage-item .chantier-reportage-photo,
  .chantier-reportage-item:not(.chantier-reportage-item--wide) .chantier-reportage-photo {
    aspect-ratio: 4 / 3;
  }

  .services-catalog-badges span {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }

  .services-hero-actions,
  .services-cta-actions {
    flex-direction: column;
  }

  .services-hero-actions .btn,
  .services-cta-actions .btn,
  .service-detail-actions .btn,
  .service-detail-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .realisations-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-hero-actions {
    justify-content: center;
  }

  .services-cta-points span {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
  }

  .service-detail-cta {
    padding: 16px;
  }

  .service-detail-shell,
  .service-warning {
    padding: 16px;
  }

  .realisations-hero,
  .realisations-cta-box {
    padding: 16px;
  }
}

@media (max-width: 680px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-v3-hero-content h1 {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
  }

  .contact-v3-hero-content p,
  .contact-v3-quick-card p,
  .contact-v3-process-grid p,
  .contact-v3-aside-card p {
    font-size: 0.95rem;
  }

  .contact-v3-form textarea {
    min-height: 130px;
  }

  .trust-icon {
    font-size: 0.64rem;
    padding: 0 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-hero-shell,
  .services-hero-phone,
  .services-hero-shell h1,
  .services-hero-lead,
  .services-hero-quick,
  .services-hero-shell .services-hero-actions {
    animation: none !important;
  }

  .services-hero-quick span,
  .services-hero-shell .services-hero-actions .btn {
    transition: none !important;
  }

  .services-hero-split,
  .services-hero-split::before,
  .services-hero-right article,
  .services-hero-right article::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .process-section::before,
  .process-step {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* =====================================================
   MOBILE OVERHAUL - BEAUTIFUL, CLEAR, CONVERSION READY
   ===================================================== */
@media (max-width: 900px) {
  /* Global rhythm and readability */
  body {
    font-size: 16px;
  }

  .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .section-head h2,
  .hero-content h1 {
    line-height: 1.16;
  }

  .section-head p,
  .hero-content p {
    line-height: 1.5;
  }

  /* Swipe hint: makes carousel behavior obvious */
  .specialties-section .section-head::after,
  .testimonials-section .section-head::after,
  .services-catalog-head::after,
  .services-choice-head::after,
  .realisations-list-section .section-head::after,
  .realisations-gallery-section .section-head::after {
    content: "Glissez pour voir plus >";
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-top: 10px;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 176, 136, 0.55);
    background: linear-gradient(120deg, rgba(255, 122, 47, 0.2), rgba(14, 14, 14, 0.7));
    color: #ffd5bf;
    font-family: "Sora", "Space Grotesk", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: mobileSwipeHint 1.9s ease-in-out infinite;
  }

  @keyframes mobileSwipeHint {
    0%, 100% {
      transform: translateX(0);
      box-shadow: 0 0 0 rgba(255, 122, 47, 0);
    }
    50% {
      transform: translateX(3px);
      box-shadow: 0 10px 20px rgba(255, 122, 47, 0.2);
    }
  }

  /* Unified horizontal carousels */
  .home-page .specialties-section .service-board,
  .services-page .services-catalog-grid,
  .services-page .services-choice-grid,
  .realisations-page .realisations-grid,
  .realisations-page .realisations-gallery-grid,
  .reviews-viewport {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding: 2px 2px 10px;
    border-radius: 14px;
    scroll-padding-left: 2px;
  }

  .home-page .specialties-section .service-board > *,
  .services-page .services-catalog-grid > *,
  .services-page .services-choice-grid > *,
  .realisations-page .realisations-grid > *,
  .realisations-page .realisations-gallery-grid > * {
    flex: 0 0 88% !important;
    min-width: 88% !important;
    max-width: 88% !important;
    scroll-snap-align: start;
  }

  .reviews-track {
    display: flex;
    gap: 12px;
    width: auto !important;
    transition: none !important;
    transform: none !important;
  }

  .reviews-track .testimonial-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: start;
    min-height: 240px;
    aspect-ratio: auto;
  }

  .reviews-nav {
    display: none !important;
  }

  /* Orange/black premium scrollbars */
  .home-page .specialties-section .service-board::-webkit-scrollbar,
  .services-page .services-catalog-grid::-webkit-scrollbar,
  .services-page .services-choice-grid::-webkit-scrollbar,
  .realisations-page .realisations-grid::-webkit-scrollbar,
  .realisations-page .realisations-gallery-grid::-webkit-scrollbar,
  .reviews-viewport::-webkit-scrollbar {
    height: 6px;
  }

  .home-page .specialties-section .service-board::-webkit-scrollbar-track,
  .services-page .services-catalog-grid::-webkit-scrollbar-track,
  .services-page .services-choice-grid::-webkit-scrollbar-track,
  .realisations-page .realisations-grid::-webkit-scrollbar-track,
  .realisations-page .realisations-gallery-grid::-webkit-scrollbar-track,
  .reviews-viewport::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
  }

  .home-page .specialties-section .service-board::-webkit-scrollbar-thumb,
  .services-page .services-catalog-grid::-webkit-scrollbar-thumb,
  .services-page .services-choice-grid::-webkit-scrollbar-thumb,
  .realisations-page .realisations-grid::-webkit-scrollbar-thumb,
  .realisations-page .realisations-gallery-grid::-webkit-scrollbar-thumb,
  .reviews-viewport::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(255, 122, 47, 0.9), rgba(255, 186, 150, 0.95));
    border-radius: 999px;
  }

  /* Stronger cards for tap confidence */
  .services-catalog-grid .service-pro-card,
  .services-choice-grid .services-choice-card,
  .realisations-grid .realisations-card,
  .realisations-gallery-item,
  .specialties-section .service-line,
  .testimonial-card {
    border-color: rgba(255, 148, 98, 0.45);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.32);
  }

  /* Footer smaller on mobile */
  .footer {
    margin-top: 16px;
    padding: 14px 0 10px;
  }

  .footer-grid {
    gap: 10px;
  }

  .footer-logo {
    width: 78px;
    margin-bottom: 6px;
  }

  .footer h3 {
    font-size: 0.88rem;
    margin-bottom: 6px;
  }

  .footer a,
  .footer p,
  .footer-credit {
    font-size: 0.79rem;
    line-height: 1.32;
    margin-bottom: 4px;
  }
}

@media (max-width: 560px) {
  .home-page .specialties-section .service-board > *,
  .services-page .services-catalog-grid > *,
  .services-page .services-choice-grid > *,
  .realisations-page .realisations-grid > *,
  .realisations-page .realisations-gallery-grid > * {
    flex-basis: 92% !important;
    min-width: 92% !important;
    max-width: 92% !important;
  }

  .reviews-track .testimonial-card {
    min-height: 225px;
  }
}

/* =====================================================
   MOBILE TUNING - USER REQUEST (5 points)
   ===================================================== */
@media (max-width: 900px) {
  /* 1) Nos specialites: cards bigger */
  .home-page .specialties-section .service-board > * {
    flex-basis: 94% !important;
    min-width: 94% !important;
    max-width: 94% !important;
  }

  .home-page .specialties-section .service-line {
    padding: 18px 16px;
    gap: 12px;
    border-radius: 16px;
  }

  .home-page .specialties-section .service-line h3 {
    font-size: 1.08rem;
    line-height: 1.3;
  }

  .home-page .specialties-section .service-line p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* 2) Notre methode: cleaner card layout */
  .services-page .services-method-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 10px;
  }

  .services-page .services-method-grid article {
    flex: 0 0 94%;
    min-width: 94%;
    max-width: 94%;
    scroll-snap-align: start;
    text-align: left;
    padding: 16px 14px;
    border-radius: 14px;
    border-left: 3px solid rgba(255, 140, 86, 0.82);
    background: linear-gradient(150deg, rgba(18, 18, 18, 0.96), rgba(11, 11, 11, 0.92));
  }

  .services-page .services-method-grid article span {
    margin-bottom: 6px;
  }

  .services-page .services-method-grid article h3 {
    margin: 6px 0 6px;
    font-size: 1.02rem;
  }

  .services-page .services-method-grid article p,
  .services-page .services-method-grid article small {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* 3) Quel service choisir: cards bigger */
  .services-page .services-choice-grid > * {
    flex-basis: 94% !important;
    min-width: 94% !important;
    max-width: 94% !important;
  }

  .services-page .services-choice-card {
    padding: 20px 14px 16px;
    gap: 8px;
    border-radius: 16px;
  }

  .services-page .services-choice-card h3 {
    font-size: 1.1rem;
    line-height: 1.32;
  }

  .services-page .services-choice-card p {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .services-page .choice-index {
    top: 10px;
    right: 10px;
  }

  .services-page .choice-label {
    font-size: 0.68rem !important;
    letter-spacing: 0.07em;
  }

  .services-page .choice-cta {
    font-size: 0.83rem !important;
  }

  /* 4) Chantiers recents: fix vertical page scroll while swiping */
  .realisations-page .realisations-grid {
    touch-action: manipulation !important;
    scroll-snap-type: x proximity !important;
    overscroll-behavior-x: contain;
  }

  .realisations-page .realisations-grid .realisations-card {
    touch-action: auto;
  }

  /* 5) Footer thinner */
  .footer {
    padding: 10px 0 8px !important;
    margin-top: 10px !important;
  }

  .footer-grid {
    gap: 8px !important;
  }

  .footer-logo {
    width: 66px !important;
    margin-bottom: 4px !important;
  }

  .footer h3 {
    font-size: 0.8rem !important;
    margin-bottom: 4px !important;
  }

  .footer a,
  .footer p,
  .footer-credit {
    font-size: 0.73rem !important;
    line-height: 1.28 !important;
    margin-bottom: 2px !important;
  }
}

@media (max-width: 560px) {
  .home-page .specialties-section .service-board > *,
  .services-page .services-method-grid article,
  .services-page .services-choice-grid > * {
    flex-basis: 96% !important;
    min-width: 96% !important;
    max-width: 96% !important;
  }
}

/* =====================================================
   MOBILE FINAL POLISH - CAROUSELS / UX
   ===================================================== */
@media (max-width: 900px) {
  .home-page .specialties-section .service-board,
  .services-page .services-catalog-grid,
  .services-page .services-method-grid,
  .services-page .services-choice-grid,
  .realisations-page .realisations-grid,
  .realisations-page .realisations-gallery-grid,
  .reviews-viewport {
    gap: 14px !important;
    padding: 4px 4px 12px !important;
    scroll-padding-left: 6px;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .home-page .specialties-section .service-board > *,
  .services-page .services-catalog-grid > *,
  .services-page .services-method-grid article,
  .services-page .services-choice-grid > *,
  .realisations-page .realisations-grid > *,
  .realisations-page .realisations-gallery-grid > *,
  .reviews-track .testimonial-card {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    touch-action: pan-x;
  }

  .home-page .specialties-section .service-board > *,
  .services-page .services-catalog-grid > *,
  .services-page .services-method-grid article,
  .services-page .services-choice-grid > *,
  .realisations-page .realisations-grid > *,
  .realisations-page .realisations-gallery-grid > * {
    flex-basis: 92% !important;
    min-width: 92% !important;
    max-width: 92% !important;
  }

  .reviews-track .testimonial-card {
    flex-basis: 94% !important;
    min-width: 94% !important;
    max-width: 94% !important;
  }

  .services-page .services-catalog-grid > .service-pro-card,
  .services-page .services-choice-grid > .services-choice-card,
  .realisations-page .realisations-grid > .realisations-card,
  .realisations-page .realisations-gallery-grid > .realisations-gallery-item,
  .reviews-track .testimonial-card {
    border-radius: 16px;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.34);
  }

  .footer {
    padding: 8px 0 6px !important;
  }
}

@media (max-width: 560px) {
  .home-page .specialties-section .service-board > *,
  .services-page .services-catalog-grid > *,
  .services-page .services-method-grid article,
  .services-page .services-choice-grid > *,
  .realisations-page .realisations-grid > *,
  .realisations-page .realisations-gallery-grid > * {
    flex-basis: 94% !important;
    min-width: 94% !important;
    max-width: 94% !important;
  }

  .reviews-track .testimonial-card {
    flex-basis: 96% !important;
    min-width: 96% !important;
    max-width: 96% !important;
  }
}

/* =====================================================
   HOME MOBILE CLEANUP - FINAL
   ===================================================== */
@media (max-width: 900px) {
  /* 1) Header smaller */
  .top-strip-wrap {
    min-height: 30px !important;
  }

  .top-strip p {
    font-size: 0.64rem !important;
    letter-spacing: 0.03em;
  }

  .nav-wrap {
    min-height: 54px !important;
  }

  .brand-logo {
    width: 82px !important;
  }

  .main-nav {
    top: 58px !important;
  }

  /* 2/4/6) Align and center CTA button groups */
  .home-page .hero-actions,
  .home-page .diagnostic-actions,
  .home-page .final-cta-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
    width: 100%;
  }

  .home-page .hero-actions .btn,
  .home-page .diagnostic-actions .btn,
  .home-page .diagnostic-urgent-card .btn,
  .home-page .final-cta-actions .btn {
    width: min(100%, 360px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .home-page .hero-actions a.btn-call + a.btn-sms,
  .home-page .hero-actions a.btn-sms + a.btn-whatsapp,
  .home-page .diagnostic-actions a.btn-call + a.btn-sms,
  .home-page .diagnostic-actions a.btn-sms + a.btn-whatsapp,
  .home-page .diagnostic-urgent-card a.btn-call + a.btn-sms,
  .home-page .diagnostic-urgent-card a.btn-sms + a.btn-whatsapp,
  .home-page .final-cta-actions a.btn-call + a.btn-sms,
  .home-page .final-cta-actions a.btn-sms + a.btn-whatsapp {
    margin-left: 0 !important;
  }

  /* 3) "Nos specialites" redesigned (no carousel) */
  .home-page .specialties-section .section-head::after {
    display: none !important;
  }

  .home-page .specialties-section .service-board {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px;
    overflow: visible !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .home-page .specialties-section .service-line {
    display: block !important;
    border: 1px solid rgba(255, 146, 96, 0.34) !important;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.92));
    padding: 14px 14px 12px !important;
    transform: none !important;
  }

  .home-page .specialties-section .service-line::before {
    display: none !important;
  }

  .home-page .specialties-section .service-line h3 {
    font-size: 1.04rem !important;
    margin-bottom: 6px !important;
  }

  .home-page .specialties-section .service-line p {
    font-size: 0.92rem !important;
    line-height: 1.48;
  }

  .home-page .specialties-section .service-index {
    margin-bottom: 8px;
  }

  /* 5) Reviews section clearer and visible (no broken carousel) */
  .home-page .testimonials-section .section-head::after {
    display: none !important;
  }

  .home-page .reviews-carousel {
    display: block !important;
  }

  .home-page .reviews-viewport {
    overflow: visible !important;
    display: block !important;
    padding: 0 !important;
    touch-action: auto !important;
  }

  .home-page .reviews-track {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px;
    transform: none !important;
    transition: none !important;
  }

  .home-page .reviews-track .testimonial-card {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    min-height: auto !important;
    aspect-ratio: auto !important;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 153, 104, 0.38);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
  }

  .home-page .reviews-track .testimonial-card:nth-child(n + 5) {
    display: none;
  }

  .home-page .reviews-nav {
    display: none !important;
  }
}

/* =====================================================
   MOBILE CTA ALIGNMENT FIX - GLOBAL
   ===================================================== */
@media (max-width: 900px) {
  a.btn-call + a.btn-sms,
  a.btn-sms + a.btn-whatsapp {
    margin-left: 0 !important;
  }

  .hero-actions,
  .diagnostic-actions,
  .diagnostic-urgent-card,
  .final-cta-actions,
  .services-hero-actions,
  .services-cta-actions,
  .realisations-cta-actions,
  .contact-v3-hero-actions,
  .contact-v3-aside-urgency,
  .contact-v2-hero-actions,
  .contact-v2-cta-actions,
  .about-v2-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: stretch !important;
    gap: 10px !important;
  }

  .hero-actions .btn,
  .diagnostic-actions .btn,
  .diagnostic-urgent-card .btn,
  .final-cta-actions .btn,
  .services-hero-actions .btn,
  .services-cta-actions .btn,
  .realisations-cta-actions .btn,
  .contact-v3-hero-actions .btn,
  .contact-v3-aside-urgency .btn,
  .contact-v2-hero-actions .btn,
  .contact-v2-cta-actions .btn,
  .about-v2-actions .btn {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .contact-v3-hero-stack article {
    width: 100%;
    margin: 0;
  }
}

/* =====================================================
   MOBILE FINAL PASS - ALIGNMENT + CAROUSEL + FOOTER
   ===================================================== */
@media (max-width: 900px) {
  .home-page .reviews-viewport,
  .services-page .services-catalog-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 12px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    touch-action: auto !important;
    padding: 2px 2px 10px !important;
  }

  .home-page .reviews-viewport {
    overflow: hidden !important;
    display: block !important;
    touch-action: pan-x !important;
    padding: 0 !important;
  }

  .home-page .reviews-track .testimonial-card,
  .services-page .services-catalog-grid > * {
    flex: 0 0 92% !important;
    min-width: 92% !important;
    max-width: 92% !important;
    scroll-snap-align: start !important;
  }

  /* Accueil > Nos spécialités: pas de carrousel mobile */
  .home-page .specialties-section .service-board {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    overflow: visible !important;
    touch-action: auto !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-page .specialties-section .service-board > * {
    min-width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .home-page .specialties-section .service-line {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    gap: 12px !important;
    align-items: start !important;
    padding: 18px 16px !important;
  }

  .home-page .specialties-section,
  .home-page .specialties-section .service-board,
  .home-page .specialties-section .service-line,
  .home-page .specialties-section .service-line * {
    touch-action: pan-y !important;
  }

  .home-page .specialties-section .service-chip {
    display: none !important;
  }

  .home-page .reviews-track {
    display: flex !important;
    gap: 8px !important;
    transition: none !important;
    width: max-content !important;
  }

  /* Avis mobile en petite carte (comme avant) */
  .home-page .reviews-track .testimonial-card {
    flex: 0 0 clamp(250px, 78vw, 300px) !important;
    min-width: clamp(250px, 78vw, 300px) !important;
    max-width: clamp(250px, 78vw, 300px) !important;
    min-height: 260px !important;
    aspect-ratio: 1 / 1 !important;
    padding: 12px !important;
  }

  .home-page .reviews-track .testimonial-card:nth-child(n + 5) {
    display: block !important;
  }

  .services-page .service-pro-card {
    min-height: 255px;
    padding: 20px 16px !important;
  }

  .services-page .service-pro-card h3 {
    font-size: 1.18rem !important;
    line-height: 1.32 !important;
  }

  .services-page .service-pro-card p {
    font-size: 1rem !important;
    line-height: 1.52 !important;
  }

  .footer {
    margin-top: 14px !important;
    padding: 14px 0 72px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .footer-grid > div {
    text-align: center !important;
    padding: 0 !important;
  }

  .footer-grid > div:not(:first-child)::before {
    display: none !important;
  }

  .footer-logo {
    width: 76px !important;
    margin: 0 auto 6px !important;
  }

  .footer h3 {
    font-size: 0.83rem !important;
    margin-bottom: 5px !important;
  }

  .footer a,
  .footer p,
  .footer-credit {
    font-size: 0.78rem !important;
    line-height: 1.34 !important;
  }
}

/* Hero mobile: alignement strict des 4 boutons */
@media (max-width: 900px) {
  .home-page .hero-text-only .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    gap: 10px !important;
  }

  .home-page .hero-text-only .hero-actions .btn,
  .home-page .hero-text-only .hero-actions .btn-call,
  .home-page .hero-text-only .hero-actions .btn-sms,
  .home-page .hero-text-only .hero-actions .btn-whatsapp {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .home-page .hero-text-only .hero-actions a.btn-call + a.btn-sms,
  .home-page .hero-text-only .hero-actions a.btn-sms + a.btn-whatsapp {
    margin-left: 0 !important;
  }
}

/* Services mobile: section Prestations sans carrousel */
@media (max-width: 900px) {
  .services-page .services-catalog-head::after {
    display: none !important;
  }

  .services-page .services-catalog-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    overflow: visible !important;
    padding: 0 !important;
    touch-action: pan-y !important;
    scroll-snap-type: none !important;
  }

  .services-page .services-catalog-grid > * {
    min-width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    scroll-snap-align: none !important;
  }

  /* Prestations mobile: cartes plus compactes */
  .services-page .services-catalog-grid .service-pro-card {
    min-height: auto !important;
    padding: 14px 12px !important;
    gap: 8px !important;
  }

  .services-page .services-catalog-grid .service-pro-card h3 {
    font-size: 1.02rem !important;
    line-height: 1.3 !important;
  }

  .services-page .services-catalog-grid .service-pro-card p {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
  }

  /* Scroll vertical toujours possible sous le doigt */
  .services-page .services-catalog-section,
  .services-page .services-catalog-grid,
  .services-page .services-catalog-grid > *,
  .services-page .services-catalog-grid .service-pro-card,
  .services-page .services-catalog-grid .service-pro-card * {
    touch-action: pan-y !important;
  }
}

/* Services mobile: nouveau style pour "Quel service choisir" */
@media (max-width: 900px) {
  .services-page .services-choice-head::after {
    display: none !important;
  }

  .services-page .services-choice-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 2px 2px 10px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x !important;
  }

  .services-page .services-choice-grid > .services-choice-card {
    flex: 0 0 88% !important;
    min-width: 88% !important;
    max-width: 88% !important;
    scroll-snap-align: center !important;
    border-radius: 14px !important;
    padding: 14px 12px !important;
    gap: 6px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28) !important;
    border-color: rgba(255, 150, 105, 0.48) !important;
  }

  .services-page .services-choice-card h3 {
    margin-top: 0 !important;
    font-size: 1rem !important;
    line-height: 1.3 !important;
    padding-right: 0 !important;
  }

  .services-page .services-choice-card p {
    font-size: 0.9rem !important;
    line-height: 1.42 !important;
  }

  .services-page .choice-label {
    font-size: 0.66rem !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 2px !important;
  }

  .services-page .choice-index {
    position: static !important;
    width: 30px !important;
    height: 30px !important;
    margin-left: auto !important;
    margin-bottom: 2px !important;
    font-size: 0.68rem !important;
  }

  .services-page .choice-service {
    margin-top: 0 !important;
  }

  .services-page .choice-cta {
    margin-top: 2px !important;
    min-height: 26px !important;
    font-size: 0.8rem !important;
  }
}

/* Mobile fix: keep these 2 sections swipeable horizontally */
@media (max-width: 900px) {
  .services-page .services-method-section,
  .services-page .services-choice-section {
    touch-action: pan-y !important;
  }

  .services-page .services-method-grid,
  .services-page .services-method-grid article,
  .services-page .services-method-grid article *,
  .services-page .services-choice-grid,
  .services-page .services-choice-grid > .services-choice-card,
  .services-page .services-choice-grid > .services-choice-card * {
    touch-action: pan-x pan-y !important;
  }
}

/* Mobile fix: Galerie chantier (realisations) should allow horizontal swipe + vertical page scroll */
@media (max-width: 900px) {
  .realisations-page .realisations-gallery-grid,
  .realisations-page .realisations-gallery-grid > *,
  .realisations-page .realisations-gallery-item,
  .realisations-page .realisations-gallery-item * {
    touch-action: pan-x pan-y !important;
  }
}
