:root {
  --brand-teal: #00c4c8;
  --brand-blue: #007cf8;
  --brand-teal-dark: #007f8a;
  --brand-blue-dark: #0758ae;
  --brand-navy: #17344d;
  --brand-gradient: linear-gradient(100deg, var(--brand-teal), var(--brand-blue));
  --brand-gradient-dark: linear-gradient(135deg, var(--brand-teal-dark), var(--brand-blue-dark));
  --ink: #252d33;
  --muted: #536973;
  --paper: #f8fcfd;
  --paper-strong: #ffffff;
  --lavender: #effbff;
  --lavender-deep: #d6f1f6;
  --violet: var(--brand-blue);
  --violet-dark: var(--brand-blue-dark);
  --orange: var(--brand-teal);
  --orange-dark: var(--brand-teal-dark);
  --rose: #0b6f8f;
  --green: #1daa61;
  --line: #d6e8ee;
  --shadow: 0 20px 60px rgba(0, 91, 126, 0.12);
  --shadow-soft: 0 12px 32px rgba(0, 91, 126, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --header-height: 78px;
  --font-display: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-body: "Avenir Next", Avenir, Candara, "Trebuchet MS", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(7, 138, 240, 0.09), transparent 25rem),
    radial-gradient(circle at 94% 22%, rgba(8, 197, 189, 0.08), transparent 28rem),
    var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--violet-dark);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--orange-dark);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
}

