:root {
  --bg: #f6f0e3;
  --surface: #ffffff;
  --surface-soft: #f1ebdf;
  --ink: #142238;
  --muted: #4a5b72;
  --line: #c4d0de;
  --brand: #0d3f7a;
  --brand-dark: #082e59;
  --accent: #0b9576;
  --warm: #ce6f3e;
  --radius: 1rem;
  --radius-sm: 0.75rem;
  --shadow: 0 24px 52px rgba(12, 30, 54, 0.16);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(72rem 34rem at 100% -6%, rgba(13, 63, 122, 0.2), transparent 72%),
    radial-gradient(56rem 26rem at 0% 20%, rgba(11, 149, 118, 0.16), transparent 74%),
    radial-gradient(60rem 26rem at 44% 102%, rgba(206, 111, 62, 0.1), transparent 76%),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  --scroll-progress: 0%;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(13, 63, 122, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 149, 118, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 18%, rgba(0, 0, 0, 0.85), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.58;
  background:
    radial-gradient(26rem 26rem at 10% 78%, rgba(13, 63, 122, 0.12), transparent 72%),
    radial-gradient(20rem 20rem at 88% 26%, rgba(206, 111, 62, 0.12), transparent 75%);
}

body > * {
  position: relative;
  z-index: 1;
}

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

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

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

.section {
  padding: 4.4rem 0;
}

.section-photo {
  position: relative;
  overflow: clip;
}

.section-photo > .container {
  position: relative;
  z-index: 1;
}

.section-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.33;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: grayscale(0.24) saturate(1.16) contrast(1.03);
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.92), transparent 95%);
}

.section-photo::after {
  content: "";
  position: absolute;
  width: 17rem;
  height: 22rem;
  right: -5.2rem;
  bottom: -5.4rem;
  border-radius: 1rem;
  pointer-events: none;
  opacity: 0.36;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: grayscale(0.2) saturate(1.06) contrast(1.03);
  transform: rotate(-4deg);
  box-shadow: 0 22px 42px rgba(10, 20, 38, 0.18);
}

.section-photo--services::before {
  background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=70");
}

.section-photo--services::after {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=900&q=70");
}

.section-photo--conversion::before {
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=70");
}

.section-photo--conversion::after {
  left: -4.8rem;
  right: auto;
  bottom: -4.4rem;
  transform: rotate(4deg);
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=900&q=70");
}

.section-photo--contact::before {
  background-image: url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1600&q=70");
}

.section-photo--contact::after {
  background-image: url("https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=900&q=70");
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 0.35rem;
  font-size: 0.82rem;
}

