/* =========================================================
   VIRTUS — Landing Page
   Fonts: Fraunces (headings), Manrope (body), Poppins (método)
   ========================================================= */

:root {
  --bg:            #0a0906;
  --bg-method:     #080808;
  --bg-authority:  #12100c;

  --gold:          #cda15a;
  --gold-light:    #e9d4a3;
  --gold-method:   #d4af37;

  --text:          #f3ede1;
  --text-muted:    #a89a83;

  --divider:       rgba(205, 161, 90, 0.16);

  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-method: "Poppins", system-ui, sans-serif;

  --radius: 18px;
  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html.virtus { background: var(--bg); scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ---------- Shared type ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow--method { margin-bottom: 0; }

.section-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.gold { color: var(--gold); }

/* ---------- Buttons (gold gradient / liquid) ---------- */
@property --btn-pos-x {
  syntax: "<percentage>";
  initial-value: 11.14%;
  inherits: false;
}
@property --btn-pos-y {
  syntax: "<percentage>";
  initial-value: 140%;
  inherits: false;
}
@property --btn-spread-x {
  syntax: "<percentage>";
  initial-value: 150%;
  inherits: false;
}
@property --btn-spread-y {
  syntax: "<percentage>";
  initial-value: 180.06%;
  inherits: false;
}
@property --btn-color-1 {
  syntax: "<color>";
  initial-value: #fff6d4;
  inherits: false;
}
@property --btn-color-2 {
  syntax: "<color>";
  initial-value: #f0dc9e;
  inherits: false;
}
@property --btn-color-3 {
  syntax: "<color>";
  initial-value: #e2b85a;
  inherits: false;
}
@property --btn-color-4 {
  syntax: "<color>";
  initial-value: #c9973a;
  inherits: false;
}
@property --btn-color-5 {
  syntax: "<color>";
  initial-value: #8a5e18;
  inherits: false;
}
@property --btn-border-angle {
  syntax: "<angle>";
  initial-value: 20deg;
  inherits: true;
}
@property --btn-border-1 {
  syntax: "<color>";
  initial-value: hsla(42, 90%, 88%, 0.35);
  inherits: true;
}
@property --btn-border-2 {
  syntax: "<color>";
  initial-value: hsla(38, 82%, 62%, 0.95);
  inherits: true;
}
@property --btn-stop-1 {
  syntax: "<percentage>";
  initial-value: 37.35%;
  inherits: false;
}
@property --btn-stop-2 {
  syntax: "<percentage>";
  initial-value: 61.36%;
  inherits: false;
}
@property --btn-stop-3 {
  syntax: "<percentage>";
  initial-value: 78.42%;
  inherits: false;
}
@property --btn-stop-4 {
  syntax: "<percentage>";
  initial-value: 89.52%;
  inherits: false;
}
@property --btn-stop-5 {
  syntax: "<percentage>";
  initial-value: 100%;
  inherits: false;
}

.btn {
  --btn-pos-x: 11.14%;
  --btn-pos-y: 140%;
  --btn-spread-x: 150%;
  --btn-spread-y: 180.06%;
  --btn-color-1: #fff6d4;
  --btn-color-2: #f0dc9e;
  --btn-color-3: #e2b85a;
  --btn-color-4: #c9973a;
  --btn-color-5: #8a5e18;
  --btn-border-angle: 20deg;
  --btn-border-1: hsla(42, 90%, 88%, 0.35);
  --btn-border-2: hsla(38, 82%, 62%, 0.95);
  --btn-stop-1: 37.35%;
  --btn-stop-2: 61.36%;
  --btn-stop-3: 78.42%;
  --btn-stop-4: 89.52%;
  --btn-stop-5: 100%;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
  color: #1a140c;
  background: radial-gradient(
    var(--btn-spread-x) var(--btn-spread-y) at var(--btn-pos-x) var(--btn-pos-y),
    var(--btn-color-1) var(--btn-stop-1),
    var(--btn-color-2) var(--btn-stop-2),
    var(--btn-color-3) var(--btn-stop-3),
    var(--btn-color-4) var(--btn-stop-4),
    var(--btn-color-5) var(--btn-stop-5)
  );
  border: none;
  border-radius: 100px;
  padding: 15px 30px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 28px rgba(201, 151, 58, 0.38),
    0 0 36px rgba(226, 184, 90, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.5s ease,
    --btn-pos-x 0.5s,
    --btn-pos-y 0.5s,
    --btn-spread-x 0.5s,
    --btn-spread-y 0.5s,
    --btn-color-1 0.5s,
    --btn-color-2 0.5s,
    --btn-color-3 0.5s,
    --btn-color-4 0.5s,
    --btn-color-5 0.5s,
    --btn-border-angle 0.5s,
    --btn-border-1 0.5s,
    --btn-border-2 0.5s,
    --btn-stop-1 0.5s,
    --btn-stop-2 0.5s,
    --btn-stop-3 0.5s,
    --btn-stop-4 0.5s,
    --btn-stop-5 0.5s;
}
.btn-label {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(var(--btn-border-angle), var(--btn-border-1), var(--btn-border-2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
}
.btn::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -35%;
  width: 42%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 45%,
    rgba(255, 246, 212, 0.32) 50%,
    rgba(255, 255, 255, 0.1) 55%,
    transparent 100%
  );
  transform: rotate(18deg) translateX(-160%);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.7s ease;
}
.btn:hover {
  transform: translateY(-2px);
  filter: none;
  --btn-pos-x: 0%;
  --btn-pos-y: 91.51%;
  --btn-spread-x: 120.24%;
  --btn-spread-y: 103.18%;
  --btn-color-1: #fff8de;
  --btn-color-2: #f3c96a;
  --btn-color-3: #e09a2b;
  --btn-color-4: #a45e12;
  --btn-color-5: #3d1e08;
  --btn-border-angle: 190deg;
  --btn-border-1: hsla(42, 90%, 92%, 0.22);
  --btn-border-2: hsla(40, 88%, 78%, 0.85);
  --btn-stop-1: 0%;
  --btn-stop-2: 8.8%;
  --btn-stop-3: 21.44%;
  --btn-stop-4: 71.34%;
  --btn-stop-5: 85.76%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 14px 36px rgba(224, 154, 43, 0.48),
    0 0 52px rgba(226, 184, 90, 0.36);
}
.btn:hover::after {
  transform: rotate(18deg) translateX(420%);
}
.btn-sm {
  padding: 11px 22px;
  font-size: 0.88rem;
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}
.hero-actions .btn-glow {
  min-width: min(360px, 100%);
  height: 66px;
  padding: 0 34px;
  font-size: 1.04rem;
  font-weight: 800;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
    border-color 0.35s ease, padding 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 9, 6, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 38px; width: auto; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.28em;
  font-size: 1.05rem;
  color: var(--text);
}

/* =========================================================
   HERO — Virtus composition (rewritten)
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: var(--bg);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 78% 42%, rgba(205, 161, 90, 0.14), transparent 68%),
    radial-gradient(ellipse 40% 50% at 12% 80%, rgba(205, 161, 90, 0.05), transparent 70%),
    var(--bg);
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(28vh, 220px);
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 92%);
}

.hero-brand-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  width: calc(100% - 80px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 0 0;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 5;
  width: calc(100% - 80px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 0 56px;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 36rem;
  width: min(100%, 42vw);
  padding: 12px 0 24px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  pointer-events: auto;
}

.hero-brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: transparent;
}

.hero-brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(52px, 4.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0 0 26px;
  max-width: 11.5ch;
}

.hero-lead {
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  line-height: 1.7;
  max-width: 28em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-note {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars li {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #0d0b07;
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px rgba(205, 161, 90, 0.22);
}

.hero-avatar {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center center;
  margin: 0;
  padding: 0;
  transform: none;
  background: #0d0b07;
  border: 0;
  box-shadow: none;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(closest-side, #000 99.2%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 99.2%, transparent 100%);
}

.hero-avatars li + li {
  margin-left: -10px;
}

.hero-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.hero-proof-count {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  pointer-events: none;
}

.hero-portrait-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
  box-shadow: none;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 100%);
}

.float-badge {
  position: absolute;
  z-index: 6;
  pointer-events: auto;
  background: rgba(8, 7, 5, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(205, 161, 90, 0.18);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 240px;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.25);
}

.float-badge--top {
  top: 14%;
  left: 52%;
}

.float-badge--bottom {
  bottom: 16%;
  right: 7%;
}

.badge-value {
  font-family: var(--font-head);
  color: var(--gold);
  font-weight: 600;
  font-size: 1.28rem;
  line-height: 1.1;
}

.badge-label {
  font-size: 0.78rem;
  color: rgba(243, 237, 225, 0.82);
  line-height: 1.35;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-brand-bar {
    animation: hero-rise 0.7s ease both;
  }

  .hero-copy {
    animation: hero-rise 0.85s ease 0.08s both;
  }

  .hero-visual {
    animation: hero-rise 0.95s ease 0.12s both;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   SECTION HEAD (shared)
   ========================================================= */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
}
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* =========================================================
   CASES / CARROSSEL (Swiper + modal)
   ========================================================= */
.cases-section {
  width: 100%;
  max-width: 100%;
  padding: 96px 24px 110px;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 70% 42% at 50% -8%, rgba(205, 161, 90, 0.09), transparent 58%),
    var(--bg);
  border-top: 1px solid var(--divider);
}

.cases-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.cases-head {
  max-width: 820px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.cases-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 1rem;
}

.cases-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.4vw, 2.75rem);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.12;
  text-wrap: balance;
}

