/* =============================================================
   Profit Elite Distribution LLC — styles.css
   1. Tokens  2. Reset  3. Utilities  4. Typography  5. Components
   6. Sections  7. Effects  8. Responsive  9. Reduced-motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Palette — navy / slate gray / gold accent */
  --navy:        #0B1F3A;
  --navy-2:      #10284A;
  --navy-3:      #1B3A63;
  --navy-line:   rgba(255,255,255,0.14);
  --ink:         #101828;
  --gray-900:    #1D2939;
  --gray-700:    #475467;
  --gray-500:    #667085;
  --gray-300:    #D0D5DD;
  --gray-200:    #E4E7EC;
  --gray-100:    #F3F5F8;
  --paper:       #FFFFFF;
  --gold:        #C9972E;
  --gold-2:      #A97D22;
  --gold-tint:   #FBF3E3;
  --success:     #1B7F5C;
  --line:        rgba(16,24,40,0.10);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container: 1220px;
  --gutter: 1.25rem;
  --nav-h: 76px;

  --shadow-sm: 0 1px 2px rgba(16,24,40,0.06), 0 1px 3px rgba(16,24,40,0.08);
  --shadow-md: 0 8px 24px -6px rgba(16,24,40,0.14), 0 2px 8px rgba(16,24,40,0.06);
  --shadow-lg: 0 30px 60px -20px rgba(11,31,58,0.28), 0 10px 24px -8px rgba(11,31,58,0.14);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.12; letter-spacing: -0.01em; font-family: var(--display); font-weight: 600; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--navy); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display);
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-2);
}
.kicker::before {
  content: ""; width: 22px; height: 2px; background: var(--gold);
  border-radius: 2px;
}
.kicker.on-dark { color: #E8C77A; }
.kicker.on-dark::before { background: #E8C77A; }

.section-eyebrow-num {
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  color: var(--gray-300);
  -webkit-text-stroke: 1px var(--gray-300);
}

.hairline { border-top: 1px solid var(--line); }
.text-center { text-align: center; }
.mono-num { font-variant-numeric: tabular-nums; }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.1rem, 4.4vw + 1rem, 3.6rem); }
h2 { font-size: clamp(1.7rem, 2.6vw + 1rem, 2.5rem); }
h3 { font-size: clamp(1.15rem, .8vw + 1rem, 1.4rem); }
.lede { font-size: clamp(1.05rem, .6vw + 1rem, 1.2rem); color: var(--gray-700); line-height: 1.7; }
.eyebrow { font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-500); font-weight: 600; }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem;
  font-weight: 600; font-size: .95rem;
  border-radius: var(--radius-sm);
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft), background-color .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
  white-space: nowrap;
}
.btn:active { transition-duration: .12s; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}
.btn-outline:hover { border-color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.btn-outline-invert {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--navy-line);
}
.btn-outline-invert:hover { border-color: #fff; transform: translateY(-3px); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }

/* --- Nav --- */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.0);
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
/* Every page starts with a dark navy hero/banner behind the fixed nav,
   so the nav defaults to light text and flips to navy once solidified. */
