/* ==========================================================================
   LEASE CAP — Style minimal premium
   Couleur principale : #142049 (bleu nuit)
   Accent : #C9A961 (or doux)
   ========================================================================== */

:root {
  --navy: #142049;
  --navy-light: #1f2e5c;
  --gold: #C9A961;
  --gold-dark: #a88c4a;
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --text: #1a1a1a;
  --text-soft: #4a5168;
  --text-muted: #8b91a3;
  --border: #e5e7ee;
  --shadow-sm: 0 1px 2px rgba(20, 32, 73, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 32, 73, 0.08);
  --shadow-lg: 0 24px 48px rgba(20, 32, 73, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --transition: 220ms cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Justified body paragraphs — readable, slight rivers tolerance */
.section-subtitle,
.hero__intro,
.advantages__list p,
.step__desc,
.process__cta-text,
.legal p,
.legal li,
.footer__about-text {
  text-align: justify;
  text-justify: inter-word;
  hanging-punctuation: first last;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

section {
  padding: 96px 0;
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-soft);
  max-width: none;
  margin-bottom: 64px;
}

@media (max-width: 1100px) {
  .section-subtitle { max-width: 680px; }
}

/* -----------------------------------------------------------
   HEADER
   ----------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 4px;
  color: var(--navy);
  text-transform: uppercase;
}

.logo__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
}

.logo__accent {
  color: var(--gold-dark);
}

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

.nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
}

.nav__link:hover { color: var(--navy); }

.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover::after { transform: scaleX(1); }

.nav__cta {
  background: var(--navy);
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover { background: var(--navy-light); transform: translateY(-1px); }
.nav__cta::after { display: none; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: background var(--transition);
}
.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy);
  transition: transform var(--transition), top var(--transition);
}
.menu-toggle__bar::before { top: -7px; }
.menu-toggle__bar::after { top: 7px; }

.menu-toggle.active .menu-toggle__bar { background: transparent; }
.menu-toggle.active .menu-toggle__bar::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active .menu-toggle__bar::after  { top: 0; transform: rotate(-45deg); }

/* -----------------------------------------------------------
   HERO
   ----------------------------------------------------------- */
.hero {
  padding: 168px 0 120px;
  background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 600px; }

.hero__title {
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  line-height: 0.95;
  color: var(--navy);
  margin-bottom: 28px;
}

.hero__title span {
  display: inline-block;
  position: relative;
}

.hero__title span::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 8px;
  background: var(--gold);
  opacity: 0.25;
  z-index: -1;
}

.hero__subtitle {
  font-size: 20px;
  color: var(--text-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero__intro {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn--primary {
  background: var(--navy);
  color: white !important;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--navy) !important;
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: white !important;
}

.btn--ghost {
  color: var(--gold-dark) !important;
  border-color: var(--gold);
}
.btn--ghost:hover {
  background: var(--gold);
  color: white !important;
  border-color: var(--gold);
}

.btn__arrow {
  font-size: 16px;
  transition: transform var(--transition);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Visual block */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: rgba(255, 255, 255, 0.95);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.20), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05), transparent 50%);
  pointer-events: none;
}

/* Subtle dotted pattern overlay */
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Top tag — Paris address */
.hero__visual-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
}
.hero__visual-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.5);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(201, 169, 97, 0); }
}

/* Top right — big stat */
.hero__visual-stat {
  position: absolute;
  top: 28px;
  right: 28px;
  text-align: right;
  z-index: 2;
}
.hero__visual-stat-num {
  font-size: 64px;
  font-weight: 600;
  line-height: 0.95;
  color: var(--gold);
  letter-spacing: -2px;
}
.hero__visual-stat-plus {
  font-size: 32px;
  vertical-align: top;
  margin-left: 2px;
  color: var(--gold);
}
.hero__visual-stat-lbl {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  font-weight: 500;
}

/* Center — decorative quote */
.hero__visual-quote {
  position: absolute;
  top: 50%;
  left: 32px;
  right: 32px;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
}
.hero__visual-quote p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  margin: 4px 0;
  letter-spacing: -0.2px;
}
.hero__visual-quote-mark {
  display: block;
  font-family: 'Barlow', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--gold);
  line-height: 0.6;
  opacity: 0.85;
}
.hero__visual-quote-mark--end {
  margin-top: 10px;
  text-align: center;
}

/* Ascending stack of gold lines (growth metaphor) */
.hero__visual-stairs {
  position: absolute;
  bottom: 130px;
  left: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  opacity: 0.55;
}
.hero__visual-stairs span {
  display: block;
  height: 2px;
  width: var(--w);
  background: var(--gold);
  border-radius: 2px;
}

