/* ================================================================
   IDEALIZE ADVISORY SERVICES — idealize.in
   Shared Stylesheet v1.0
   Colour Palette: Gold + Cream + White (NO #07101e navy, NO #1a4fa0 blue)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Primary Palette */
  --gold:        #c4922a;
  --gold2:       #daa94a;
  --gold3:       #f5e8c0;
  --gold4:       #fdf3dc;
  --cream:       #faf7f2;
  --cream2:      #f0ebe0;
  --cream3:      #e8dfd0;
  --cream4:      #ddd5c2;
  --white:       #ffffff;
  --warm:        #fffbf5;

  /* Dark accent (ONLY for hero, header, footer, flowchart) */
  --dark:        #1c1008;   /* rich dark brown-black — NOT navy, NOT blue */
  --dark2:       #2d1c0a;
  --dark3:       #3e2810;

  /* Text */
  --tx1:         #1a0f00;
  --tx2:         #3d2e10;
  --tx3:         #7a6640;
  --tx4:         #a8936a;

  /* Utility colours */
  --green:       #22c55e;
  --red:         #ef4444;
  --orange:      #f97316;
  --purple:      #9333ea;

  /* Gold transparencies */
  --g30:         rgba(196,146,42,.30);
  --g20:         rgba(196,146,42,.20);
  --g12:         rgba(196,146,42,.12);
  --g08:         rgba(196,146,42,.08);
  --g04:         rgba(196,146,42,.04);

  /* Typography */
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Outfit', sans-serif;

  /* Layout */
  --max:         1260px;
  --r:           6px;
  --ease:        cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--tx1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── UTILITIES ── */
.wrap      { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.sec       { padding: 88px 28px; }
.sec-sm    { padding: 56px 28px; }
.text-c    { text-align: center; }
.eyebrow   { display: block; font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.gold-bar  { width: 52px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold2)); margin: 16px 0; border-radius: 2px; }
.gold-bar.c { margin: 16px auto; }
.sec-head  { text-align: center; margin-bottom: 56px; }
.sec-h2    { font-family: var(--serif); font-size: clamp(28px, 4vw, 48px); color: var(--tx1); font-weight: 600; line-height: 1.12; margin-bottom: 10px; }
.sec-h2 em { color: var(--gold); font-style: normal; }
.sec-sub   { font-size: 15px; color: var(--tx3); max-width: 540px; margin: 0 auto; line-height: 1.85; }

/* ── ANIMATIONS ── */
@keyframes ia-fadein   { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes ia-floatwm  { 0%,100% { transform: translateY(-55%) rotate(-3deg); } 50% { transform: translateY(-58%) rotate(3deg); } }
@keyframes ia-blink    { 0%,100% { opacity: 1; } 50% { opacity: .15; } }
@keyframes ia-ticker   { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes ia-pulse    { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 12px rgba(37,211,102,.0); } }
@keyframes ia-glow     { 0%,100% { opacity: .7; } 50% { opacity: 1; } }
@keyframes ia-slidedown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
@keyframes ia-countup  { from { opacity: 0; } to { opacity: 1; } }

/* Fade-up on scroll */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ── BUTTONS ── */
.btn-g {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark); font-family: var(--sans); font-weight: 700;
  font-size: 12px; letter-spacing: .8px; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--r); border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(196,146,42,.35);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.btn-g:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,146,42,.4); }

.btn-o {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--g30); color: var(--gold);
  font-family: var(--sans); font-weight: 600; font-size: 12px;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 12px 26px; border-radius: var(--r);
  transition: background .2s, border-color .2s, color .2s;
}
.btn-o:hover { background: var(--g08); border-color: var(--gold); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25d366; color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 12px;
  letter-spacing: .6px; text-transform: uppercase;
  padding: 12px 24px; border-radius: var(--r);
  transition: background .2s, transform .2s;
}
.btn-wa:hover { background: #20bc5a; transform: translateY(-2px); }

/* Dark bg button variants */
.btn-o-dark { border-color: rgba(196,146,42,.45); color: var(--gold2); }
.btn-o-dark:hover { background: rgba(196,146,42,.12); border-color: var(--gold2); color: var(--gold2); }

/* ── TOP BAR (Desktop only) ── */
.top-bar {
  background: var(--gold);
  padding: 8px 28px;
  font-size: 12px; font-weight: 600; color: var(--dark);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--dark); transition: opacity .2s; }
