/* =========================================================
   Viziit Agency — Stylesheet global
   Agence de marketing digital spécialisée tourisme
   ========================================================= */

:root {
  /* Couleurs (charte Viziit) */
  --teal-50:  #eaf7f7;
  --teal-100: #d2eef0;
  --teal-200: #a9dfe2;
  --teal-400: #3cc0c4;
  --teal-500: #0dadb3;
  --teal-600: #0b8f94;
  --teal-700: #0a6e72;
  --teal-900: #0b3336;

  --sage-300: #c3dcae;
  --sage-400: #a3c589;
  --sage-500: #8bb26e;
  --sage-600: #6f9455;

  --ink-900: #12262b;
  --ink-700: #2c4247;
  --ink-500: #587075;
  --ink-300: #8fa3a7;

  --paper: #ffffff;
  --mist: #f5fbfb;
  --mist-2: #eef8f8;
  --line: #e1eeee;

  --font-display: "Poppins", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(11, 51, 54, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 51, 54, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 51, 54, 0.16);

  --t-fast: 0.18s ease;
  --t-base: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink-900);
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }

p { color: var(--ink-700); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-700);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }
.section { padding: 88px 0; }
.section--sm { padding: 56px 0; }
.section--tight { padding: 64px 0; }
.section--mist { background: var(--mist); }
.section--dark {
  background: linear-gradient(160deg, var(--teal-900), var(--teal-700));
  color: #eafcfd;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #ffffff; }
.section--dark p { color: rgba(234, 252, 253, 0.82); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal-600);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section--dark .eyebrow {
  color: #b6f2f2;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.section-head {
  max-width: 700px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--teal-500);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--teal-600); box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-900);
}
.btn--ghost:hover { border-color: var(--teal-500); color: var(--teal-600); }

.btn--on-dark {
  background: #ffffff;
  color: var(--teal-700);
}
.btn--on-dark:hover { background: var(--sage-300); transform: translateY(-2px); }

.btn--outline-on-dark {
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
}
.btn--outline-on-dark:hover { border-color: #ffffff; background: rgba(255,255,255,0.08); }

.btn--sm { padding: 10px 20px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img { height: 40px; width: auto; }

.nav-primary { display: flex; }
.nav-primary ul { display: flex; align-items: center; gap: 2px; }
.nav-primary a {
  display: inline-block;
  padding: 10px 13px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-700);
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-primary a:hover, .nav-primary a[aria-current="page"] {
  background: var(--teal-50);
  color: var(--teal-700);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink-900);
  font-size: 0.92rem;
  white-space: nowrap;
}
.header-phone svg { color: var(--teal-500); flex-shrink: 0; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--paper);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.burger span, .burger span::before, .burger span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink-900);
  position: relative;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.burger span::before { position: absolute; top: -7px; }
.burger span::after { position: absolute; top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 73px 0 0 0;
  background: var(--paper);
  z-index: 99;
  padding: 20px 24px 32px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 15px 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 20px; }

@media (max-width: 1180px) {
  .header-phone span { display: none; }
}

@media (max-width: 900px) {
  .nav-primary { display: none; }
  .burger { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 96px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
}
.hero__art img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(11, 51, 54, 0.86);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__badge b { color: var(--teal-200); }

.hero__eyebrow {
  color: var(--teal-600);
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  color: var(--teal-500);
}
.hero .lede { margin-bottom: 30px; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--ink-500);
}
.hero__trust .dots { display: flex; }
.hero__trust .dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--sage-400);
  border: 2px solid #fff;
  margin-left: -6px;
}
.hero__trust .dots span:first-child { margin-left: 0; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; aspect-ratio: 16/11; }
}

/* Page header (non-home hero) */
.page-hero {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, var(--mist-2), var(--paper));
  text-align: center;
}
.page-hero .eyebrow { margin-inline: auto; }
.page-hero h1 { max-width: 780px; margin: 0 auto 16px; }
.page-hero .lede { max-width: 620px; margin: 0 auto; }
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 20px;
}
.breadcrumbs a:hover { color: var(--teal-600); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-100);
}
.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; margin-bottom: 0; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-600);
}
.card__link svg { transition: transform var(--t-fast); }
.card:hover .card__link svg { transform: translateX(3px); }

