/* ==========================================================================
   H J TAX SOLUTIONS PVT LTD — CORE STYLESHEET
   Design tokens, layout primitives, header, footer, buttons, signature motif
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root{
  /* --- Brand color tokens (derived palette — see /assets/README for rationale) --- */
  --ink:        #0F2036;   /* deep ledger navy — primary dark surface */
  --ink-2:      #16314F;   /* lighter navy for gradients/hover */
  --ink-3:      #0A1626;   /* deepest navy, footer */
  --gold:       #C89B3C;   /* filed-stamp gold — primary accent */
  --gold-light: #E7C87A;
  --gold-dark:  #9C7627;
  --seal:       #A6362A;   /* official-seal red — urgency / CTA accent */
  --seal-dark:  #832A21;
  --cream:      #FAF5E9;   /* warm paper background */
  --cream-2:    #F3EAD3;   /* deeper paper tint for section bands */
  --paper-line: #E4D8B8;   /* hairline on cream */
  --white:      #FFFFFF;
  --ink-text:   #1B2333;   /* body text on light */
  --muted:      #5C6478;   /* secondary text on light */
  --muted-lt:   #8891A3;
  --success:    #2E7D5B;
  --line:       #E2DAC6;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 2px rgba(15,32,54,.06), 0 1px 1px rgba(15,32,54,.04);
  --shadow-md: 0 8px 24px rgba(15,32,54,.10), 0 2px 6px rgba(15,32,54,.06);
  --shadow-lg: 0 20px 50px rgba(15,32,54,.16), 0 6px 16px rgba(15,32,54,.08);
  --shadow-gold: 0 10px 30px rgba(200,155,60,.30);

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

  --container: 1240px;
}

/* --- Reset --- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink-text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
input, select, textarea{ font-family: inherit; font-size: 1rem; }
h1,h2,h3,h4,h5{ font-family: var(--font-display); margin:0; font-weight:600; line-height:1.12; color: var(--ink); }
p{ margin:0; }

:focus-visible{
  outline: 2.5px solid var(--gold-dark);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.container{ max-width: var(--container); margin:0 auto; padding: 0 24px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-body); font-weight:700; font-size: .72rem;
  letter-spacing: .14em; text-transform:uppercase; color: var(--gold-dark);
}
.eyebrow::before{
  content:''; width:16px; height:2px; background: var(--seal); display:inline-block;
}
.section{ padding: 88px 0; }
.section--tight{ padding: 64px 0; }
@media (max-width: 720px){
  .section{ padding: 56px 0; }
  .section--tight{ padding: 44px 0; }
}

.section-head{ max-width: 640px; margin: 0 0 44px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-top:10px; }
.section-head p{ color: var(--muted); font-size: 1.05rem; margin-top: 14px; line-height:1.6; }

/* ==========================================================================
   SIGNATURE MOTIF — the "Filed Seal": a 12-notch stamp/seal shape
   Used for: badges, dividers, avatar frames, numbered markers, footer mark
   ========================================================================== */