.top-bar a:hover { opacity: .75; }
.top-bar-left { display: flex; align-items: center; gap: 22px; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.tb-item { display: flex; align-items: center; gap: 6px; }
@media (max-width: 768px) { .top-bar { display: none; } }

/* ── DISCLAIMER TICKER ── */
.ticker-wrap {
  background: var(--dark);
  padding: 9px 0; overflow: hidden;
  border-top: 1px solid var(--g12); border-bottom: 1px solid var(--g12);
}
.ticker-track {
  display: flex; width: max-content;
  animation: ia-ticker 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-text {
  font-size: 12px; font-weight: 500; color: var(--gold3);
  padding: 0 48px; white-space: nowrap; font-family: var(--sans);
}
.ticker-sep { color: var(--gold); padding: 0 8px; }

/* ── HEADER ── */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(28,16,8,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--g12);
  transition: box-shadow .3s, border-color .3s;
}
.hdr.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.35); border-bottom-color: var(--g20); }
.hdr-in {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.logo-text { font-family: var(--serif); font-size: 20px; font-weight: 600; color: #fff; line-height: 1.1; }
.logo-text em { color: var(--gold2); font-style: normal; display: block; font-size: 9px; font-family: var(--sans); letter-spacing: 3px; text-transform: uppercase; font-weight: 500; opacity: .6; }

/* Desktop Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.72);
  padding: 7px 12px; border-radius: 4px; white-space: nowrap;
  transition: color .2s, background .2s; position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold2); background: var(--g08); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 2px; background: var(--gold2); border-radius: 1px;
}

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop-btn {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.72);
  padding: 7px 12px; border-radius: 4px; cursor: pointer;
  background: none; border: none; display: flex; align-items: center; gap: 5px;
  transition: color .2s, background .2s; font-family: var(--sans);
  white-space: nowrap;
}
.nav-drop-btn:hover { color: var(--gold2); background: var(--g08); }
.nav-drop-btn svg { width: 12px; transition: transform .2s; }
.nav-drop:hover .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--dark2); border: 1px solid var(--g20);
  border-radius: var(--r); padding: 8px; min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
  animation: none;
}
.nav-drop:hover .nav-drop-menu { opacity: 1; pointer-events: all; transform: none; }
.nav-drop-item {
  display: block; font-size: 13px; color: rgba(255,255,255,.72);
  padding: 9px 14px; border-radius: 4px; transition: color .2s, background .2s;
}
.nav-drop-item:hover { color: var(--gold2); background: var(--g08); }

/* Header CTA */
.hdr-wa {
  display: flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 9px 18px; border-radius: var(--r); white-space: nowrap;
  transition: background .2s, transform .2s;
}
.hdr-wa:hover { background: #20bc5a; transform: translateY(-1px); }
.hdr-wa svg { width: 17px; height: 17px; }

/* Mobile hamburger */
.hbg { display: none; background: none; border: 1.5px solid var(--g20); border-radius: 5px; padding: 8px 10px; cursor: pointer; flex-direction: column; gap: 5px; }
.hbg span { display: block; width: 22px; height: 2px; background: var(--gold2); border-radius: 2px; transition: transform .3s; }
.hbg.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 8999;
  background: rgba(28,16,8,.98); padding: 90px 28px 40px;
  overflow-y: auto; flex-direction: column; gap: 6px;
}
.mob-menu.open { display: flex; }
.mob-link { font-size: 18px; color: rgba(255,255,255,.8); padding: 14px 0; border-bottom: 1px solid var(--g12); display: block; }
.mob-link:hover { color: var(--gold2); }
.mob-sub { font-size: 14px; color: rgba(255,255,255,.5); padding: 10px 0 10px 16px; border-bottom: 1px solid var(--g08); display: block; }
.mob-sub:hover { color: var(--gold2); }
.mob-cta { margin-top: 24px; }

@media (max-width: 960px) {
  .nav { display: none; }
  .hdr-wa { display: none; }
  .hbg { display: flex; }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 8998;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  animation: ia-pulse 2.5s infinite;
  transition: transform .3s, background .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); background: #20bc5a; animation: none; }
.wa-float svg { width: 30px; height: 30px; }
.wa-tip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: #fff; font-size: 12px; font-weight: 600;
  padding: 7px 13px; border-radius: 5px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
  border: 1px solid var(--g12);
}
.wa-tip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--dark);
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ── STICKY CONSULT BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8997;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  transform: translateY(100%); transition: transform .4s var(--ease);
  box-shadow: 0 -4px 20px rgba(196,146,42,.35);
}
.sticky-bar.visible { transform: none; }
.sticky-bar-text { font-size: 13px; font-weight: 700; color: var(--dark); }
.sticky-bar a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; color: var(--dark);
  background: rgba(0,0,0,.12); padding: 7px 16px; border-radius: 4px;
  text-decoration: none; white-space: nowrap; transition: background .2s;
}
.sticky-bar a:hover { background: rgba(0,0,0,.22); }
.sticky-bar a svg { width: 16px; height: 16px; }
.sticky-bar-close {
  background: none; border: none; cursor: pointer;
  color: var(--dark); font-size: 20px; line-height: 1;
  opacity: .6; transition: opacity .2s; padding: 2px 6px;
}
.sticky-bar-close:hover { opacity: 1; }