.card--service { display: flex; flex-direction: column; }
.card--why { background: var(--mist); border-color: var(--mist); }
.card--why:hover { background: var(--paper); }

/* Numbered / feature list */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink-700);
}
.feature-list .tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ---------- Split section (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split__media { order: 2; }
.split__media img, .split__media .media-box {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.split__media .media-box {
  aspect-ratio: 4/3.2;
  background: linear-gradient(150deg, var(--teal-500), var(--teal-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.split__media .media-box svg { width: 40%; height: 40%; opacity: 0.9; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split__media { order: -1; }
}

/* ---------- Trust logos ---------- */
.trust {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}
.trust__label {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 32px;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  width: 220px;
  flex-shrink: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}
.marquee__track img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; filter: grayscale(1) opacity(0.8); transition: filter var(--t-fast); }
.marquee__track a:hover img { filter: grayscale(0) opacity(1); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 6px 22px;
  background: var(--paper);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.faq details[open] { border-color: var(--teal-200); background: var(--teal-50); }
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.faq summary .plus::before, .faq summary .plus::after {
  content: ""; position: absolute; background: var(--teal-600);
}
.faq summary .plus::before { width: 12px; height: 2px; }
.faq summary .plus::after { width: 2px; height: 12px; }
.faq details[open] summary .plus { transform: rotate(45deg); border-color: var(--teal-400); }
.faq__answer { padding: 0 0 20px; color: var(--ink-700); font-size: 0.98rem; }

/* ---------- Team ---------- */
.team-card {
  text-align: center;
  padding: 34px 22px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid var(--line);
}
.team-card__avatar {
  width: 92px; height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--teal-400), var(--teal-700));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  overflow: hidden;
}
.team-card__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--teal-600); font-weight: 600; font-size: 0.92rem; }

/* ---------- Pricing / Offer cards ---------- */
.offer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-card--featured { border-color: var(--teal-400); box-shadow: var(--shadow-md); }
.offer-card__head {
  padding: 30px 30px 22px;
  border-bottom: 1px solid var(--line);
}
.offer-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-600);
  background: var(--teal-50);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.offer-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
}
.offer-card__price strong { font-family: var(--font-display); font-size: 2.1rem; color: var(--ink-900); }
.offer-card__price span { color: var(--ink-500); font-size: 0.9rem; }
.offer-card__meta {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--ink-500);
  flex-wrap: wrap;
}
.offer-card__meta b { color: var(--ink-900); }
.offer-card__body { padding: 26px 30px 30px; flex: 1; display: flex; flex-direction: column; }
.offer-card__body p { font-size: 0.95rem; }
.offer-card__support {
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.82rem;
  color: var(--ink-500);
}

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--teal-700), var(--teal-500));
  color: #fff;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 460px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--mist);
}
.contact-info__item .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-info__item h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info__item p, .contact-info__item a { font-size: 0.94rem; color: var(--ink-700); }
.contact-info__item a:hover { color: var(--teal-600); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--mist);
  font-size: 0.96rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--teal-400);
  background: var(--paper);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--ink-500); margin-top: 14px; }
.form-status { margin-top: 14px; font-size: 0.92rem; font-weight: 600; display: none; }
.form-status.is-visible { display: block; }
.form-status.success { color: var(--teal-700); }
.form-status.error { color: #b23b3b; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-900);
  color: rgba(234, 252, 253, 0.82);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { color: rgba(234, 252, 253, 0.7); font-size: 0.92rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.footer-social a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col p { font-size: 0.92rem; color: rgba(234, 252, 253, 0.75); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  font-size: 0.84rem;
  color: rgba(234, 252, 253, 0.55);
}
.footer-bottom a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */
.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform var(--t-fast);
}
.float-whatsapp:hover { transform: scale(1.08); }
body.has-cookie-banner .float-whatsapp,
.float-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}