/* Bottom — promise text */
.hero__visual-text {
  position: absolute;
  bottom: 28px;
  left: 32px;
  right: 32px;
  z-index: 2;
}
.hero__visual-text-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.hero__visual-text-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 960px) {
  .hero__visual { aspect-ratio: 16/10; }
  .hero__visual-stat-num { font-size: 48px; }
  .hero__visual-quote p { font-size: 18px; }
  .hero__visual-stairs { bottom: 110px; }
}

/* Hero stats strip */
.hero__stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero__stat-value {
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}
.hero__stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* -----------------------------------------------------------
   EXPERTISE (3 cartes)
   ----------------------------------------------------------- */
.expertise { background: var(--bg-soft); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
}
.card__icon svg { width: 26px; height: 26px; color: var(--gold); }

.card__title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 20px;
}

.card__list {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.card__list li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
}
.card__list li::before {
  content: "—";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.card__cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}
.card__cta::after {
  content: "→";
  transition: transform var(--transition);
}
.card__cta:hover { color: var(--gold-dark); }
.card__cta:hover::after { transform: translateX(4px); }

/* -----------------------------------------------------------
   AVANTAGES
   ----------------------------------------------------------- */
.advantages { background: white; }

.advantages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.advantages__col {
  display: flex;
  flex-direction: column;
}

.advantages__col-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  align-self: flex-start;
}

.advantages__list { list-style: none; }
.advantages__list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.advantages__list li:last-child { border-bottom: none; }

.advantages__list strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.advantages__list p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* -----------------------------------------------------------
   PROCESS
   ----------------------------------------------------------- */
.process {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.process .section-eyebrow { color: var(--gold); }
.process .section-title { color: white; }
.process .section-subtitle { color: rgba(255, 255, 255, 0.7); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.step {
  position: relative;
  padding: 40px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: background var(--transition), border-color var(--transition);
}
.step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
}

.step__num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
}

.step__title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.step__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.process__cta-wrap {
  margin-top: 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__cta-text {
  max-width: 600px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.6;
}

.process .btn--primary {
  background: var(--gold);
  color: var(--navy) !important;
}
.process .btn--primary:hover {
  background: var(--gold-dark);
  color: white !important;
}

/* -----------------------------------------------------------
   CONTACT
   ----------------------------------------------------------- */
.contact { background: var(--bg-soft); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact__info-block {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__info-icon svg { width: 20px; height: 20px; color: var(--navy); }
.contact__info-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact__info-value {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}
.contact__info-value a:hover { color: var(--gold-dark); }

.form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form__label .required { color: var(--gold-dark); }

.form__input,
.form__textarea,
.form__select {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: white;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(20, 32, 73, 0.08);
}

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

.form__submit {
  width: 100%;
  margin-top: 8px;
}

.form__feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.form__feedback.success {
  display: block;
  background: rgba(34, 197, 94, 0.08);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.form__feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* -----------------------------------------------------------
   FOOTER
   ----------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__about { max-width: 360px; }
.footer__logo {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.footer__about-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 18px;
}
.footer__list { list-style: none; }
.footer__list li { margin-bottom: 10px; }
.footer__list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.footer__list a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* -----------------------------------------------------------
   COOKIE BANNER
   ----------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 16px;
}
.cookie-banner.visible { display: flex; }

@media (min-width: 640px) {
  .cookie-banner.visible { flex-direction: row; align-items: center; }
}

.cookie-banner__text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  flex: 1;
}
.cookie-banner__text a { color: var(--navy); text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-banner__btn--primary {
  background: var(--navy);
  color: white;
  border: 1px solid var(--navy);
}
.cookie-banner__btn--primary:hover { background: var(--navy-light); }
.cookie-banner__btn--secondary {
  background: white;
  color: var(--navy);
  border: 1px solid var(--border);
}
.cookie-banner__btn--secondary:hover { border-color: var(--navy); }

/* -----------------------------------------------------------
   LEGAL PAGES
   ----------------------------------------------------------- */
.legal {
  padding: 168px 0 96px;
  max-width: 820px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 40px;
  line-height: 1.1;
}
.legal h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 40px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal p, .legal li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.legal ul { padding-left: 20px; margin-bottom: 16px; }
.legal a { color: var(--navy); text-decoration: underline; }
.legal a:hover { color: var(--gold-dark); }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 32px;
}

/* -----------------------------------------------------------
   RESPONSIVE
   ----------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { aspect-ratio: 16/9; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cards { grid-template-columns: 1fr; }
  .advantages__grid { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .nav { display: none; }
  .nav.active {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
    box-shadow: var(--shadow-md);
  }
  .nav.active .nav__link { padding: 12px 0; font-size: 16px; }
  .nav.active .nav__cta { margin-top: 8px; text-align: center; }
  .menu-toggle { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }
  .form { padding: 28px 24px; }
  .form__row { grid-template-columns: 1fr; }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__cta-group .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