/* ── HERO (shared) ── */
.hero {
  background: var(--dark);
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; align-items: center;
  padding: 100px 0 72px; font-family: var(--sans);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    repeating-linear-gradient(90deg, rgba(196,146,42,.03) 0, rgba(196,146,42,.03) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(196,146,42,.03) 0, rgba(196,146,42,.03) 1px, transparent 1px, transparent 80px);
}
.hero-glow {
  position: absolute; pointer-events: none;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,146,42,.1), transparent 65%);
  animation: ia-glow 5s ease infinite;
  z-index: 0;
}
.hero-wm {
  position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
  font-size: clamp(200px, 28vw, 380px); line-height: 1;
  color: rgba(196,146,42,.028);
  pointer-events: none; user-select: none;
  animation: ia-floatwm 14s ease-in-out infinite; z-index: 1;
}
.hero-in {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 0 28px; width: 100%;
}
/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(196,146,42,.09); border: 1px solid rgba(196,146,42,.28);
  color: var(--gold2); font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 2px; margin-bottom: 26px;
  animation: ia-fadein .6s ease both;
}
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: ia-blink 2s infinite; flex-shrink: 0; }
/* Hero h1 */
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 78px);
  color: #fff; font-weight: 600; line-height: 1.06;
  margin-bottom: 20px;
  animation: ia-fadein .7s .1s ease both;
}
.hero-h1 em { color: var(--gold2); font-style: normal; display: block; }
.hero-sub {
  font-size: 15.5px; color: rgba(255,255,255,.5);
  line-height: 1.9; max-width: 540px; margin-bottom: 36px;
  animation: ia-fadein .7s .18s ease both;
}

