/* =========================================================
   AGR.re — Achats Groupés Réunion
   Design system
   ========================================================= */

:root {
  /* Brand palette */
  --navy: #0F2C4A;
  --navy-900: #081B30;
  --navy-700: #163C63;
  --blue: #1B9CD9;
  --blue-soft: #BFE0F1;
  --orange: #FF6B35;
  --orange-deep: #E0541F;

  /* Neutrals */
  --white: #FFFFFF;
  --beige: #F5F8FB;
  --beige-2: #EDF2F8;
  --line: #E3EAF2;
  --gray: #6B7280;
  --gray-2: #4B5563;
  --ink: #0B1B2E;

  /* Accent (changes with tweaks) */
  --accent: var(--orange);
  --accent-deep: var(--orange-deep);
  --accent-ink: #ffffff;

  /* Type */
  --font-display: "Bricolage Grotesque", "Poppins", system-ui, sans-serif;
  --font-text: "Inter", system-ui, -apple-system, sans-serif;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15,44,74,.06), 0 1px 3px rgba(15,44,74,.04);
  --shadow-md: 0 6px 16px -6px rgba(15,44,74,.12), 0 2px 4px rgba(15,44,74,.05);
  --shadow-lg: 0 24px 48px -16px rgba(15,44,74,.18), 0 8px 16px -8px rgba(15,44,74,.08);
  --shadow-xl: 0 40px 80px -24px rgba(15,44,74,.25);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Typography ---------------------------------------------- */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6.4vw, 76px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(32px, 4.6vw, 52px); line-height: 1.05; font-weight: 700; }
h3 { font-size: clamp(20px, 2.2vw, 24px); line-height: 1.25; font-weight: 600; letter-spacing: -0.015em; }
h4 { font-size: 17px; line-height: 1.3; font-weight: 600; letter-spacing: -0.005em; }
p { margin: 0; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--gray-2); line-height: 1.55; max-width: 64ch; }

/* Utilities */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-text);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--blue);
}
.muted { color: var(--gray); }

/* Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 18px -8px var(--accent);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: var(--accent-deep);
  box-shadow: 0 14px 28px -10px var(--accent);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--wa {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 8px 18px -8px rgba(37,211,102,.6);
}
.btn--wa:hover {
  transform: translateY(-1px);
  background: #1FB855;
  box-shadow: 0 14px 28px -10px rgba(37,211,102,.7);
}
.btn--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}
.btn--light:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Container ------------------------------------------------ */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; }
.section--alt { background: var(--beige); }
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { margin-top: 14px; }
.section__head .lead { margin-top: 18px; }
.section__head--center .lead { margin-left: auto; margin-right: auto; }

/* Navbar --------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-color: var(--line); background: rgba(255,255,255,.95); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 1px var(--line);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__re { color: var(--blue); }
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 15px;
  color: var(--gray-2);
}
.nav__links a:hover { color: var(--navy); }
.nav__cta { display: flex; gap: 10px; }
.nav__cta .btn { padding: 10px 16px; font-size: 14px; }
@media (max-width: 880px) {
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .nav__cta .btn--ghost { display: none; }
}

/* Hero ----------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 6vw, 90px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gray-2);
  font-weight: 500;
}
.hero__pill .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  display: grid; place-items: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
}
.hero__pill b { color: var(--navy); font-weight: 600; }
.hero h1 { margin-top: 22px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 62%, rgba(27,156,217,.22) 62%);
  padding: 0 4px;
}
.hero__sub { margin-top: 22px; color: var(--gray-2); font-size: clamp(17px, 1.6vw, 19px); max-width: 56ch; }
.hero__ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: var(--gray);
}
.hero__avatars { display: flex; }
.hero__avatars > * {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -6px;
  background: var(--blue);
}
.hero__avatars > *:first-child { margin-left: 0; background: var(--navy); }
.hero__avatars > *:nth-child(3) { background: var(--orange); }

.hero__visual {
  position: relative;
  aspect-ratio: 1.05/1;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #FFE7B8 0%, #FFB37A 35%, #FF8E5A 65%, #663665 100%);
  box-shadow: var(--shadow-xl);
}
.hero__visual svg { width: 100%; height: 100%; display: block; }
.hero__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15,44,74,.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
}
.hero__badge .pulse {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,.3);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,.3); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,.15); }
}
.hero__metric {
  position: absolute;
  top: 24px;
  right: 24px;
  background: white;
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
}
.hero__metric .big { font-size: 28px; font-weight: 800; color: var(--orange); letter-spacing: -0.02em; line-height: 1; }
.hero__metric .small { font-size: 12px; color: var(--gray-2); margin-top: 4px; font-family: var(--font-text); font-weight: 500;}

/* Stats bandeau ------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--navy);
  color: white;
  border-radius: var(--r-xl);
  margin-top: clamp(40px, 6vw, 80px);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(27,156,217,.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255,107,53,.10), transparent 45%);
  pointer-events: none;
}
.stat { position: relative; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat__num small { font-size: 0.55em; color: rgba(255,255,255,.7); font-weight: 600; margin-left: 4px; letter-spacing: 0; }
.stat__label { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,.78); font-weight: 500; }
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Generic cards ------------------------------------------- */
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--beige);
  color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .25s ease, color .25s ease;
}
.card:hover .card__icon { background: var(--navy); color: white; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-2); font-size: 15.5px; line-height: 1.55; }
.card__refs {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--gray);
}
.card__refs strong { color: var(--navy); font-weight: 600; }

