/* ==========================================================================
   Othon Marques — Consultor Financeiro
   Design system: navy + gold, editorial/premium finance aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Color palette */
  --navy-950: #080f1c;
  --navy-900: #0b1830;
  --navy-800: #11223f;
  --navy-700: #182c4f;
  --navy-600: #24406e;
  --gold-600: #7d8592;
  --gold-500: #a3aab5;
  --gold-400: #cfd4db;
  --gold-300: #e4e7eb;
  --cream-50: #faf8f3;
  --cream-100: #f3efe4;
  --ink-900: #12151c;
  --ink-700: #2b3040;
  --slate-500: #5c6577;
  --slate-300: #9aa2b1;
  --line-soft: #e7e1d3;
  --white: #ffffff;

  /* Type */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 20px 60px -20px rgba(8, 15, 28, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(8, 15, 28, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--cream-50);
  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; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--navy-900); }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}
.section {
  padding: 96px 0;
}
.section--tight { padding: 64px 0; }
.section--navy {
  background: var(--navy-900);
  color: var(--cream-100);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--cream { background: var(--cream-100); }
.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 1.05rem; color: var(--slate-500); }
.section--navy .section-head p { color: var(--slate-300); }
.text-center { text-align: center; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 10px 30px -10px rgba(163, 170, 181, 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(163, 170, 181, 0.75); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-outline-navy {
  border: 1px solid var(--navy-700);
  color: var(--navy-900);
}
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(8, 15, 28, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--gold-400);
  line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--white);
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--gold-400); }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold-500);
}
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .site-header .btn { display: none; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-950);
  display: flex;
  flex-direction: column;
  padding: 28px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.mobile-nav-close { font-size: 1.6rem; color: var(--white); }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--cream-100);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .btn { margin-top: 32px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 85% -10%, #16294a 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: var(--white);
  padding: 190px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(163,170,181,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163,170,181,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
  pointer-events: none;
}

/* Full-bleed photo hero variant */
.hero--photo {
  padding: 200px 0 90px;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero--photo::before { display: none; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: grayscale(90%) contrast(1.15) brightness(0.85);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,15,28,0.72) 0%, rgba(8,15,28,0.6) 45%, rgba(8,15,28,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.hero-stat-row {
  display: flex;
  gap: 44px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat-inline { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-inline .num { font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold-400); }
.hero-stat-inline .label { font-size: 0.8rem; color: var(--slate-300); max-width: 150px; }

@media (max-width: 760px) {
  .hero--photo { padding: 150px 0 70px; min-height: 560px; }
  .hero-bg::after {
    background: linear-gradient(185deg, rgba(8,15,28,0.95) 0%, rgba(8,15,28,0.85) 45%, rgba(8,15,28,0.6) 100%);
  }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}
.hero-lede {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--slate-300);
  max-width: 540px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 0.82rem;
  color: var(--slate-300);
}
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(163,170,181,0.28);
  margin-bottom: 20px;
  line-height: 0;
}
.hero-image svg { width: 100%; height: auto; display: block; }
.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: grayscale(30%) contrast(1.05) brightness(0.96);
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(24,44,79,0.35) 0%, rgba(8,15,28,0.78) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(163,170,181,0.28);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  padding: 34px;
  backdrop-filter: blur(6px);
}
.hero-panel-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
}
.hero-panel h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-top: 14px;
}
.hero-stat-list { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}
.hero-stat:first-child { border-top: none; padding-top: 0; }
.hero-stat .num { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold-400); }
.hero-stat .label { font-size: 0.85rem; color: var(--slate-300); text-align: right; max-width: 200px; }

.pillars-strip {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 80px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillars-strip--standalone {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pillar-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-500);
  border-radius: 10px;
  color: var(--gold-400);
}
.pillar-title { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.pillar-sub { font-size: 0.8rem; color: var(--slate-300); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .pillars-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  padding: 168px 0 90px;
  position: relative;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 3.6vw, 2.9rem); margin-top: 14px; }
.page-hero p { color: var(--slate-300); max-width: 620px; margin-top: 18px; font-size: 1.05rem; }
.page-hero--photo {
  background: var(--navy-950);
  overflow: hidden;
}
.page-hero--photo .container { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 0.78rem;
  color: var(--slate-300);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold-400); }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--gold-400); }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--gold-400);
  margin-bottom: 20px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--slate-500); font-size: 0.95rem; }

.card-navy {
  background: var(--navy-900);
  color: var(--cream-100);
  border: 1px solid var(--navy-700);
}
.card-navy h3 { color: var(--white); }
.card-navy p { color: var(--slate-300); }
.card-navy .card-icon { background: rgba(163,170,181,0.12); }