.nav-brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-weight: 700; letter-spacing: -0.01em;
  color: #fff;
  transition: color .35s var(--ease-out);
}
.nav.is-scrolled .nav-brand { color: var(--navy); }
.nav-brand-mark {
  width: 34px; height: 34px; flex-shrink: 0;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-brand-text strong { font-size: 1.02rem; }
.nav-brand-text span { font-size: .62rem; letter-spacing: .18em; color: #E8C77A; font-weight: 600; transition: color .35s var(--ease-out); }
.nav.is-scrolled .nav-brand-text span { color: var(--gold-2); }

.nav-links {
  display: none;
  align-items: center; gap: 2rem;
}
.nav-link {
  position: relative;
  font-size: .93rem; font-weight: 500;
  color: rgba(255,255,255,0.86);
  padding: .3rem 0;
  transition: color .35s var(--ease-out);
}
.nav.is-scrolled .nav-link { color: var(--gray-700); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-link:hover { color: #fff; }
.nav.is-scrolled .nav-link:hover { color: var(--navy); }
.nav-link.is-active { color: #fff; font-weight: 600; }
.nav.is-scrolled .nav-link.is-active { color: var(--navy); }

.nav-cta { display: none; }
.nav-toggle {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  color: #fff;
  transition: color .35s var(--ease-out);
}
.nav.is-scrolled .nav-toggle { color: var(--navy); }
.nav-toggle svg { width: 22px; height: 22px; }

.nav-mobile {
  position: fixed; inset: 0; z-index: 300;
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column;
  padding: 1.4rem var(--gutter) 2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
  visibility: hidden;
}
.nav-mobile[data-open="true"] { clip-path: inset(0 0 0 0); visibility: visible; }
.nav-mobile-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.2rem; }
.nav-mobile-close { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; }
.nav-mobile-links { display: flex; flex-direction: column; gap: 0; }
.nav-mobile-links a {
  padding: 1.05rem 0; font-family: var(--display); font-size: 1.5rem; font-weight: 600;
  border-bottom: 1px solid var(--navy-line);
}
.nav-mobile-cta { margin-top: 1.6rem; }
.nav-mobile-meta { margin-top: auto; padding-top: 2rem; color: rgba(255,255,255,.6); font-size: .85rem; }
.nav-mobile-meta a { color: #E8C77A; }

/* --- Cards --- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.7rem;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,151,46,0.35);
}
.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--gold-tint);
  color: var(--gold-2);
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card-title { font-size: 1.12rem; margin-bottom: .55rem; }
.card-text { color: var(--gray-700); font-size: .95rem; line-height: 1.6; }

/* --- Stat --- */
.stat { text-align: center; }
.stat-value {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 2.4vw + 1rem, 2.9rem);
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  margin-top: .6rem; font-size: .85rem; color: rgba(255,255,255,0.72);
  letter-spacing: .02em;
}

/* --- Form --- */
.form { display: grid; gap: 1.15rem; }
.form-row-2 { display: grid; gap: 1.15rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--gray-900); }
.field .optional { font-weight: 400; color: var(--gray-500); }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,58,0.1);
  outline: none;
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #C0392B;
}
.field-error {
  font-size: .8rem; color: #C0392B; display: none;
}
.field.has-error .field-error { display: block; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #C0392B; }

.field-checkbox {
  flex-direction: row; align-items: flex-start; gap: .7rem;
}
.field-checkbox input { width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; accent-color: var(--gold); }
.field-checkbox label { font-weight: 400; font-size: .88rem; color: var(--gray-700); }

.form-note { font-size: .82rem; color: var(--gray-500); }

.form-submit-wrap { position: relative; }
.form-submit-wrap .btn.is-sending .btn-label { opacity: 0; }
.form-submit-wrap .btn-spinner {
  position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none;
}
.form-submit-wrap .btn.is-sending .btn-spinner { opacity: 1; }
.btn-spinner::after {
  content: ""; width: 18px; height: 18px;
  border: 2px solid rgba(11,31,58,0.25); border-top-color: var(--navy);
  border-radius: 50%; animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none;
  align-items: center; gap: .8rem;
  padding: 1.1rem 1.3rem;
  background: #EAF6F0; border: 1px solid rgba(27,127,92,0.3);
  border-radius: var(--radius-sm);
  color: var(--success);
  font-weight: 600; font-size: .93rem;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form.is-sent { display: none; }

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding-block: 4.5rem 2rem;
}
.footer-grid {
  display: grid; gap: 2.6rem;
}
.footer-brand-blurb { margin-top: 1rem; color: rgba(255,255,255,0.62); font-size: .92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--display); font-size: .95rem; color: #fff; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { color: rgba(255,255,255,0.68); font-size: .92rem; transition: color .25s; }
.footer-col a:hover { color: #E8C77A; }
.footer-contact-item { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: rgba(255,255,255,0.68); }
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: .15rem; color: #E8C77A; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--navy-line);
  display: flex; flex-direction: column; gap: 1rem;
  font-size: .82rem; color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: #fff; }

/* --- WhatsApp float --- */
.whatsapp-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 250;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.42), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 32px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff; padding: .5rem .8rem; border-radius: 6px;
  font-size: .82rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* =============================================================
   6. Sections
   ============================================================= */

.section { padding-block: clamp(3.2rem, 6vw, 6rem); }
.section-alt { background: var(--gray-100); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.86); }
.section-navy h2 { color: #fff; }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .8rem; }
.section-head p { margin-top: 1rem; color: var(--gray-700); }
.section-navy .section-head p { color: rgba(255,255,255,0.68); }

/* --- Hero (full photo) --- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,31,58,0.82) 0%, rgba(11,31,58,0.55) 38%, rgba(11,31,58,0.88) 100%);
}
.hero-content { position: relative; padding-block: clamp(4.5rem, 10vw, 7rem) clamp(3rem, 6vw, 4.5rem); width: 100%; }
.hero-title { margin-top: .9rem; max-width: 16ch; }
.hero-sub { margin-top: 1.2rem; max-width: 52ch; font-size: clamp(1.02rem, .5vw + 1rem, 1.18rem); color: rgba(255,255,255,0.82); }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-meta-row {
  margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--navy-line);
  display: flex; flex-wrap: wrap; gap: 2.2rem;
}
.hero-meta-item { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: rgba(255,255,255,0.72); }
.hero-meta-item svg { width: 19px; height: 19px; color: #E8C77A; flex-shrink: 0; }

/* --- Page banner (no photo, gradient/grid) --- */
.page-banner {
  position: relative;
  padding-block: calc(var(--nav-h) + 3.2rem) 3.4rem;
  background: var(--navy);
  color: #fff;
  overflow: clip;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--navy-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, #000 30%, transparent 90%);
  opacity: .5;
}
.page-banner::after {
  content: "";
  position: absolute; right: -8%; top: -30%;
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(201,151,46,0.22), transparent 68%);
  filter: blur(10px);
}
.page-banner-inner { position: relative; max-width: 760px; }
.page-banner h1 { margin-top: .8rem; }
.page-banner p { margin-top: 1.1rem; color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 58ch; }
.page-banner-breadcrumb { margin-top: 1.6rem; font-size: .85rem; color: rgba(255,255,255,0.55); }
.page-banner-breadcrumb a { color: rgba(255,255,255,0.8); }
.page-banner-breadcrumb a:hover { color: #E8C77A; }

/* --- Medium hero (photo, shorter) for interior pages --- */
.hero-mid {
  position: relative;
  min-height: 62svh;
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: clip;
  padding-top: var(--nav-h);
}
.hero-mid .hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-mid .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-mid .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.86) 0%, rgba(11,31,58,0.6) 45%, rgba(11,31,58,0.9) 100%);
}
.hero-mid-content { position: relative; padding-block: 2.6rem 2.8rem; }
.hero-mid h1 { margin-top: .8rem; max-width: 24ch; }
.hero-mid p { margin-top: 1rem; max-width: 56ch; color: rgba(255,255,255,0.8); font-size: 1.02rem; }
.hero-mid-breadcrumb { margin-top: 1.3rem; font-size: .85rem; color: rgba(255,255,255,0.55); }
.hero-mid-breadcrumb a { color: rgba(255,255,255,0.82); }
.hero-mid-breadcrumb a:hover { color: #E8C77A; }

/* --- Grid with hairlines (numbered sections) --- */
.numbered-grid {
  display: grid; gap: 2.4rem;
}
.numbered-item {
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.numbered-item .num {
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  color: var(--gold-2);
  display: block; margin-bottom: .8rem;
}
.numbered-item h3 { margin-bottom: .6rem; }
.numbered-item p { color: var(--gray-700); font-size: .95rem; }
.section-navy .numbered-item { border-top-color: var(--navy-line); }
.section-navy .numbered-item p { color: rgba(255,255,255,0.68); }

/* --- Cards grid --- */
.cards-grid { display: grid; gap: 1.4rem; }

/* --- Category cards --- */
.category-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .3s;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,151,46,0.35); }
.category-card .card-icon { background: var(--navy); color: #E8C77A; }
.category-status {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem; padding: .3rem .7rem;
  background: var(--gold-tint); color: var(--gold-2);
  font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border-radius: 999px;
}
.category-status svg { width: 12px; height: 12px; }

/* --- Process steps --- */
.process-list { display: grid; gap: 1.6rem; }
.process-step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  padding: 1.8rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
}
.process-step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  flex-shrink: 0;
}
.process-step h3 { margin-bottom: .5rem; }
.process-step p { color: var(--gray-700); font-size: .95rem; }
.process-connector {
  width: 2px; background: var(--gray-300); margin-inline: 22px;
  height: 1.6rem;
}

