/* =================================================================
   focoafoco — styles.css
   Sales landing for focoafoco.com
   Vanilla CSS, no preprocessor, no framework.
   ================================================================= */

/* =================================================================
   1. TOKENS
   ================================================================= */
:root {
  /* Color — brand palette (locked, do not invent variants) */
  --bg:          #fafaf7;
  --bg-soft:     #f3f1ec;
  --bg-dark:     #1a1d1a;

  --ink:         #0a0a0a;
  --ink-soft:    #4a4a47;
  --ink-mute:    #8a8780;

  --olive:       #4a5d3a;
  --olive-dark:  #3d4d30;
  --olive-tint:  #eef2e8;
  --gold:        #c9a96e;

  --line:        #e8e5dd;
  --line-strong: #d4cfc4;
  --line-dark:   rgba(255, 255, 255, 0.10);

  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04), 0 2px 6px rgba(10, 10, 10, 0.05);
  --shadow-md: 0 4px 12px rgba(10, 10, 10, 0.05), 0 12px 32px rgba(10, 10, 10, 0.07);
  --shadow-lg: 0 12px 24px rgba(10, 10, 10, 0.08), 0 32px 64px rgba(10, 10, 10, 0.12);
  --shadow-xl: 0 24px 48px rgba(10, 10, 10, 0.10), 0 48px 96px rgba(10, 10, 10, 0.18);
  --shadow-olive: 0 8px 24px rgba(74, 93, 58, 0.18), 0 24px 56px rgba(74, 93, 58, 0.18);
  --shadow-gold:  0 8px 24px rgba(201, 169, 110, 0.28), 0 24px 56px rgba(201, 169, 110, 0.22);

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;

  /* Radius */
  --r-sm: 8px;
  --r:    12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 999px;

  /* Spacing scale (4-based) */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-8:  32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;

  /* Easing */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Sizes */
  --header-h: 68px;
  --content-w: 1200px;
  --content-w-narrow: 780px;
}

/* =================================================================
   2. RESET
   ================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
table { border-collapse: collapse; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; border-radius: 4px; }

/* Bilingual visibility (active lang set on <html lang> before paint) */
html[lang="es"] [data-lang="en"] { display: none !important; }
html[lang="en"] [data-lang="es"] { display: none !important; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: var(--s-3) var(--s-4); border-radius: var(--r-sm);
  z-index: 200;
}
.skip-link:focus { left: var(--s-4); top: var(--s-4); }

/* =================================================================
   3. TYPOGRAPHY
   ================================================================= */
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
}
.eyebrow--olive {
  color: var(--olive);
  background: var(--olive-tint);
  border-color: rgba(74, 93, 58, 0.18);
}
.eyebrow--gold {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.28);
}

.section-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: var(--s-4) 0 0;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--olive);
  letter-spacing: -0.015em;
}

.section-lede {
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: var(--s-5) auto 0;
  line-height: 1.55;
}

.section-head { max-width: 70ch; margin-bottom: var(--s-12); }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* =================================================================
   4. LAYOUT
   ================================================================= */
.container {
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.container--narrow { max-width: var(--content-w-narrow); }

main > section { padding: clamp(64px, 8vw, 128px) 0; }

/* =================================================================
   5. BRAND / LOGO
   ================================================================= */
.brand { display: inline-flex; align-items: center; }
.brand__text {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
}
.brand__dot {
  position: relative;
  display: inline-block;
}
.brand__dot::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.5);
}
.brand--light .brand__text { color: var(--bg); }
.brand--light .brand__dot::before {
  background: var(--bg);
  box-shadow: none;
}