/* Pour qui grid ------------------------------------------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1080px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .who-grid { grid-template-columns: 1fr; } }

/* Méthode timeline ---------------------------------------- */
.method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 980px) { .method { grid-template-columns: 1fr; } }
.method__steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding .25s ease;
}
.step:last-child { border-bottom: none; }
.step:hover { padding-left: 6px; }
.step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  display: grid; place-items: center;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  flex-shrink: 0;
}
.step.active .step__num,
.step:hover .step__num {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.015em;
  display: flex; align-items: center; gap: 12px;
}
.step__detail {
  margin-top: 8px;
  color: var(--gray-2);
  font-size: 15.5px;
  line-height: 1.55;
}
.method__visual {
  position: sticky;
  top: 100px;
  background: linear-gradient(155deg, #F5F8FB 0%, #E6F0F7 100%);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
}
@media (max-width: 980px) { .method__visual { position: static; } }
.flow-svg { width: 100%; height: auto; }

/* Services ------------------------------------------------ */
.services {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.service {
  grid-column: span 2;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service:nth-child(4) { grid-column: span 2; }
.service:nth-child(5) { grid-column: span 2; }
.service:nth-child(6) { grid-column: span 2; }
.service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.service__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: white;
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.service h3 { margin-bottom: 10px; }
.service p { color: var(--gray-2); font-size: 15.5px; line-height: 1.55; }
@media (max-width: 980px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .service, .service:nth-child(4), .service:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 540px) {
  .services { grid-template-columns: 1fr; }
}

/* Why us -------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.why-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,107,53,.1);
  color: var(--accent);
  display: grid; place-items: center;
}
.why-card h3 { margin-bottom: 8px; }
.why-card p { color: var(--gray-2); font-size: 15px; line-height: 1.55; }

/* Testimonials -------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.testimonial {
  grid-column: span 2;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial:nth-child(4) { grid-column: span 3; }
.testimonial:nth-child(5) { grid-column: span 3; }
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial__logo {
  width: 72px; height: 72px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--beige);
}
.testimonial__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.testimonial__logo--mono { background: var(--navy); padding: 0; }
.testimonial__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  color: var(--navy);
  letter-spacing: -0.01em;
  flex: 1;
}
.testimonial__quote::before { content: "« "; color: var(--blue); }
.testimonial__quote::after { content: " »"; color: var(--blue); }
.testimonial__author { font-size: 14px; color: var(--gray-2); }
.testimonial__author strong { color: var(--navy); font-weight: 600; display: block; font-size: 15px; }
@media (max-width: 980px) {
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .testimonial, .testimonial:nth-child(4), .testimonial:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 540px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* Form ---------------------------------------------------- */
.form-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(27,156,217,.08), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(255,107,53,.06), transparent 50%),
    var(--beige);
}
.form {
  background: white;
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  max-width: 760px;
  margin: 0 auto;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form__row--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 640px) {
  .form__row, .form__row--3 { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.field label .opt { color: var(--gray); font-weight: 400; font-size: 12.5px; }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
  font-family: var(--font-text);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27,156,217,.15);
}
.field textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #E11D48;
  box-shadow: 0 0 0 4px rgba(225,29,72,.08);
}
.field__error {
  font-size: 12.5px;
  color: #E11D48;
  margin-top: 2px;
  display: none;
}
.field.invalid .field__error { display: block; }
.form__submit {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.form__submit .btn { width: 100%; justify-content: center; }
.form__note { font-size: 13px; color: var(--gray); text-align: center; }

.form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form__success.show { display: block; animation: fadeIn .4s ease; }
.form__success svg {
  margin: 0 auto 20px;
  width: 64px; height: 64px;
  color: #16A34A;
}
.form__success h3 { font-size: 28px; margin-bottom: 12px; }

/* FAQ ----------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 26px 0;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--navy);
  letter-spacing: -0.01em;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--navy);
  display: grid; place-items: center;
  transition: transform .3s ease, background .25s ease, color .25s ease;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--accent);
  color: white;
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  color: var(--gray-2);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 26px;
  max-width: 70ch;
}

/* CTA banner ---------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 64px);
  color: white;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(27,156,217,.25), transparent 50%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: white; }
.cta-banner p { color: rgba(255,255,255,.78); font-size: 17px; margin-top: 12px; max-width: 50ch; }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 800px) {
  .cta-banner { grid-template-columns: 1fr; }
}

/* Footer -------------------------------------------------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  padding: 80px 0 32px;
  font-size: 14.5px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: white;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: var(--font-text);
}
.footer p, .footer a { line-height: 1.75; }
.footer a { display: block; transition: color .15s ease; }
.footer a:hover { color: white; }
.footer__brand .brand { color: white; }
.footer__brand p { margin-top: 16px; max-width: 32ch; color: rgba(255,255,255,.6); }
.footer__contact a { display: flex; align-items: center; gap: 10px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer__bottom em {
  font-style: normal;
  color: var(--blue);
  font-weight: 500;
}

/* WhatsApp floating --------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-float__bubble {
  background: white;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  white-space: nowrap;
}
.wa-float:hover .wa-float__bubble { opacity: 1; transform: translateX(0); }
.wa-float__btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.6);
  transition: transform .2s ease;
}
.wa-float__btn:hover { transform: scale(1.05); }

/* Tweaks panel -------------------------------------------- */
.tweaks-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 280px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 18px;
  z-index: 99;
  font-family: var(--font-text);
  display: none;
}
.tweaks-panel.open { display: block; animation: slideUp .25s ease; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.tweaks-panel h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks-panel h4 button {
  background: none; border: none;
  font-size: 18px; line-height: 1;
  color: var(--gray);
  padding: 4px;
}
.tweaks-panel .sub { font-size: 12.5px; color: var(--gray); margin-bottom: 16px; }
.tweak-group { margin-bottom: 16px; }
.tweak-group:last-child { margin-bottom: 0; }
.tweak-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tweak-segment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--beige);
  padding: 4px;
  border-radius: 10px;
}
.tweak-segment button {
  background: none;
  border: none;
  padding: 8px 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-2);
  border-radius: 7px;
  transition: background .15s ease, color .15s ease;
}
.tweak-segment button.active {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

/* Scroll reveal ------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

/* Tweak: hero variants ------------------------------------ */
body[data-hero="minimal"] .hero__visual {
  background: linear-gradient(180deg, #F5F8FB 0%, #E6F0F7 100%);
  box-shadow: var(--shadow-lg);
}
body[data-hero="minimal"] .hero__visual .sky-grad { display: none; }
body[data-hero="minimal"] .hero__visual .ship-shadow { opacity: .3; }

body[data-hero="navy"] .hero__visual {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy) 50%, var(--blue) 100%);
}

/* Tweak: services layout ---------------------------------- */
body[data-services="rows"] .services {
  grid-template-columns: 1fr;
}
body[data-services="rows"] .service,
body[data-services="rows"] .service:nth-child(4),
body[data-services="rows"] .service:nth-child(5),
body[data-services="rows"] .service:nth-child(6) {
  grid-column: span 1;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}
body[data-services="rows"] .service__num { display: none; }
body[data-services="rows"] .service__icon { margin-bottom: 0; }

/* Tweak: accent palette ----------------------------------- */
body[data-accent="blue"] {
  --accent: var(--blue);
  --accent-deep: #1480B5;
}
body[data-accent="navy"] {
  --accent: var(--navy);
  --accent-deep: var(--navy-900);
}

/* Print --------------------------------------------------- */
@media print {
  .nav, .wa-float, .tweaks-panel, .tweaks-toggle { display: none !important; }
}
