/* ============================================================
   Navid Khajeh-Hosseini — Landing
   Editorial style based on the brochure:
   cream background, deep forest green, olive/gold accents,
   Cormorant Garamond headings + Inter body.
   ============================================================ */

:root {
  --cream: #faf8f3;
  --cream-2: #f3efe6;
  --cream-3: #ece6d9;
  --green: #22392f;
  --green-deep: #1a2c24;
  --green-mid: #2c4a3d;
  --gold: #9a8850;
  --gold-soft: #b6a570;
  --gold-bright: #c3ab6b;
  --ink: #23231d;
  --muted: #6f6c63;
  --line: #dcd6c8;
  --line-soft: #e8e2d5;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --grad-gold: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 100%);
  --grad-green: linear-gradient(150deg, var(--green-mid) 0%, var(--green) 45%, var(--green-deep) 100%);

  --shadow-xs: 0 1px 2px rgba(35, 45, 38, 0.05);
  --shadow-sm: 0 4px 14px -8px rgba(35, 45, 38, 0.18);
  --shadow-md: 0 18px 40px -24px rgba(28, 48, 39, 0.32);
  --shadow-lg: 0 34px 70px -34px rgba(24, 42, 34, 0.42);
  --shadow-gold: 0 16px 34px -18px rgba(154, 136, 80, 0.4);

  --maxw: 1120px;
  --radius: 6px;
  --radius-lg: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--cream);
  background-image:
    radial-gradient(1200px 600px at 100% -10%, rgba(154, 136, 80, 0.07), transparent 60%),
    radial-gradient(1000px 620px at -10% 8%, rgba(34, 57, 47, 0.05), transparent 55%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(154, 136, 80, 0.22); color: var(--ink); }

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

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 8px;
  border: 3px solid var(--cream-2);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-soft); }

a { color: inherit; text-decoration: none; }

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

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--grad-gold);
  display: inline-block;
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  line-height: 1.01;
  letter-spacing: -0.015em;
  margin: 0 0 26px;
  color: var(--ink);
  font-feature-settings: "liga" 1, "dlig" 1;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 46px;
  color: var(--ink);
}

.rule {
  display: block;
  width: 84px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 3px;
  margin: 0 0 30px;
}
.rule-gold { width: 100%; height: 1px; background: var(--line); border-radius: 0; margin: 26px 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.72);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 248, 243, 0.9);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 30px -22px rgba(28, 48, 39, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 40px; height: auto; transition: transform 0.3s var(--ease); }
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.05); }
.brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease);
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a.is-active { color: var(--gold); }
.nav-menu a:not(.nav-cta) {
  position: relative;
}
.nav-menu a:not(.nav-cta).is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta.is-active {
  background: var(--green);
  color: #fff !important;
}
.nav-cta {
  border: 1px solid var(--green);
  color: var(--green) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}