/* --- Stats banner --- */
.stats-grid { display: grid; gap: 2rem; }

/* --- CTA banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: clip;
}
.cta-banner::before {
  content: "";
  position: absolute; left: -10%; bottom: -40%;
  width: 40vw; height: 40vw; max-width: 480px; max-height: 480px;
  background: radial-gradient(circle, rgba(201,151,46,0.25), transparent 70%);
}
.cta-banner-inner { position: relative; max-width: 620px; margin-inline: auto; }
.cta-banner h2 { color: #fff; }
.cta-banner p { margin-top: 1rem; color: rgba(255,255,255,0.75); }
.cta-banner .btn-row { margin-top: 1.8rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* --- Simple content blocks (Sobre Nosotros, Politicas) --- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.4rem; margin-bottom: .9rem; font-size: 1.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--gray-700); margin-bottom: 1rem; }
.prose ul { margin-bottom: 1rem; }
.prose li { position: relative; padding-left: 1.4rem; color: var(--gray-700); margin-bottom: .5rem; }
.prose li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.prose strong { color: var(--gray-900); }
.editable-note {
  display: inline-block; margin: .15rem 0;
  padding: .15rem .5rem; border-radius: 4px;
  background: #FFF4D6; color: #8A5A00; font-size: .85em; font-weight: 600;
}

/* --- Two column split --- */
.split { display: grid; gap: 2.4rem; align-items: start; }
.split-figure { border-radius: var(--radius-lg); overflow: clip; }
.split-figure img { width: 100%; height: 100%; object-fit: cover; }