/* =================================================================
   6. BUTTONS
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 12px 22px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  transition: transform 200ms var(--ease), background 200ms var(--ease),
              box-shadow 250ms var(--ease), color 200ms var(--ease),
              border-color 200ms var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn__arrow {
  display: inline-block;
  transition: transform 250ms var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--sm { padding: 8px 16px; font-size: 13.5px; }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--olive {
  background: var(--olive);
  color: var(--bg);
  box-shadow: var(--shadow-olive);
}
.btn--olive:hover { background: var(--olive-dark); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(74,93,58,0.28), 0 28px 64px rgba(74,93,58,0.22); }
.btn--olive:active { transform: translateY(0); }

.btn--ghost {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--bg); border-color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.btn--gold {
  background: var(--gold);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(201, 169, 110, 0.38), 0 28px 64px rgba(201, 169, 110, 0.26); }

/* =================================================================
   7. HEADER
   ================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background 250ms var(--ease), backdrop-filter 250ms var(--ease),
              border-color 250ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 250, 247, 0.78);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--s-6);
}
.primary-nav { display: flex; gap: var(--s-2); }
.primary-nav a {
  padding: 8px 14px;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-radius: var(--r-full);
  transition: color 200ms var(--ease), background 200ms var(--ease);
}
.primary-nav a:hover { color: var(--ink); background: rgba(10,10,10,0.04); }

.header-actions { display: flex; align-items: center; gap: var(--s-3); }

/* Lang switch */
.lang-switch {
  position: relative;
  display: inline-flex;
  padding: 3px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  isolation: isolate;
}
.lang-switch__btn {
  position: relative;
  z-index: 2;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: color 200ms var(--ease);
}
.lang-switch__btn[aria-pressed="true"] { color: var(--bg); }
.lang-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--ink);
  border-radius: var(--r-full);
  transition: transform 300ms var(--ease);
  z-index: 1;
}
html[lang="en"] .lang-switch__thumb { transform: translateX(100%); }

@media (max-width: 720px) {
  .primary-nav { display: none; }
}

/* =================================================================
   8. HERO
   ================================================================= */
.hero {
  padding-top: calc(var(--header-h) + clamp(48px, 7vw, 96px));
  padding-bottom: clamp(48px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background:
    radial-gradient(60% 60% at 40% 30%, rgba(74,93,58,0.07) 0%, transparent 60%),
    radial-gradient(50% 50% at 70% 20%, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero__top { max-width: 920px; margin: 0 auto; text-align: center; }

.hero__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(2.75rem, 1.5rem + 4.6vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: var(--s-5) 0 0;
  text-wrap: balance;
}
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--olive);
  letter-spacing: -0.015em;
}

.hero__sub {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.31rem);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 62ch;
  margin: var(--s-6) auto 0;
  text-wrap: balance;
}