/* ── INNER PAGE HERO (smaller) ── */
.page-hero {
  background: var(--dark);
  padding: 120px 28px 72px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(196,146,42,.025) 0, rgba(196,146,42,.025) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 80%, rgba(196,146,42,.1), transparent 65%);
  pointer-events: none;
}
.page-hero-in { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold2); }
.breadcrumb span { margin: 0 6px; }
.page-h1 { font-family: var(--serif); font-size: clamp(34px, 5.5vw, 68px); color: #fff; font-weight: 600; line-height: 1.1; margin-bottom: 18px; }
.page-h1 em { color: var(--gold2); font-style: normal; }
.page-sub { font-size: 15px; color: rgba(255,255,255,.48); line-height: 1.9; }

/* ── CARDS GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 860px)  { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 640px)  { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--cream3);
  border-radius: var(--r); padding: 24px;
  box-shadow: 0 2px 12px rgba(26,15,0,.05);
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.card:hover { box-shadow: 0 8px 30px rgba(26,15,0,.1); border-color: var(--g20); transform: translateY(-3px); }
.card-g { background: var(--gold); color: var(--dark); }
.card-gold-border { border-color: var(--g20); background: var(--gold4); }
.card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--tx1); margin-bottom: 8px; }
.card h4 { font-size: 14px; font-weight: 700; color: var(--tx1); margin-bottom: 6px; }
.card p  { font-size: 13.5px; color: var(--tx3); line-height: 1.78; }

/* ── STAT BAND ── */
.stat-band { background: var(--dark2); padding: 52px 28px; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1000px; margin: 0 auto; }
.stat-box { text-align: center; padding: 28px 16px; border-right: 1px solid rgba(196,146,42,.12); cursor: default; transition: background .2s; }
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(196,146,42,.05); }
.stat-n { font-family: var(--serif); font-size: 44px; color: var(--gold2); font-weight: 600; display: block; line-height: 1; }
.stat-l { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 7px; display: block; }
@media (max-width: 600px) { .stat-grid { grid-template-columns: 1fr 1fr; } .stat-box { border-right: none; border-bottom: 1px solid rgba(196,146,42,.1); } }

/* ── CTA STRIP ── */
.cta-strip { padding: 72px 28px; text-align: center; }
.cta-strip.gold-bg { background: linear-gradient(135deg, var(--gold), var(--gold2)); }
.cta-strip.dark-bg { background: var(--dark); }
.cta-strip.cream-bg { background: var(--cream2); }
.cta-h2 { font-family: var(--serif); font-size: clamp(26px,4vw,44px); font-weight: 600; line-height: 1.15; margin-bottom: 12px; }
.cta-h2.light { color: var(--dark); }
.cta-h2.wh { color: #fff; }
.cta-h2 em { font-style: normal; }
.cta-sub { font-size: 14.5px; max-width: 540px; margin: 0 auto 32px; line-height: 1.82; }
.cta-sub.light { color: rgba(28,16,8,.65); }
.cta-sub.wh { color: rgba(255,255,255,.55); }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-note { font-size: 11.5px; margin-top: 14px; color: rgba(28,16,8,.55); }
.cta-note.wh { color: rgba(255,255,255,.45); }

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid rgba(196,146,42,.12); border-radius: var(--r); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item:hover { border-color: var(--g20); box-shadow: 0 3px 18px rgba(26,15,0,.06); }
.faq-item.open { border-color: var(--g30); box-shadow: 0 5px 24px rgba(26,15,0,.08); }
.faq-q { width: 100%; background: none; border: none; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: var(--tx1); transition: background .2s; }
.faq-q:hover, .faq-item.open .faq-q { background: var(--g04); }
.faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-text { padding: 0 22px 20px; font-size: 13.5px; color: var(--tx3); line-height: 1.85; }
.faq-a-text a { color: var(--gold); text-decoration: underline; }

/* ── TESTIMONIALS ── */
.testi-card {
  background: var(--white); border: 1px solid rgba(196,146,42,.1);
  border-radius: var(--r); padding: 28px;
  cursor: default; opacity: 0; transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease, box-shadow .25s, border-color .25s;
}
.testi-card.in { opacity: 1; transform: none; }
.testi-card:hover { box-shadow: 0 10px 38px rgba(26,15,0,.09); transform: translateY(-5px); border-color: var(--g20); }
.testi-stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; }
.testi-verified { font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #2563eb; display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.testi-verified::before { content: '✔'; background: #2563eb; color: #fff; font-size: 8px; width: 15px; height: 15px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.testi-q { font-family: var(--serif); font-size: 56px; color: var(--gold2); line-height: .75; margin-bottom: 8px; opacity: .35; transition: opacity .2s; }
.testi-card:hover .testi-q { opacity: .6; }
.testi-text { font-size: 13.5px; color: var(--tx2); line-height: 1.85; margin-bottom: 20px; font-style: italic; }
.testi-time { font-size: 10.5px; color: var(--tx4); }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(196,146,42,.1); }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: var(--dark2); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; color: var(--gold2); font-weight: 600; flex-shrink: 0; }
.testi-name { font-size: 13.5px; font-weight: 700; color: var(--tx1); margin-bottom: 2px; }
.testi-role { font-size: 11px; color: var(--tx4); }

