/* =============================================================
   Orosteel Italia — styles.css
   Brand: #2760B2 (primary) · #7AC255 (accent) · #E9EEEB (bg)
   ============================================================= */

/* ----------- Reset & base ----------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

:root {
  --primary: #2760B2;
  --primary-dark: #1f4d8f;
  --accent: #7AC255;
  --accent-dark: #61a13f;
  --bg: #E9EEEB;
  --surface: #ffffff;
  --text: #1a2230;
  --muted: #5b6573;
  --border: #d8dfe1;
  --shadow-sm: 0 4px 14px rgba(20, 35, 60, 0.06);
  --shadow-md: 0 12px 30px rgba(20, 35, 60, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 35, 60, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --container: 1180px;
  --header-h: 72px;
  --transition: 0.25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--primary);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.18rem; }
h4 { font-size: 1rem; color: #fff; }

p { margin: 0 0 1em; color: var(--text); }

ul { padding-left: 1.2rem; }

/* ----------- Container ----------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.container.narrow { max-width: 820px; }

/* ----------- Skip link ----------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ----------- Header ----------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.97);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-text span {
  color: var(--accent);
  font-weight: 800;
}

.main-nav {
  margin-left: auto;
}
.main-nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--accent);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  margin: 5px auto;
  border-radius: 4px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ----------- CTA buttons ----------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--accent);
  color: #14361a;
  font-weight: 700;
  font-size: 1rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(122, 194, 85, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
}
.cta-button:hover {
  background: var(--accent-dark);
  color: #0d2410;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(122, 194, 85, 0.45);
  text-decoration: none;
}
.cta-button:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}
.cta-button.cta-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}
.cta-button.cta-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}
.cta-button.cta-outline:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(39, 96, 178, 0.30);
}
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  padding: 10px 4px;
  cursor: pointer;
}
.cta-link:hover { text-decoration: underline; }

/* ----------- Section base ----------- */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--surface);
}
.section-head {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: rgba(122, 194, 85, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.center { text-align: center; }

/* ----------- Hero ----------- */
.hero {
  position: relative;
  padding: 70px 0 80px;
  background:
    radial-gradient(circle at 20% -10%, rgba(122, 194, 85, 0.20), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(39, 96, 178, 0.18), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-text .accent { color: var(--accent-dark); }
.hero-text .lead {
  font-size: 1.15rem;
  color: #2c3744;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 22px;
  align-items: center;
}
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 18px 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges li {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  background: linear-gradient(160deg, #2760B2 0%, #1f4d8f 100%);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-visual-card img {
  width: 78%;
  max-width: 360px;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
  position: relative;
  z-index: 2;
}
.hero-rings {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12) 0 1px, transparent 1px 64px) 50% 50%/64px 64px,
    radial-gradient(circle at 50% 50%, rgba(122,194,85,0.18), transparent 60%);
  z-index: 1;
}
.hero-tag {
  position: absolute;
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  font-size: 0.86rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.hero-tag strong {
  color: var(--primary);
  font-size: 0.95rem;
}
.hero-tag span { color: var(--muted); font-size: 0.8rem; }
.tag-top { top: 22px; left: -18px; }
.tag-bottom { bottom: 22px; right: -18px; }

/* ----------- Trust bar ----------- */
.trustbar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}
.trust-item strong {
  display: block;
  color: var(--primary);
  font-weight: 700;
}
.trust-item span {
  color: var(--muted);
  font-size: 0.85rem;
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(39, 96, 178, 0.10);
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ----------- Cards grid ----------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--surface);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(122, 194, 85, 0.55);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(39, 96, 178, 0.10), rgba(122, 194, 85, 0.18));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.card h3 { color: var(--primary); margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* ----------- Two columns layout ----------- */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.visual-card {
  background: linear-gradient(160deg, #2760B2 0%, #163b6f 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
.visual-card img {
  width: 80%;
  max-width: 360px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.30));
}
.visual-card-soft {
  background: linear-gradient(160deg, rgba(122,194,85,0.18), rgba(39,96,178,0.08));
  box-shadow: var(--shadow-md);
}
.visual-card-soft img {
  filter: drop-shadow(0 12px 25px rgba(20,35,60,0.15));
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 22px;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ----------- Ingredients ----------- */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 26px;
}
.ingredient {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ingredient:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ingredient-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(122, 194, 85, 0.18);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.ingredient h3 { margin: 0; }
.ingredient p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.footnote {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 24px auto;
  max-width: 800px;
}

/* ----------- Steps ----------- */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 16px 0 22px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 16px 14px 60px;
  background: rgba(39, 96, 178, 0.05);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.98rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.warn {
  background: #fff7e6;
  border: 1px solid #f5d28a;
  color: #6b4a00;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
}
.warn strong { color: #5a3d00; }

/* ----------- CTA Band ----------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4380 100%);
  color: #fff;
  padding: 50px 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(122,194,85,0.22), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.10), transparent 50%);
  pointer-events: none;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 6px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  font-size: 1.05rem;
}
.cta-band-btn {
  flex-shrink: 0;
  padding: 16px 32px;
  font-size: 1.02rem;
}
.cta-band-final {
  background: linear-gradient(135deg, var(--primary) 0%, #163b6f 100%);
}

/* ----------- Compare table ----------- */
.table-wrap {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  margin-bottom: 26px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.compare-table thead {
  background: rgba(39, 96, 178, 0.06);
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  color: var(--primary);
  font-weight: 700;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:nth-child(even) {
  background: rgba(233, 238, 235, 0.4);
}

/* ----------- FAQ ----------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item:hover {
  border-color: rgba(39, 96, 178, 0.30);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-question:focus-visible {
  outline: 3px solid rgba(39, 96, 178, 0.35);
  outline-offset: -3px;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(122, 194, 85, 0.20);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition);
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.faq-answer p {
  color: var(--muted);
  margin: 0 0 12px;
}
.faq-answer p:last-child { margin: 0; }
.faq-item.open .faq-answer {
  padding-bottom: 18px;
}

/* ----------- Footer ----------- */
.site-footer {
  background: #0e1c33;
  color: #c9d3e3;
  padding: 60px 0 30px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-grid h4 {
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin: 0 0 14px;
  color: #fff;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li { margin-bottom: 8px; }
.footer-list a {
  color: #c9d3e3;
  text-decoration: none;
  transition: color var(--transition);
  font-size: 0.94rem;
}
.footer-list a:hover { color: var(--accent); }

.footer-text {
  color: #a8b2c4;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 12px;
}
.brand-footer {
  color: #fff;
  margin-bottom: 14px;
}
.brand-footer .brand-text span { color: var(--accent); }

.footer-bottom {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: #8b97ad;
}
.footer-bottom p { margin: 0; }
.footer-disclaimer { font-size: 0.82rem; }

/* ----------- Cookie banner ----------- */
.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 18px;
  animation: slideUp 0.4s ease;
}
.cookie-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
}
.cookie-accept {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 0.95rem;
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

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

/* ----------- Contact ----------- */
.contact-mail {
  display: inline-block;
  margin: 8px 0 16px;
  padding: 10px 22px;
  background: rgba(39, 96, 178, 0.08);
  border-radius: 999px;
  font-weight: 700;
  color: var(--primary);
}

/* =============================================================
   Responsive
   ============================================================= */

@media (max-width: 980px) {
  .section { padding: 64px 0; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul {
    flex-direction: column;
    padding: 12px 22px 18px;
    gap: 0;
  }
  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .main-nav li:last-child a { border-bottom: 0; }
  .nav-toggle { display: block; }
  .header-inner > .cta-button { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual-card { max-width: 380px; margin: 0 auto; }

  .two-cols { grid-template-columns: 1fr; gap: 40px; }

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

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .cta-band-btn { align-self: stretch; text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 50px 0; }
  .hero { padding: 50px 0 60px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }

  .hero-text .lead { font-size: 1.02rem; }

  .cards-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }

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

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .tag-top, .tag-bottom { display: none; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .cta-button { width: 100%; }
  .hero-ctas .cta-link { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