/* ---------- Section with full-bleed photo background ---------- */
.section--photo-bg {
  position: relative;
  overflow: hidden;
}
.section--photo-bg .container { position: relative; z-index: 1; }

/* ---------- Glass (translucent) card ---------- */
.card--glass {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.5);
}
.card-navy.card--glass {
  background: rgba(11,24,48,0.5);
  border: 1px solid rgba(163,170,181,0.35);
}

/* ---------- Numbered process ---------- */
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line-soft);
}
.process-item:first-child { border-top: none; }
.process-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-600);
}
.process-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process-item p { color: var(--slate-500); }
.section--navy .process-item { border-top-color: rgba(255,255,255,0.1); }
.section--navy .process-item p { color: var(--slate-300); }

/* ---------- Stats ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-block { text-align: center; padding: 20px; }
.stat-num { font-family: var(--font-serif); font-size: 2.4rem; color: var(--gold-400); }
.stat-label { font-size: 0.85rem; color: var(--slate-300); margin-top: 8px; }
@media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Quote / positioning block ---------- */
.quote-block {
  border-left: 2px solid var(--gold-500);
  padding: 6px 0 6px 30px;
  margin: 40px 0;
}
.quote-block p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy-900);
  line-height: 1.5;
}
.section--navy .quote-block p { color: var(--white); }

/* ---------- Identity/persona chips ---------- */
.chip-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  font-size: 0.85rem;
  color: var(--ink-700);
  background: var(--white);
}
.section--navy .chip { border-color: rgba(255,255,255,0.16); color: var(--cream-100); background: rgba(255,255,255,0.04); }

/* ---------- Service badge (generic, no partner branding) ---------- */
.badge-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(163,170,181,0.4);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--gold-300);
  letter-spacing: 0.04em;
}
.service-badge strong { color: var(--white); font-weight: 700; }

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.consortium-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.consortium-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,15,28,0.15) 0%, rgba(8,15,28,0.92) 78%);
}
.consortium-card > * { position: relative; z-index: 1; }
.consortium-card .cc-icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(163,170,181,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.consortium-card h3 { color: var(--white); font-size: 1.35rem; }
.consortium-card p { color: var(--slate-300); margin-top: 10px; font-size: 0.92rem; }
.consortium-card .cc-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  text-align: left;
  width: 100%;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy-900);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
  font-size: 1.1rem;
}
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); background: var(--gold-500); color: var(--navy-950); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p { padding-bottom: 26px; color: var(--slate-500); max-width: 720px; }
.faq-item.is-open .faq-a { max-height: 400px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid > * { min-width: 0; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--navy-900); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: var(--white);
  color: var(--ink-900);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(163,170,181,0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonial / trust block ---------- */
.trust-note {
  border: 1px dashed var(--line-soft);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  background: var(--cream-100);
  color: var(--slate-500);
  font-size: 0.92rem;
}
.trust-note strong { color: var(--navy-900); }

/* ---------- YouTube module ---------- */
.yt-module {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.yt-module::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  right: -120px; top: -160px;
  border: 1px solid rgba(163,170,181,0.18);
  border-radius: 50%;
  pointer-events: none;
}
.yt-module-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.yt-module-head h2 { color: var(--white); margin-top: 14px; max-width: 480px; }
.yt-module-stats { text-align: right; }
.yt-module-stats .num { font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold-400); display: block; line-height: 1.1; }
.yt-module-stats .label { font-size: 0.82rem; color: var(--slate-300); }

.yt-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.yt-grid > * { min-width: 0; }
.yt-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.yt-card:hover { transform: translateY(-6px); border-color: rgba(163,170,181,0.4); }
.yt-card--featured { grid-row: span 2; }
.yt-card--featured .yt-thumb { aspect-ratio: 16 / 11; }
.yt-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy-950); }
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(8,15,28,0.7);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.yt-card--featured .yt-play { width: 68px; height: 68px; }
.yt-card:hover .yt-play { background: #FF0000; transform: translate(-50%, -50%) scale(1.08); }
.yt-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(8,15,28,0.85); color: var(--white);
  font-size: 0.72rem; font-weight: 600; padding: 3px 7px; border-radius: 4px;
}
.yt-card h3 { padding: 16px 18px 18px; font-size: 0.92rem; line-height: 1.4; color: var(--white); }
.yt-card--featured h3 { font-size: 1.2rem; padding: 20px 22px 22px; }
.yt-module-cta { position: relative; margin-top: 36px; text-align: center; }
@media (max-width: 760px) {
  .yt-module { padding: 32px 24px; }
  .yt-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .yt-card--featured { grid-row: auto; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  right: -100px; top: -140px;
  border: 1px solid rgba(163,170,181,0.25);
  border-radius: 50%;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 2.6vw, 2.1rem); max-width: 480px; }