.seal{
  --seal-size: 64px;
  width: var(--seal-size); height: var(--seal-size);
  position: relative;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.seal svg{ position:absolute; inset:0; width:100%; height:100%; }
.seal-mark{
  position:absolute; inset:0; width:100%; height:100%; display:block;
  background: var(--ink);
  clip-path: polygon(
    50% 0%, 62% 6%, 75% 2%, 82% 13%, 95% 15%, 96% 28%, 100% 38%,
    92% 47%, 96% 58%, 88% 66%, 90% 79%, 78% 82%, 72% 93%, 60% 88%,
    50% 98%, 40% 88%, 28% 93%, 22% 82%, 10% 79%, 12% 66%, 4% 58%,
    8% 47%, 0% 38%, 4% 28%, 5% 15%, 18% 13%, 25% 2%, 38% 6%
  );
}
.seal-divider{
  width:100%; height: 46px; position:relative; overflow:hidden;
}
.seal-divider svg{ width:100%; height:100%; display:block; }

/* ==========================================================================
   NOTICE BAR
   ========================================================================== */
.notice-bar{
  background: var(--ink-3); color: #C9D2E0; font-size: .78rem;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.notice-bar .container{ display:flex; align-items:center; justify-content:space-between; gap: 16px; flex-wrap:wrap; }
.notice-bar__msg{ display:flex; align-items:center; gap:8px; opacity:.92; }
.notice-bar__msg strong{ color: var(--gold-light); font-weight:700; }
.notice-bar__links{ display:flex; gap:18px; align-items:center; }
.notice-bar__links a{ display:flex; align-items:center; gap:6px; opacity:.92; transition: opacity .2s; }
.notice-bar__links a:hover{ opacity:1; color: var(--gold-light); }
@media (max-width: 760px){
  .notice-bar__msg span.hide-sm{ display:none; }
}
@media (max-width: 560px){
  .notice-bar .container{ justify-content:center; text-align:center; }
  .notice-bar__msg{ justify-content:center; width:100%; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position: sticky; top:0; z-index: 200;
  background: rgba(250,245,233,.98);
  border-bottom: 1px solid var(--paper-line);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  gap: 18px; height: 82px;
}
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand-mark{ --seal-size: 46px; }
.brand-mark .seal-mark{ background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%); }
.brand-mark .seal-letters{
  position:relative; z-index:2; font-family: var(--font-display); font-weight:700;
  color: var(--gold-light); font-size: 1.05rem; letter-spacing: .01em;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text .name{ font-family: var(--font-display); font-weight:700; font-size: 1.05rem; color: var(--ink); white-space:nowrap; }
.brand-text .tag{ font-size: .68rem; letter-spacing:.08em; text-transform:uppercase; color: var(--gold-dark); font-weight:700; margin-top:2px; }

.main-nav{ display:flex; align-items:center; gap: 30px; }
.main-nav a{
  font-size: .93rem; font-weight:600; color: var(--ink-text); position:relative;
  padding: 6px 0; white-space:nowrap;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--seal);
  transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.main-nav a.active{ color: var(--seal-dark); }

.header-actions{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.header-phone{
  display:flex; align-items:center; gap:8px; font-weight:700; font-size:.92rem; color: var(--ink);
  white-space:nowrap;
}
.header-phone svg{ flex-shrink:0; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-body); font-weight:700; font-size: .92rem;
  padding: 13px 24px; border-radius: 999px; border: none; cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn-primary{ background: var(--seal); color: var(--white); box-shadow: 0 8px 20px rgba(166,54,42,.28); }
.btn-primary:hover{ background: var(--seal-dark); box-shadow: 0 12px 26px rgba(166,54,42,.36); }
.btn-gold{ background: var(--gold); color: var(--ink-3); box-shadow: var(--shadow-gold); }
.btn-gold:hover{ background: var(--gold-dark); color: var(--white); }
.btn-outline{ background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--white); }
.btn-outline-light{ background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-light:hover{ background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-ghost{ background: transparent; color: var(--ink); padding: 13px 6px; }
.btn-ghost:hover{ color: var(--seal-dark); transform:none; }
.btn-sm{ padding: 9px 18px; font-size: .84rem; }
.btn-lg{ padding: 16px 32px; font-size: 1rem; }
.btn-block{ width:100%; }
.btn svg{ flex-shrink:0; }

.hamburger{
  display:none; width: 44px; height: 44px; border:none; background:transparent;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.hamburger span{ width:24px; height:2.5px; background: var(--ink); border-radius:2px; transition: all .25s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav{
  position: fixed; inset:0; z-index: 999;
  background: var(--ink);
  display:flex; flex-direction:column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y:auto;
}
.mobile-nav.open{ transform: translateX(0); }
.mobile-nav__top{ display:flex; align-items:center; justify-content:space-between; padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav__top .brand-text .name{ color: var(--white); }
.mobile-nav__close{ width:44px; height:44px; border:none; background:transparent; color:var(--white); font-size:1.6rem; }
.mobile-nav__links{ display:flex; flex-direction:column; padding: 20px 24px; gap:4px; }
.mobile-nav__links a{
  color: var(--cream); font-family: var(--font-display); font-size: 1.5rem; font-weight:600;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav__cta{ padding: 20px 24px 36px; display:flex; flex-direction:column; gap:12px; margin-top:auto; }
.mobile-nav__phone{ display:flex; align-items:center; gap:10px; color: var(--gold-light); font-weight:700; padding: 0 24px 18px; }

@media (max-width: 1300px){
  .header-phone{ display:none; }
  .main-nav{ gap: 20px; }
}
@media (max-width: 1024px){
  .main-nav{ display:none; }
  .hamburger{ display:flex; }
  .header-actions .btn-outline{ display:none; }
}
@media (max-width: 560px){
  .site-header .container{ height: 70px; }
  .brand-text .tag{ display:none; }
  .header-actions .btn{ padding: 11px 16px; font-size: .82rem; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--ink-3); color: #B9C2D4; }
.footer-top{ padding: 72px 0 48px; }
.footer-grid{
  display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .brand-text .name{ color: var(--white); }
.footer-brand .brand-text .tag{ color: var(--gold-light); }
.footer-brand p{ margin-top:18px; font-size: .92rem; line-height:1.7; color:#9CA7BC; max-width: 320px; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.16);
  display:flex; align-items:center; justify-content:center; transition: all .2s;
}
.footer-social a:hover{ background: var(--gold); border-color: var(--gold); color: var(--ink-3); }
.footer-col h4{ color: var(--white); font-family: var(--font-body); font-size: .82rem; letter-spacing:.08em; text-transform:uppercase; font-weight:700; margin-bottom: 18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size: .9rem; color:#B9C2D4; transition: color .2s; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-col .addr{ font-size:.9rem; line-height:1.7; color:#9CA7BC; font-style:normal; }

.footer-legal{ border-top: 1px solid rgba(255,255,255,.1); padding: 28px 0; }
.footer-legal__disclaimer{ font-size: .78rem; line-height:1.75; color:#7E8AA0; max-width: 1100px; }
.footer-legal__disclaimer strong{ color:#A6B0C4; }
.footer-legal__disclaimer + .footer-legal__disclaimer{ margin-top:12px; }

.footer-bottom{ border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom .container{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; font-size:.8rem; color:#7E8AA0; }
.footer-bottom a{ color:#7E8AA0; }
.footer-bottom a:hover{ color: var(--gold-light); }

@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; row-gap: 36px; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-top{ padding: 56px 0 32px; }
}

/* ==========================================================================
   FLOATING WHATSAPP + CALL (stacked sticky icons)
   ========================================================================== */
.float-whatsapp{
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(37,211,102,.42);
  transition: transform .2s ease;
}
.float-whatsapp:hover{ transform: scale(1.08); }
.float-whatsapp::before{
  content:''; position:absolute; inset:-4px; border-radius:50%;
  border: 2px solid #25D366; opacity:.6;
  animation: pulse-ring 2.4s ease-out infinite;
}
.float-call{
  position: fixed; right: 22px; bottom: 94px; z-index: 150;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(15,32,54,.42);
  transition: transform .2s ease;
}
.float-call:hover{ transform: scale(1.08); background: var(--seal); }
.float-call svg{ width:26px; height:26px; }
@keyframes pulse-ring{
  0%{ transform: scale(.9); opacity:.6; }
  80%{ transform: scale(1.4); opacity:0; }
  100%{ opacity:0; }
}
@media (max-width:560px){
  .float-whatsapp{ width:52px; height:52px; right:16px; bottom:88px; }
  .float-call{ width:52px; height:52px; right:16px; bottom:158px; }
}
@media (max-width:640px){
  .float-whatsapp, .float-call{ display: none; } /* replaced by mobile-cta-bar below */
}

/* ==========================================================================
   MOBILE STICKY CTA BAR (Call + WhatsApp, bottom of screen on small devices)
   ========================================================================== */
.mobile-cta-bar{ display:none; }
@media (max-width:640px){
  .mobile-cta-bar{
    display:flex; position:fixed; left:0; right:0; bottom:0; z-index:159;
    background: var(--white); border-top:1px solid var(--paper-line);
    box-shadow: 0 -8px 20px -8px rgba(0,0,0,.15);
    padding:10px 12px; gap:10px;
  }
  .mobile-cta-bar a{
    flex:1; text-align:center; padding:13px 8px; border-radius:10px;
    font-weight:700; font-size:13.5px; display:flex; align-items:center; justify-content:center; gap:7px;
  }
  .mobile-cta-bar .mc-call{ background: var(--ink); color:#fff; }
  .mobile-cta-bar .mc-whatsapp{ background: #25D366; color:#fff; }
  .mobile-cta-bar svg{ width:16px; height:16px; }
  body{ padding-bottom: 74px; }
}

/* ==========================================================================
   SHARED COMPONENTS
   ========================================================================== */

/* Page hero banner (inner pages) */
.page-hero{
  position:relative; background: var(--ink); color: var(--white);
  padding: 64px 0 56px; overflow:hidden;
}
.page-hero::before{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(circle at 85% 20%, rgba(200,155,60,.16), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(166,54,42,.18), transparent 50%);
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero .eyebrow{ color: var(--gold-light); }
.page-hero .eyebrow::before{ background: var(--gold-light); }
.page-hero h1{ color: var(--white); font-size: clamp(2rem, 4.2vw, 3.1rem); margin-top:14px; max-width: 760px; }
.page-hero p{ color: #C6CEDE; font-size: 1.08rem; margin-top:16px; max-width: 620px; line-height:1.65; }
.breadcrumb{ display:flex; gap:8px; align-items:center; font-size:.82rem; color:#9AA6BC; margin-bottom: 4px; }
.breadcrumb a:hover{ color: var(--gold-light); }

/* Trust marquee */
.marquee{ background: var(--ink); padding: 20px 0; overflow:hidden; border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08); }
.marquee__track{ display:flex; gap:56px; width:max-content; animation: marquee 32s linear infinite; }
.marquee__item{ display:flex; align-items:center; gap:10px; color:#C6CEDE; font-weight:600; font-size:.94rem; white-space:nowrap; }
.marquee__item .dot{ width:6px; height:6px; border-radius:50%; background: var(--gold); }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* Cards */
.card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }

/* Badges */
.badge{
  display:inline-flex; align-items:center; gap:6px; padding: 7px 14px; border-radius:999px;
  font-size:.78rem; font-weight:700; background: var(--cream-2); color: var(--ink);
  border: 1px solid var(--paper-line);
}
.badge.gold{ background: rgba(200,155,60,.12); color: var(--gold-dark); border-color: rgba(200,155,60,.3); }
.badge.seal{ background: rgba(166,54,42,.1); color: var(--seal-dark); border-color: rgba(166,54,42,.25); }

/* Reveal on scroll */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible{ opacity:1; transform: translateY(0); }
.reveal-stagger.is-visible > *{ transition-delay: calc(var(--i, 0) * 90ms); }

/* Stat counter */
.stat{ text-align:center; }
.stat__num{ font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3rem); font-weight:700; color: var(--ink); }
.stat__label{ font-size: .86rem; color: var(--muted); margin-top:6px; font-weight:600; }

/* FAQ accordion */
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:none; border:none; text-align:left; padding: 22px 4px;
  font-family: var(--font-display); font-size: 1.08rem; font-weight:600; color: var(--ink);
}
.faq-q .plus{ flex-shrink:0; width:26px; height:26px; position:relative; }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background: var(--seal); border-radius:2px; transition: transform .3s ease; }
.faq-q .plus::before{ top:50%; left:0; width:100%; height:2px; margin-top:-1px; }
.faq-q .plus::after{ left:50%; top:0; width:2px; height:100%; margin-left:-1px; }
.faq-item.open .plus::after{ transform: rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .35s ease; }
.faq-a__inner{ padding: 0 4px 22px; color: var(--muted); line-height:1.7; font-size:.98rem; max-width: 760px; }

/* Testimonial card */
.t-card{ padding: 32px; }
.t-card__stars{ color: var(--gold); letter-spacing:2px; font-size: .95rem; margin-bottom:14px; }
.t-card__quote{ font-family: var(--font-display); font-size: 1.08rem; line-height:1.55; color: var(--ink); }
.t-card__foot{ display:flex; align-items:center; gap:12px; margin-top:22px; }
.t-avatar{ width:48px; height:48px; border-radius:50%; overflow:hidden; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.t-avatar-letter{
  background: linear-gradient(150deg, var(--ink) 0%, var(--gold-dark) 150%);
  color:#fff; font-family: var(--font-display); font-weight:700; font-size:1.05rem;
}
.t-avatar img{ width:100%; height:100%; object-fit:cover; }
.t-card__name{ font-weight:700; font-size:.92rem; color: var(--ink); }
.t-card__loc{ font-size:.8rem; color: var(--muted); }
.t-card__verified{ margin-left:auto; }

/* Video testimonials (real client review clips) */
.video-testi-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; margin-bottom:52px; }
@media (max-width:920px){ .video-testi-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .video-testi-grid{ grid-template-columns:1fr; max-width:320px; margin:0 auto 44px; } }
.video-card{
  position:relative; border-radius: var(--radius-md); overflow:hidden;
  background:#000; aspect-ratio:9/16;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,.55);
  border: 1px solid rgba(0,0,0,.08);
}
.video-card video{ width:100%; height:100%; object-fit:cover; display:block; background:#000; }
.video-play-btn{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 100%);
  cursor:pointer; transition: opacity .2s ease; z-index:2;
}
.video-play-btn.hidden{ opacity:0; pointer-events:none; }
.video-play-circle{
  width:52px; height:52px; border-radius:50%;
  background: rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 18px -4px rgba(0,0,0,.5);
  transition: transform .18s ease;
}
.video-card:hover .video-play-circle{ transform: scale(1.08); }
.video-play-circle svg{ width:20px; height:20px; fill: var(--seal); margin-left:2px; }
.video-caption{
  position:absolute; left:0; right:0; bottom:0; z-index:1;
  padding:14px 12px 12px; pointer-events:none;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
}
.video-caption .vc-text{ font-size:.72rem; color:#f2f2f2; line-height:1.4; font-weight:500; }
.video-caption .vc-tag{
  display:inline-flex; align-items:center; gap:5px;
  font-size:.62rem; letter-spacing:.04em; text-transform:uppercase;
  color: var(--gold-light); margin-bottom:5px; font-weight:700;
}
.video-verified-pill{
  position:absolute; top:10px; right:10px; z-index:2;
  background: rgba(20,30,45,.75);
  color:#fff; font-size:.6rem; font-weight:700; letter-spacing:.03em;
  padding:4px 8px; border-radius:20px; display:flex; align-items:center; gap:4px;
}
.video-verified-pill svg{ width:10px; height:10px; color:#4ade80; }

/* Section band variants */
.band-ink{ background: var(--ink); color: var(--white); }
.band-ink h2, .band-ink h3{ color: var(--white); }
.band-ink .section-head p{ color: #C6CEDE; }
.band-cream2{ background: var(--cream-2); }

/* Utility */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.grid{ display:grid; gap: 28px; }
.grid-2{ grid-template-columns: 1fr 1fr; }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 980px){
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  background: var(--ink); color:#fff; padding: 12px 20px; z-index:1000; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; top:0; }

.faq-list{ display:block; }
.about-split__copy{ min-width:0; }
.hero__aside{ min-width:0; }

.img-frame{
  border-radius: var(--radius-lg); overflow:hidden; position:relative;
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 55%, var(--gold-dark) 150%);
}
.img-frame img{ width:100%; height:100%; object-fit:cover; display:block; min-height: 100%; }
.placeholder-tag{
  position:absolute; top:14px; left:14px; z-index:3;
  background: rgba(15,32,54,.82); color:#E7C87A; font-size:.66rem; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase; padding:5px 10px; border-radius:999px;
  backdrop-filter: none;
}
.t-avatar img, .team-card__photo img, .img-frame img{ font-size:0; color:transparent; }

/* ==========================================================================
   AWARDS BAND (shared — used on index.html and testimonials.html)
   ========================================================================== */
.awards-band{ background: var(--ink); color:var(--white); position:relative; overflow:hidden; }
.award-card{
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column;
}
.award-media{
  position:relative; display:grid; grid-template-columns: 1.3fr 1fr; gap:2px;
  background: var(--ink-3);
}
.award-media__main{ grid-row: 1 / 3; aspect-ratio: 3/4; overflow:hidden; background: var(--ink-3); }
.award-media__main img{ width:100%; height:100%; object-fit:contain; display:block; }
.award-media__sub{ aspect-ratio: 4/3; overflow:hidden; background: var(--ink-3); }
.award-media__sub img{ width:100%; height:100%; object-fit:contain; display:block; }
.award-ribbon{
  position:absolute; top:14px; left:14px; z-index:2;
  background: var(--gold); color: var(--ink-3); font-weight:800;
  font-size:.66rem; letter-spacing:.03em; text-transform:uppercase;
  padding:6px 12px; border-radius:4px;
}
.award-body{ padding: 26px 28px 30px; }
.award-card__img{ width:120px; height:120px; border-radius: var(--radius-md); overflow:hidden; border: 3px solid var(--gold); }
.award-card__img img{ width:100%; height:100%; object-fit:cover; }
.award-card h4{ color: var(--gold-light); font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; font-weight:700; margin-bottom:8px; }
.award-card h3{ color:#fff; font-size:1.3rem; margin-bottom:10px; }
.award-card p{ color:#B9C2D4; font-size:.88rem; line-height:1.7; }
.award-card p strong{ color:#DCE2ED; }
.award-meta{ border-top:1px dashed rgba(255,255,255,.16); padding-top:14px; margin-top:14px; }
.award-meta div{ display:flex; gap:8px; font-size:.78rem; color:#9CA7BC; line-height:1.7; }
.award-meta b{ color:#DCE2ED; font-weight:700; min-width:82px; flex-shrink:0; }
@media (max-width: 720px){
  .award-card{ text-align:left; }
  .award-card__img{ margin: 0 auto; }
}

.hero__stats{ display:flex; gap:34px; margin-top:44px; flex-wrap:wrap; }
.hero__stat-num{ font-family: var(--font-display); font-size:1.9rem; font-weight:700; color: var(--gold-light); }
.hero__stat-label{ font-size:.78rem; color:#9CB0CF; margin-top:2px; }

/* ==========================================================================
   SHARED COMPONENTS MOVED FROM home.css (used on 2+ pages)
   ========================================================================== */
/* Hero lead-capture card */
.lead-card{
  background: var(--white); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-lg); color: var(--ink-text); position:relative;
}
.lead-card::before{
  content:''; position:absolute; top:-1px; left:24px; right:24px; height:6px;
  background: linear-gradient(90deg, var(--gold), var(--seal)); border-radius: 0 0 6px 6px;
}
.lead-card__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:6px; }
.lead-card__head h3{ font-size:1.25rem; }
.lead-card__head span{ font-size:.72rem; font-weight:700; color: var(--success); background:rgba(46,125,91,.1); padding:4px 10px; border-radius:999px; }
.lead-card p.sub{ color: var(--muted); font-size:.88rem; margin-top:4px; margin-bottom:20px; }
.field{ margin-bottom:14px; }
.field label{ display:block; font-size:.78rem; font-weight:700; color: var(--ink); margin-bottom:6px; }
.field input, .field select{
  width:100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--cream); font-size:.94rem; color: var(--ink-text); transition: border-color .2s;
}
.field input:focus, .field select:focus{ border-color: var(--gold-dark); outline:none; }
.field-row{ display:flex; gap:10px; }
.field-row .field{ flex:1; }
.tel-wrap{ display:flex; align-items:center; gap:8px; }
.tel-wrap .flag{ padding: 12px 10px; border:1.5px solid var(--line); border-radius:10px; background: var(--cream); font-size:.9rem; font-weight:700; }
.field-check{ display:flex; align-items:flex-start; gap:8px; font-size:.76rem; color: var(--muted); line-height:1.5; margin: 16px 0; }
.field-check input{ margin-top:3px; width:15px; height:15px; flex-shrink:0; accent-color: var(--seal); }
.lead-card__foot{ display:flex; align-items:center; justify-content:center; gap:14px; margin-top:14px; font-size:.72rem; color: var(--muted-lt); }
.lead-success{ display:none; text-align:center; padding: 30px 10px; }
.lead-success.show{ display:block; }
.lead-success .seal{ margin: 0 auto 16px; }
.lead-success h3{ font-size:1.2rem; }
.lead-success p{ color: var(--muted); margin-top:8px; font-size:.92rem; }
.lead-form.hidden{ display:none; }

@media (max-width: 1024px){
  .hero__grid{ grid-template-columns:1fr; padding-bottom:40px; }
  .hero__seal-orbit{ display:none; }
  .lead-card{ max-width:480px; }
}


/* ---------- ABOUT SPLIT ---------- */
.about-split{ display:grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items:center; }
.about-split__media{ position:relative; }
.about-split__media .img-frame{ aspect-ratio: 4/5; }
.about-split__badge{
  position:absolute; bottom:-24px; right:-24px; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 18px 22px; display:flex; align-items:center; gap:14px;
  border: 1px solid var(--line);
}
.about-split__badge .seal{ --seal-size:50px; }
.about-split__badge .seal .seal-mark{ background: linear-gradient(150deg, var(--gold) 0%, var(--gold-dark) 100%); }
.about-split__badge strong{ display:block; font-family:var(--font-display); font-size:1.3rem; color: var(--ink); }
.about-split__badge span{ font-size:.76rem; color: var(--muted); }
.about-split__list{ display:flex; flex-direction:column; gap:18px; margin-top:28px; }
.about-split__list li{ display:flex; gap:14px; align-items:flex-start; }
.check-ico{
  width:26px; height:26px; border-radius:50%; background: rgba(46,125,91,.12); color: var(--success);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px;
}
.about-split__list strong{ display:block; color: var(--ink); font-size:1rem; margin-bottom:2px; }
.about-split__list span{ color: var(--muted); font-size:.92rem; line-height:1.55; }

@media (max-width: 900px){
  .about-split{ grid-template-columns:1fr; gap:40px; }
  .about-split__badge{ position:static; margin-top:-40px; margin-left:20px; width:fit-content; }
}


/* ---------- WHY US ---------- */
.why-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:1px; background: var(--paper-line); border:1px solid var(--paper-line); border-radius: var(--radius-lg); overflow:hidden; }
.why-item{ background: var(--white); padding: 34px 26px; }
.why-item .seal{ --seal-size:44px; margin-bottom:18px; }
.why-item .seal .seal-mark{ background: linear-gradient(150deg, var(--seal) 0%, var(--seal-dark) 100%); }
.why-item .seal svg.ico{ color:#fff; }
.why-item h4{ font-size:1.02rem; margin-bottom:8px; }
.why-item p{ font-size:.86rem; color: var(--muted); line-height:1.6; }
@media (max-width: 980px){ .why-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .why-grid{ grid-template-columns: 1fr; } }


/* ---------- CTA BANNER ---------- */
.cta-banner{
  position:relative; background: linear-gradient(135deg, var(--seal) 0%, var(--seal-dark) 100%);
  color:#fff; border-radius: var(--radius-lg); padding: 56px; overflow:hidden;
  display:grid; grid-template-columns: 1.3fr .7fr; gap:40px; align-items:center;
}
.cta-banner::before{
  content:''; position:absolute; right:-60px; top:-60px; width:260px; height:260px; opacity:.15;
}
.cta-banner h2{ color:#fff; font-size: clamp(1.6rem,3vw,2.1rem); }
.cta-banner p{ color: rgba(255,255,255,.85); margin-top:12px; font-size:1.02rem; }
.cta-banner__actions{ display:flex; flex-direction:column; gap:12px; }
.cta-banner .btn-gold{ box-shadow:0 10px 26px rgba(0,0,0,.2); }
@media (max-width: 820px){
  .cta-banner{ grid-template-columns:1fr; padding: 40px 28px; text-align:center; }
  .cta-banner__actions{ align-items:center; }
}