/* ---------- Legal page ---------- */
.legal {
  max-width: 780px;
  margin: 0 auto;
}
.legal h2 { margin-top: 44px; margin-bottom: 14px; font-size: 1.35rem; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--ink-700); font-size: 0.98rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal .updated { color: var(--ink-500); font-size: 0.9rem; margin-bottom: 40px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .two-col-text { grid-template-columns: 1fr; } }

.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.tag {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--mist);
  border: 1px solid var(--line);
  color: var(--ink-700);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--teal-700);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .cta-band { padding: 36px 24px; }
  .split { gap: 28px; }
}

/* ---------- Steps (numbered process) ---------- */
.steps {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.step-card {
  position: relative;
  flex: 1;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}
.step-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--line);
  margin-bottom: 10px;
}
.step-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(150deg, var(--teal-400), var(--teal-700));
}
.step-card:nth-child(2) .step-card__icon { background: linear-gradient(150deg, var(--sage-400), var(--sage-600)); }
.step-card:nth-child(3) .step-card__icon { background: linear-gradient(150deg, var(--teal-500), var(--teal-900)); }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink-300);
}
@media (max-width: 820px) {
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: -6px 0; }
}

/* ---------- Compare table ---------- */
.compare {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare__head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.compare__head > div:first-child { background: transparent; }
.compare__head > div {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
}
.compare__head .col-old { background: var(--mist); color: var(--ink-500); }
.compare__head .col-new { background: var(--teal-500); color: #fff; }
.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
}
.compare__row .label {
  padding: 18px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.compare__row .old, .compare__row .new {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-700);
}
.compare__row .old svg { color: #c4534f; flex-shrink: 0; }
.compare__row .new svg { color: var(--teal-600); flex-shrink: 0; }
@media (max-width: 720px) {
  .compare__head > div:first-child { display: none; }
  .compare__head { grid-template-columns: 1fr 1fr; }
  .compare__row { grid-template-columns: 1fr 1fr; }
  .compare__row .label { grid-column: 1 / -1; background: var(--mist); font-size: 0.9rem; padding: 10px 20px; }
  .compare__row { flex-wrap: wrap; }
}

/* ---------- Pricing (single plan) ---------- */
.pricing {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing__plan {
  background: linear-gradient(160deg, var(--teal-900), var(--teal-700));
  color: #fff;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing__tag {
  align-self: flex-start;
  background: var(--sage-400);
  color: var(--teal-900);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.pricing__price { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; }
.pricing__price span { font-size: 1rem; font-weight: 600; opacity: 0.8; }
.pricing__note { color: rgba(255,255,255,0.75); font-size: 0.92rem; margin-top: 8px; }
.pricing__setup { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.18); }
.pricing__setup strong { font-family: var(--font-display); font-size: 1.5rem; }
.pricing__features { padding: 44px 36px; }
.pricing__features .grid { gap: 20px 24px; }
.pricing__feature { display: flex; gap: 12px; align-items: flex-start; }
.pricing__feature .tick {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.pricing__feature h4 { font-size: 0.96rem; margin-bottom: 2px; }
.pricing__feature p { font-size: 0.86rem; color: var(--ink-500); margin: 0; }
@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; }
}

.addon-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.addon {
  flex: 1;
  min-width: 220px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.addon h4 { font-size: 0.94rem; margin-bottom: 2px; }
.addon p { font-size: 0.82rem; color: var(--ink-500); margin: 0; }
.addon .price { font-family: var(--font-display); font-weight: 700; color: var(--teal-600); white-space: nowrap; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 620px;
  margin-inline: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 26px;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p {
  font-size: 0.9rem;
  color: var(--ink-700);
  margin-bottom: 16px;
}
.cookie-banner p a { color: var(--teal-600); font-weight: 600; }
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__actions .btn { width: 100%; }
}