.skip-link:focus-visible {
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--scroll-progress);
  height: 3px;
  z-index: 70;
  background: linear-gradient(90deg, var(--accent), var(--brand), var(--warm));
  box-shadow: 0 0 0.5rem rgba(15, 61, 114, 0.25);
  transition: width 0.08s linear;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.15rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--warm);
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  padding: 0.78rem 1.2rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.btn-solid {
  background: linear-gradient(132deg, #0d3f7a 0%, #1661ab 52%, #0b9576 100%);
  border-color: var(--brand);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(13, 63, 122, 0.28);
}

.btn-solid:hover {
  background: linear-gradient(132deg, #082e59 0%, #105192 52%, #08735c 100%);
  border-color: #082e59;
  box-shadow: 0 14px 30px rgba(8, 46, 89, 0.34);
}

.btn-solid::before {
  content: "";
  position: absolute;
  top: 0;
  left: -32%;
  width: 24%;
  height: 100%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  animation: btnShine 3.2s ease-in-out infinite;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: #b7c8da;
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(232, 243, 255, 0.86);
  border-color: var(--brand);
  color: var(--brand);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: rgba(246, 240, 227, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(11px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(10, 24, 44, 0.11);
}

.header-row {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: var(--brand);
}

.logo-mark {
  width: 2.05rem;
  height: 2.05rem;
  flex: 0 0 auto;
}

.logo-word span {
  color: var(--accent);
}

.menu-toggle {
  display: inline-flex;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
}

.menu-toggle__icon {
  width: 1.35rem;
  height: 0.72rem;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.site-nav {
  position: absolute;
  right: 0;
  top: calc(100% + 0.6rem);
  width: min(22rem, 100%);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 0.78rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  padding: 0.62rem 0.65rem;
  border-radius: 0.4rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav .btn-nav {
  color: var(--brand-dark);
  background: #eaf2ff;
  border: 1px solid #b7c8da;
  margin: 0.2rem 0;
  padding: 0.58rem 0.98rem;
}

.site-nav .btn-nav:hover {
  color: var(--brand-dark);
  background: #ddeafe;
  border-color: var(--brand);
}

.phone-nav {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.62rem !important;
  color: var(--brand) !important;
}

.phone-nav:hover {
  border-color: var(--brand);
}

.lang-switch {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  color: var(--brand) !important;
}

.js .site-nav {
  display: none;
}

.js .site-nav[data-open="true"] {
  display: block;
}

body.menu-open {
  overflow: hidden;
}

main {
  padding-top: 4.8rem;
}

.hero {
  padding-top: 3.3rem;
  position: relative;
  overflow: clip;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.8px);
  opacity: 0.74;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-a {
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle at 30% 30%, rgba(11, 149, 118, 0.42), rgba(11, 149, 118, 0));
  top: 1rem;
  left: -4rem;
}

.orb-b {
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle at 35% 35%, rgba(13, 63, 122, 0.34), rgba(13, 63, 122, 0));
  top: -2rem;
  right: -6rem;
  animation-delay: 1.8s;
}

.orb-c {
  width: 13rem;
  height: 13rem;
  background: radial-gradient(circle at 30% 30%, rgba(206, 111, 62, 0.32), rgba(206, 111, 62, 0));
  bottom: 1rem;
  left: 42%;
  animation-delay: 0.9s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: -0.4rem;
  width: 5.2rem;
  height: 0.28rem;
  background: linear-gradient(90deg, var(--accent), var(--warm), var(--brand));
  border-radius: 999px;
}

.hero-content h1 {
  font-size: clamp(1.95rem, 9vw, 4rem);
  margin-bottom: 1.2rem;
}

.lead {
  max-width: 43ch;
  font-size: 1rem;
  line-height: 1.75;
}

.hero-hook {
  margin-top: 1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  font-weight: 800;
}

.hero-win-list {
  list-style: none;
  margin-top: 0.65rem;
  display: grid;
  gap: 0.42rem;
  max-width: 46ch;
}

.hero-win-list li {
  position: relative;
  padding-left: 1.18rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-win-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.43rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.pill {
  border: 1px solid #b7c8da;
  border-radius: 999px;
  padding: 0.34rem 0.68rem;
  background: rgba(255, 255, 255, 0.88);
  color: #1a304b;
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-actions .btn,
.contact-cta-group .btn,
.conversion-actions .btn {
  width: 100%;
}

.live-points {
  margin-top: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #b9cbdf;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.9), rgba(232, 246, 241, 0.86));
}

.live-points p {
  font-size: 0.73rem;
  color: var(--ink);
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 rgba(10, 138, 107, 0.45);
  animation: livePulse 1.8s infinite;
}

.btn-pulse {
  position: relative;
}

.btn-pulse::after {
  content: "";
  position: absolute;
  inset: -0.18rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 61, 114, 0.3);
  animation: pulseRing 2.2s infinite;
}

.hero-note {
  margin-top: 0.85rem;
  font-size: 0.84rem;
}

.hero-note a {
  color: var(--brand);
  font-weight: 700;
}

.countup {
  display: inline-block;
  min-width: 1.9ch;
}

.hero-metrics {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
}

.hero-metrics div {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f6faff 100%);
  padding: 0.88rem 0.88rem 0.95rem;
  box-shadow: 0 8px 22px rgba(14, 35, 62, 0.08);
}

.hero-metrics dt {
  font-family: var(--font-display);
  font-size: 1.58rem;
  color: var(--brand);
  margin-bottom: 0.35rem;
}

.hero-metrics dd {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.panel-body {
  padding: 1.12rem;
}

.panel-body h2 {
  font-size: 1.18rem;
  margin-bottom: 0.72rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #f1ebdf 0%, #edf4ff 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.trust-grid p {
  font-size: 0.92rem;
  line-height: 1.72;
}

.method-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(44rem 24rem at 6% 8%, rgba(13, 63, 122, 0.08), transparent 68%),
    radial-gradient(36rem 20rem at 100% 100%, rgba(11, 149, 118, 0.07), transparent 70%),
    linear-gradient(120deg, #f1ebdf 0%, #edf4ff 100%);
}

.process-intro {
  max-width: 72ch;
}

.quickwins {
  padding-top: 3.2rem;
}

.quickwins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.quickwin-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1rem 1.05rem;
  box-shadow: 0 12px 28px rgba(11, 24, 42, 0.09);
}

.quickwin-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.42rem;
}

.quickwin-card p {
  font-size: 0.86rem;
  line-height: 1.65;
}

.js .has-tilt {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.js .has-tilt:hover {
  box-shadow: 0 18px 34px rgba(12, 23, 41, 0.12);
  border-color: rgba(15, 61, 114, 0.35);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.9rem);
}

.section-head p {
  font-size: 0.92rem;
  line-height: 1.75;
}

.service-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-start;
}

.service-head-actions .btn {
  width: 100%;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
  box-shadow: 0 10px 24px rgba(14, 32, 56, 0.07);
}

.service-card h3 {
  font-size: 1.06rem;
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.68;
}

.service-card span {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  color: var(--accent);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.offer-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  height: 100%;
  box-shadow: 0 10px 24px rgba(14, 32, 56, 0.07);
}

.offer-card h3 {
  font-size: 1.18rem;
  min-height: 2.35rem;
  display: flex;
  align-items: flex-end;
}

.offer-desc {
  font-size: 0.86rem;
  line-height: 1.66;
  min-height: 0;
}

.offer-meta {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}

.offer-meta strong {
  color: var(--ink);
}

.offer-price {
  font-family: var(--font-display);
  font-size: clamp(1.62rem, 2.25vw, 2rem);
  color: var(--brand);
  line-height: 1.2;
  min-height: 2.2rem;
  display: flex;
  align-items: flex-end;
}

.offer-subtitle {
  margin-top: 0.15rem;
  font-size: 0.84rem;
  color: var(--ink);
  font-weight: 800;
}

.offer-includes {
  list-style: none;
  display: grid;
  gap: 0.42rem;
  flex: 1 1 auto;
}

.offer-includes li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.83rem;
  line-height: 1.56;
  color: var(--muted);
}

.offer-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--accent);
  font-weight: 700;
}