.cases-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
}

.cases-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.cases-filter {
  appearance: none;
  border: 1px solid rgba(205, 161, 90, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.cases-filter:hover {
  color: var(--gold-light);
  border-color: rgba(205, 161, 90, 0.45);
}

.cases-filter.is-active {
  color: #100e0a;
  background: linear-gradient(180deg, #e9d4a3 0%, #cda15a 100%);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(205, 161, 90, 0.28);
}

.cases-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0 12px;
}

.cases-swiper {
  overflow: visible;
  padding: 28px 8px 16px;
}

.cases-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.case-slide-card {
  --case-image-height: 310px;
  position: relative;
  width: 100%;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #0d0b07;
  border: 1px solid rgba(205, 161, 90, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0.78;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.cases-swiper .swiper-slide-active .case-slide-card {
  opacity: 1;
  border-color: rgba(205, 161, 90, 0.34);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(205, 161, 90, 0.1);
}

.case-cover {
  width: 100%;
  height: 310px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-radius: 20px 20px 0 0;
  background: #0d0b07;
}

.case-cover.has-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(8, 8, 8, 0.75)
  );
  pointer-events: none;
  z-index: 1;
}

.case-cover > img,
.case-cover-fill {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

.case-cover > img {
  transform: translate3d(0, 0, 0);
  image-rendering: auto;
  image-rendering: high-quality;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-cover-fill {
  background:
    radial-gradient(circle at 30% 20%, rgba(205, 161, 90, 0.28), transparent 52%),
    linear-gradient(160deg, #2a2218 0%, #0e0c0a 100%);
}

.case-logo {
  width: 76px;
  height: 76px;
  min-width: 76px;
  min-height: 76px;
  max-width: 76px;
  max-height: 76px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: var(--case-image-height);
  margin-left: -38px;
  margin-top: -38px;
  transform: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  background: #0d0b07;
  border: 3px solid #0d0b07;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.case-logo > img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center center;
  margin: 0;
  padding: 0;
  transform: none;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(closest-side, #000 99.2%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 99.2%, transparent 100%);
}

.case-content {
  padding: 42px 18px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.case-title {
  margin: 0;
  min-height: 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.case-location {
  text-align: center;
  margin: 1px 0 0;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
  line-height: 1.3;
}

.case-growth {
  text-align: center;
  margin-top: 6px;
  line-height: 1;
}

.case-growth-value {
  display: block;
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.case-growth-label {
  display: block;
  margin-top: 1px;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.2;
}

.case-period {
  display: block;
  margin-top: 0;
  font-size: 0.75rem;
  line-height: 1.25;
  color: var(--text-muted);
}

.case-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.case-comparison-item {
  border: 1px solid rgba(201, 153, 65, 0.18);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.case-comparison-item span {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.case-comparison-item strong {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 700;
}

.case-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.case-tags span {
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(205, 161, 90, 0.22);
  border-radius: 999px;
  padding: 4px 8px;
}

.case-cta {
  margin-top: auto;
  padding-top: 12px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (hover: hover) and (pointer: fine) {
  .case-slide-card:hover {
    transform: translateY(-6px);
    border-color: rgba(205, 161, 90, 0.55);
    box-shadow:
      0 22px 44px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(205, 161, 90, 0.2);
  }

  .case-slide-card:hover .case-cover > img {
    transform: translate3d(0, 0, 0) scale(1.04);
  }

  .case-slide-card:hover .case-cta {
    color: var(--gold-light);
  }
}

.cases-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  min-height: 48px;
}

.cases-section .swiper-button-prev,
.cases-section .swiper-button-next {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  margin: 0 !important;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(205, 161, 90, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.cases-section .swiper-button-prev::after,
.cases-section .swiper-button-next::after {
  display: none;
}

.cases-section .swiper-button-prev:hover,
.cases-section .swiper-button-next:hover {
  border-color: var(--gold);
  background: rgba(205, 161, 90, 0.12);
  color: var(--gold-light);
}

.cases-section .swiper-button-disabled {
  opacity: 0.28;
  pointer-events: none;
}

.cases-section .swiper-pagination {
  position: static !important;
  bottom: auto !important;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cases-section .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  background: rgba(243, 237, 225, 0.22);
  opacity: 1;
  border-radius: 999px;
  transition: width 0.3s, background 0.3s;
}

.cases-section .swiper-pagination-bullet-active {
  width: 22px;
  background: var(--gold);
}

.cases-cta {
  max-width: 640px;
  margin: 56px auto 0;
  text-align: center;
}

.cases-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 12px;
}

.cases-cta-text {
  color: var(--text-muted);
  margin: 0 0 24px;
}

body.case-modal-open {
  overflow: hidden;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.case-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.case-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 2, 0.78);
  backdrop-filter: blur(10px);
}

.case-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  background: linear-gradient(180deg, #171410 0%, #0e0c0a 100%);
  border: 1px solid rgba(205, 161, 90, 0.22);
  border-radius: 22px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  scrollbar-width: thin;
  scrollbar-color: rgba(205, 161, 90, 0.4) transparent;
}

.case-modal-close {
  position: sticky;
  top: 14px;
  float: right;
  z-index: 2;
  margin: 14px 14px 0 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(205, 161, 90, 0.3);
  background: rgba(10, 9, 6, 0.72);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.case-modal-close:hover {
  background: rgba(205, 161, 90, 0.14);
}

.case-modal-body {
  padding: 12px 28px 32px;
  clear: both;
}

.case-modal-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.case-modal-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  background: #f3ede1;
  border: 1px solid rgba(205, 161, 90, 0.28);
  border-radius: 14px;
  image-rendering: auto;
  image-rendering: high-quality;
}

.case-modal-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}

.case-modal-body h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
}

.case-modal-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(205, 161, 90, 0.12);
  image-rendering: auto;
  image-rendering: high-quality;
}

.case-modal-photo.is-logo-hero {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 40%, rgba(205, 161, 90, 0.18), transparent 58%),
    #12100c;
  padding: 36px;
}

.case-modal-stats {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.case-modal-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(205, 161, 90, 0.12);
  border-radius: 14px;
  padding: 14px;
}

.case-modal-stat span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.case-modal-stat strong {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 600;
}

.case-modal-block {
  margin-bottom: 20px;
}

.case-modal-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}

.case-modal-block ul {
  display: grid;
  gap: 8px;
}

.case-modal-block li {
  position: relative;
  padding-left: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.case-modal-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.case-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-modal-tags span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(205, 161, 90, 0.28);
  border-radius: 999px;
  padding: 6px 11px;
}

.case-chart {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  min-height: 180px;
  padding: 18px 18px 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(205, 161, 90, 0.12);
  border-radius: 16px;
}

.case-chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.case-chart-bar {
  width: 72px;
  min-height: 12px;
  border-radius: 10px 10px 4px 4px;
  transform-origin: bottom;
}

.case-chart-bar--before {
  background: linear-gradient(180deg, #5c5346 0%, #2d2923 100%);
}

.case-chart-bar--after {
  background: linear-gradient(180deg, #e9d4a3 0%, #cda15a 100%);
  box-shadow: 0 10px 24px rgba(205, 161, 90, 0.28);
}

.case-chart-col em {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.case-chart-col strong {
  font-size: 0.95rem;
}

.case-modal-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  padding-bottom: 8px;
}

.case-modal-cta .btn {
  text-align: center;
}

@media (max-width: 768px) {
  .cases-section { padding: 72px 16px 88px; }
  .case-slide-card { --case-image-height: 260px; }
  .case-cover { height: 260px; }
  .case-modal-stats { grid-template-columns: 1fr; }
  .case-modal-body { padding: 8px 18px 26px; }
  .case-modal-photo { height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .case-slide-card,
  .case-cta,
  .case-cover > img,
  .case-modal {
    transition: none;
  }
}

/* =========================================================
   MÉTODO FSA
   ========================================================= */
.method {
  position: relative;
  isolation: isolate;
  padding: 100px 48px 110px;
  font-family: var(--font-method);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  overflow: visible;
}
.method::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 52%, rgba(212, 175, 55, 0.12), transparent 46%),
    repeating-linear-gradient(-45deg, rgba(212, 175, 55, 0.028) 0 1px, transparent 1px 24px),
    var(--bg-method);
}
.method > * {
  position: relative;
  z-index: 1;
}
.method-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.method-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.method-title {
  font-family: var(--font-method);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.method-divider {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold-method);
  opacity: 0.6;
  margin: 24px 0;
}
.method-text { color: var(--text-muted); font-size: 1.05rem; max-width: 100%; }
.method-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.crown-mark { display: inline-flex; }
.method-brand-name {
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  color: var(--gold-method);
}

/* Venn diagram — one square unit; size/position only in % / clamp() */
.method-diagram {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.venn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 620px;
  min-width: 0;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto;
  container-type: inline-size;
  container-name: venn;
  overflow: visible;
}

.venn-circle {
  position: absolute;
  width: 48%;
  height: 48%;
  min-width: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  box-sizing: border-box;
  z-index: 2;
}
.venn-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.16);
  mix-blend-mode: plus-lighter;
  pointer-events: none;
  z-index: 0;
}
.venn-top {
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
}
.venn-bottom {
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
}
.venn-left {
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
}
.venn-right {
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
}

.venn-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 72%;
  max-width: 78%;
  margin: 0 auto;
  padding: 6% 8%;
  box-sizing: border-box;
  background: none;
}
.venn-top .venn-content,
.venn-bottom .venn-content,
.venn-left .venn-content,
.venn-right .venn-content {
  width: 72%;
  padding: 6% 8%;
}

.venn-letter {
  font-family: var(--font-method);
  font-weight: 700;
  font-size: clamp(0.95rem, 7.2cqw, 1.85rem);
  color: var(--gold-method);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.venn-title {
  font-size: clamp(0.52rem, 2.85cqw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0.35em 0 0.55em;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.venn-desc {
  font-size: clamp(0.5rem, 2.2cqw, 0.7rem);
  color: rgba(243, 237, 225, 0.88);
  line-height: 1.4;
  max-width: 100%;
  text-align: center;
  text-wrap: pretty;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.venn-right .venn-desc {
  font-size: clamp(0.48rem, 2cqw, 0.64rem);
  max-width: 96%;
  padding: 0 2%;
}

.venn-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.25rem, 1.5cqw, 0.5rem);
  margin-bottom: 0.55em;
  width: 100%;
}

.venn .brand-chip {
  width: clamp(1rem, 6.4cqw, 1.85rem);
  height: clamp(1rem, 6.4cqw, 1.85rem);
  flex: 0 0 clamp(1rem, 6.4cqw, 1.85rem);
  border-radius: 50%;
  background: rgba(22, 20, 15, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.venn-left .brand-chip {
  width: clamp(0.95rem, 5.8cqw, 1.65rem);
  height: clamp(0.95rem, 5.8cqw, 1.65rem);
  flex: 0 0 clamp(0.95rem, 5.8cqw, 1.65rem);
}
.venn .brand-chip img {
  width: 52%;
  height: 52%;
  object-fit: contain;
  display: block;
}
.venn .brand-chip--app {
  border-radius: 22%;
  background: transparent;
  padding: 0;
}
.venn .brand-chip--app img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venn-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15%;
  height: 15%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #1c1810, #050505 72%);
  border: 1.5px solid var(--gold-method);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  box-shadow:
    0 0 0 0.25em rgba(212, 175, 55, 0.05),
    0 0 0.9em 0.08em rgba(212, 175, 55, 0.28),
    inset 0 0 0.5em rgba(212, 175, 55, 0.22);
}
.venn-core svg {
  width: 52%;
  height: auto;
}

@container venn (max-width: 340px) {
  .venn-desc { display: none; }
}

/* =========================================================
   COMO FUNCIONA — 4 pilares (cards)
   ========================================================= */
.pillars {
  padding: 90px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--divider);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.pillar-card {
  background: #11100c;
  border: 1px solid var(--divider);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pillar-card:hover {
  border-color: rgba(205, 161, 90, 0.4);
  transform: translateY(-3px);
}

.pillar-media {
  aspect-ratio: 16 / 11;
  background: #14120e;
  border-bottom: 1px solid var(--divider);
  overflow: hidden;
}

.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-media--scene {
  background: #000;
}

.pillar-media--scene img {
  object-fit: contain;
}

.pillar-media--photo img {
  object-fit: cover;
  object-position: center 35%;
}

.pillar-media--fit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.pillar-media--fit img {
  width: auto;
  height: 92%;
  max-width: 46%;
  object-fit: contain;
}

.pillar-media--icons,
.pillar-media--ads {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4px 6px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(205, 161, 90, 0.08), transparent 65%),
    #14120e;
}

.pillar-media--ads img.pillar-ad-3d {
  width: 50%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  transform: scale(1.55);
  background: transparent;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.55));
}

.pillar-media--icons .pillar-ad-3d {
  width: min(28%, 96px);
  height: auto;
  object-fit: contain;
}

.pillar-body {
  padding: 26px 24px 28px;
}

.pillar-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pillar-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.pillar-text .gold {
  font-weight: 700;
}

/* =========================================================
   O QUE ESPERAR
   ========================================================= */
.expect { padding: 90px 0; }
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 48px;
  max-width: 900px;
  margin: 0 auto;
}
.checklist li {
  position: relative;
  padding-left: 40px;
  font-size: 1.05rem;
  color: var(--text);
  padding-top: 4px;
  padding-bottom: 4px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(205, 161, 90, 0.14);
  border: 1px solid var(--gold);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 9px; top: 8px;
  width: 7px; height: 12px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.expect-cta { text-align: center; margin-top: 54px; }

/* =========================================================
   AUTORIDADE
   ========================================================= */
.authority {
  background: var(--bg-authority);
  padding: 100px 0;
  border-top: 1px solid var(--divider);
}
.authority-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.authority-media { position: relative; display: flex; justify-content: center; }
.authority-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at center, rgba(205, 161, 90, 0.35), transparent 62%);
  filter: blur(20px);
  z-index: 0;
}
.authority-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  border: 1px solid var(--divider);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 78% 15%;
}
.authority-bio {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 22px 0 32px;
  max-width: 34em;
}

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
.testimonials { padding: 90px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.testimonial {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 40px 34px 32px;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  opacity: 0.7;
}
.testimonial p { font-size: 1.08rem; color: var(--text); margin-bottom: 20px; }
.testimonial footer { font-weight: 700; color: var(--text); }

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta { padding: 40px 0 100px; }
.final-card {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 44px;
  border: 1px solid rgba(205, 161, 90, 0.4);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(205, 161, 90, 0.16), transparent 60%),
    rgba(16, 14, 10, 0.5);
}
.final-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}
.final-text { color: var(--text-muted); font-size: 1.1rem; max-width: 46em; margin: 0 auto 34px; }
.final-note { color: var(--text-muted); font-size: 0.85rem; margin-top: 20px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 40px 0 100px; }
.faq-inner { max-width: 820px; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--divider);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(205, 161, 90, 0.4); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px; height: 20px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }             /* horizontal */
.faq-icon::after  { left: 9px; top: 0; width: 2px; height: 20px; }             /* vertical */
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p { padding: 0 26px 24px; color: var(--text-muted); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--divider);
  padding: 56px 0 30px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--divider);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.footer-logo { height: 42px; width: auto; }