.hero__disciplines {
  margin: var(--s-3) 0 0;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

.hero__ctas {
  display: flex; justify-content: center; gap: var(--s-3);
  margin-top: var(--s-10); flex-wrap: wrap;
}

.trust {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: var(--s-6); row-gap: var(--s-3);
  margin-top: var(--s-8);
  font-size: 14px;
  color: var(--ink-soft);
}
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.check {
  width: 16px; height: 16px;
  display: inline-block;
  background: var(--olive);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.check::after {
  content: '';
  position: absolute;
  left: 5px; top: 3px;
  width: 4px; height: 7px;
  border: solid var(--bg);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}

/* =================================================================
   9. MOCKUP STAGE — laptop + phone
   ================================================================= */
.mockup-stage {
  position: relative;
  margin: clamp(48px, 7vw, 96px) auto 0;
  max-width: 1100px;
  perspective: 1600px;
}

.laptop {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(2deg);
  transition: transform 800ms var(--ease-out);
  filter: drop-shadow(0 40px 60px rgba(10,10,10,0.18))
          drop-shadow(0 10px 24px rgba(10,10,10,0.08));
}
@media (hover: hover) {
  .laptop:hover { transform: rotateX(0deg) translateY(-8px); }
}

.laptop__screen {
  background: #0a0a0a;
  border-radius: 18px 18px 4px 4px;
  padding: 12px;
  border: 1px solid #1c1c1c;
  position: relative;
}
.laptop__screen::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1c1c1c;
  transform: translateX(-50%);
}
.laptop__hinge {
  height: 6px;
  margin: 0 -2%;
  background: linear-gradient(180deg, #1c1c1c, #0a0a0a);
  border-radius: 0 0 4px 4px;
}
.laptop__base {
  height: 16px;
  margin: 0 -6%;
  background: linear-gradient(180deg, #d8d8d4, #b8b8b4 60%, #8a8a86);
  border-radius: 0 0 24px 24px;
  position: relative;
}
.laptop__base::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 14%; height: 6px;
  background: #6f6f6c;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

/* Browser frame (used in laptop hero AND feature mockups) */
.browser {
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.browser__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #efeeea;
  border-bottom: 1px solid var(--line);
}
.browser__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #ccc;
}
.browser__dot--r { background: #ff5f57; }
.browser__dot--y { background: #febc2e; }
.browser__dot--g { background: #28c840; }
.browser__url {
  margin-left: auto; margin-right: auto;
  padding: 3px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: -0.01em;
}
.browser__body { padding: clamp(20px, 3vw, 36px); }

/* In-mockup site preview (the hero laptop content) */
.site-preview { display: grid; gap: clamp(20px, 3vw, 36px); }
.site-preview__hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
.site-preview__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-md);
  background: var(--bg-soft);
}
.site-preview__role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0;
}
.site-preview__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 1rem + 2.4vw, 2.4rem);
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--ink);
  margin: 8px 0 12px;
}
.site-preview__tag {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 var(--s-5);
}
.site-preview__contact {
  font-size: 12px;
  color: var(--ink-mute);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  margin: 0;
}
.site-preview__filmo { border-top: 1px solid var(--line); padding-top: var(--s-5); }
.site-preview__filmoTitle {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 var(--s-3);
}
.site-preview__filmo ul li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: var(--s-4);
  padding: var(--s-2) 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.site-preview__filmo ul li:last-child { border-bottom: 0; }
.site-preview__filmo .yr { font-family: var(--font-serif); font-style: italic; color: var(--gold); }
.site-preview__filmo .ttl { color: var(--ink); font-weight: 500; }
.site-preview__filmo .dir { color: var(--ink-mute); font-size: 13px; }

/* Phone floating */
.phone {
  position: absolute;
  right: -2%;
  bottom: -8%;
  width: clamp(140px, 18%, 220px);
  aspect-ratio: 9 / 19;
  background: #0a0a0a;
  padding: 8px;
  border-radius: 28px;
  border: 1px solid #1c1c1c;
  box-shadow: var(--shadow-xl);
  animation: float 6s var(--ease-in-out) infinite;
  transform-origin: 50% 50%;
}
.phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  width: 38%; height: 14px;
  background: #0a0a0a;
  border-radius: var(--r-full);
  transform: translateX(-50%);
  z-index: 2;
}
.phone__screen {
  position: relative;
  height: 100%;
  background: var(--bg);
  border-radius: 22px;
  overflow: hidden;
}
.phone__screen img {
  width: 100%;
  height: 55%;
  object-fit: cover;
}
.phone__caption {
  padding: 10px 12px 8px;
  border-bottom: 1px solid var(--line);
}
.phone__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.phone__role {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 2px 0 0;
}
.phone__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 8px;
}
.phone__grid span {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--olive-tint), var(--bg-soft));
  border-radius: 4px;
}

@keyframes float {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50%      { transform: rotate(6deg) translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .phone { animation: none; transform: rotate(6deg); }
  .laptop { transition: none; }
}

@media (max-width: 700px) {
  .site-preview__hero { grid-template-columns: 1fr; }
  .phone { right: -4%; bottom: -10%; width: 32%; }
}

/* =================================================================
   10. LOGO BAR
   ================================================================= */
.logobar { padding: clamp(40px, 5vw, 64px) 0 !important; }
.logobar__caption {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 var(--s-6);
}
.logobar__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: clamp(28px, 5vw, 64px);
}
.logobar__list li {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 0.9rem + 0.6vw, 1.4rem);
  color: var(--ink);
  opacity: 0.55;
  filter: grayscale(1);
  letter-spacing: -0.01em;
  transition: opacity 200ms var(--ease);
}
.logobar__list li:hover { opacity: 0.9; }

