/* ============================================================
   PERITO GALOTTI — Design System
   Paleta: Azul marinho #0A1628 + Dourado #C9A84C + Branco #F8F9FA
   ============================================================ */

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

/* ── CSS CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  --navy:        #0A1628;
  --navy-mid:    #112240;
  --navy-light:  #1D3461;
  --gold:        #C9A84C;
  --gold-light:  #E6C96A;
  --gold-pale:   #F5E6B8;
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --gray-100:    #EEF0F4;
  --gray-300:    #C8CDD8;
  --gray-500:    #7A8399;
  --gray-700:    #3D4560;
  --text-dark:   #0A1628;
  --text-body:   #2E3A52;
  --text-muted:  #6B7A99;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

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

  --shadow-sm:   0 2px 8px rgba(10,22,40,.08);
  --shadow-md:   0 8px 32px rgba(10,22,40,.14);
  --shadow-lg:   0 20px 60px rgba(10,22,40,.20);
  --shadow-gold: 0 4px 24px rgba(201,168,76,.30);

  --transition:  all .28s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .50s cubic-bezier(.4,0,.2,1);

  --max-w:       1200px;
  --section-py:  80px;
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy);
}

/* ── UTILITIES ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section--dark  { background: var(--navy); color: var(--off-white); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--gray  { background: var(--gray-100); }
.section--navy-mid { background: var(--navy-mid); color: var(--off-white); }

.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-serif   { font-family: var(--font-serif); }

.d-flex       { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header__title {
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  margin-bottom: 16px;
}

.section-header__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.btn--lg { padding: 17px 36px; font-size: 1.0625rem; }
.btn--sm { padding: 10px 20px; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0;
}

.navbar--transparent {
  background: transparent;
}

.navbar--solid {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.navbar__logo-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}

.navbar__logo-title {
  font-size: .6875rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__link {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar__link:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

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

.navbar__cta {
  margin-left: 12px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .navbar__toggle { display: flex; }

  .navbar__menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    transform: translateY(-100vh);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .navbar__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .navbar__link { padding: 14px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .navbar__cta { margin-left: 0; margin-top: 16px; }
  .navbar__cta .btn { width: 100%; justify-content: center; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(201,168,76,.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(29,52,97,.60) 0%, transparent 60%),
    linear-gradient(135deg, #0A1628 0%, #112240 60%, #0D1F3C 100%);
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.30);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.70);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.hero__stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.60);
  margin-top: 4px;
  line-height: 1.3;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.20);
  animation: ring-rotate 20s linear infinite;
}

.hero__image-ring::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
}

@keyframes ring-rotate { to { transform: rotate(360deg); } }

.hero__photo {
  width: 340px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(201,168,76,.25);
}

.hero__photo-placeholder {
  width: 340px;
  height: 400px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 3px solid rgba(201,168,76,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.40);
  font-size: .875rem;
  position: relative;
  z-index: 1;
}

.hero__photo-placeholder svg { opacity: .3; }

.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: 0 14px 28px -4px rgba(10, 25, 47, 0.18), 0 6px 12px -2px rgba(0,0,0,0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero__card--approval {
  bottom: 50px;
  left: -25px;
  animation-delay: 0s;
}

.hero__card--laudos {
  top: 50px;
  right: -25px;
  animation-delay: 2s;
}

.hero__card-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__card-icon--green { background: #ECFDF5; color: #059669; }
.hero__card-icon--blue  { background: #EFF6FF; color: #2563EB; }

.hero__card-value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.hero__card-label {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__stats { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__image-wrap { display: none; }
}

/* ── CREDENTIALS BAR ────────────────────────────────────── */
.cred-bar {
  background: var(--navy-mid);
  padding: 20px 0;
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
}

.cred-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cred-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.80);
  font-size: .875rem;
  font-weight: 500;
}

.cred-bar__icon {
  color: var(--gold);
  flex-shrink: 0;
}

.cred-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.12);
}

@media (max-width: 600px) {
  .cred-bar__inner { gap: 20px; }
  .cred-bar__divider { display: none; }
}