.footer-tagline { color: var(--text-muted); font-size: 0.95rem; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { color: var(--gold-light); transition: color 0.2s ease; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; }
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.virtus { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .pillar-card { transition: none; }
  .btn::after { transition: none; }
  .hero-brand-bar,
  .hero-copy,
  .hero-visual { animation: none; }
}

/* =========================================================
   RESPONSIVE — 980px
   ========================================================= */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(42px, 5vw, 62px);
  }

  .hero-brand-bar,
  .hero-shell {
    width: calc(100% - 48px);
  }

  .hero-shell {
    gap: 16px;
  }
}

@media (max-width: 980px) {
  body { font-size: 16px; }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-brand-bar {
    width: calc(100% - 48px);
    padding: 22px 0 0;
  }

  .hero-shell {
    display: flex;
    flex-direction: column;
    width: calc(100% - 48px);
    padding: 96px 0 48px;
    min-height: 100vh;
    min-height: 100svh;
    gap: 28px;
  }

  .hero-copy {
    max-width: 40rem;
    width: 100%;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
  }

  .hero-portrait-wrap {
    width: 100%;
    height: 100%;
  }

  .hero-portrait {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 70% center;
  }

  .hero-visual .float-badge {
    max-width: 200px;
  }

  .float-badge--top {
    top: 12%;
    left: auto;
    right: 38%;
  }

  .float-badge--bottom {
    bottom: 12%;
    right: 5%;
  }

  .method-grid { grid-template-columns: 1fr; gap: 60px; }
  .method-head { margin-bottom: 36px; }

  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }

  .authority-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .authority-media { order: -1; }
  .authority-bio { margin-left: auto; margin-right: auto; }

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