/* =================================================================
   11. WHY
   ================================================================= */
.why { background: var(--bg); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 900px) {
  .why__grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease),
              border-color 250ms var(--ease);
}
.card--why:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.card-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--olive-tint);
  color: var(--olive);
  margin-bottom: var(--s-5);
}
.card-icon svg { width: 22px; height: 22px; }
.card-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 1.1rem + 0.6vw, 1.65rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 var(--s-3);
  line-height: 1.15;
}
.card-text {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* =================================================================
   12. FEATURE BLOCKS
   ================================================================= */
.feature { position: relative; }
.feature--tint { background: var(--olive-tint); }
.feature > .container { position: relative; z-index: 1; }

.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.feature--right .feature__text  { order: 1; }
.feature--right .feature__media { order: 2; }
.feature--left  .feature__media { order: 1; }
.feature--left  .feature__text  { order: 2; }

@media (max-width: 900px) {
  .feature__inner { grid-template-columns: 1fr; gap: var(--s-12); }
  .feature--left .feature__media,
  .feature--right .feature__media { order: 2; }
  .feature--left .feature__text,
  .feature--right .feature__text  { order: 1; }
}

.feature__lede {
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.18rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 50ch;
  margin: var(--s-5) 0 var(--s-8);
}
.feature__list { display: grid; gap: var(--s-3); }
.feature__list li {
  display: flex; align-items: baseline; gap: var(--s-3);
  font-size: 15.5px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.feature__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--olive);
  border-radius: 50%;
}
.feature__list--steps li::before { display: none; }
.feature__list--steps li { padding-left: 0; }
.feature__list--steps strong {
  display: inline-block;
  min-width: 92px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--olive);
}

.feature__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--s-6);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--olive);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 200ms var(--ease), color 200ms var(--ease);
}
.feature__link:hover { gap: 10px; color: var(--olive-dark); }
.feature__link .btn__arrow { display: inline-block; }

/* Device (browser frame for feature mockups) */
.device {
  border-radius: var(--r-lg);
  background: var(--bg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transform: rotateX(0deg);
  transition: transform 600ms var(--ease-out), box-shadow 600ms var(--ease-out);
}
@media (hover: hover) {
  .device:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
}

/* Filmo table (Feature 1) */
.filmo__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-4);
}
.filmo__table { width: 100%; font-size: 14.5px; }
.filmo__table td {
  padding: var(--s-3) var(--s-2);
  border-bottom: 1px solid var(--line);
  vertical-align: baseline;
}
.filmo__table tr:last-child td { border-bottom: 0; }
.filmo__yr   { font-family: var(--font-serif); font-style: italic; color: var(--gold); width: 60px; }
.filmo__ttl  { font-weight: 500; color: var(--ink); }
.filmo__role { color: var(--ink-soft); font-size: 13px; }
.filmo__dir  { color: var(--ink-mute); font-size: 13px; text-align: right; }

/* Dashboard (Feature 2) */
.dashboard__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--s-5);
}
.dashboard__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 4px;
}
.dashboard__site {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.dashboard__list { display: grid; gap: var(--s-3); }
.dashboard__list li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: 14.5px;
}
.dashboard__when { color: var(--ink-mute); font-size: 12.5px; }
.tick {
  width: 18px; height: 18px;
  display: inline-block;
  background: var(--olive);
  border-radius: 50%;
  position: relative;
}
.tick::after {
  content: ''; position: absolute;
  left: 6px; top: 4px;
  width: 4px; height: 7px;
  border: solid var(--bg);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}
.tick--pending { background: transparent; border: 1.5px dashed var(--ink-mute); }
.tick--pending::after { display: none; }