.offer-card .btn {
  margin-top: 0.85rem;
  width: 100%;
  min-height: 3.45rem;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-size: 0.79rem;
  padding-inline: 0.75rem;
}

.offer-disclaimer {
  margin-top: 1rem;
  font-size: 0.84rem;
  line-height: 1.62;
  color: var(--muted);
}

.offer-actions {
  margin-top: 1rem;
}

.conversion-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(130deg, rgba(13, 63, 122, 0.19), rgba(11, 149, 118, 0.09) 52%, rgba(206, 111, 62, 0.1));
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.conversion-grid h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  margin-bottom: 0.55rem;
}

.conversion-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: start;
}

.process-intro h2 {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  margin-bottom: 0.65rem;
}

.process-intro p {
  font-size: 0.94rem;
  line-height: 1.72;
}

.step-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  counter-reset: step;
}

.step-card {
  counter-increment: step;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: var(--radius-sm);
  border-top: 3px solid rgba(13, 63, 122, 0.38);
  padding: 1rem;
  position: relative;
  box-shadow: 0 10px 24px rgba(12, 30, 54, 0.09);
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  right: 0.75rem;
  top: 0.68rem;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #e7f0ff;
  border: 1px solid #b7c8da;
  font-family: var(--font-display);
  color: var(--brand);
  opacity: 0.92;
  font-size: 0.84rem;
}

.step-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.42rem;
  padding-right: 2.3rem;
}

.step-card p {
  font-size: 0.82rem;
  line-height: 1.6;
}

.local-seo {
  padding-top: 1rem;
}

.local-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 1.2rem;
  box-shadow: 0 12px 26px rgba(14, 34, 58, 0.09);
}

.local-panel h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.3rem);
  margin-bottom: 0.65rem;
}

.local-panel p {
  font-size: 0.94rem;
  line-height: 1.72;
}

.local-panel a {
  color: var(--brand);
  font-weight: 700;
}

.local-tags {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.local-tags li {
  border: 1px solid var(--line);
  background: linear-gradient(120deg, #f4efe4 0%, #eef5ff 100%);
  border-radius: 999px;
  padding: 0.35rem 0.64rem;
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 700;
}

.faq-wrap .section-head {
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.62rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 0.82rem 0.9rem;
  box-shadow: 0 8px 20px rgba(12, 31, 54, 0.07);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 700;
  position: relative;
  padding-right: 1.2rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brand);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.68;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.95rem, 4vw, 2.9rem);
  margin-bottom: 0.7rem;
}

.contact-copy p {
  font-size: 0.95rem;
  line-height: 1.72;
  max-width: 42ch;
}

.contact-cta-group {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.contact-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 0.72rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.62rem;
}

.field {
  display: grid;
  gap: 0.34rem;
}