.cta-band p { color: var(--slate-300); margin-top: 12px; max-width: 440px; }
.cta-band-actions { display: flex; gap: 16px; flex-shrink: 0; position: relative; z-index: 1; flex-wrap: wrap; }

.cta-band--photo {
  background: var(--navy-950);
  min-height: 320px;
}
.cta-band--photo::after { display: none; }
.cta-band--photo h2,
.cta-band--photo p,
.cta-band--photo .cta-band-actions {
  position: relative;
  z-index: 1;
}
@media (max-width: 760px) {
  .cta-band { flex-direction: column; align-items: flex-start; padding: 40px 28px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-300);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { margin-top: 16px; font-size: 0.9rem; max-width: 280px; color: var(--slate-300); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.footer-col a, .footer-col li {
  display: block;
  font-size: 0.9rem;
  color: var(--slate-300);
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--slate-500);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- WhatsApp floating button (round, icon-only) ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 14px 34px -10px rgba(0,0,0,0.55);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 38px -10px rgba(0,0,0,0.6); }
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 600px) {
  .wa-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 25px; height: 25px; }
}

/* ---------- Social icons ---------- */
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--cream-100);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.social-icon:hover { border-color: var(--gold-500); color: var(--gold-400); transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Misc page bits ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col > * { min-width: 0; }
.two-col--wide-left { grid-template-columns: 1.5fr 1fr; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col--wide-left { grid-template-columns: 1fr; }
}

.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px;
  border: 1px solid rgba(163,170,181,0.35);
}
.portrait-frame .ph {
  border-radius: calc(var(--radius-lg) - 6px);
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-family: var(--font-serif);
  text-align: center;
  padding: 30px;
  overflow: hidden;
}
.portrait-frame .ph--photo { padding: 0; }
.portrait-text-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
}
.portrait-text-row > * { min-width: 0; }
.mini-portrait {
  border-radius: var(--radius-md);
  padding: 6px;
  border: 1px solid rgba(163,170,181,0.3);
}
.mini-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
  border-radius: calc(var(--radius-md) - 4px);
  display: block;
  filter: grayscale(15%) contrast(1.05);
}
@media (max-width: 700px) {
  .portrait-text-row { grid-template-columns: 1fr; }
  .mini-portrait { width: 160px; margin-bottom: 8px; }
}
.portrait-frame .ph--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(15%) contrast(1.05);
}

.list-check { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.list-check li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.98rem; color: var(--ink-700); }
.list-check .ic {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}
.section--navy .list-check li { color: var(--cream-100); }

.divider-gold {
  width: 56px; height: 2px;
  background: var(--gold-500);
  margin: 18px 0;
}

.tag-row { display: flex; gap: 10px; flex-wrap: wrap; }
.small-tag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-700);
  background: var(--cream-100);
  padding: 6px 12px;
  border-radius: 6px;
}

table.compare-table { width: 100%; min-width: 480px; border-collapse: collapse; margin-top: 10px; }
table.compare-table th, table.compare-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}
table.compare-table th { font-family: var(--font-serif); font-weight: 600; color: var(--navy-900); font-size: 1rem; }
table.compare-table td { color: var(--slate-500); }

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Blog: article typography ---------- */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--slate-300);
  margin-top: 18px;
}
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--slate-300); }
.article-body p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink-700);
  margin-bottom: 24px;
}
.article-body h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 18px;
}
.article-body h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 14px;
  color: var(--navy-900);
}
.article-body ul, .article-body ol {
  margin: 0 0 24px 22px;
}
.article-body li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-700);
  margin-bottom: 10px;
}
.article-body strong { color: var(--navy-900); }
.article-body a { color: var(--gold-600); text-decoration: underline; text-underline-offset: 3px; }
.article-body .quote-block p {
  font-size: 1.3rem;
  margin-bottom: 0;
}
.article-cta-inline {
  background: var(--cream-100);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 40px 0;
}
.article-cta-inline p { margin-bottom: 18px; color: var(--ink-700); font-size: 1rem; }
.article-cta-inline .btn { white-space: normal; text-align: center; }

.article-inline-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 44px 0;
}
.article-inline-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(25%) contrast(1.05) brightness(0.88);
}
.article-inline-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(8,15,28,0.05) 0%, rgba(8,15,28,0.5) 100%);
}

/* ---------- Blog: index cards ---------- */
.blog-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--gold-400); }
.blog-card .small-tag { margin-bottom: 16px; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card p { color: var(--slate-500); font-size: 0.95rem; }
.blog-card .read-more { display: inline-block; margin-top: 16px; font-size: 0.88rem; font-weight: 600; color: var(--gold-600); }