.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
}
.badge--ok { background: var(--olive); color: var(--bg); }
.badge--ok-soft { background: var(--olive-tint); color: var(--olive); }

/* Inbox (Feature 3) */
.inbox__head { margin-bottom: var(--s-5); }
.inbox__label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.inbox__sub {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin: 4px 0 0;
}
.inbox__list { display: grid; gap: var(--s-3); }
.inbox__list li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.inbox__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--olive-tint);
  color: var(--olive);
}
.inbox__icon svg { width: 18px; height: 18px; }
.inbox__title { font-weight: 500; font-size: 14.5px; margin: 0; color: var(--ink); }
.inbox__meta  { font-size: 12.5px; color: var(--ink-mute); margin: 2px 0 0; }

/* =================================================================
   13. PRICING
   ================================================================= */
.pricing { background: var(--bg); }
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  align-items: stretch;
}
@media (max-width: 1000px) {
  .plans { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.plan--featured {
  border: 2px solid var(--olive);
  background: linear-gradient(180deg, var(--olive-tint) 0%, var(--bg) 35%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.plan--featured:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); }
@media (max-width: 1000px) {
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
}

/* Starter card (Carta) — horizontal, subordinate to main 3 plans */
.plan-starter {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  margin-top: var(--s-16);
  padding: clamp(28px, 3.5vw, 52px);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
}
@media (max-width: 800px) {
  .plan-starter { grid-template-columns: 1fr; gap: var(--s-8); }
}
.plan-starter__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.05rem + 1.5vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: var(--s-4) 0 var(--s-4);
  color: var(--ink);
  text-wrap: balance;
}
.plan-starter__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--olive);
}
.plan-starter__lede {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 var(--s-5);
  max-width: 56ch;
}
.plan-starter__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-2) var(--s-5);
  font-size: 14px;
  color: var(--ink-soft);
}
@media (max-width: 520px) {
  .plan-starter__list { grid-template-columns: 1fr; }
}
.plan-starter__list li {
  display: flex; align-items: baseline; gap: var(--s-2);
  padding-left: 18px;
  position: relative;
}
.plan-starter__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  background: var(--olive);
  border-radius: 50%;
}
.plan-starter__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
  padding-left: clamp(24px, 3vw, 40px);
  border-left: 1px solid var(--line);
}
@media (max-width: 800px) {
  .plan-starter__cta {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: var(--s-6);
    align-items: stretch;
  }
}
.plan-starter__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 1.9rem);
  letter-spacing: -0.01em;
  color: var(--olive);
  margin: 0;
  line-height: 1;
}
.plan-starter__price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: clamp(28px, 1.6rem + 1vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  flex-wrap: wrap;
}
.plan-starter__price .cur {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 500;
  color: var(--ink-soft);
  margin-right: 2px;
}
.plan-starter__price .per {
  font-size: 0.4em;
  font-weight: 400;
  color: var(--ink-mute);
  margin-left: 2px;
  vertical-align: baseline;
}
.plan-starter__plus { color: var(--ink-mute); font-weight: 500; font-size: 0.7em; }
.plan-starter__note {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin: 0;
}

.plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--olive);
  border-radius: var(--r-full);
  box-shadow: 0 8px 20px rgba(74,93,58,0.28);
}
.plan__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.6);
  flex-shrink: 0;
}

