/* ============================================================
   MARLON SHEVELEW AND ASSOCIATES INC.
   Playfair Display + Inter | Navy #1B2E4E | Gold #C9A84C
   ============================================================ */

:root {
  --navy:    #1B2E4E;
  --navy-dk: #0C1A2E;
  --navy-md: #243D63;
  --gold:    #C9A84C;
  --gold-lt: #E5C96A;
  --surface: #F8F5EF;
  --white:   #FFFFFF;
  --text:    #1A1A2A;
  --text-lt: #56606E;
  --border:  #E0DAD0;
  --radius:  8px;
  --trans:   all .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { line-height: 1.75; color: var(--text-lt); }
a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── UTILS ── */
.section-label {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.gold-line { position: relative; display: inline-block; }
.gold-line::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width .65s ease;
}
.gold-line.animate::after { width: 100%; }
.section { padding: 6rem 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--navy-dk); }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; max-width: 55ch; }
.section-header p { max-width: 55ch; margin-top: .8rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: var(--radius);
  font-size: .92rem; font-weight: 700; letter-spacing: .02em;
  cursor: pointer; transition: var(--trans); border: 2px solid transparent;
  min-height: 44px; white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: var(--navy-dk); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-navy  { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dk); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; display: flex; align-items: center;
  transition: background .35s, box-shadow .35s;
}
.nav.scrolled { background: var(--navy-dk); box-shadow: 0 2px 30px rgba(0,0,0,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo .firm-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.nav-logo .firm-sub  { font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.75); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 10px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--trans); }
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy-dk); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #fff; transition: color .2s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: #fff; font-size: 2rem;
  cursor: pointer; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&q=85&auto=format&fit=crop') center/cover no-repeat;
  transform: scale(1.08); will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,26,46,.96) 0%, rgba(27,46,78,.88) 60%, rgba(12,26,46,.75) 100%);
}
.hero-svg {
  position: absolute; right: 6%; top: 50%;
  transform: translateY(-50%);
  width: min(38%, 460px); opacity: .13;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 9rem 0 5rem; max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.35);
  border-radius: 2rem; padding: .38rem 1rem; margin-bottom: 1.75rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.7); } }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.8; max-width: 54ch; margin-bottom: 2.25rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-divider { height: 1px; background: rgba(255,255,255,.1); margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.hero-stat-label { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); display: block; margin-top: .35rem; }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.35); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); animation: scrollDrop 2s ease-in-out infinite; }
@keyframes scrollDrop { 0%,100%{opacity:0;transform:scaleY(.4) translateY(-8px)} 50%{opacity:1;transform:scaleY(1) translateY(0)} }

/* ─────────────────────────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 1.4rem 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5rem 3.5rem; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.65); font-size: .8rem; font-weight: 500; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,.15); }

/* ─────────────────────────────────────────────────────────────
   ABOUT SNIPPET
───────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); display: block; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--navy-dk); padding: 1.5rem;
  border-radius: var(--radius); text-align: center; min-width: 110px;
  box-shadow: 0 12px 40px rgba(201,168,76,.3);
}
.about-badge-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; display: block; }
.about-badge-lbl { font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; display: block; margin-top: .2rem; opacity: .75; }
.about-text .section-label { margin-bottom: .5rem; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1.25rem; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin: 1.5rem 0 2rem; }
.checklist li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .88rem; color: var(--text-lt); line-height: 1.5;
}
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(201,168,76,.12); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .1rem;
}
.check-icon svg { width: 10px; height: 10px; color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   PRACTICE AREA CARDS
───────────────────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; transition: var(--trans); position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--gold); transition: width .35s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.card:hover::after { width: 100%; }
.card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(201,168,76,.1); display: flex; align-items: center;
  justify-content: center; color: var(--gold); margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .5rem; }
.card p { font-size: .84rem; line-height: 1.65; max-width: 100%; }
.card-arrow {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: 1rem; font-size: .75rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: .08em;
}
.card:hover .card-arrow svg { transform: translateX(4px); }
.card-arrow svg { transition: transform .2s; }

/* ─────────────────────────────────────────────────────────────
   QUOTE SECTION
───────────────────────────────────────────────────────────── */
.quote-section {
  background: var(--navy); padding: 6rem 0;
  text-align: center; position: relative; overflow: hidden;
}
.quote-mark {
  position: absolute; top: -3rem; left: 50%; transform: translateX(-50%);
  font-family: 'Playfair Display', serif; font-size: 24rem; font-weight: 700;
  color: rgba(201,168,76,.04); line-height: 1; pointer-events: none; user-select: none;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-style: italic; color: #fff;
  max-width: 780px; margin: 0 auto 1.5rem; line-height: 1.55; position: relative; z-index: 1;
}
.quote-text em { font-style: normal; color: var(--gold); }
.quote-attr { font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.quote-attr span { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   STATS SECTION
───────────────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-card { padding: 2.5rem 1.5rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); text-align: center; transition: var(--trans); }
.stat-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--navy); line-height: 1; display: block; }
.stat-num .suffix { color: var(--gold); }
.stat-lbl { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-lt); margin-top: .5rem; display: block; }

