/* =========================================================
   ESPACE CONDUITE MONTARGIS — DA basée sur le logo :
   magenta #e5127d · violet #8b2fa8 · orange #f7941d · jaune #ffc933
   ========================================================= */

:root {
  --magenta: #e5127d;
  --violet: #8b2fa8;
  --orange: #f7941d;
  --yellow: #ffc933;
  --bg: #170920;
  --bg-soft: #1f0e2b;
  --bg-card: #251233;
  --text: #f5edf8;
  --muted: #c3aed0;
  --grad: linear-gradient(100deg, var(--violet), var(--magenta) 55%, var(--orange));
  --radius: 22px;
  --font-display: "Unbounded", sans-serif;
  --font-body: "Outfit", sans-serif;
  --font-script: "Caveat", cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- barre de progression ---------- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 4px;
  background: rgba(255,255,255,.06); z-index: 1001;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: var(--grad);
  box-shadow: 0 0 12px var(--magenta);
}

/* ---------- header ---------- */
.header {
  position: fixed; inset: 4px 0 auto 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 48px);
  transition: background .35s, backdrop-filter .35s, padding .35s, box-shadow .35s;
}
.header.scrolled {
  background: rgba(23, 9, 32, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 8px; padding-bottom: 8px;
  box-shadow: 0 6px 30px rgba(0,0,0,.35);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { width: 46px; height: 46px; border-radius: 50%; box-shadow: 0 0 0 2px var(--yellow); }
.brand-name {
  font-family: var(--font-display); font-size: .82rem; font-weight: 800;
  letter-spacing: .04em; line-height: 1.2; display: flex; flex-direction: column;
}
.brand-name em { font-family: var(--font-script); font-style: normal; font-size: 1.15rem; color: var(--yellow); line-height: .9; }
.brand-name small { font-size: .55rem; font-weight: 400; color: var(--muted); letter-spacing: .35em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); }
.nav a:not(.btn) {
  text-decoration: none; font-weight: 500; font-size: .95rem; color: var(--muted);
  position: relative; transition: color .25s;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width .3s;
}
.nav a:not(.btn):hover { color: var(--text); }
.nav a:not(.btn):hover::after { width: 100%; }

.burger { display: none; background: none; border: 0; cursor: pointer; z-index: 1002; }
.burger span {
  display: block; width: 26px; height: 3px; margin: 5px 0; border-radius: 3px;
  background: var(--text); transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- boutons ---------- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn-solid {
  background: var(--grad); color: #fff;
  box-shadow: 0 8px 24px rgba(229, 18, 125, .35);
}
.btn-solid:hover { box-shadow: 0 12px 32px rgba(229, 18, 125, .55); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,.25); color: var(--text);
}
.btn-ghost:hover { border-color: var(--magenta); color: #fff; background: rgba(229,18,125,.12); }
.btn-yellow {
  background: var(--yellow); color: #2a1206; font-weight: 700;
  box-shadow: 0 8px 24px rgba(255, 201, 51, .3);
}
.btn-yellow:hover { box-shadow: 0 12px 34px rgba(255, 201, 51, .5); }
.nav-cta { padding: 10px 20px; font-size: .88rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(120px, 16vh, 170px) clamp(16px, 5vw, 64px) 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
  animation: drift 16s ease-in-out infinite alternate;
}
.blob-1 { width: 55vw; height: 55vw; background: var(--violet); top: -20%; left: -12%; }
.blob-2 { width: 45vw; height: 45vw; background: var(--magenta); bottom: -15%; right: -8%; animation-delay: -5s; opacity: .38; }
.blob-3 { width: 30vw; height: 30vw; background: var(--orange); top: 30%; right: 22%; animation-delay: -10s; opacity: .25; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(6vw, -4vh) scale(1.15); }
}

.hero-inner {
  display: grid; grid-template-columns: 1.15fr 1fr; align-items: center;
  gap: clamp(28px, 5vw, 72px); max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.5rem); font-weight: 800; }
.hero h1 .line { display: block; opacity: 0; transform: translateY(30px); animation: rise .8s .15s forwards cubic-bezier(.2,.7,.3,1); }
.hero h1 .line:nth-child(2) { animation-delay: .35s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.hero-script {
  font-family: var(--font-script); font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--yellow); transform: rotate(-2deg); margin: 14px 0 4px;
  opacity: 0; animation: rise .8s .55s forwards cubic-bezier(.2,.7,.3,1);
}
.hero-sub {
  max-width: 54ch; color: var(--muted); font-size: 1.06rem; margin: 14px 0 30px;
  opacity: 0; animation: rise .8s .7s forwards cubic-bezier(.2,.7,.3,1);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: rise .8s .85s forwards cubic-bezier(.2,.7,.3,1); }