.plan__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2rem);
  letter-spacing: -0.01em;
  color: var(--olive);
  margin: 0 0 var(--s-2);
  line-height: 1;
}
.plan__pitch {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 var(--s-6);
  min-height: 2.8em;
}
.plan__price { margin-bottom: var(--s-6); }
.plan__priceMain {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin: 0;
  display: inline-flex;
  align-items: baseline;
}
.plan__priceMain .cur {
  font-size: 24px;
  font-weight: 500;
  margin-right: 4px;
  color: var(--ink-soft);
  vertical-align: super;
}
.plan__priceSub {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: var(--s-3) 0 var(--s-2);
}
.plan__plus { color: var(--ink-mute); font-weight: 500; }
.plan__priceRec {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.plan__priceRec .cur { font-size: 13px; color: var(--ink-soft); margin-right: 2px; vertical-align: super; }
.plan__priceRec .per { font-size: 13px; font-weight: 400; color: var(--ink-mute); margin-left: 2px; }
.plan__priceNote {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin: 0;
}

.plan__features {
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
  display: grid;
  gap: var(--s-3);
}
.plan__features li {
  display: flex; align-items: baseline; gap: var(--s-3);
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--olive);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3.5 7.5l2.2 2 4.5-5' fill='none' stroke='%23fafaf7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
}
.plan__feature--inherit {
  font-weight: 500;
  color: var(--ink) !important;
  padding-left: 0 !important;
}
.plan__feature--inherit::before { display: none !important; }

.pricing__note {
  text-align: center;
  margin-top: var(--s-10);
  font-size: 13.5px;
  color: var(--ink-mute);
}
.pricing__note a { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }
.pricing__note a:hover { color: var(--olive-dark); }

/* =================================================================
   14. COMPARE
   ================================================================= */
.compare { background: var(--bg-soft); }
.compare__wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare__table {
  width: 100%;
  font-size: 14.5px;
}
.compare__table th,
.compare__table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.compare__table thead th {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 19px;
  color: var(--olive);
  background: var(--bg-soft);
  padding-top: var(--s-5);
  padding-bottom: var(--s-5);
}
.compare__table tbody th[scope="row"] {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
}
.compare__table tbody tr { transition: background 200ms var(--ease); }
.compare__table tbody tr:hover { background: var(--bg); }
.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td { border-bottom: 0; }
.compare__th--featured,
.compare__td--featured {
  background: rgba(74,93,58,0.04);
  color: var(--ink) !important;
}
.compare__th--featured {
  position: relative;
  background: var(--olive-tint) !important;
}
.dot {
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  position: relative;
  vertical-align: middle;
}
.dot--y {
  background: var(--olive-tint);
  border: 1px solid rgba(74,93,58,0.25);
}
.dot--y::after {
  content: '';
  position: absolute;
  left: 7px; top: 5px;
  width: 5px; height: 8px;
  border: solid var(--olive);
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}
.dash { color: var(--ink-mute); font-weight: 500; }

@media (max-width: 760px) {
  .compare__wrap { overflow-x: auto; }
  .compare__table { min-width: 640px; }
}

/* =================================================================
   15. TESTIMONIALS
   ================================================================= */
.testimonials { background: var(--bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

.testi {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-xl);
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.testi__avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--olive-tint);
  color: var(--olive);
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  margin-bottom: var(--s-5);
}
.testi__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 1rem + 0.5vw, 1.4rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 var(--s-4);
}
.testi__body {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.testi__cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--s-6);
  font-size: 14px; font-weight: 500;
  color: var(--olive);
  transition: gap 200ms var(--ease), color 200ms var(--ease);
}
.testi__cta:hover { gap: 10px; color: var(--olive-dark); }

.testi--open {
  background: transparent;
  border: 1.5px dashed rgba(74,93,58,0.35);
}
.testi--open .testi__avatar {
  border: 1.5px dashed rgba(74,93,58,0.35);
  background: transparent;
}