.field span {
  font-size: 0.64rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.field input,
.field textarea,
.field select {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--ink);
  padding: 0.66rem 0.74rem;
  font-size: 0.9rem;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.76rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(238, 245, 255, 0.84));
  padding: 1.7rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.footer-logo {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.footer-logo .logo-mark {
  width: 1.72rem;
  height: 1.72rem;
}

.footer-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.footer-hotline {
  margin-top: 0.45rem;
  font-size: 0.82rem;
}

.footer-hotline a {
  color: var(--brand);
  font-weight: 700;
}

.footer-nav {
  display: grid;
  gap: 0.35rem;
}

.footer-nav a {
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

.page-simple {
  padding-top: 4.8rem;
}

.page-hero {
  padding-bottom: 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-simple[data-service-bg="mediation"],
.page-simple[data-service-bg="digital"] {
  --service-bg-image: url("/assets/img/mediation-numerique.jpg?v=20260303-2355");
  --service-bg-position: center 42%;
  --service-bg-tint: rgba(11, 149, 118, 0.24);
  --service-bg-tint-soft: rgba(13, 63, 122, 0.14);
}

.page-simple[data-service-bg="ia"],
.page-simple[data-service-bg="ai"] {
  --service-bg-image: url("/assets/img/sensibilisation_ia.jpg?v=20260303-2355");
  --service-bg-position: center 40%;
  --service-bg-tint: rgba(13, 63, 122, 0.3);
  --service-bg-tint-soft: rgba(34, 104, 178, 0.16);
}

.page-simple[data-service-bg="entrepreneuriat"],
.page-simple[data-service-bg="entrepreneurship"] {
  --service-bg-image: url("/assets/img/sensibilisation_entrepreneuriat.jpg?v=20260304-0022");
  --service-bg-position: center 44%;
  --service-bg-tint: rgba(206, 111, 62, 0.28);
  --service-bg-tint-soft: rgba(11, 149, 118, 0.14);
}

.page-simple[data-service-bg] .page-hero {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(169, 188, 209, 0.55);
  padding-bottom: 1.9rem;
}

.page-simple[data-service-bg] .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--service-bg-image);
  background-position: var(--service-bg-position, center);
  background-size: cover;
  opacity: 0.4;
  filter: saturate(1.08) contrast(1.03);
  z-index: 0;
}

.page-simple[data-service-bg] .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(42rem 20rem at 18% 28%, var(--service-bg-tint), transparent 72%),
    radial-gradient(38rem 18rem at 84% 78%, var(--service-bg-tint-soft), transparent 74%),
    linear-gradient(110deg, rgba(246, 240, 227, 0.56) 0%, rgba(246, 240, 227, 0.68) 56%, rgba(246, 240, 227, 0.8) 100%);
  z-index: 0;
}

.page-simple[data-service-bg] .page-hero > .container {
  position: relative;
  z-index: 1;
}

.services-catalog {
  padding-top: 1rem;
}

.services-catalog .container {
  display: grid;
  gap: 1rem;
}

.service-switch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.page-simple[data-service-bg] .services-catalog {
  padding-top: 0.35rem;
}

.page-simple[data-service-bg] .service-switch {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(169, 188, 209, 0.55);
  border-radius: var(--radius);
  padding: 0.72rem;
  background: rgba(255, 255, 255, 0.56);
}

.page-simple[data-service-bg] .service-switch::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--service-bg-image);
  background-position: var(--service-bg-position, center);
  background-size: cover;
  opacity: 0.29;
  filter: saturate(1.08) contrast(1.03);
  z-index: -2;
}

.page-simple[data-service-bg] .service-switch::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(24rem 12rem at 14% 34%, var(--service-bg-tint), transparent 70%),
    linear-gradient(105deg, rgba(246, 240, 227, 0.5) 0%, rgba(246, 240, 227, 0.62) 60%, rgba(246, 240, 227, 0.72) 100%);
  z-index: -1;
}

.service-tab {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.72rem 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.service-tab:hover {
  border-color: var(--brand);
}

.service-tab.is-active {
  color: #fff;
  border-color: var(--brand);
  background: linear-gradient(130deg, #0d3f7a 0%, #1661ab 58%, #0b9576 100%);
  box-shadow: 0 10px 22px rgba(13, 63, 122, 0.3);
}

.service-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(10, 25, 45, 0.09);
}

.service-panel > h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.service-panel > p {
  max-width: 70ch;
  font-size: 0.93rem;
}

.service-extension-layout {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
}

.service-extension-layout .service-extension-box {
  margin-top: 0;
}

.service-facts-list strong {
  color: var(--ink);
}

.service-spec-grid,
.service-pricing-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
}