/* ── CONTACT CARDS ── */
.contact-card {
  background: var(--white); border: 1.5px solid var(--cream3);
  border-radius: var(--r); padding: 32px; text-align: center;
  display: block; cursor: pointer; transition: border-color .25s, box-shadow .25s, transform .25s;
}
.contact-card:hover { border-color: var(--g20); box-shadow: 0 12px 40px rgba(26,15,0,.1); transform: translateY(-4px); }
.contact-card-icon { font-size: 40px; margin-bottom: 14px; }
.contact-card h3 { font-family: var(--serif); font-size: 22px; color: var(--tx1); font-weight: 600; margin-bottom: 6px; }
.contact-card p { font-size: 14px; color: var(--tx3); margin-bottom: 16px; line-height: 1.6; }
.contact-card-val { font-size: 16px; font-weight: 700; color: var(--gold); }

/* ── MAP ── */
.map-box { border-radius: var(--r); overflow: hidden; border: 1.5px solid var(--cream3); box-shadow: 0 8px 32px rgba(26,15,0,.07); }
.map-box iframe { display: block; width: 100%; height: 360px; border: none; }
.map-foot { background: var(--cream2); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.map-foot-txt { font-size: 12px; color: var(--tx3); }
.map-foot-txt strong { color: var(--tx1); }
.map-dir { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .5px; border: 1px solid var(--g20); padding: 6px 14px; border-radius: 4px; transition: background .2s; }
.map-dir:hover { background: var(--g08); }

/* ── TEAM PROFILE CARD ── */
.team-card {
  background: var(--white); border: 1px solid var(--cream3);
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,15,0,.06);
  transition: box-shadow .25s, border-color .25s, transform .25s;
  display: grid; grid-template-columns: 280px 1fr;
}
.team-card:hover { box-shadow: 0 12px 44px rgba(26,15,0,.1); border-color: var(--g20); transform: translateY(-3px); }
.team-card-left { background: var(--dark); padding: 36px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.team-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid var(--gold); margin-bottom: 18px; }
.team-photo-icon { width: 140px; height: 140px; border-radius: 50%; background: var(--dark3); border: 3px solid var(--g20); display: flex; align-items: center; justify-content: center; font-size: 60px; margin-bottom: 18px; }
.team-name { font-family: var(--serif); font-size: 20px; color: #fff; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold2); font-weight: 700; margin-bottom: 16px; }
.team-links { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.team-link { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12.5px; font-weight: 600; padding: 9px 14px; border-radius: 4px; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.7); transition: background .2s, color .2s; }
.team-link:hover { background: var(--g08); color: var(--gold2); border-color: var(--g20); }
.team-link.wa { background: rgba(37,211,102,.12); color: #4ade80; border-color: rgba(37,211,102,.25); }
.team-link.wa:hover { background: rgba(37,211,102,.2); }
.team-card-right { padding: 36px 32px; }
.team-quals { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.qual-pill { background: var(--cream2); border: 1px solid var(--cream3); padding: 4px 12px; border-radius: 20px; font-size: 11px; color: var(--tx2); font-weight: 600; }
.team-bio { font-size: 13.5px; color: var(--tx3); line-height: 1.85; margin-bottom: 20px; }
.team-areas { display: flex; flex-direction: column; gap: 6px; }
.team-area { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--tx2); }
.team-area::before { content: '⚖️'; font-size: 13px; flex-shrink: 0; }
.founder-badge { background: linear-gradient(90deg, var(--gold), var(--gold2)); color: var(--dark); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; display: inline-block; margin-bottom: 10px; }
@media (max-width: 860px) { .team-card { grid-template-columns: 1fr; } .team-card-left { border-radius: 0; } }

/* ── SERVICE CARD ── */
.svc-card {
  background: var(--white); border: 1px solid var(--cream3);
  border-radius: var(--r); padding: 26px 22px;
  display: block; color: inherit; position: relative; overflow: hidden;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.svc-card:hover { box-shadow: 0 8px 28px rgba(26,15,0,.1); border-color: var(--g20); background: var(--warm); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico { font-size: 30px; margin-bottom: 13px; display: block; transition: transform .3s; }
.svc-card:hover .svc-ico { transform: scale(1.1); }
.svc-card h3 { font-family: var(--serif); font-size: 17px; color: var(--tx1); font-weight: 600; margin-bottom: 8px; line-height: 1.2; }
.svc-card p  { font-size: 12.5px; color: var(--tx3); line-height: 1.72; margin-bottom: 14px; }
.svc-arr { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); opacity: 0; transition: opacity .2s; display: inline-flex; align-items: center; gap: 5px; }
.svc-card:hover .svc-arr { opacity: 1; }
.svc-tag { position: absolute; top: 16px; right: 16px; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: var(--gold); color: var(--dark); padding: 3px 9px; border-radius: 2px; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 64px 28px 32px; border-top: 2px solid var(--g12); }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(196,146,42,.12); }
.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.82; max-width: 260px; margin-bottom: 20px; }
.footer-soc { display: flex; gap: 10px; flex-wrap: wrap; }
.soc-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(196,146,42,.18); background: rgba(255,255,255,.04); transition: background .2s, border-color .2s, transform .2s; }
.soc-btn:hover { background: rgba(196,146,42,.12); border-color: var(--g20); transform: scale(1.08); }
.soc-btn svg { width: 18px; height: 18px; }
.footer-col h4 { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold2); }
.footer-bottom { max-width: var(--max); margin: 28px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,.3); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { font-size: 11.5px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-links a:hover { color: var(--gold2); }
.ssl-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.1); padding: 4px 10px; border-radius: 3px; }
.gmb-review-btn { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--dark); font-size: 12px; font-weight: 700; padding: 10px 20px; border-radius: var(--r); transition: opacity .2s, transform .2s; white-space: nowrap; }
.gmb-review-btn:hover { opacity: .88; transform: translateY(-2px); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── BACK TO TOP ── */
.btt { position: fixed; bottom: 92px; right: 26px; z-index: 8996; width: 42px; height: 42px; border-radius: 50%; background: var(--cream); border: 1.5px solid var(--g20); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; color: var(--gold); box-shadow: 0 2px 12px rgba(26,15,0,.1); opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s; }
.btt.visible { opacity: 1; transform: none; }
.btt:hover { background: var(--gold4); }

/* ── MISC ── */
.divider { border: none; border-top: 1.5px solid var(--cream3); margin: 0; }
.tag-pill { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.tag-gold { background: var(--g12); color: var(--gold); }
.tag-green { background: rgba(34,197,94,.1); color: #16a34a; }
.tag-blue  { background: rgba(37,99,235,.1); color: #1d4ed8; }
.step-flow { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.step-item { display: flex; gap: 20px; padding: 20px 0; position: relative; }
.step-item::before { content: ''; position: absolute; left: 20px; top: 52px; bottom: -20px; width: 2px; background: linear-gradient(to bottom, var(--gold), transparent); }
.step-item:last-child::before { display: none; }
.step-num { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--dark); font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content h4 { font-family: var(--serif); font-size: 18px; color: var(--tx1); font-weight: 600; margin-bottom: 6px; }
.step-content p { font-size: 13px; color: var(--tx3); line-height: 1.75; }
.step-time { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── RESPONSIVE UTILITIES ── */
@media (max-width: 640px) {
  .sec { padding: 64px 18px; }
  .sec-sm { padding: 44px 18px; }
  .hero { min-height: auto; padding: 90px 18px 56px; }
  .page-hero { padding: 100px 18px 56px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-g, .btn-o, .btn-wa { width: 100%; max-width: 320px; justify-content: center; }
}