.hero-badges {
  display: flex; gap: clamp(14px, 3vw, 34px); flex-wrap: wrap;
  list-style: none; margin-top: 38px;
  opacity: 0; animation: rise .8s 1s forwards cubic-bezier(.2,.7,.3,1);
}
.hero-badges li { font-size: .88rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-badges strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--text); }
.hero-badges strong span { font-size: .7rem; color: var(--muted); }

/* photo du hero */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: calc(var(--radius) * 1.3);
  opacity: 0; animation: rise .9s .45s forwards cubic-bezier(.2,.7,.3,1);
}
.hero-photo > img:first-child {
  border-radius: calc(var(--radius) * 1.3);
  aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255,255,255,.08);
}
.hero-photo-logo {
  position: absolute; left: -26px; bottom: -26px; width: 104px; height: 104px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--yellow), 0 14px 34px rgba(0,0,0,.5);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-8px); } }
.hero-photo-chip {
  position: absolute; top: 18px; right: -14px;
  background: var(--bg-card); color: var(--text); font-size: .9rem;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.hero-photo-chip strong { font-family: var(--font-display); color: var(--yellow); }

/* route : voiture pilotée par le scroll */
.road { position: relative; height: 130px; margin-top: clamp(30px, 6vh, 60px); overflow: hidden; }
.road-line {
  position: absolute; left: 0; right: 0; bottom: 28px; height: 0;
  border-top: 3px dashed rgba(255, 201, 51, .45);
}
.road-car {
  position: absolute; width: 150px; bottom: 23px; left: 0;
  will-change: transform;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .5));
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--yellow); color: #2a1206;
  padding: 10px 0; overflow: hidden; position: relative; z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.marquee-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: marquee 34s linear infinite;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1100px; margin: clamp(60px, 9vw, 90px) auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.stat-num small { font-size: .5em; }
.stat-label { color: var(--muted); font-size: .92rem; }

/* ---------- sections ---------- */
.section { padding: clamp(70px, 9vw, 110px) clamp(16px, 4vw, 48px); max-width: 1200px; margin: 0 auto; }
.section-alt {
  max-width: none;
  background: var(--bg-soft);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.section-alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.eyebrow {
  font-family: var(--font-script); font-size: 1.7rem; color: var(--orange);
  transform: rotate(-1.5deg); display: inline-block; margin-bottom: 6px;
}
.section-head h2 { font-size: clamp(1.5rem, 3.4vw, 2.4rem); font-weight: 800; }
.section-sub { color: var(--muted); max-width: 62ch; margin: 18px auto 0; }

/* ---------- cards formations ---------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px;
}
.card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 34px 28px; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad); opacity: 0; transition: opacity .35s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(229,18,125,.35);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }
.card-icon {
  font-size: 2rem; width: 66px; height: 66px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(139,47,168,.35), rgba(229,18,125,.25));
  border: 1px solid rgba(255,255,255,.1);
}
.card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }
.card-tag {
  display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--yellow);
  border: 1px solid rgba(255,201,51,.4); border-radius: 999px; padding: 5px 14px;
}

/* ---------- pricing ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; align-items: stretch;
}
.price-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 40px 32px; text-align: center; position: relative;
  border: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.price-card.featured {
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(229,18,125,.25);
  z-index: 1;
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.ribbon {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: var(--yellow); color: #2a1206;
  font-weight: 700; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255,201,51,.4);
}
.price-card h3 { font-size: 1.05rem; }
.price-card h3 span { font-size: .8rem; font-weight: 400; color: var(--muted); font-family: var(--font-body); }
.price {
  font-family: var(--font-display); font-weight: 800; font-size: 3rem;
  margin: 22px 0;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card ul { list-style: none; margin-bottom: 30px; flex: 1; }
.price-card li { padding: 9px 0; color: var(--muted); border-bottom: 1px dashed rgba(255,255,255,.1); font-size: .95rem; }
.price-card li::before { content: "✓ "; color: var(--orange); font-weight: 700; }

.price-table { max-width: 640px; margin: 60px auto 0; text-align: center; }
.price-table h3 { font-size: 1.2rem; margin-bottom: 22px; }
.price-table table { width: 100%; border-collapse: collapse; }
.price-table td {
  padding: 14px 10px; border-bottom: 1px dashed rgba(255,255,255,.12);
  color: var(--muted); text-align: left;
}
.price-table td:last-child {
  text-align: right; font-family: var(--font-display); font-weight: 600; color: var(--yellow);
  white-space: nowrap;
}
.price-note { margin-top: 18px; font-size: .85rem; color: var(--muted); font-style: italic; }
.price-note a { color: var(--yellow); }

/* ---------- financement ---------- */
.finance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.finance-card {
  border-radius: var(--radius); padding: 36px 30px;
  background: linear-gradient(145deg, rgba(139,47,168,.16), rgba(229,18,125,.08));
  border: 1px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden;
  transition: transform .35s, border-color .35s;
}
.finance-card:hover { transform: translateY(-6px); border-color: rgba(255,201,51,.4); }
.finance-num {
  font-family: var(--font-display); font-weight: 800; font-size: 4.4rem;
  position: absolute; top: -14px; right: 10px; opacity: .09; color: var(--yellow);
}
.finance-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.finance-card p { color: var(--muted); font-size: .96rem; }

/* ---------- galerie : carrousel ---------- */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x proximity;
  padding: 6px 6px 12px;
  scrollbar-width: none;
  cursor: grab;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.carousel-track figure {
  flex: 0 0 auto; width: min(72vw, 560px);
  scroll-snap-align: center;
}
.carousel-track img {
  width: 100%; height: clamp(260px, 34vw, 400px); object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.carousel-track figcaption {
  margin-top: 14px; font-size: .95rem; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.carousel-track figcaption::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--grad); flex: none;
}
.carousel-nav { display: flex; justify-content: center; gap: 14px; margin-top: 26px; }
.c-btn {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,.15); color: var(--text);
  display: grid; place-items: center; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s, box-shadow .25s;
}
.c-btn:hover {
  background: var(--grad); color: #fff; border-color: transparent;
  transform: translateY(-2px); box-shadow: 0 10px 24px rgba(229, 18, 125, .4);
}