.service-spec-card,
.service-pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0.95rem;
}

.service-spec-card h3,
.service-pricing-card h3 {
  font-size: 1rem;
  margin-bottom: 0.32rem;
}

.service-spec-card p,
.service-pricing-card p {
  font-size: 0.86rem;
  line-height: 1.65;
}

.service-price {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.service-pack-intro {
  margin-top: 1rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--accent);
}

.service-pack-for {
  color: var(--ink);
  font-weight: 600;
}

.service-pack-list {
  margin-top: 0.32rem;
  list-style: none;
  display: grid;
  gap: 0.32rem;
}

.service-pack-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.84rem;
  line-height: 1.52;
  color: var(--muted);
}

.service-pack-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: var(--accent);
  font-weight: 700;
}

.service-extension-box {
  margin-top: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, #f4efe4 0%, #eef5ff 100%);
  padding: 0.95rem;
}

.service-extension-box h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.service-extension-box ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.service-extension-box li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.service-extension-box li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.43rem;
}

.service-page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.service-page-cta .btn {
  width: 100%;
}

.simple-card,
.thank-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.simple-card h2 {
  font-size: 1.22rem;
  margin: 1rem 0 0.4rem;
}

.simple-card h2:first-child {
  margin-top: 0;
}

.simple-card p {
  font-size: 0.94rem;
  line-height: 1.75;
}

.thank-card {
  text-align: center;
  max-width: 780px;
}

.thank-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.7rem;
}

.thank-card p {
  font-size: 0.96rem;
  margin-bottom: 0.9rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

@keyframes pulseRing {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

@keyframes orbFloat {
  0% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-12px) translateX(8px) scale(1.04);
  }
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 138, 107, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(10, 138, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 138, 107, 0);
  }
}

@keyframes btnShine {
  0% {
    left: -32%;
  }
  42% {
    left: 128%;
  }
  100% {
    left: 128%;
  }
}

.live-points {
  border-radius: 0.8rem;
  padding: 0.45rem 0.55rem;
}

.live-points p {
  font-size: 0.7rem;
}

.contact-form-card,
.simple-card,
.thank-card {
  padding: 0.9rem;
}

.section-photo::before {
  opacity: 0.2;
}

.section-photo::after {
  display: none;
}

@media (min-width: 621px) {
  .container {
    width: min(1180px, 92vw);
  }

  .section {
    padding: 4.9rem 0;
  }

  .btn {
    font-size: 0.71rem;
  }

  .live-points {
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
  }

  .live-points p {
    font-size: 0.73rem;
  }

  .contact-form-card {
    padding: 1rem;
  }

  .simple-card,
  .thank-card {
    padding: 1.25rem;
  }

  .hero-actions .btn,
  .contact-cta-group .btn,
  .conversion-actions .btn {
    width: auto;
  }

  .service-head-actions .btn {
    width: auto;
  }

  .trust-grid,
  .field-row,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .service-switch {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .service-page-cta .btn {
    width: auto;
  }

  .section-photo::before {
    opacity: 0.26;
  }

  .section-photo::after {
    display: block;
    width: 13rem;
    height: 17rem;
    right: -4.2rem;
    bottom: -4.2rem;
    opacity: 0.27;
  }

  .section-photo--conversion::after {
    left: -4rem;
    right: auto;
  }
}

@media (min-width: 861px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .site-nav a {
    justify-content: flex-start;
    width: auto;
    font-size: 0.78rem;
    padding: 0.3rem 0.35rem;
  }

  .site-nav .btn-nav {
    margin: 0;
    padding: 0.58rem 0.98rem;
  }

  .js .site-nav {
    display: block;
  }

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

  body.menu-open {
    overflow: auto;
  }

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

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

@media (min-width: 1061px) {
  .section {
    padding: 5.8rem 0;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.2rem;
  }

  .section-head {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem;
  }

  .section-head--services {
    align-items: center;
  }

  .service-head-actions {
    justify-content: flex-end;
  }

  .conversion-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

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

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

  .service-spec-grid,
  .service-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .panel-body h2 {
    font-size: 1.32rem;
  }

  .section-photo::before {
    opacity: 0.33;
  }

  .section-photo::after {
    display: block;
    width: 17rem;
    height: 22rem;
    right: -5.2rem;
    bottom: -5.4rem;
    opacity: 0.36;
  }

  .section-photo--conversion::after {
    left: -4.8rem;
    right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  .js .reveal,
  .js .reveal.in {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .scroll-progress {
    transition: none !important;
  }
}