/* ── SERVICES CARDS ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,.25);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card__desc {
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-body);
}

.service-card__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.service-card__link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card__link:hover { gap: 10px; }

/* ── WHY US ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why__image-wrap {
  position: relative;
}

.why__image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.why__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.why__badge-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.why__badge-label {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

.why__content { padding-left: 16px; }

.why__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.why__feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why__feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why__feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.why__feature-desc {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why__image-wrap { display: none; }
  .why__content { padding-left: 0; }
}

/* ── PROCESS STEPS ──────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 32px 24px;
}

.process-step__number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}

.process-step__title {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.process-step__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.30);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-card__stars span {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-card__text {
  font-size: .9375rem;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--white);
  font-size: .9375rem;
}

.testimonial-card__role {
  font-size: .8125rem;
  color: rgba(255,255,255,.50);
}

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(201,168,76,.35); }
.faq-item.is-open { border-color: var(--gold); box-shadow: var(--shadow-gold); }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.faq-item__question:hover { background: var(--gray-100); }
.faq-item.is-open .faq-item__question { background: var(--gold-pale); color: var(--navy); }

.faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-muted);
}

.faq-item.is-open .faq-item__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}

.faq-item.is-open .faq-item__answer { max-height: 600px; }

.faq-item__answer-inner {
  padding: 0 24px 24px;
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-section__glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section__title {
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.70);
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-info__item:last-child { border-bottom: none; }

.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info__label {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: .9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

.form-control::placeholder { color: var(--gray-300); }

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── STATS BANNER ───────────────────────────────────────── */
.stats-banner {
  background: var(--navy);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item__value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
}

.about-bio {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 100px;
}

.about-photo__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-photo__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gray-100), var(--gray-300));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-500);
  font-size: .875rem;
  border: 2px dashed var(--gray-300);
}

.about-photo__credentials {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.credential-badge:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.credential-badge__icon { color: var(--gold); flex-shrink: 0; }

@media (max-width: 900px) {
  .about-bio { grid-template-columns: 1fr; }
  .about-photo { position: static; }
}

/* ── CASES ──────────────────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,.30);
}

.case-card__verdict {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #059669;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.case-card__type {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.case-card__title {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.case-card__desc {
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.7;
}

/* ── BLOG ───────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--gray-100);
}

.blog-card__body { padding: 24px; }

.blog-card__tag {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.0625rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card__meta {
  font-size: .8125rem;
  color: var(--gray-300);
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.30), transparent);
}

.page-hero__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.70);
  max-width: 560px;
  margin: 0 auto;
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--text-muted);
  padding: 16px 0;
}

.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--gray-300); }
.breadcrumb__current { color: var(--navy); font-weight: 600; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #060E1C;
  color: rgba(255,255,255,.65);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.footer__brand-title {
  font-size: .8125rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.60);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer__col-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: .875rem;
  color: rgba(255,255,255,.60);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .8125rem;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-link {
  color: rgba(255,255,255,.40);
  transition: color .2s;
}

.footer__bottom-link:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── STICKY WHATSAPP ────────────────────────────────────── */
.sticky-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.sticky-whatsapp__tooltip {
  background: var(--navy);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.sticky-whatsapp:hover .sticky-whatsapp__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.sticky-whatsapp__btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}

.sticky-whatsapp__btn:hover {
  transform: scale(1.1);
  background: #1EBE57;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.70); }
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: .1s; }
[data-animate-delay="2"] { transition-delay: .2s; }
[data-animate-delay="3"] { transition-delay: .3s; }
[data-animate-delay="4"] { transition-delay: .4s; }
[data-animate-delay="5"] { transition-delay: .5s; }

/* ── PLACEHOLDER CLEAN ───── */
.placeholder {
  font-style: normal;
}

/* ── ACCESSIBILITY ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── PRINT ──────────────────────────────────────────────── */
@media print {
  .navbar, .sticky-whatsapp, .hero__image-wrap, .cta-section { display: none; }
  body { color: #000; background: #fff; }
}