.testi--soon { background: var(--bg); }
.testi__avatar--soon {
  background: var(--olive);
  color: var(--bg);
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.testi__pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(201, 169, 110, 0.18);
  border: 1px solid rgba(201, 169, 110, 0.45);
  border-radius: var(--r-full);
  margin-bottom: var(--s-3);
}
.testi__name {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.testi__role {
  color: var(--ink-mute); font-weight: 400; font-size: 13px; margin-left: 4px;
}

/* =================================================================
   16. FAQ
   ================================================================= */
.faq { background: var(--bg-soft); }
.faq-list { display: grid; gap: var(--s-3); }

.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease);
}
.faq-item.is-open {
  border-color: rgba(74,93,58,0.4);
  box-shadow: 0 0 0 3px rgba(74,93,58,0.08), var(--shadow-sm);
}
.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  width: 100%;
  padding: var(--s-5) var(--s-6);
  text-align: left;
}
.faq-item__q {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-item__toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  position: relative;
  background: var(--bg-soft);
  border-radius: 50%;
  transition: background 250ms var(--ease), transform 350ms var(--ease);
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 1.6px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: background 250ms var(--ease);
}
.faq-item__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-item__toggle {
  background: var(--olive);
  transform: rotate(45deg);
}
.faq-item.is-open .faq-item__toggle::before,
.faq-item.is-open .faq-item__toggle::after { background: var(--bg); }

.faq-item__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms var(--ease);
}
.faq-item__panel p {
  margin: 0;
  padding: 0 var(--s-6) var(--s-6);
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 70ch;
}

/* =================================================================
   17. CTA FINAL
   ================================================================= */
.cta-final {
  position: relative;
  background: var(--bg-dark);
  color: var(--bg);
  overflow: hidden;
}
.cta-final__bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.cta-final__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.cta-final__glow--olive {
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(74,93,58,0.6) 0%, transparent 70%);
}
.cta-final__glow--gold {
  bottom: -200px; right: -200px;
  background: radial-gradient(circle, rgba(201,169,110,0.45) 0%, transparent 70%);
}

.cta-final > .container { position: relative; z-index: 1; }

.cta-final__head { text-align: center; max-width: 720px; margin: 0 auto var(--s-12); }
.cta-final__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(2.2rem, 1.5rem + 3.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--bg);
  margin: var(--s-5) 0 var(--s-5);
  text-wrap: balance;
}
.cta-final__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.015em;
}
.cta-final__sub {
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.18rem);
  color: rgba(250, 250, 247, 0.7);
  margin: 0;
  text-wrap: balance;
}

.cta-form {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-2xl);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 60px rgba(0,0,0,0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
@media (max-width: 640px) { .cta-form { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(250, 250, 247, 0.85);
}
.field__opt {
  font-weight: 400;
  font-size: 12px;
  color: rgba(250, 250, 247, 0.5);
  margin-left: 4px;
}
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
  color: var(--bg);
  font-size: 15px;
  transition: border-color 200ms var(--ease), background 200ms var(--ease),
              box-shadow 200ms var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(250, 250, 247, 0.35); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fafaf7' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.field select option { background: var(--bg-dark); color: var(--bg); }

.consent {
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-size: 13.5px;
  color: rgba(250, 250, 247, 0.7);
}
.consent input { margin-top: 3px; accent-color: var(--gold); }
.consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.cta-form__status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
  text-align: center;
  min-height: 1.2em;
}
.cta-form__status.is-success { color: var(--gold); }
.cta-form__status.is-error   { color: #ff8a7a; }

/* =================================================================
   18. FOOTER
   ================================================================= */
.site-footer {
  background: var(--bg-dark);
  color: rgba(250, 250, 247, 0.7);
  padding: var(--s-16) 0 var(--s-8);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-10);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 800px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
@media (max-width: 480px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

.site-footer__brand p {
  margin: var(--s-3) 0 0;
  font-size: 14px;
  max-width: 36ch;
  line-height: 1.55;
}
.site-footer__heading {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  margin: 0 0 var(--s-4);
}
.site-footer ul { display: grid; gap: 10px; }
.site-footer a {
  font-size: 14px;
  color: rgba(250, 250, 247, 0.7);
  transition: color 200ms var(--ease);
}
.site-footer a:hover { color: var(--bg); }

.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s-3);
  padding-top: var(--s-6);
  font-size: 13px;
}
.site-footer__bottom a { color: var(--gold); }

/* =================================================================
   19. REVEAL ON SCROLL
   ================================================================= */
.no-js .reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