/* --- Pillars (3 col with hairline top) --- */
.pillars { display: grid; gap: 2rem; }
.pillar { border-top: 3px solid var(--gold); padding-top: 1.3rem; }
.pillar h3 { margin-bottom: .6rem; }
.pillar p { color: var(--gray-700); font-size: .95rem; }

/* =============================================================
   7. Effects
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .4s; }

/* View transitions between pages */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
::view-transition-old(root) { animation-name: fadeOutUp; }
::view-transition-new(root) { animation-name: fadeInUp; }
@keyframes fadeOutUp { to { opacity: 0; transform: translateY(-10px); } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(10px); } }

/* =============================================================
   8. Responsive (mobile-first)
   ============================================================= */
@media (min-width: 540px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid-cols { grid-template-columns: repeat(2, 1fr); }
  .numbered-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .process-step { grid-template-columns: 56px 1fr; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }

  .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .category-grid-cols { grid-template-columns: repeat(3, 1fr); }
  .numbered-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }

  .split.cols-2 { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }

  .hero-title { max-width: 20ch; }
}

@media (min-width: 1280px) {
  .container { padding-inline: 2rem; }
}

/* =============================================================
   9. Reduced-motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { transform: none; }
  /* Functional micro-interactions (hover, reveal, nav underline, count-up)
     intentionally NOT disabled here — see gotcha A.2 / 04-critical-gotchas.md */
}