/* ---------- qualité ---------- */
.quality-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.quality-text p { color: var(--muted); margin: 18px 0; }
.quality-text h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
.quality-text blockquote {
  border-left: 4px solid; border-image: var(--grad) 1;
  padding: 6px 0 6px 22px; margin: 26px 0;
  font-size: 1.12rem; font-style: italic; color: var(--text);
}
.quality-text cite { display: block; margin-top: 10px; font-size: .85rem; color: var(--muted); font-style: normal; }
.rating-line { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: .95rem; }
.stars { color: var(--yellow); letter-spacing: 4px; font-size: 1.2rem; }
.quality-labels { display: flex; flex-direction: column; gap: 34px; align-items: center; }
.label-img { width: 165px; filter: drop-shadow(0 12px 30px rgba(0,0,0,.5)); }
.label-flat { width: 210px; border-radius: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  margin: 0 clamp(16px, 4vw, 48px); padding: clamp(50px, 7vw, 80px) 30px;
  border-radius: calc(var(--radius) * 1.6);
  background: var(--grad);
  text-align: center; position: relative; overflow: hidden;
  max-width: 1104px; margin-left: auto; margin-right: auto;
  color: #fff;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,.12), transparent 40%);
}
.cta-band h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); position: relative; }
.cta-band p { margin: 14px 0 30px; position: relative; opacity: .92; }
.cta-band .btn { position: relative; font-size: 1.1rem; padding: 16px 38px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 5vw, 60px); }
.contact-info { display: grid; gap: 26px; align-content: center; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-ico {
  font-size: 1.4rem; width: 56px; height: 56px; flex: none;
  display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(135deg, rgba(139,47,168,.35), rgba(247,148,29,.2));
  border: 1px solid rgba(255,255,255,.1);
}
.contact-item h3 { font-size: .95rem; margin-bottom: 4px; }
.contact-item p { color: var(--muted); font-size: .95rem; }
.contact-item a { color: var(--yellow); text-decoration: none; font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }
.contact-map {
  border-radius: var(--radius); overflow: hidden; min-height: 380px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.9) contrast(1.05); }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid rgba(255,255,255,.07);
  background: #120718;
  padding: 60px clamp(16px, 4vw, 48px) 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 28px; }
.footer-logo { width: 64px; border-radius: 50%; box-shadow: 0 0 0 2px var(--yellow); }
.footer-brand p { color: var(--muted); font-size: .95rem; }
.footer-nav { display: flex; justify-content: center; gap: clamp(14px, 3vw, 32px); flex-wrap: wrap; margin-bottom: 28px; }
.footer-nav a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .25s; }
.footer-nav a:hover { color: var(--yellow); }
.footer-legal { color: rgba(195,174,208,.55); font-size: .8rem; max-width: 70ch; margin: 0 auto; }
.footer-legal a { color: rgba(195,174,208,.85); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta, .hero-badges { justify-content: center; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-photo-logo { left: -10px; bottom: -20px; width: 84px; height: 84px; }
  .hero-photo-chip { right: -6px; }
  .quality-grid, .contact-grid { grid-template-columns: 1fr; }
  .quality-labels { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    background: rgba(18, 7, 24, .97); backdrop-filter: blur(10px);
    gap: 30px; font-size: 1.2rem;
    transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.7,.3,1);
    z-index: 1001;
  }
  .nav.open { transform: none; }
  .nav a:not(.btn) { font-size: 1.25rem; }
  .burger { display: block; }
  .carousel-track figure { width: 84vw; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .road { height: 100px; }
  .road-car { width: 110px; }
}

/* ---------- accessibilité ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .line, .hero-script, .hero-sub, .hero-cta, .hero-badges, .hero-photo { opacity: 1; transform: none; }
}