/* ─────────────────────────────────────────────────────────────
   WHY US
───────────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.why-item { padding: 2rem 1.5rem; }
.why-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: rgba(201,168,76,.18); line-height: 1; margin-bottom: .5rem; }
.why-item h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .6rem; }
.why-item p  { font-size: .88rem; max-width: 36ch; }

/* ─────────────────────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────────────────────── */
.cta-banner { background: var(--navy-dk); padding: 5.5rem 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1200&q=40') center/cover no-repeat;
  opacity: .04;
}
.cta-inner { position: relative; text-align: center; }
.cta-inner h2 { color: #fff; margin-bottom: .75rem; }
.cta-inner p  { color: rgba(255,255,255,.55); max-width: 52ch; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.footer { background: #070f1c; color: rgba(255,255,255,.45); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem; }
.footer-brand .firm-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.footer-brand .firm-sub  { font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.footer-tagline { font-size: .82rem; line-height: 1.7; margin-top: 1rem; color: rgba(255,255,255,.35); max-width: 28ch; }
.footer h4 { font-family: 'Inter', sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-nav-list a { font-size: .82rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-nav-list a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: .7rem; }
.footer-contact-list a { font-size: .82rem; color: rgba(255,255,255,.45); display: flex; align-items: flex-start; gap: .5rem; transition: color .2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .75rem; }
.footer-bottom a { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────────────────────── */
.page-hero { position: relative; height: 46vh; min-height: 320px; display: flex; align-items: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,26,46,.96) 0%, rgba(27,46,78,.88) 100%); }
.page-hero-content { position: relative; z-index: 2; padding-top: 72px; }
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.2); }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero-sub { font-size: .95rem; color: rgba(255,255,255,.55); max-width: 54ch; }

/* ─────────────────────────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem;
  align-items: start; transition: var(--trans);
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.08); }
.service-icon { width: 56px; height: 56px; border-radius: 10px; background: rgba(201,168,76,.1); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.service-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.service-card p  { font-size: .83rem; max-width: 100%; }

/* Process steps */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 2rem; left: 12.5%; right: 12.5%; height: 1px; background: var(--border); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-circle {
  width: 64px; height: 64px; border-radius: 50%; background: var(--navy);
  color: var(--gold); font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 4px var(--surface), 0 0 0 5px var(--gold);
}
.process-step h3 { font-size: .95rem; color: var(--navy); margin-bottom: .4rem; }
.process-step p  { font-size: .8rem; max-width: 20ch; margin: 0 auto; }

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────────────────────── */
.about-full { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-full-img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius); }
.timeline { margin: 2rem 0; }
.tl-item { display: grid; grid-template-columns: 80px 1fr; gap: 1rem; padding-bottom: 2rem; position: relative; }
.tl-item:not(:last-child)::before { content: ''; position: absolute; left: 39px; top: 2.5rem; bottom: 0; width: 1px; background: var(--border); }
.tl-year { font-family: 'Playfair Display', serif; font-size: .88rem; font-weight: 700; color: var(--gold); padding-top: .1rem; }
.tl-dot { position: absolute; left: 36px; top: .2rem; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.2); }
.tl-body h4 { font-size: .95rem; color: var(--navy); margin-bottom: .25rem; }
.tl-body p  { font-size: .82rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { padding: 2rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); text-align: center; transition: var(--trans); }
.value-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.value-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(201,168,76,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--gold); }
.value-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.value-card p  { font-size: .83rem; max-width: 100%; }