/* =========================================================
   RESPONSIVE — 620px
   ========================================================= */
@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .method { padding: 80px 20px 90px; }

  .brand-name { display: none; }
  .header-cta { padding: 9px 16px; font-size: 0.82rem; }

  .hero-brand-bar {
    width: calc(100% - 32px);
    padding: 18px 0 0;
  }

  .hero-shell {
    width: calc(100% - 32px);
    padding: 88px 0 40px;
    gap: 28px;
  }

  .hero-brand {
    margin: 0;
  }

  .float-badge--top {
    top: 10%;
    right: 6%;
    left: auto;
  }

  .hero-brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-brand-name {
    font-size: 1.1rem;
    letter-spacing: 0.28em;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    height: 58px;
  }

  .hero-proof {
    flex-wrap: wrap;
  }

  .float-badge {
    max-width: 170px;
    padding: 10px 12px;
  }

  .badge-value { font-size: 1.02rem; }

  .section-head { flex-direction: column; align-items: flex-start; }

  .checklist { grid-template-columns: 1fr; gap: 14px; }

  .final-card { padding: 44px 26px; }

  .footer-inner { flex-direction: column; gap: 28px; }
}

/* Very small screens — nudge the Venn tighter */
@media (max-width: 430px) {
  .method { padding: 80px 20px 90px; }
}