p,
li,
address,
summary,
a,
button {
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.45rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-compact {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-tint {
  background:
    linear-gradient(135deg, rgba(7, 138, 240, 0.055), rgba(8, 197, 189, 0.045)),
    #fff;
  border-block: 1px solid rgba(7, 138, 240, 0.09);
}

.eyebrow {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--violet-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  background: var(--brand-gradient);
  border-radius: 99px;
  content: "";
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

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

.text-center .lead {
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 900;
  top: 0;
  height: var(--header-height);
  background: rgba(248, 252, 253, 0.94);
  border-bottom: 1px solid rgba(7, 90, 168, 0.11);
  box-shadow: 0 6px 24px rgba(45, 31, 61, 0.05);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  width: min(calc(100% - 36px), var(--max-width));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  height: 64px;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand .brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
  image-rendering: auto;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-copy strong {
  margin-top: 0.2rem;
  color: var(--violet);
  background: var(--brand-gradient);
  background-clip: text;
  font-size: 1.14rem;
  font-weight: 900;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu-trigger,
.menu-close {
  display: inline-flex;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.menu-trigger:hover,
.menu-close:hover {
  color: var(--violet);
  border-color: var(--violet);
  transform: translateY(-1px);
}

.menu-trigger svg,
.menu-close svg {
  width: 22px;
  height: 22px;
}

.menu-backdrop {
  position: fixed;
  z-index: 998;
  inset: 0;
  background: rgba(25, 20, 31, 0.56);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.site-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  width: min(92vw, 430px);
  height: 100dvh;
  padding: 1.25rem clamp(1.4rem, 5vw, 2.4rem) 2rem;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 15% 5%, rgba(8, 197, 189, 0.33), transparent 17rem),
    linear-gradient(155deg, var(--brand-navy) 0%, var(--brand-blue-dark) 58%, var(--brand-teal-dark) 100%);
  box-shadow: 24px 0 70px rgba(0, 64, 96, 0.3);
  overflow-y: auto;
  transform: translateX(-105%);
  visibility: hidden;
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1), visibility 260ms ease;
}

.site-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.menu-head {
  display: flex;
  margin-bottom: 1.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-close {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.menu-close:hover {
  color: #fff;
  border-color: #fff;
}

.menu-nav {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-nav a {
  display: flex;
  padding: 0.58rem 0;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4.5vw, 1.55rem);
  font-weight: 700;
  text-decoration: none;
}

.menu-nav a::after {
  color: rgba(255, 255, 255, 0.55);
  content: "↗";
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.menu-nav a:hover,
.menu-nav a[aria-current="page"] {
  color: #c9fffb;
}

.menu-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 3rem;
  right: max(-12rem, -12vw);
  width: clamp(21rem, 42vw, 40rem);
  height: clamp(21rem, 42vw, 40rem);
  background:
    repeating-radial-gradient(circle at center, transparent 0 26px, rgba(7, 138, 240, 0.06) 27px 29px),
    radial-gradient(circle, rgba(8, 197, 189, 0.12), transparent 65%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.hero h1 span {
  color: var(--violet);
}

.hero-points {
  display: flex;
  margin: 1.5rem 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
}

.hero-points li,
.pill {
  display: inline-flex;
  padding: 0.48rem 0.75rem;
  align-items: center;
  gap: 0.35rem;
  color: #3d3250;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(47, 27, 74, 0.04);
  font-size: 0.91rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.25rem);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 138, 240, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card::before {
  position: absolute;
  top: -10px;
  left: 28px;
  width: 72px;
  height: 20px;
  background: var(--brand-gradient);
  border-radius: 99px;
  content: "";
}

.hero-price {
  display: flex;
  padding-bottom: 1.2rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.hero-price strong {
  color: var(--violet-dark);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8vw, 5.5rem);
  line-height: 0.9;
}

.hero-price span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-number {
  display: block;
  margin: 1.2rem 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.contact-number:hover {
  color: var(--violet);
}

.button-row {
  display: flex;
  max-width: 100%;
  min-width: 0;
  margin-top: 1.4rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button-row > * {
  min-width: 0;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0.76rem 1.12rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  background: var(--brand-gradient-dark);
  border: 0;
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(7, 138, 240, 0.2);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 138, 240, 0.28);
  transform: translateY(-2px);
}

.button-orange {
  background: var(--brand-gradient-dark);
  box-shadow: 0 10px 24px rgba(8, 197, 189, 0.2);
}

.button-whatsapp {
  background: var(--green);
  box-shadow: 0 10px 24px rgba(29, 170, 97, 0.2);
}

.button-ghost {
  color: var(--violet-dark);
  background: #fff;
  border: 1px solid var(--lavender-deep);
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--violet-dark);
  background: var(--lavender);
  box-shadow: none;
}

.button-light {
  color: var(--violet-dark);
  background: #fff;
  box-shadow: none;
}

.button-light:hover {
  color: var(--violet-dark);
  background: #fff7f3;
}

.button-block {
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-credential-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.2rem;
  align-items: stretch;
}

.tariff-feature,
.credential-feature {
  position: relative;
  padding: clamp(1.6rem, 4vw, 2.7rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tariff-feature {
  color: #fff;
  background:
    radial-gradient(circle at 90% 8%, rgba(8, 197, 189, 0.62), transparent 13rem),
    linear-gradient(145deg, var(--brand-navy), var(--brand-blue-dark));
}

.tariff-feature h2,
.tariff-feature .eyebrow,
.tariff-feature a:not(.button) {
  color: #fff;
}

.tariff-number {
  margin: 1.2rem 0 0.75rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 10vw, 7.2rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.comparison-copy {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.credential-feature {
  background:
    radial-gradient(circle at 100% 0%, rgba(7, 138, 240, 0.12), transparent 18rem),
    #fff;
  border: 1px solid var(--lavender-deep);
}

.credential-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--brand-gradient);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
}

.credential-feature h2 {
  max-width: 560px;
  padding-right: 2rem;
}

.source-note {
  margin-top: 1.2rem;
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0.78;
}

.stat {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--violet-dark);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cards-2,
.cards-3,
.cards-4 {
  display: grid;
  gap: 1.2rem;
}

.hero-grid > *,
.price-credential-grid > *,
.cards-2 > *,
.cards-3 > *,
.cards-4 > *,
.split > *,
.photo-collage > *,
.article-layout > *,
.footer-main > *,
.stats-grid > *,
.review-placeholder > *,
.price-box > *,
.consent-banner > * {
  min-width: 0;
}

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

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

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

.card {
  position: relative;
  max-width: 100%;
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  background: var(--lavender);
  border-radius: 14px;
  font-size: 1.3rem;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.link-card {
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.link-card::after {
  display: block;
  margin-top: 1rem;
  color: var(--violet);
  content: "Lire le guide →";
  font-weight: 800;
}

.link-card:hover {
  color: inherit;
  border-color: var(--violet);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.steps {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: process;
  gap: 1rem;
  list-style: none;
}

.step {
  display: grid;
  padding: 1.4rem;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  counter-increment: process;
}

.step::before {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--brand-gradient);
  border-radius: 50%;
  content: counter(process);
  font-weight: 800;
}

.step h3 {
  margin: 0 0 0.35rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  margin: 1.4rem 0 0;
  padding: 0;
  gap: 0.75rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.check-list li::before {
  position: absolute;
  top: 0.82rem;
  left: 1rem;
  content: attr(data-icon);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

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

.photo-frame {
  margin: 0;
  overflow: hidden;
  background: var(--lavender);
  border: 1px solid rgba(7, 138, 240, 0.13);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.photo-frame:first-child {
  transform: none;
}

.photo-frame img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  background:
    radial-gradient(circle at 95% 10%, rgba(8, 197, 189, 0.6), transparent 14rem),
    linear-gradient(145deg, var(--brand-navy), var(--brand-blue-dark));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.location-card h2,
.location-card h3,
.location-card a:not(.button) {
  color: #fff;
}

.location-card p {
  color: rgba(255, 255, 255, 0.84);
}

.city-list {
  display: flex;
  margin: 1.5rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
}

.city-list li {
  padding: 0.45rem 0.72rem;
  color: #4c4058;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.review-placeholder {
  display: grid;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.review-placeholder .stars {
  color: #f5a623;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.google-source-badge {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 91, 126, 0.16);
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 900;
}

.review-source-label {
  margin-bottom: 0.35rem !important;
  color: var(--violet-dark) !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-placeholder p {
  margin: 0;
  color: var(--muted);
}

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

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 5px 18px rgba(0, 91, 126, 0.04);
}

.faq-list details[open] {
  border-color: rgba(0, 124, 248, 0.4);
}

.faq-list summary {
  position: relative;
  padding: 1.15rem 3.2rem 1.15rem 1.2rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  color: var(--violet);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

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

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.cta-band {
  position: relative;
  padding: clamp(2rem, 6vw, 4rem);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(0, 127, 138, 0.98), rgba(7, 88, 174, 0.98)),
    var(--violet);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-band::after {
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 20rem;
  height: 20rem;
  background: rgba(8, 197, 189, 0.38);
  border-radius: 50%;
  content: "";
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
  margin: 0 0 1.2rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li + li::before {
  margin: 0 0.45rem;
  content: "/";
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(2.45rem, 6vw, 4.9rem);
}

.page-hero .lead {
  max-width: 820px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.article-content h2 {
  margin-top: 2.7rem;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin-top: 2rem;
}

.article-content a {
  font-weight: 700;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.sidebar .card + .card {
  margin-top: 1rem;
}

.sidebar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav a {
  display: block;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  text-decoration: none;
}

.notice {
  margin: 1.4rem 0;
  padding: 1.15rem 1.3rem;
  background: #fff6ed;
  border: 1px solid #ffd5c8;
  border-left: 5px solid var(--orange);
  border-radius: 12px;
}

.price-box {
  display: flex;
  max-width: 100%;
  min-width: 0;
  margin: 1.6rem 0;
  padding: 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--lavender);
  border: 1px solid var(--lavender-deep);
  border-radius: var(--radius-md);
}

.price-box strong {
  color: var(--violet-dark);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.legal-content {
  width: min(calc(100% - 40px), 850px);
  margin-inline: auto;
}

.legal-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.legal-content h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.legal-meta {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  margin-top: clamp(4rem, 8vw, 7rem);
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 90% 0%, rgba(8, 197, 189, 0.24), transparent 22rem),
    #12232f;
}

.footer-main {
  display: grid;
  padding: clamp(3rem, 7vw, 5rem) 0;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer h2 {
  font-size: 1.8rem;
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.site-footer address a {
  display: inline-block;
  padding: 0.22rem 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
.site-footer address a:hover {
  color: #fff;
}

.site-footer address {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  padding: 1.2rem 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.cookie-settings {
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.consent-banner {
  position: fixed;
  z-index: 1500;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  width: min(calc(100% - 2rem), 740px);
  max-width: calc(100vw - 2rem);
  margin-inline: auto;
  padding: 1.2rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(24, 14, 37, 0.24);
}

.consent-banner[hidden] {
  display: none;
}

.consent-copy strong {
  display: block;
  margin-bottom: 0.2rem;
}

.consent-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.consent-actions {
  display: flex;
  gap: 0.55rem;
}

.consent-actions .button {
  min-height: 43px;
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
}

.mobile-actions {
  display: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

[hidden] {
  display: none !important;
}

@media (max-width: 940px) {
  .hero-grid,
  .split,
  .article-layout,
  .price-credential-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

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

  .sidebar {
    position: static;
  }

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

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 70px;
    font-size: 16px;
  }

  .container,
  .narrow,
  .legal-content {
    width: min(calc(100% - 28px), var(--max-width));
  }

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

  .topbar {
    width: calc(100% - 24px);
  }

  .brand {
    height: 58px;
  }

  .brand .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy {
    font-size: 0.65rem;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .menu-trigger,
  .menu-close {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .button-row,
  .consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button-row .button {
    width: 100%;
  }

  .site-menu,
  .hero-card,
  .tariff-feature,
  .credential-feature,
  .location-card,
  .review-placeholder,
  .price-box,
  .cta-band,
  .card,
  .sidebar {
    max-width: 100%;
    min-width: 0;
  }

  .stats-grid,
  .cards-2,
  .cards-3,
  .cards-4,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > :first-child {
    grid-column: auto;
  }

  .photo-collage {
    grid-template-columns: 1fr;
  }

  .photo-frame:first-child {
    transform: none;
  }

  .photo-frame img {
    min-height: 270px;
    max-height: 390px;
  }

  .review-placeholder,
  .consent-banner {
    grid-template-columns: 1fr;
  }

  .price-box,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    padding-bottom: 1.5rem;
  }

  .mobile-actions {
    position: fixed;
    z-index: 850;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 70px;
    padding: 8px 10px;
    width: 100%;
    max-width: 100vw;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(34, 24, 46, 0.09);
    backdrop-filter: blur(14px);
  }

  .mobile-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0.45rem 0.25rem;
    border-radius: 11px;
    font-size: 0.75rem;
  }

  .consent-banner {
    right: 8px;
    bottom: 78px;
    left: 8px;
    width: auto;
    max-width: calc(100vw - 16px);
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
  }
}

@media (max-width: 380px) {
  .container,
  .narrow,
  .legal-content {
    width: calc(100% - 20px);
  }

  .site-menu {
    width: 100%;
    padding-inline: 1rem;
  }

  .hero-card,
  .tariff-feature,
  .credential-feature,
  .location-card,
  .review-placeholder,
  .price-box,
  .cta-band,
  .card {
    padding-inline: 1rem;
  }

  .hero-points li,
  .pill,
  .city-list li {
    max-width: 100%;
  }

  .credential-icon {
    position: static;
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
  }

  .credential-feature h2 {
    padding-right: 0;
  }

  .mobile-actions {
    padding-inline: 6px;
    gap: 4px;
  }

  .mobile-actions .button {
    padding-inline: 0.15rem;
    font-size: 0.69rem;
  }
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