/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 4rem; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; box-shadow: 0 4px 40px rgba(0,0,0,.06); }
.contact-form h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: .4rem; }
.contact-form .sub { font-size: .85rem; color: var(--text-lt); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea { padding: .8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .9rem; font-family: 'Inter', sans-serif; color: var(--text); background: #fff; transition: border-color .2s; width: 100%; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card { background: var(--navy); border-radius: var(--radius); padding: 2rem; }
.info-card h4 { font-size: 1rem; color: var(--gold); margin-bottom: 1.25rem; }
.info-row { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; font-size: .85rem; color: rgba(255,255,255,.65); }
.info-row:last-child { margin-bottom: 0; }
.info-row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.info-row a { color: rgba(255,255,255,.65); transition: color .2s; }
.info-row a:hover { color: var(--gold); }
.wa-cta {
  display: flex; align-items: center; gap: 1rem;
  background: #25D366; border-radius: var(--radius); padding: 1.25rem 1.5rem;
  color: #fff; transition: var(--trans); text-decoration: none;
}
.wa-cta:hover { background: #1db954; transform: translateY(-2px); }
.wa-cta-text { font-size: .88rem; font-weight: 700; }
.wa-cta-sub  { font-size: .75rem; opacity: .8; }
.areas-section { margin-top: 4rem; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin-top: 1.5rem; }
.area-tag { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: .55rem .75rem; font-size: .78rem; font-weight: 600; color: var(--navy); text-align: center; }

/* ─────────────────────────────────────────────────────────────
   FLOATING WHATSAPP
───────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: var(--trans);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ─────────────────────────────────────────────────────────────
   TRUSTED BY / CLIENTS
───────────────────────────────────────────────────────────── */
.trusted-section { background: var(--navy-dk); padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.05); }
.clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .75rem; }
.client-tag {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px; padding: .65rem .75rem; text-align: center;
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.45);
  letter-spacing: .02em; transition: var(--trans);
}
.client-tag:hover { background: rgba(201,168,76,.08); border-color: rgba(201,168,76,.25); color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   TEAM CARDS
───────────────────────────────────────────────────────────── */
.team-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; display: flex; align-items: flex-start; gap: 1.25rem;
  transition: var(--trans);
}
.team-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
.team-card--featured {
  background: var(--navy); border-color: var(--navy);
  padding: 2rem 2rem;
}
.team-card--featured h3 { color: #fff; }
.team-card--featured .team-qual { color: rgba(255,255,255,.5); }
.team-card--featured .team-qual span { color: rgba(255,255,255,.3); }
.team-card--featured .team-areas { color: rgba(255,255,255,.6); }
.team-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,168,76,.12); border: 2px solid var(--gold);
  color: var(--gold); font-family: 'Playfair Display', serif;
  font-size: .95rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; letter-spacing: .02em;
}
.team-avatar--gold { background: var(--gold); color: var(--navy-dk); border-color: var(--gold-lt); font-size: 1rem; }
.team-info { flex: 1; }
.team-role-badge {
  display: inline-block; font-size: .62rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .2rem .65rem; border-radius: 3px; margin-bottom: .6rem;
  background: rgba(201,168,76,.12); color: var(--gold);
}
.team-role-badge--navy { background: rgba(27,46,78,.1); color: var(--navy); }
.team-role-badge--slate { background: rgba(86,96,110,.08); color: var(--text-lt); }
.team-role-badge--gold-lt { background: rgba(201,168,76,.08); color: #8a6f25; }
.team-info h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: .25rem; }
.team-qual { font-size: .78rem; color: var(--text-lt); margin-bottom: .4rem; max-width: 100%; }
.team-qual span { color: #aaa; }
.team-areas { font-size: .78rem; color: var(--text-lt); line-height: 1.55; max-width: 100%; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.team-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

@media (max-width: 768px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid, .team-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────────────────────────
   REVEAL BASE (JS takes over on desktop)
───────────────────────────────────────────────────────────── */
.reveal, .reveal-l, .reveal-r { opacity: 0; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-full   { grid-template-columns: 1fr; }
  .about-full-img { height: 380px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-links + .btn { display: none; }
  .hamburger { display: flex; }
  .about-grid   { grid-template-columns: 1fr; }
  .about-img    { height: 340px; }
  .about-badge  { right: 0; }
  .cards-grid   { grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .form-row     { grid-template-columns: 1fr; }
  .areas-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas    { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .hero-stats   { gap: 2rem; }
  .section { padding: 4rem 0; }
  .about-grid   { gap: 3rem; }
  .cta-btns     { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .trust-sep { display: none; }
  .trust-bar-inner { gap: 1rem 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