.nav-cta:hover { background: var(--green); color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { left: 140%; }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-deep); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(255, 255, 255, 0.4); color: var(--green); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--green); background: rgba(255, 255, 255, 0.7); box-shadow: var(--shadow-sm); }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 90px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}
.hero-lead p { margin: 0 0 14px; color: var(--muted); max-width: 42ch; }
.hero-name { color: var(--ink) !important; font-weight: 700; margin-bottom: 2px !important; }
.hero-sub { color: var(--ink) !important; font-weight: 500; letter-spacing: 0.02em; }
.hero-left { border-left: 3px solid var(--gold); padding-left: 26px; }
.hero-left .eyebrow,
.hero-left .display,
.hero-left .rule { margin-left: 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-card {
  position: relative;
  background: linear-gradient(160deg, #fdfcf8 0%, var(--cream-2) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(160deg, rgba(154, 136, 80, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card-quote {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.36;
  margin: 0;
  color: var(--ink);
  font-style: italic;
}
.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 24px;
}
.steps-grid li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  transition: border-color 0.3s var(--ease);
}
.steps-grid li:hover { border-top-color: var(--gold); }
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: "onum" 1;
}
.step-label { font-size: 0.86rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt {
  background: linear-gradient(180deg, var(--cream-2) 0%, #f0ebe1 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-intro { max-width: 66ch; color: var(--muted); margin: -22px 0 44px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.split-text p { margin: 0 0 18px; color: var(--muted); }
.split-text strong { color: var(--ink); }

/* ---------- Cream card (formación / control) ---------- */
.cream-card {
  position: relative;
  background: linear-gradient(160deg, #f6f2e9 0%, var(--cream-3) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow-sm);
}
.cream-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 46px;
  background: var(--grad-gold);
  border-radius: 0 3px 3px 0;
}
.section-alt .cream-card { background: linear-gradient(160deg, #fdfcf8 0%, var(--cream) 100%); }
.cream-card-title {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  margin: 0 0 22px;
}
.dot-list { list-style: none; margin: 0; padding: 0; }
.dot-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.dot-list--light li { color: rgba(255,255,255,0.82); }
.dot-list--light li::before { background: var(--gold-soft); }

/* ---------- Callouts ---------- */
.callout {
  position: relative;
  margin-top: 48px;
  background: linear-gradient(160deg, #f6f2e9 0%, var(--cream-3) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px 30px 24px 34px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--grad-gold);
}
.section-alt .callout { background: linear-gradient(160deg, #fdfcf8 0%, var(--cream) 100%); }
.callout p { margin: 0; color: var(--muted); }
.callout strong { color: var(--ink); }
.callout-title {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
}
.callout-outline {
  background: transparent;
  border: 1px solid var(--line);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  position: relative;
  background: linear-gradient(170deg, #fdfcf8 0%, var(--cream) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 16px;
}
.service-card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- Method ---------- */
.method-steps { list-style: none; margin: 0; padding: 0; }
.method-steps li {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.method-steps li:first-child { border-top: 0; padding-top: 0; }
.method-num {
  flex: 0 0 auto;
  width: 46px; height: 56px;
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  background: linear-gradient(160deg, rgba(154, 136, 80, 0.06), transparent);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.method-steps li:hover .method-num {
  background: var(--grad-green);
  color: var(--gold-bright);
  border-color: var(--green);
}
.method-steps h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 4px 0 6px;
  color: var(--ink);
}
.method-steps p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.method-aside { display: flex; flex-direction: column; gap: 26px; }
.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.control-grid span {
  background: linear-gradient(160deg, #fdfcf8, var(--cream));
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  padding: 16px 16px;
  font-size: 0.9rem;
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.control-grid span:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.method-note { margin: 0; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: linear-gradient(170deg, #fdfcf8 0%, var(--cream) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan-featured {
  border: 1px solid var(--green);
  background: linear-gradient(170deg, #fdfcf8 0%, #f5f1e8 100%);
  box-shadow: var(--shadow-lg);
}
.plan-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-green);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.plan-featured:hover { transform: translateY(-8px); }
.plan-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 14px;
}
.plan-featured .plan-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--grad-green);
  color: var(--gold-bright);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.plan-name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 24px;
  min-height: 2.1em;
}
.price-list { list-style: none; margin: 0 0 26px; padding: 0; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.98rem;
  color: var(--muted);
}
.price { font-weight: 700; color: var(--ink); font-size: 1.1rem; font-feature-settings: "onum" 1; }
.price-note { display: block; font-weight: 500; font-style: italic; font-size: 0.8rem; color: var(--muted); }
.plan-card .dot-list { margin-bottom: 26px; }
.plan-btn { margin-top: auto; text-align: center; }
.fine-print {
  margin: 40px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 90ch;
}

/* ---------- Results ---------- */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.result-card {
  margin: 0;
  background: linear-gradient(170deg, #fdfcf8 0%, var(--cream) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.result-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.result-card:hover img { transform: scale(1.03); }
.result-card figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 8px 8px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.result-tag { color: var(--gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }

/* ---------- Green panel (cierre) ---------- */
.green-panel {
  position: relative;
  background: var(--grad-green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 46px 42px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.green-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(154, 136, 80, 0.28), transparent 70%);
  pointer-events: none;
}
.green-panel-title {
  position: relative;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 20px;
  color: #fff;
}
.green-panel > p { position: relative; color: rgba(255,255,255,0.86); margin: 0 0 26px; }
.green-panel .dot-list, .green-panel-cta { position: relative; }
.green-panel-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.method-steps--slim { margin-top: 26px; }
.method-steps--slim li { border-color: var(--line); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--grad-green);
  color: rgba(255,255,255,0.8);
  padding: 58px 0 40px;
  border-top: 3px solid transparent;
  border-image: var(--grad-gold) 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 40px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { width: 46px; height: auto; }
.footer-name { font-family: var(--serif); font-size: 1.25rem; color: #fff; margin: 0; font-weight: 600; }
.footer-tag { margin: 2px 0 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.88rem; transition: color 0.2s var(--ease); }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.services-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2),
.results-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3),
.results-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.results-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .plan-name { min-height: 0; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }

  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 18px 28px 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s var(--ease), opacity 0.25s var(--ease);
  }
  .nav-menu.open { max-height: 420px; opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 8px 0; }
  .nav-cta { margin-top: 8px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .hero { padding: 54px 0 64px; }
  .hero-card { padding: 30px 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 18px; }
  .control-grid { grid-template-columns: 1fr; }
  .green-panel { padding: 34px 26px; }
  .container { padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .service-card:hover, .result-card:hover,
  .plan-card:hover, .plan-featured:hover, .control-grid span:hover,
  .result-card:hover img, .brand:hover .brand-logo { transform: none; }
  .btn::after { display: none; }
}
