/* ══════════════════════════════════════════════
   LEDGERTECH — MASTER STYLESHEET (v18 Clean)
   Navy: #0D1B2A + Terracotta #B5714A + Gold #C9A96E
   Fonts: DM Sans, Cormorant Garamond, Playfair Display
   Pages: index, services, hub, resources, pricing
══════════════════════════════════════════════ */

/* ══ CSS VARIABLES ══ */
:root {
  /* Navy */
  --nv:        #0D1B2A;
  --nv-m:      #162436;
  --nv-l:      #1E3347;
  --nv-bright: #B5714A;
  --nv-pale:   #EDCFB0;
  --nv-glass:  rgba(181,113,74,0.12);

  /* Gold */
  --g:   #C9A96E;
  --g-l: #D4B882;
  --g-d: #A8894E;
  --g-p: #F5EDD5;
  --g-pp:#FAF5E8;

  /* Terracotta */
  --terra:   #B5714A;
  --terra-d: #8A5030;
  --terra-l: #CC8A62;

  /* Backgrounds */
  --bg:   #FAF8F4;
  --bg-w: #F2EDE4;
  --bg-c: #E6DFD3;
  --bg-l: #DDD0BE;

  /* Text */
  --ink:   #0D1B2A;
  --ink-6: #3D2A18;
  --ink-4: #7A6A5A;
  --ink-2: #A89880;

  /* Borders */
  --bdr: #E6DFD3;

  /* Easing */
  --e:  cubic-bezier(.25,.46,.45,.94);
  --ep: cubic-bezier(.76,0,.24,1);
}

/* ══ RESET & BASE ══ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {  background: var(--bg); color: var(--ink); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ══ GRAIN OVERLAY ══ */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 200; opacity: .018;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") center/180px;
}

/* ══ ANIMATIONS ══ */
@keyframes fup { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fi   { from { opacity: 0; } to { opacity: 1; } }
@keyframes cs   { to { transform: translateX(-50%); } }
@keyframes pp   { 0%,100% { opacity: 1; transform: scale(1); } 60% { opacity: 0; transform: scale(1.7); } }
@keyframes slideL { 0% { transform: translate3d(0,0,0); } 100% { transform: translate3d(-100%,0,0); } }
@keyframes slideR { 0% { transform: translate3d(0,0,0); } 100% { transform: translate3d(100%,0,0); } }

/* ══ SPLIT DOOR ══ */
#door { position: fixed; inset: 0; z-index: 9999; display: flex; pointer-events: auto; }
#door.gone { display: none !important; }
#door-l, #door-r {
  flex: 1; background: #0b1d2a; display: flex; align-items: center;
  justify-content: center; will-change: transform; overflow: hidden; position: relative;
}
.door-ct { text-align: center; user-select: none; padding: 2rem; position: relative; z-index: 1; }
.door-logo { width: 120px; height: 120px; margin: 0 auto 1.5rem; }
.door-logo img { width: 100%; height: 100%; object-fit: contain; }
.door-nm {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400;
  color: rgba(250,248,244,.9); letter-spacing: .3em; text-transform: uppercase;
  display: block; margin-bottom: .3rem;
}
.door-tg { font-family: 'Cormorant Garamond', serif; font-size: .9rem; font-style: italic; color: #c9a96e; letter-spacing: .15em; display: block; }
#door-l.slide { animation: slideL 1.35s ease forwards; }
#door-r.slide { animation: slideR 1.35s ease forwards; }

/* ══ CART ══ */
#cart {
  position: fixed; top: 0; right: 0; bottom: 0; width: 440px; max-width: 100vw;
  background: var(--bg); z-index: 8800; transform: translateX(100%);
  transition: transform .5s var(--e); border-left: 2px solid var(--bdr);
  display: flex; flex-direction: column; box-shadow: -10px 0 50px rgba(0,0,0,.08);
}
#cart.open { transform: none; }
.cart-ov { position: fixed; inset: 0; background: rgba(13,27,42,.55); backdrop-filter: blur(4px); z-index: 8799; display: none; }
.cart-ov.on { display: block; }
.c-hd {
  padding: 1.75rem 2rem; border-bottom: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--nv); flex-shrink: 0;
}
.c-ttl { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--g-l); }
.c-x {
  width: 36px; height: 36px; border: 1.5px solid rgba(201,169,110,.3); border-radius: 50%;
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(250,248,244,.6); transition: all .2s;
}
.c-x:hover { border-color: var(--terra); color: var(--terra-l); }
.c-bd { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 1.5rem 2rem; }
.c-em { text-align: center; padding: 3rem 1rem; color: var(--ink-4); }
.c-em svg { width: 44px; height: 44px; stroke: var(--bdr); fill: none; margin: 0 auto 1rem; display: block; }
.c-em p { font-size: 1rem; line-height: 1.7; max-width: 240px; margin: 0 auto; }
.ci { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--bdr); }
.ci-info { flex: 1; }
.ci-nm { font-size: 1rem; font-weight: 600; color: var(--ink); }
.ci-pr { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: #a0522d; }
.ci-rm { background: none; border: none; cursor: pointer; color: var(--ink-2); font-size: .82rem; margin-top: .35rem; display: block; transition: color .2s; }
.ci-rm:hover { color: var(--terra); }
.c-ft { padding: 1.5rem 2rem; border-top: 1px solid var(--bdr); flex-shrink: 0; }
.c-tr { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.25rem; }
.c-tl { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; }
.c-tv { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--ink); }
.c-co {
  display: block; width: 100%; padding: 1.1rem; background: var(--terra); color: #fff;
  text-align: center; font-size: 1rem; font-weight: 700; border-radius: 8px; border: none;
  cursor: pointer; transition: background .3s;
}
.c-co:hover { background: var(--terra-d); }
.c-nt { text-align: center; font-size: .82rem; color: var(--ink-2); margin-top: .65rem; line-height: 1.6; }

/* ══ TOP BAR ══ */
#topbar { background: var(--nv); padding: .55rem 0; border-bottom: 1px solid rgba(201,169,110,.08); }
.tb { max-width: 1320px; margin: 0 auto; padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .4rem; }
.tb-l { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.tb-lk { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: rgba(250,248,244,.5); transition: color .2s; letter-spacing: .02em; }
.tb-lk:hover { color: var(--g-l); }
.tb-lk svg { width: 12px; height: 12px; stroke: var(--g); fill: none; flex-shrink: 0; }
.tb-r { display: flex; align-items: center; gap: 1rem; }
.tb-hrs { font-size: .72rem; color: rgba(250,248,244,.28); letter-spacing: .06em; }

/* ══ NAV ══ */
#nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,250,247,.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bdr); padding: 1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; transition: box-shadow .4s;
}
#nav.sc { box-shadow: 0 2px 28px rgba(0,0,0,.07); }
.nav-logo { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.nav-logo-img { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; }
.nav-nm { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--ink); letter-spacing: .16em; text-transform: uppercase; display: block; line-height: 1.1; }
.nav-sb { font-family: 'Cormorant Garamond', serif; font-size: .78rem; font-style: italic; color: var(--terra); letter-spacing: .1em; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin-left: auto; margin-right: 1.75rem; }
.nav-links a {
  color: var(--ink-4); font-size: .85rem; font-weight: 500; letter-spacing: .05em;
  transition: color .3s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1.5px; background: var(--nv); transition: right .35s var(--e);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-r { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.cart-btn {
  position: relative; width: 42px; height: 42px; border: 1.5px solid var(--bdr);
  border-radius: 8px; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: border-color .3s;
}
.cart-btn:hover { border-color: var(--nv); }
.cart-btn svg { width: 18px; height: 18px; stroke: var(--ink-4); fill: none; stroke-width: 1.5; transition: stroke .3s; }
.cart-btn:hover svg { stroke: var(--nv); }
.cbadge {
  position: absolute; top: -7px; right: -7px; width: 20px; height: 20px;
  background: var(--terra); border-radius: 50%; display: none;
  align-items: center; justify-content: center; font-size: .6rem; color: #fff; font-weight: 700;
  border: 2px solid var(--bg);
}
.cbadge.on { display: flex; }
.nav-cta {
  background: var(--nv); color: #fff; font-size: .85rem; font-weight: 700;
  letter-spacing: .05em; padding: .65rem 1.5rem; border-radius: 8px;
  transition: background .3s; white-space: nowrap;
}
.nav-cta:hover { background: var(--nv-m); }
.burger {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 38px; height: 38px; background: none; border: none; cursor: pointer;
}
.burger span { display: block; width: 20px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all .35s var(--e); transform-origin: center; }
.burger.op span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.op span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.op span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nmob {
  position: fixed; inset: 0; background: var(--nv); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform .5s var(--e); padding: 2rem; overflow-y: auto;
}
.nmob.open { transform: none; }
.nmob a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300;
  color: rgba(250,248,244,.9); padding: .6rem 1.5rem; text-align: center;
  transition: color .3s; display: block; width: 100%;
}
.nmob a:hover { color: var(--g-l); }
.nm-div { width: 36px; height: 1px; background: rgba(201,169,110,.15); margin: .3rem auto; }
.nm-cta {
  background: var(--terra) !important; color: #fff !important;
  font-family: 'DM Sans', sans-serif !important; font-size: .95rem !important;
  font-weight: 700 !important; padding: .9rem 2.5rem !important;
  border-radius: 8px !important; margin-top: 1.1rem;
}

/* Mobile menu dots (alternative to burger) */
.menu-dots {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; width: 38px; height: 38px; background: none; border: none; cursor: pointer;
}
.menu-dots span { width: 5px; height: 5px; background: var(--ink); border-radius: 50%; transition: .3s ease; }

/* ══ UTILITIES ══ */
.cnt { max-width: 1320px; margin: 0 auto; padding: 0 2.5rem; }
.sl { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.sl-ln { width: 24px; height: 2px; background: #a0522d; border-radius: 2px; }
.sl-tx { font-size: .82rem; letter-spacing: .22em; text-transform: uppercase; color: #a0522d; font-weight: 700; }
.sl-tx.lt { color: var(--g-l); }
.sl-ln.lt  { background: var(--g); }
.sh { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 3.8vw, 4rem); font-weight: 800; line-height: 1.08; color: var(--ink); }
.sh em { font-style: italic; color: var(--terra-d); }
.sh.lt { color: #fff; }
.sh.lt em { color: var(--g-l); }
.sb { font-size: 1.05rem; line-height: 1.9; color: var(--ink-6); max-width: 520px; }
.sb.lt { color: rgba(250,248,244,.55); }
.rv { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--e), transform .9s var(--e); }
.rv.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* Buttons */
.btn-nv {
  background: #a0522d; color: #fff; padding: 1rem 2.2rem; font-size: .92rem; font-weight: 700;
  border-radius: 8px; transition: background .3s, transform .2s;
  display: inline-flex; align-items: center; gap: .65rem; border: none; cursor: pointer;
}
.btn-nv:hover { background: var(--nv-m); transform: translateY(-2px); }
.btn-terra {
  background: var(--terra); color: #fff; padding: 1rem 2.2rem; font-size: .92rem; font-weight: 700;
  border-radius: 8px; transition: background .3s, transform .2s;
  display: inline-flex; align-items: center; gap: .65rem; border: none; cursor: pointer;
}
.btn-terra:hover { background: var(--terra-d); transform: translateY(-2px); }
.btn-ol {
    border: none;                 
    color: var(--ink-6);
  padding:-0.4rem 2.2rem;  /* same padding */
    font-size: 1.3rem;        /* size increased */
    font-weight: 600;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
    border-radius: 8px;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: none;
    cursor: pointer;
}
.btn-ol:hover { border-color: #a0522d; color: #a0522d; }
.btn-ghost {
  background: transparent; color: rgba(250,248,244,.85); padding: .98rem 2.2rem; font-size: .92rem;
  font-weight: 600; border-radius: 8px; border: 2px solid rgba(250,248,244,.3);
  transition: all .25s; display: inline-flex; align-items: center; gap: .65rem; cursor: pointer; white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(250,248,244,.7); background: rgba(250,248,244,.08); }
.btn-white {
  background: #fff; color: var(--nv); padding: 1.1rem 2.2rem; font-size: 1rem; font-weight: 700;
  border-radius: 8px; transition: all .25s;
  display: inline-flex; align-items: center; gap: .65rem; border: none; cursor: pointer;
}
.btn-white:hover { background: var(--bg-w); transform: translateY(-2px); }

/* ══ HERO (index — split layout) ══ */


#hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100svh; overflow: hidden; }
.hl {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding:  40px 40px !important;  /* 🔥 top la thoda space */
  position: relative;
  z-index: 2;
}
.hl::after {
  content: ''; position: absolute; top: 0; right: -44px; bottom: 0; width: 88px;
  background: var(--bg); clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%); z-index: 3;
}
.hl-kick { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.6rem; animation: fup .9s var(--e) 2.2s both; }
.hl-kl { width: 24px; height: 2px; background: #a0522d; border-radius: 2px; }
.hl-kt { font-size: .8rem; letter-spacing: .24em; text-transform: uppercase; color: #a0522d; font-weight: 700; }
.hl-h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 4.2vw, 5rem);
  font-weight: 800; line-height: 1.06; color: var(--ink); margin-bottom: 1.5rem;
  animation: fup 1s var(--e) 2.35s both;
}
.hl-h1 em { font-style: italic; color: var(--terra-d); }
.hl-sub {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--ink-6);
  max-width: 1034px;   /* 🔥 Increase width */
  margin-bottom: 1.75rem;
  animation: fup 1s var(--e) 2.5s both;
}

.hl-ticks { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2.25rem; animation: fup 1s var(--e) 2.65s both; }
.hl-tick { display: flex; align-items: center; gap: .65rem; font-size: .95rem; color: var(--ink-6); }
.hl-tc { width: 20px; height: 20px; border: 1.5px solid var(--nv); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hl-tc svg { width: 9px; height: 9px; stroke: var(--nv); fill: none; stroke-width: 2.5; }
.hl-acts { display: flex; align-items: center; gap: 1.1rem; animation: fup 1s var(--e) 2.8s both; flex-wrap: wrap; }

/* Hero right panel */
.hr { position: relative; overflow: hidden; background: var(--nv); }
.hr-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
  opacity: .72;
}
.hr-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,.85) 0%, rgba(13,27,42,.55) 50%, rgba(13,27,42,.8) 100%); }
.hr-gd { position: absolute; inset: 0; background: linear-gradient(to right, rgba(250,250,247,.12) 0%, transparent 18%); }
.hs {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3.5rem; opacity: 0; pointer-events: none;
  transition: opacity .9s var(--e); z-index: 2;
}
.hs.on { opacity: 1; pointer-events: auto; }
.hs-kick {
  font-size: .85rem; letter-spacing: .28em; text-transform: uppercase; color: var(--g-l);
  font-weight: 700; margin-bottom: 1.4rem; display: flex; align-items: center; gap: .5rem;
}
.hs-kick::before { content: ''; width: 22px; height: 2px; background: var(--g); flex-shrink: 0; }
.hs-big { font-family: 'Cormorant Garamond', serif; font-size: 6rem; font-weight: 300; line-height: 1; color: var(--g-l); margin-bottom: .4rem; }
.hs-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: #fff; line-height: 1.25; margin-bottom: 1rem; }
.hs-body { font-size: 1rem; line-height: 1.85; color: rgba(250,248,244,.65); margin-bottom: 1.6rem; }
.hs-items { display: flex; flex-direction: column; gap: .75rem; margin-top: .5rem; }
.hs-item { display: flex; align-items: center; gap: .75rem; font-size: 1rem; color: rgba(250,248,244,.85); line-height: 1.5; }
.hs-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--g); flex-shrink: 0; }
.hs-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: .5rem; }
.hs-stat { border: 1px solid rgba(201,169,110,.28); padding: 1.1rem 1rem; border-radius: 10px; background: rgba(255,255,255,.07); backdrop-filter: blur(4px); }
.hs-sn { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--g-l); line-height: 1; }
.hs-sn sup { font-size: 1.1rem; vertical-align: super; color: var(--g); }
.hs-sl { font-size: .78rem; color: rgba(250,248,244,.5); margin-top: 4px; letter-spacing: .04em; }
.hs-q { font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: .5; color: rgba(201,169,110,.3); margin-bottom: 1rem; }
.hs-qt { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-style: italic; font-weight: 300; color: rgba(250,248,244,.95); line-height: 1.7; margin-bottom: 1rem; }
.hs-qw { font-size: .85rem; color: var(--g-l); letter-spacing: .06em; }
.hs-st { display: flex; gap: 3px; margin-bottom: 1rem; }
.hs-st span { font-size: .9rem; color: var(--g); }
.h-dots { display: flex; gap: .45rem; position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 3; }
.h-dot { width: 20px; height: 2.5px; background: rgba(201,169,110,.2); border-radius: 2px; cursor: pointer; border: none; transition: all .4s var(--e); }
.h-dot.on { background: var(--g-l); width: 30px; }
.hs {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3rem 2.5rem; opacity: 0; pointer-events: none;
  transition: opacity .9s var(--e); z-index: 2;
}
.hs.on { opacity: 1; pointer-events: auto; }

.hs-box {
  background: #faf8f4;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 12px 50px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 420px;
}

/* Dark text inside white box */
.hs-box .hs-kick            { color: #a0522d; }
.hs-box .hs-kick::before    { background: var(--terra); }
.hs-box .hs-title           { color: #0d1b2a; }
.hs-box .hs-body            { color: rgba(13,27,42,0.68); }
.hs-box .hs-item            { color: rgba(13,27,42,0.85); }
.hs-box .hs-dot             { background:var(--terra); }
.hs-box .hs-qt              { color: #0d1b2a; font-style: italic; }
.hs-box .hs-qw              { color: rgba(13,27,42,0.55); }
.hs-box .hs-q               { color: rgba(139,105,20,0.35); }
.hs-box .hs-st span         { color: #a0522d; }
.hs-box .hs-sn              { color: #0d1b2a; }
.hs-box .hs-sn sup          { color: #a0522d; }
.hs-box .hs-sl              { color: rgba(13,27,42,0.55); }
.hs-box .hs-stat {
  border: 1px solid #0d1b2a;
  background: rgba(13,27,42,0.04);
  backdrop-filter: none;
}
.hs-box {
  font-family: 'DM Sans;  /* ✅ Added */
}

/* ═════ MOBILE HERO FIX ═════ */
@media (max-width: 992px) {

  /* Split layout → Stack */
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* Left panel */
  .hl {
    padding: 80px 22px 50px !important;
    text-align: center;
  }

  .hl::after {
    display: none; /* remove angled divider */
  }

  .hl-h1 {
    font-size: clamp(2.1rem, 7vw, 2.8rem);
    line-height: 1.2;
  }

  .hl-sub {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hl-acts {
    justify-content: center;
  }

  /* Right panel */
  .hr {
    min-height: 520px;
  }

  .hs {
    padding: 2rem 1.2rem;
  }

  .hs-box {
    max-width: 100%;
    padding: 1.8rem 1.5rem;
  }

  .hs-big {
    font-size: 3.2rem;
  }

  .hs-title {
    font-size: 1.5rem;
  }

  .hs-body {
    font-size: .95rem;
  }

  .hs-sn {
    font-size: 2rem;
  }

  .h-dots {
    bottom: 1.2rem;
  }

}

/* ══ CLIENT LOGOS ══ */
#clients { background: var(--bg-w); border-bottom: 1px solid var(--bdr); padding: 4rem 0; }
.cli-lb { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-4); text-align: center; display: block; margin-bottom: 2.5rem; }
.cli-ou { overflow: hidden; }
.cli-tr { display: flex; gap: 1px; animation: cs 38s linear infinite; width: max-content; }
.cli-tr:hover { animation-play-state: paused; }
.lg {
  flex-shrink: 0; width: 170px; height: 80px; background: var(--bg); border: 1px solid var(--bdr);
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: .65rem;
  transition: all .35s;
}
.lg:hover { border-color: rgba(13,27,42,.4); background: var(--nv-pale); }
.lg-nm { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--ink-4); letter-spacing: .12em; text-transform: uppercase; text-align: center; line-height: 1.2; transition: color .3s; }
.lg:hover .lg-nm { color: var(--ink); }
.lg-cat { font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-2); margin-top: 3px; text-align: center; }
.lg.prem .lg-nm { color: var(--nv); }
.lg.prem { border-color: rgba(13,27,42,.18); }

/* ══ OFFICE BAND ══ */
#oband { background: var(--bg-c); border-bottom: 1px solid var(--bdr); padding: 1.4rem 0; }
.ob { max-width: 1320px; margin: 0 auto; padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; }
.ob-lb { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-4); }
.ob-ofs { display: flex; gap: 2rem; flex-wrap: wrap; }
.ob-of { display: flex; align-items: center; gap: .55rem; }
.ob-p { width: 7px; height: 7px; border-radius: 50%; background: #a0522d; position: relative; flex-shrink: 0; }
.ob-p::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(13,27,42,.3); animation: pp 2.5s ease-in-out infinite; }
.ob-cy { font-size: .85rem; font-weight: 600; color: var(--ink); }
.ob-ct { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); }
.ob-em { font-size: .78rem; color: #a0522d; transition: color .2s; }
.ob-em:hover { color: var(--nv-m); }

/* ══════════════════════════════════
   WHO WE HELP
══════════════════════════════════ */
/* ══════════════════════════════════
   WHO WE HELP
══════════════════════════════════ */
/* ══════════════════════════════════
   WHO WE HELP
══════════════════════════════════ */

/* ── Particle dust keyframes ── */
@keyframes dust-float {
  0%   { transform: translateY(0px)   opacity: 1;   }
  100% { transform: translateY(-120px); opacity: 0; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.15; }
  50%       { opacity: 0.7;  }
}

#who {
  background: var(--bg);
  padding: 7.5rem 0;
}

.who-hd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
}

.who-gr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ── Card ── */
.wc {
  position: relative;
  height: 220px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;

  /* Dark navy — matches video exactly */
  background: #0d1b2a;
  border: 1.5px solid #1e3248;

  transition:
    transform .4s cubic-bezier(.22, 1, .36, 1),
    box-shadow .4s cubic-bezier(.22, 1, .36, 1);
}

/* ── Particle texture overlay (CSS noise dots) ── */
.wc::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
    opacity: 1;
  pointer-events: none;
  transition: opacity .4s ease;
}

/* ── White fill — slides up on hover ── */
.wc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #f5f0eb;
  border: 2px solid #0d1b2a;
  border-radius: 4px;
  transform: translateY(100%);
  transition: transform .48s cubic-bezier(.22, 1, .36, 1);
  z-index: 2;
}

/* ── Hover ── */
.wc:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 2px #0d1b2a,
    0 16px 40px rgba(13,27,42,.25);
}

.wc:hover::after  { transform: translateY(0); }
.wc:hover::before { opacity: 0; }  /* hide particles on flip */

/* ── Front face (icon + title) ── */
.wc-front {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition:
    transform .42s cubic-bezier(.22, 1, .36, 1),
    opacity .3s ease;
}

.wc:hover .wc-front {
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
}

/* ── Back face (description) ── */
.wc-back {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.75rem;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition:
    transform .48s cubic-bezier(.22, 1, .36, 1) .08s,
    opacity .35s ease .08s;
  pointer-events: none;
}

.wc:hover .wc-back {
  transform: translateY(0);
  opacity: 1;
}

.wc-back .wc-ds {
  font-size: .92rem;
  line-height: 1.85;
  color: #0d1b2a;
  font-weight: 400;
}

/* ── Icon container ── */
.wc-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.wc-ico {
  width: 58px;
  height: 58px;
  background: transparent;
  border: 1.5px solid rgba(196,140,80,.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-ico svg {
  width: 28px;
  height: 28px;
  /* Gold/amber — matches video */
  stroke: #c48c50;
  fill: none;
  stroke-width: 1.5;
}

/* ── Title ── */
.wc-tl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .who-hd { grid-template-columns: 1fr; gap: 2rem; }
  .who-gr  { grid-template-columns: repeat(2, 1fr); }
  .wc      { height: 200px; }
}

@media (max-width: 520px) {
  .who-gr { grid-template-columns: 1fr; }
  .wc     { height: 180px; }
}

/* WHO WE HELP GRID - 3 Columns */
.who-gr {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 2rem;
}

/* Tablet */
@media (max-width: 992px) {
  .who-gr {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .who-gr {
    grid-template-columns: 1fr; /* 1 column */
  }
}
/* ══ ABOUT (dark section) ══ */

/* ═══════════ ABOUT ═══════════ */
#about { background: var(--greige); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; box-shadow: 0 20px 60px rgba(13,27,42,.18); }
.about-img-card {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--navy); border-radius: 10px;
  padding: 1.5rem 1.75rem; box-shadow: 0 12px 40px rgba(13,27,42,.3);
  border: 1px solid rgba(201,169,110,.2);
}
.about-img-card-q { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: rgba(250,248,244,.85); line-height: 1.5; max-width: 220px; margin-bottom: .65rem; }
.about-img-card-by { font-size: .78rem; font-weight: 600; color: var(--gold); letter-spacing: .06em; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.about-stat { }
.about-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600; color: var(--terra); }
.about-stat-num sup { font-size: 1.1rem; }
.about-stat-label { font-size: .82rem; color: var(--text-m); font-weight: 500; letter-spacing: .04em; }

#about { background: var(--nv); padding: 7.5rem 0; }
.about-gr { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; margin-bottom: 5.5rem; }
.about-ph { position: relative; border-radius: 12px; overflow: hidden; height: 520px; }
.about-ph img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.85) sepia(.06); }
.about-ph::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(13,27,42,.85) 100%); }
.about-ph-q { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; z-index: 1; }
.about-ph-qt { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; font-weight: 300; color: rgba(250,248,244,.9); line-height: 1.65; }
.about-ph-qw { font-size: .75rem; color: var(--g-l); letter-spacing: .08em; margin-top: .55rem; }
.about-bd { font-size: 1rem; line-height: 1.95; color: rgba(250,248,244,.52); margin: 1.5rem 0 2.25rem; }
.about-bd p+p { margin-top: .9rem; }
.astats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.ast { border-top: 1px solid rgba(201,169,110,.16); padding-top: 1.3rem; }
.ast-n { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--g-l); line-height: 1; }
.ast-n sup { font-size: 1.1rem; vertical-align: super; color: rgba(201,169,110,.35); }
.ast-l { font-size: .75rem; color: rgba(250,248,244,.3); margin-top: 5px; }
.uk-lb { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--g-l); display: flex; align-items: center; gap: .55rem; margin-bottom: 1.25rem; }
.uk-lb-ln { width: 18px; height: 1px; background: var(--g); }
.pc {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,169,110,.1);
  padding: 1.5rem; border-radius: 10px; display: flex; gap: 1.1rem; transition: border-color .3s;
}
.pc:hover { border-color: rgba(201,169,110,.28); }
.pc+.pc { margin-top: 1.1rem; }
.pc-av {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201,169,110,.08); border: 1px solid rgba(201,169,110,.18);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--g-l);
}
.pc-nm { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: #fff; margin-bottom: 2px; }
.pc-rl { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--g-l); margin-bottom: .5rem; }
.pc-bi { font-size: .85rem; color: rgba(250,248,244,.45); line-height: 1.6; }

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 4.5rem;
}

/* Tablet */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .pc {
    padding: 1.2rem;
    gap: .9rem;
  }

  .pc-av {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .pc-nm {
    font-size: 1.05rem;
  }

  .pc-rl {
    font-size: .62rem;
  }

  .pc-bi {
    font-size: .8rem;
  }
}
.mv { border-top: 1px solid rgba(201,169,110,.1); padding-top: 5rem; }
.mv-g { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.mv-r { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.mvc { background: rgba(255,255,255,.03); border: 1px solid rgba(201,169,110,.08); padding: 1.5rem; border-radius: 10px; transition: border-color .3s; }
.mvc:hover { border-color: rgba(201,169,110,.24); }
.mvc-ico { width: 26px; height: 26px; stroke: var(--g-l); fill: none; stroke-width: 1.5; margin-bottom: .9rem; }
.mvc-tl { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #fff; margin-bottom: .42rem; }
.mvc-ds { font-size: .85rem; line-height: 1.7; color: rgba(250,248,244,.42); }

/* ══ SERVICES (index) ══ */
#services { padding: 7.5rem 0; background: var(--nv); }
.services-hd { text-align: center; margin-bottom: 4rem; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc-card {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(201,169,110,.12);
  border-radius: 12px; padding: 2.5rem;
  transition: border-color .3s, background .3s, transform .3s;
  display: flex; flex-direction: column;
}
.svc-card:hover { border-color: rgba(201,169,110,.5); background: rgba(201,169,110,.06); transform: translateY(-3px); }
.svc-ic { width: 56px; height: 56px; background: rgba(201,169,110,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; }
.svc-ic svg { width: 28px; height: 28px; stroke: var(--g-l); fill: none; stroke-width: 1.5; }
.svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 600; color: #fff; margin-bottom: .55rem; }
.svc-card .svc-badge { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--terra-l); margin-bottom: .9rem; display: block; }
.svc-card p { font-size: .95rem; line-height: 1.8; color: rgba(250,248,244,.52); margin-bottom: 1rem; flex: 1; }
.svc-feats { list-style: none; display: flex; flex-direction: column; gap: .42rem; margin-bottom: 1.6rem; }
.svc-feats li { display: flex; align-items: center; gap: .55rem; font-size: .88rem; color: rgba(250,248,244,.55); }
.svc-feats li::before { content: '✓'; color: var(--g-l); font-weight: 700; flex-shrink: 0; font-size: .8rem; }
.svc-price-row { display: flex; align-items: baseline; gap: .3rem; margin-bottom: 1.4rem; }
.svc-price-row strong { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--g-l); line-height: 1; }
.svc-price-row span { font-size: .82rem; color: rgba(250,248,244,.38); }
.svc-add {
  display: inline-flex; align-items: center; gap: .55rem; font-size: .9rem; font-weight: 600;
  color: var(--g-l); border: 1.5px solid rgba(201,169,110,.3); padding: .7rem 1.2rem;
  border-radius: 8px; transition: all .25s; background: none; cursor: pointer; margin-top: auto;
}
.svc-add:hover { background: var(--g); color: var(--nv); border-color: var(--g); }
.svc-add svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ══ TRUST BAR ══ */
#trust { background: #faf8f4; border-top: 1px solid rgba(13,27,42,.2); border-bottom: 1px solid rgba(13,27,42,.2); padding: 2.25rem 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .75rem; font-size: 1rem; font-weight: 600; color: var(--nv); }
.trust-item svg { width: 22px; height: 22px; stroke: #a0522d; fill: none; flex-shrink: 0; }

/* ══ PRICING CARDS (shared — index + pricing page) ══ */
#pricing { padding: 7rem 0; background: var(--bg-w); }
.pricing-hd { text-align: center; margin-bottom: 4rem; }
.pgr { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.pcard { background: var(--bg); border: 2px solid var(--bdr); border-radius: 14px; padding: 2.75rem; position: relative; transition: border-color .3s, box-shadow .3s; }
.pcard:hover { border-color: #a0522d; box-shadow: 0 12px 40px rgba(13,27,42,.12); }
.pcard.featured { border-color: var(--nv); background: var(--nv); box-shadow: 0 16px 56px rgba(13,27,42,.28); }
.pcard-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #a0522d; color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .38rem 1.2rem; border-radius: 20px; white-space: nowrap; }
.pcard-name { font-size: 1rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #a0522d; margin-bottom: .85rem; }
.pcard.featured .pcard-name { color: var(--g-l); }
.pcard-price { font-family: 'Cormorant Garamond', serif; font-size: 4.2rem; font-weight: 600; line-height: 1; color: var(--ink); margin-bottom: .3rem; transition: all .3s; }
.pcard.featured .pcard-price { color: var(--g-l); }
.pcard-price sup { font-size: 1.8rem; vertical-align: super; }
.pcard-freq { font-size: 1rem; color: var(--ink-4); margin-bottom: .5rem; }
.pcard.featured .pcard-freq { color: rgba(250,248,244,.45); }
.pcard-save { font-size: .82rem; font-weight: 700; color: var(--terra); margin-bottom: 1.5rem; min-height: 1.2rem; }
.pcard.featured .pcard-save { color: var(--g-l); }
.pcard-divider { height: 1px; background: var(--bdr); margin-bottom: 1.75rem; }
.pcard.featured .pcard-divider { background: rgba(255,255,255,.1); }
.pcard-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.pcard-feat { display: flex; align-items: center; gap: 14px; font-size: 1rem; color: var(--ink-6); margin-bottom: 18px; }
.pcard.featured .pcard-feat { color: rgba(250,248,244,.8); }
.pcard-feat-ic { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; margin-right: 10px; color: #c6a55c; flex-shrink: 0; }
.pcard-feat-ic svg { width: 16px; height: 16px; stroke: #a0522d; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.pcard.featured .pcard-feat-ic svg { stroke: var(--g-l); }
.pcard-btns { display: flex; flex-direction: column; gap: .85rem; }
.pcard-add { display: block; width: 100%; padding: 1.15rem; background: #a0522d; color: #fff; text-align: center; font-size: 1rem; font-weight: 700; border-radius: 8px; border: none; cursor: pointer; transition: background .25s; }
.pcard-add:hover { background: var(--terra-d); }
.pcard.featured .pcard-add { background: #b5714a; color: var(--nv); }
.pcard.featured .pcard-add:hover { background: var(--g-l); }
.pcard-book { display: block; width: 100%; padding: 1rem; background: transparent; color: #a0522d; text-align: center; font-size: .95rem; font-weight: 600; border-radius: 8px; border: 2px solid var(--bdr); cursor: pointer; transition: all .25s; }
.pcard-book:hover { border-color: #a0522d; }
.pcard.featured .pcard-book { color: var(--g-l); border-color: rgba(201,169,110,.3); }
.pcard.featured .pcard-book:hover { border-color: var(--g-l); }

/* ══ HOW IT WORKS ══ */
#how { padding: 7.5rem 0; background: var(--bg); }
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.how-grid::before {
  content: ''; position: absolute; top: 39px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, var(--bdr) 20%, var(--bdr) 80%, transparent);
  pointer-events: none;
}
.how-step { text-align: center; position: relative; }
.how-num {
  width: 80px; height: 80px; background: var(--nv); border: 3px solid var(--bdr);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.6rem; font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  font-weight: 600; color: #b5714a; position: relative; z-index: 1; transition: border-color .25s, transform .25s;
}
.how-step:hover .how-num { border-color: #a0522d; transform: scale(1.06); }
.how-step h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: .65rem; }
.how-step p { font-size: .95rem; line-height: 1.75; color: var(--ink-4); }

/* ══ TESTIMONIALS ══ */
#testimonials { padding: 7.5rem 0; background: var(--nv); }
.tes-hd { text-align: center; margin-bottom: 3.5rem; }
.tgr { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tcard { background: #f2ede4; border: 1.5px solid rgba(201,169,110,.15); border-radius: 12px; padding: 2.25rem; transition: border-color .25s, transform .25s; }
.tcard:hover { border-color: rgba(201,169,110,.45); transform: translateY(-3px); }
.tcard-stars { display: flex; gap: 3px; margin-bottom: 1.1rem; }
.tcard-stars span { color: var(--g); font-size: 1.1rem; }
.tcard-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; line-height: 1.8; color: var(--ink); margin-bottom: 1.35rem; font-style: italic; }
.tcard-name { font-size: 1rem; font-weight: 700; color: var(--ink); }
.tcard-role { font-size: .88rem; color: var(--ink); }
.tcard-img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; border: 2px solid rgba(201,169,110,.25); }

/* ══ RESOURCES TABS (index embedded) ══ */
@media (max-width: 640px) {

  .resources-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal buttons */
    padding: 0;
    margin: 20px 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .resources-tabs .rtab {
    padding: 14px 6px;
    font-size: 11px;        /* smaller so text fits */
    text-align: center;
    line-height: 1.2;
    white-space: normal;    /* allow clean wrap */
  }

}

.resources-tabs {
  max-width: 100%;
  overflow: hidden;
}
.resources-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.cnt {
   padding: 0 15px;   /* jar asel tar mobile madhe kami kara */
}
@media (max-width:640px){
   .cnt{
      padding: 0 12px;
   }
}
#resources { padding: 7.5rem 0; background: var(--bg-w); }
.resources-tabs {
  display: flex; justify-content: center; gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(90deg, #0f2238, #132b45);
  padding: 18px 0; margin-top: 40px;
}
.rtab {
  background: none; border: none; color: #9fb3c8; font-size: 14px; letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600; cursor: pointer; padding-bottom: 14px;
  position: relative; transition: all .3s ease;
}
.rtab:hover { color: #ffffff; }
.rtab::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: #c6a55c; transition: width .3s ease; }
.rtab:hover::after { width: 100%; }
.rtab.on { color: #ffffff; }
.rtab.on::after { width: 100%; }
.rpnl { display: none; }
.rpnl.on { display: block; }

/* Articles */
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.articles-grid.two-col { grid-template-columns: repeat(2,1fr); }
.art-card { background: var(--bg); border: 1.5px solid var(--bdr); border-radius: 12px; overflow: hidden; transition: box-shadow .25s, transform .25s; }
.art-card:hover { box-shadow: 0 10px 32px rgba(13,27,42,.1); transform: translateY(-4px); }
.art-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.art-img { height: 200px; overflow: hidden; }
.art-card.featured .art-img { height: 100%; min-height: 280px; }
.art-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--e); }
.art-card:hover .art-img img { transform: scale(1.04); }
.art-body { padding: 1.75rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.art-tag { font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #a0522d; margin-bottom: .75rem; display: block; }
.art-h { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--ink); line-height: 1.35; margin-bottom: .65rem; }
.art-card.featured .art-h { font-size: 1.75rem; }
.art-p { font-size: .95rem; line-height: 1.7; color: var(--ink-4); margin-bottom: 1.1rem; }
.art-meta { display: flex; align-items: center; gap: 1rem; font-size: .78rem; color: var(--ink-2); }
.art-meta span { display: flex; align-items: center; gap: .3rem; }
.art-meta svg { width: 12px; height: 12px; stroke: var(--ink-2); fill: none; }
.art-read { display: inline-flex; align-items: center; gap: .4rem; font-size: .88rem; font-weight: 700; color: var(--terra); margin-top: 1rem; transition: gap .2s; }
.art-read:hover { gap: .65rem; }

/* Calculator */
.calc-box { background: var(--bg); border: 2px solid var(--bdr); border-radius: 14px; padding: 2.75rem; max-width: 640px; }
.calc-box h3 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 800; color: var(--ink); margin-bottom: .55rem; }
.calc-box p { font-size: 1rem; color: var(--ink-4); margin-bottom: 1.75rem; line-height: 1.7; }
.form-row { margin-bottom: 1.35rem; }
.form-row label { display: block; font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: .55rem; }
.form-row input, .form-row select {
  width: 100%; padding: .95rem 1.15rem; border: 1.5px solid var(--bdr);
  border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 1rem;
  color: var(--ink); background: var(--bg-w); transition: border-color .25s; outline: none;
}
.form-row input:focus, .form-row select:focus { border-color: #a0522d; }
.calc-result { display: none; margin-top: 1.75rem; padding: 1.75rem; background: var(--nv-pale); border: 1.5px solid rgba(13,27,42,.18); border-radius: 10px; }
.calc-result-row { display: flex; justify-content: space-between; align-items: baseline; padding: .7rem 0; border-bottom: 1px solid rgba(13,27,42,.1); font-size: 1.05rem; color: var(--ink-6); }
.calc-result-row:last-child { border-bottom: none; }
.calc-result-row.total { font-weight: 700; color: var(--ink); }
.calc-result-row .val { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: #a0522d; }
.calc-result-row.total .val { font-size: 2.2rem; color: var(--terra); }

/* FAQ */
.faq-box { background: var(--bg); border: 2px solid var(--bdr); border-radius: 14px; overflow: hidden; max-width: 760px; }
.faq-box h3 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 800; color: var(--ink); padding: 2.5rem 2.75rem 0; }
.faq-item { border-bottom: 1px solid var(--bdr); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 1.45rem 2.75rem; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-size: 1.05rem; font-weight: 600; color: var(--ink); transition: color .2s; gap: 1rem; }
.faq-q:hover { color: #a0522d; }
.faq-q svg { width: 20px; height: 20px; stroke: var(--ink-4); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; font-size: 1rem; line-height: 1.85; color: var(--ink-4); padding: 0 2.75rem; transition: max-height .4s var(--e), padding .3s; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 2.75rem 2rem; }

/* ══ CLIENT HUB TABS (index embedded) ══ */
.hub-tabs {
  display: flex; justify-content: center; gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(90deg, #0f2238, #132b45);
  padding: 18px 0;
}
.htab {
  background: none; border: none; color: #9fb3c8; font-size: 14px; letter-spacing: 1px;
  text-transform: uppercase; font-weight: 600; cursor: pointer; padding-bottom: 14px;
  position: relative; transition: all .3s ease;
}
.htab:hover { color: #ffffff; }
.htab::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: #c6a55c; transition: width .3s ease; }
.htab:hover::after { width: 100%; }
.htab.on { color: #ffffff; }
.htab.on::after { width: 100%; }
.hpnl { display: none; }
.hpnl.on { display: block; }

/* Upload zone */
.upload-zone { border: 2px dashed var(--bdr); border-radius: 12px; padding: 4rem 2rem; text-align: center; cursor: pointer; transition: border-color .25s, background .25s; background: var(--bg-w); }
.upload-zone:hover, .upload-zone.drag { border-color: #a0522d; background: var(--nv-pale); }
.upload-zone svg { width: 56px; height: 56px; stroke: var(--ink-4); fill: none; margin: 0 auto 1.25rem; display: block; }
.upload-zone h3 { font-size: 1.35rem; font-weight: 700; color: var(--ink); margin-bottom: .55rem; }
.upload-zone p { font-size: .95rem; color: var(--ink-4); line-height: 1.65; }
.upload-zone strong { color: #a0522d; cursor: pointer; }
.upload-types { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-top: 1.25rem; }
.utype { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .75rem; border: 1px solid var(--bdr); border-radius: 100px; color: var(--ink-2); }
.file-list { margin-top: 1.5rem; }
.file-it { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--bg-w); border: 1px solid var(--bdr); border-radius: 8px; margin-bottom: .65rem; }
.file-ic { width: 22px; height: 22px; stroke: #a0522d; fill: none; flex-shrink: 0; }
.file-nm { font-size: .95rem; flex: 1; color: var(--ink); }
.file-sz { font-size: .78rem; color: var(--ink-2); }
.file-rm { background: none; border: none; cursor: pointer; color: var(--ink-2); font-size: .82rem; transition: color .2s; flex-shrink: 0; }
.file-rm:hover { color: var(--terra); }
.upload-progress { height: 4px; background: var(--bdr); border-radius: 2px; margin-top: .5rem; overflow: hidden; display: none; }
.upload-progress-bar { height: 100%; background: var(--terra); border-radius: 2px; width: 0; transition: width .4s var(--e); }
.upload-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.us-card { background: var(--bg); border: 1.5px solid var(--bdr); border-radius: 12px; padding: 1.5rem; }
.us-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: .75rem; }
.us-list { display: flex; flex-direction: column; gap: .5rem; }
.us-item { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--ink-4); }
.us-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }
.us-secure { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--ink-4); padding: .9rem 1rem; background: rgba(181,113,74,.06); border: 1px solid rgba(181,113,74,.18); border-radius: 8px; }
.us-secure svg { width: 16px; height: 16px; stroke: var(--terra); fill: none; flex-shrink: 0; }
.upload-submit-row { display: flex; gap: 1rem; align-items: flex-end; margin-top: 1.5rem; flex-wrap: wrap; }
.upload-submit-row .field { flex: 1; min-width: 200px; }

/* Booking */
.book-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.book-l h3, .book-r h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: 1.35rem; }
.meeting-types { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.bt { padding: .75rem 1.25rem; border: 2px solid var(--bdr); border-radius: 8px; background: none; font-size: .92rem; font-weight: 600; color: var(--ink-4); cursor: pointer; transition: all .25s; }
.bt:hover { border-color: #a0522d; color: #a0522d; }
.bt.sel { background: #a0522d; color: #fff; border-color: #a0522d; }
.cal-strip { display: grid; grid-template-columns: repeat(7,1fr); gap: .4rem; margin-bottom: 1.5rem; }
.cal-day { text-align: center; cursor: pointer; border-radius: 8px; padding: .55rem .25rem; transition: all .2s; border: 1.5px solid transparent; }
.cal-day:hover { border-color: var(--bdr); background: var(--bg-w); }
.cal-day.sel { background: var(--nv); border-color: var(--nv); }
.cal-day.off { opacity: .3; pointer-events: none; }
.cal-dn { font-size: .7rem; color: var(--ink-4); text-transform: uppercase; letter-spacing: .06em; }
.cal-day.sel .cal-dn { color: rgba(250,248,244,.5); }
.cal-dd { font-size: 1rem; font-weight: 700; color: var(--ink); margin-top: 2px; }
.cal-day.sel .cal-dd { color: #fff; }
.time-slots { display: grid; grid-template-columns: repeat(3,1fr); gap: .65rem; margin-bottom: 1.5rem; }
.ts { padding: .7rem; border: 1.5px solid var(--bdr); border-radius: 8px; background: none; font-size: .88rem; font-weight: 600; color: var(--ink-4); cursor: pointer; text-align: center; transition: all .25s; }
.ts:hover:not(.taken) { border-color: #a0522d; color: #a0522d; }
.ts.sel { background: #a0522d; color: #fff; border-color: #a0522d; }
.ts.taken { opacity: .35; pointer-events: none; text-decoration: line-through; }
.acct-pick { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; }
.ap { display: flex; align-items: center; gap: 1rem; padding: .85rem 1.1rem; border: 1.5px solid var(--bdr); border-radius: 8px; cursor: pointer; transition: border-color .2s; }
.ap:hover { border-color: #a0522d; }
.ap.sel { border-color: var(--nv); background: rgba(13,27,42,.03); }
.ap-av { width: 42px; height: 42px; border-radius: 50%; background: rgba(13,27,42,.08); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--nv); font-weight: 600; flex-shrink: 0; }
.ap-nm { font-size: .95rem; font-weight: 700; color: var(--ink); }
.ap-rl { font-size: .78rem; color: var(--ink-4); }
.ap-rd { margin-left: auto; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--bdr); flex-shrink: 0; transition: all .2s; }
.ap.sel .ap-rd { background: var(--nv); border-color: var(--nv); }

/* Onboarding */
.onboard-steps { display: flex; flex-direction: column; gap: 0; }
.onboard-step { display: flex; gap: 1.5rem; padding: 1.75rem; background: var(--bg); border: 1.5px solid var(--bdr); border-radius: 12px; margin-bottom: 1rem; position: relative; transition: border-color .3s; }
.onboard-step.done { border-color: rgba(181,113,74,.35); background: rgba(181,113,74,.03); }
.onboard-step.active { border-color: var(--nv); box-shadow: 0 4px 24px rgba(13,27,42,.1); }
.onboard-step-num { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; background: var(--bg-c); color: var(--ink-4); border: 2px solid var(--bdr); transition: all .3s; }
.onboard-step.done .onboard-step-num { background: var(--terra); color: #fff; border-color: var(--terra); font-size: 1rem; }
.onboard-step.active .onboard-step-num { background: var(--nv); color: var(--g-l); border-color: var(--nv); }
.onboard-step-body { flex: 1; }
.onboard-step-body h4 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: .35rem; }
.onboard-step-body p { font-size: .92rem; color: var(--ink-4); line-height: 1.65; }
.onboard-step-badge { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .75rem; border-radius: 100px; display: inline-block; margin-top: .5rem; }
.badge-done    { background: rgba(181,113,74,.12); color: var(--terra); }
.badge-active  { background: rgba(13,27,42,.08); color: var(--nv); }
.badge-pending { background: var(--bg-c); color: var(--ink-4); }
.onboard-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.ob-card { background: var(--bg-w); border: 1.5px solid var(--bdr); border-radius: 12px; padding: 1.75rem; }
.ob-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; }
.ob-prog { margin-bottom: 1rem; }
.ob-prog-label { display: flex; justify-content: space-between; font-size: .82rem; color: var(--ink-4); margin-bottom: .4rem; }
.ob-prog-bar { height: 8px; background: var(--bdr); border-radius: 4px; overflow: hidden; }
.ob-prog-fill { height: 100%; background: linear-gradient(to right, var(--terra), var(--g)); border-radius: 4px; transition: width 1s var(--e); }
.ob-checklist { display: flex; flex-direction: column; gap: .55rem; }
.ob-check { display: flex; align-items: center; gap: .65rem; font-size: .88rem; color: var(--ink-4); }
.ob-check.done { color: var(--ink-6); }
.ob-check-ic { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ob-check-ic.tick { background: var(--terra); }
.ob-check-ic.tick svg { width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 2.5; }
.ob-check-ic.empty { border: 2px solid var(--bdr); }
.ob-acct { display: flex; gap: 1rem; align-items: center; }
.ob-acct-av { width: 52px; height: 52px; border-radius: 50%; background: rgba(13,27,42,.08); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--nv); font-weight: 600; flex-shrink: 0; }
.ob-acct-nm { font-size: 1rem; font-weight: 700; color: var(--ink); }
.ob-acct-rl { font-size: .78rem; color: var(--ink-4); }
.ob-acct-contact { display: flex; gap: .5rem; margin-top: .5rem; }
.ob-acct-contact a { font-size: .78rem; color: var(--terra); font-weight: 600; border: 1px solid rgba(181,113,74,.3); padding: .3rem .75rem; border-radius: 6px; transition: all .2s; }
.ob-acct-contact a:hover { background: var(--terra); color: #fff; }

/* Messages */
.msg-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; min-height: 540px; }
.msg-sidebar { border-right: 1px solid var(--bdr); padding-right: 2rem; }
.msg-sidebar h4 { font-size: .82rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 1rem; }
.msg-thread { padding: .9rem 1rem; border-radius: 8px; cursor: pointer; transition: background .2s; border: 1.5px solid transparent; margin-bottom: .5rem; }
.msg-thread:hover { background: var(--bg-w); }
.msg-thread.on { background: var(--nv-pale); border-color: rgba(181,113,74,.25); }
.msg-thread-nm { font-size: .92rem; font-weight: 700; color: var(--ink); }
.msg-thread-prev { font-size: .82rem; color: var(--ink-4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; margin-top: 2px; }
.msg-thread-date { font-size: .72rem; color: var(--ink-2); margin-top: 3px; }
.msg-unread { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--terra); margin-left: .4rem; vertical-align: middle; }
.msg-main { display: flex; flex-direction: column; }
.msg-main-hd { border-bottom: 1px solid var(--bdr); padding-bottom: 1rem; margin-bottom: 1.25rem; }
.msg-main-hd h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--ink); }
.msg-main-hd p { font-size: .82rem; color: var(--ink-4); margin-top: 2px; }
.msg-bubble-wrap { flex: 1; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; overflow-y: auto; max-height: 340px; padding-right: .5rem; }
.msg-bubble { max-width: 75%; padding: 1rem 1.25rem; border-radius: 12px; font-size: .92rem; line-height: 1.65; }
.msg-bubble.them { background: var(--bg-w); border: 1px solid var(--bdr); color: var(--ink-6); border-radius: 12px 12px 12px 2px; }
.msg-bubble.me { background: var(--nv); color: rgba(250,248,244,.85); border-radius: 12px 12px 2px 12px; align-self: flex-end; }
.msg-bubble-nm { font-size: .72rem; color: var(--ink-4); margin-bottom: .3rem; font-weight: 600; }
.msg-bubble.me .msg-bubble-nm { text-align: right; color: rgba(201,169,110,.6); }
.msg-compose { display: flex; gap: .75rem; align-items: flex-end; }
.msg-compose textarea { flex: 1; padding: .9rem 1.1rem; border: 1.5px solid var(--bdr); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: .95rem; color: var(--ink); background: var(--bg-w); resize: none; height: 80px; outline: none; transition: border-color .25s; }
.msg-compose textarea:focus { border-color: #a0522d; }
.msg-send { padding: 1rem 1.5rem; background: var(--nv); color: #fff; border: none; border-radius: 8px; cursor: pointer; font-size: .92rem; font-weight: 700; transition: background .25s; flex-shrink: 0; }
.msg-send:hover { background: var(--nv-m); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.contact-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 2.25rem; }
.contact-opt { padding: 1.5rem 1.25rem; background: var(--bg); border: 2px solid var(--bdr); border-radius: 10px; display: flex; flex-direction: column; align-items: center; gap: .65rem; text-align: center; transition: border-color .25s, transform .25s; cursor: pointer; }
.contact-opt:hover { border-color: #a0522d; transform: translateY(-2px); }
.contact-opt svg { width: 30px; height: 30px; stroke: #a0522d; fill: none; }
.contact-opt h4 { font-size: .95rem; font-weight: 700; color: var(--ink); }
.contact-opt p { font-size: .82rem; color: var(--ink-4); line-height: 1.5; }
.office-cards { display: flex; flex-direction: column; gap: 1rem; }
.office-card { background: var(--bg); border: 1.5px solid var(--bdr); border-radius: 10px; padding: 1.35rem 1.5rem; display: flex; gap: 1.1rem; align-items: flex-start; transition: border-color .25s; }
.office-card:hover { border-color: #a0522d; }
.office-flag { font-size: 1.8rem; flex-shrink: 0; }
.office-nm { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.office-addr { font-size: .85rem; color: var(--ink-4); line-height: 1.55; }
.office-email { font-size: .85rem; color: var(--terra); font-weight: 600; margin-top: .4rem; display: block; }
.office-pulse { display: flex; align-items: center; gap: .4rem; font-size: .72rem; color: var(--ink-4); margin-top: .4rem; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; position: relative; flex-shrink: 0; }
.pulse-dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 1px solid rgba(34,197,94,.4); animation: pp 2.5s ease-in-out infinite; }

/* Forms (shared) */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
.form-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: .55rem; }
.field label { font-size: .95rem; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: .95rem 1.15rem; border: 1.5px solid var(--bdr); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; color: var(--ink);
  background: var(--bg); transition: border-color .25s; outline: none; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #a0522d; }
.success-msg { display: none; padding: 1.35rem 1.75rem; background: var(--nv-pale); border: 1.5px solid #a0522d; border-radius: 10px; font-size: 1rem; font-weight: 600; color: #a0522d; text-align: center; margin-top: 1.25rem; }
.error-msg   { display: none; padding: 1.35rem 1.75rem; background: #fef2f2; border: 1.5px solid #fca5a5; border-radius: 10px; font-size: 1rem; font-weight: 600; color: #dc2626; text-align: center; margin-top: 1.25rem; }

/* ══ PAGE HEROES ══ */

/* Services page hero */
#svc-hero { background: var(--nv); padding: 8rem 0 5.5rem; position: relative; overflow: hidden; }
#svc-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?auto=format&fit=crop&w=1400&q=60') center/cover no-repeat; opacity: .08; }
#svc-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,169,110,.1), transparent); }
.sh-inner { position: relative; z-index: 1; }
.sh-kick { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem; }
.sh-kl { width: 24px; height: 2px; background: var(--terra); border-radius: 2px; }
.sh-kt { font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; color: var(--terra); font-weight: 700; }
#svc-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.08; color: #fff; max-width: 700px; margin-bottom: 1.25rem; }
#svc-hero h1 em { font-style: italic; color: var(--g-l); }
#svc-hero p { font-size: 1.1rem; line-height: 1.85; color: rgba(250,248,244,.58); max-width: 520px; margin-bottom: 2.25rem; }
.sh-pills { display: flex; flex-wrap: wrap; gap: .65rem; }
.sh-pill { background: rgba(255,255,255,.06); border: 1px solid rgba(201,169,110,.2); border-radius: 100px; padding: .38rem 1.05rem; font-size: .78rem; color: rgba(250,248,244,.65); letter-spacing: .04em; }

/* Hub page hero */
#hub-hero { background: var(--nv); padding: 7rem 0 5rem; position: relative; overflow: hidden; }
#hub-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1400&q=60') center/cover no-repeat; opacity: .1; }
#hub-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 80% at 85% 50%, rgba(201,169,110,.1), transparent); }
.hub-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.hub-kick { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.4rem; }
.hub-kl { width: 24px; height: 2px; background: var(--terra); border-radius: 2px; }
.hub-kt { font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; color: var(--terra); font-weight: 700; }
#hub-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 4.5vw, 4.2rem); font-weight: 800; line-height: 1.08; color: #fff; margin-bottom: 1.1rem; }
#hub-hero h1 em { font-style: italic; color: var(--g-l); }
#hub-hero p { font-size: 1.05rem; line-height: 1.85; color: rgba(250,248,244,.55); max-width: 480px; margin-bottom: 2.25rem; }
.hub-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hub-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; flex-shrink: 0; }
.hub-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(201,169,110,.15); border-radius: 10px; padding: 1.4rem 1.6rem; text-align: center; min-width: 140px; }
.hub-stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--g-l); line-height: 1; }
.hub-stat-l { font-size: .72rem; color: rgba(250,248,244,.3); margin-top: 4px; letter-spacing: .06em; }

/* Resources page hero */
#res-hero { background: var(--nv); padding: 8rem 0 5.5rem; position: relative; overflow: hidden; }
#res-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1554224154-26032ffc0d07?auto=format&fit=crop&w=1400&q=60') center/cover no-repeat; opacity: .08; }
#res-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 80% at 85% 50%, rgba(201,169,110,.1), transparent); }
.res-hero-inner { position: relative; z-index: 1; }
.res-kick { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem; }
.res-kl { width: 24px; height: 2px; background: var(--terra); border-radius: 2px; }
.res-kt { font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; color: var(--terra); font-weight: 700; }
#res-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.08; color: #fff; max-width: 680px; margin-bottom: 1.25rem; }
#res-hero h1 em { font-style: italic; color: var(--g-l); }
#res-hero p { font-size: 1.1rem; line-height: 1.85; color: rgba(250,248,244,.55); max-width: 500px; margin-bottom: 2.5rem; }
.res-hero-cats { display: flex; flex-wrap: wrap; gap: .75rem; }
.res-cat-pill { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1.15rem; border: 1px solid rgba(201,169,110,.25); border-radius: 100px; font-size: .82rem; color: rgba(250,248,244,.55); cursor: pointer; transition: all .25s; background: none; }
.res-cat-pill:hover, .res-cat-pill.on { border-color: var(--g-l); color: var(--g-l); background: rgba(201,169,110,.08); }

/* Pricing page hero */
#pr-hero { background: var(--nv); padding: 8rem 0 5.5rem; position: relative; overflow: hidden; }
#pr-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?auto=format&fit=crop&w=1400&q=60') center/cover no-repeat; opacity: .08; }
#pr-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 80% at 85% 50%, rgba(201,169,110,.1), transparent); }
.pr-hero-inner { position: relative; z-index: 1; }
.pr-kick { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem; }
.pr-kl { width: 24px; height: 2px; background: var(--terra); border-radius: 2px; }
.pr-kt { font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; color: var(--terra); font-weight: 700; }
#pr-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.08; color: #fff; max-width: 680px; margin-bottom: 1.25rem; }
#pr-hero h1 em { font-style: italic; color: var(--g-l); }
#pr-hero p { font-size: 1.1rem; line-height: 1.85; color: rgba(250,248,244,.55); max-width: 500px; margin-bottom: 2.5rem; }
.pr-hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.pr-trust-it { display: flex; align-items: center; gap: .55rem; font-size: .88rem; color: rgba(250,248,244,.55); }
.pr-trust-it svg { width: 16px; height: 16px; stroke: var(--g-l); fill: none; flex-shrink: 0; }

/* ══ STICKY BARS ══ */
#filter-bar { background: var(--bg-w); border-bottom: 1px solid var(--bdr); position: sticky; top: 72px; z-index: 90; }
.filter-inner { display: flex; gap: .5rem; padding: .85rem 0; overflow-x: auto; }
.filter-btn { background: none; border: 1.5px solid var(--bdr); border-radius: 100px; padding: .45rem 1.2rem; font-size: .82rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all .25s; color: var(--ink-4); font-family: 'DM Sans', sans-serif; letter-spacing: .03em; }
.filter-btn.active, .filter-btn:hover { background: var(--nv); border-color: var(--nv); color: #fff; }

#hub-tabs-bar { background: var(--bg-w); border-bottom: 2px solid var(--bdr); position: sticky; top: 73px; z-index: 900; }
.htabs-inner { display: flex; overflow-x: auto; max-width: 1320px; margin: 0 auto; padding: 0 2.5rem; }

#res-tabs { background: var(--bg-w); border-bottom: 2px solid var(--bdr); position: sticky; top: 73px; z-index: 900; }
.rtabs-inner { display: flex; overflow-x: auto; }
/* shared sticky tab style */
.htabs-inner .htab,
.rtabs-inner .rtab { padding: 1.15rem 1.85rem; font-size: 1rem; font-weight: 600; color: var(--ink-4); background: none; border: none; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all .25s; white-space: nowrap; flex-shrink: 0; }
.htabs-inner .htab:hover, .rtabs-inner .rtab:hover { color: var(--ink); }
.htabs-inner .htab.on, .rtabs-inner .rtab.on { color: #a0522d; border-bottom-color: #a0522d; }

/* Pricing toggle bar */
#toggle-bar { background: var(--bg-w); border-bottom: 1px solid var(--bdr); padding: 1.25rem 0; }
.toggle-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.toggle-lbl { font-size: .92rem; font-weight: 600; color: var(--ink-4); }
.toggle-lbl.active { color: var(--ink); }
.toggle-sw { width: 52px; height: 28px; background: var(--nv); border-radius: 100px; position: relative; cursor: pointer; border: none; transition: background .3s; flex-shrink: 0; }
.toggle-sw::after { content: ''; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: #fff; border-radius: 50%; transition: transform .3s var(--e); }
.toggle-sw.yearly::after { transform: translateX(24px); }
.toggle-badge { background: var(--terra); color: #fff; font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 100px; letter-spacing: .06em; }

/* Panel wrappers */
.panel-wrap { padding: 5.5rem 0; }
.panel-wrap.dark  { background: var(--bg-w); }
.panel-wrap.light { background: var(--bg); }
.hpnl { display: none; }
.hpnl.on { display: block; }

/* ══ GUIDES ══ */
#res-guides { padding: 5.5rem 0; background: var(--bg); }
.guides-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.guide-card { background: var(--bg-w); border: 1.5px solid var(--bdr); border-radius: 12px; padding: 2rem; transition: border-color .3s, transform .3s; display: flex; flex-direction: column; }
.guide-card:hover { border-color: #a0522d; transform: translateY(-3px); }
.guide-ico { width: 52px; height: 52px; background: rgba(181,113,74,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.guide-ico svg { width: 26px; height: 26px; stroke: var(--terra); fill: none; stroke-width: 1.5; }
.guide-h { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; }
.guide-p { font-size: .92rem; line-height: 1.7; color: var(--ink-4); flex: 1; margin-bottom: 1.25rem; }
.guide-dl { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 700; color: #a0522d; border: 1.5px solid var(--bdr); padding: .65rem 1.1rem; border-radius: 8px; transition: all .25s; background: none; cursor: pointer; width: 100%; justify-content: center; }
.guide-dl:hover { border-color: #a0522d; background: var(--nv-pale); }
.guide-dl svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ══ RESOURCES CALC ══ */
#res-calc { padding: 5.5rem 0; background: var(--bg-w); }
.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.calc-tabs { display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.ct { padding: .65rem 1.35rem; border: 1.5px solid var(--bdr); border-radius: 8px; font-size: .88rem; font-weight: 600; color: var(--ink-4); background: none; cursor: pointer; transition: all .25s; }
.ct:hover { border-color: #a0522d; color: #a0522d; }
.ct.on { background: var(--nv); color: #fff; border-color: var(--nv); }
.cpnl { display: none; }
.cpnl.on { display: block; }
.calc-info { background: var(--nv); border-radius: 14px; padding: 2.5rem; }
.calc-info h3 { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.calc-info p { font-size: .95rem; color: rgba(250,248,244,.52); line-height: 1.75; margin-bottom: 1.5rem; }
.calc-info-items { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.calc-info-it { display: flex; align-items: flex-start; gap: .7rem; font-size: .9rem; color: rgba(250,248,244,.65); line-height: 1.55; }
.calc-info-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--g); margin-top: .55em; flex-shrink: 0; }
.calc-info-stat { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cis { background: rgba(255,255,255,.04); border: 1px solid rgba(201,169,110,.15); padding: 1.25rem; border-radius: 8px; }
.cis-n { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--g-l); }
.cis-l { font-size: .72rem; color: rgba(250,248,244,.3); margin-top: 3px; }
.calc-btn { width: 100%; padding: 1.05rem; background: var(--nv); color: #fff; font-size: 1rem; font-weight: 700; border-radius: 8px; border: none; cursor: pointer; transition: background .25s; }
.calc-btn:hover { background: var(--nv-m); }

/* ══ RESOURCES FAQ ══ */
#res-faq { padding: 5.5rem 0; background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: 3.5rem; align-items: start; }
.faq-cats { position: sticky; top: 140px; display: flex; flex-direction: column; gap: .5rem; }
.faq-cat-btn { width: 100%; text-align: left; padding: .85rem 1.25rem; background: var(--bg-w); border: 1.5px solid var(--bdr); border-radius: 8px; font-size: .95rem; font-weight: 600; color: var(--ink-4); cursor: pointer; transition: all .25s; }
.faq-cat-btn:hover { border-color: #a0522d; color: #a0522d; }
.faq-cat-btn.on { background: var(--nv); color: #fff; border-color: var(--nv); }
.faq-section { display: none; }
.faq-section.on { display: block; }
.faq-section-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: 1.25rem; }

/* ══ PRICING PAGE — ALL INCLUDED ══ */
#all-inc { padding: 6rem 0; background: var(--bg); }
.ai-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3rem; }
.ai-card { background: var(--bg-w); border: 1.5px solid var(--bdr); border-radius: 12px; padding: 1.75rem; transition: border-color .3s, transform .3s; }
.ai-card:hover { border-color: #a0522d; transform: translateY(-3px); }
.ai-ico { width: 48px; height: 48px; background: rgba(181,113,74,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.ai-ico svg { width: 24px; height: 24px; stroke: var(--terra); fill: none; stroke-width: 1.5; }
.ai-tl { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.ai-ds { font-size: .9rem; line-height: 1.7; color: var(--ink-4); }

/* Pricing FAQ grid */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; max-width: 960px; }

/* ══ COMPARE TABLE (shared) ══ */
#compare { padding: 6rem 0; background: var(--bg-w); }
.cmp-wrap { overflow-x: auto; margin-top: 2.5rem; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 700px; }
.cmp-table th { background: var(--nv); color: rgba(250,248,244,.85); padding: 1rem 1.25rem; text-align: left; font-weight: 600; }
.cmp-table th:first-child { border-radius: 10px 0 0 0; }
.cmp-table th:last-child  { border-radius: 0 10px 0 0; }
.cmp-table th.feat-col { background: var(--nv-m); }
.cmp-table td { padding: .9rem 1.25rem; border-bottom: 1px solid var(--bdr); vertical-align: middle; color: var(--ink-4); }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:hover td { background: var(--bg-c); }
.cmp-table .ck { color: var(--terra); font-size: 1.1rem; font-weight: 700; text-align: center; }
.cmp-table .ds { color: var(--bdr); text-align: center; }
.cmp-table .section-row td { background: var(--bg-c); font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-4); padding: .6rem 1.25rem; }

/* Blog filter buttons */
#res-blog { padding: 5.5rem 0; background: var(--bg-w); }
.blog-filter { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.bf { padding: .55rem 1.15rem; border: 1.5px solid var(--bdr); border-radius: 100px; font-size: .82rem; font-weight: 600; color: var(--ink-4); background: none; cursor: pointer; transition: all .25s; }
.bf:hover { border-color: #a0522d; color: #a0522d; }
.bf.on { background: var(--nv); color: #fff; border-color: var(--nv); }

/* ══ NEWSLETTER BAND ══ */
#newsletter { padding: 5.5rem 0; background: var(--bg-w); }
.nl-inner { background: var(--nv); border-radius: 16px; padding: 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; overflow: hidden; }
.nl-inner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(201,169,110,.08), transparent 70%); border-radius: 50%; }
.nl-l h3 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: .75rem; line-height: 1.15; }
.nl-l h3 em { font-style: italic; color: var(--g-l); }
.nl-l p { font-size: 1rem; color: rgba(250,248,244,.5); line-height: 1.75; }
.nl-r { position: relative; z-index: 1; }
.nl-form { display: flex; flex-direction: column; gap: .85rem; }
.nl-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.nl-in { width: 100%; padding: .9rem 1.15rem; background: rgba(255,255,255,.07); border: 1.5px solid rgba(201,169,110,.2); border-radius: 8px; color: var(--g-l); font-family: 'DM Sans', sans-serif; font-size: .95rem; outline: none; transition: border-color .25s; }
.nl-in:focus { border-color: var(--g); }
.nl-in::placeholder { color: rgba(250,248,244,.22); }
.nl-btn { padding: .9rem; background: var(--terra); color: #fff; border: none; border-radius: 8px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: background .25s; }
.nl-btn:hover { background: var(--terra-d); }
.nl-note { font-size: .78rem; color: rgba(250,248,244,.25); line-height: 1.6; }
.nl-success { display: none; text-align: center; padding: 1.5rem; background: rgba(255,255,255,.05); border: 1px solid rgba(201,169,110,.2); border-radius: 10px; font-size: 1rem; color: var(--g-l); font-weight: 600; }

/* ══ SERVICES PAGE CTA / INDEX CTA BAND ══ */
#cta-band,
#svc-cta { padding: 7rem 0; background: var(--nv); position: relative; overflow: hidden; }
#cta-band::before,
#svc-cta::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=60') center/cover no-repeat; opacity: .1; }
.cta-inner,
.svc-cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2,
.svc-cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 800; color: #fff; margin-bottom: 1.25rem; }
.cta-inner h2 em,
.svc-cta-inner h2 em { font-style: italic; color: var(--g-l); }
.cta-inner p,
.svc-cta-inner p { font-size: 1.1rem; color: rgba(255,255,255,.62); margin-bottom: 2.75rem; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }

/* ══ HUB PAGE SECTIONS ══ */
#hub { padding: 7.5rem 0; background: var(--bg); }
.hub-header { text-align: center; margin-bottom: 3rem; }
.hub-img-banner { width: 100%; height: 260px; border-radius: 14px; overflow: hidden; margin-bottom: 3rem; position: relative; }
.hub-img-banner img { width: 100%; height: 100%; object-fit: cover; }
.hub-img-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,.6) 0%, rgba(13,27,42,.3) 100%); }
.hub-img-banner-txt { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hub-img-banner-txt h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.hub-img-banner-txt p { font-size: 1.05rem; color: rgba(250,248,244,.75); }
.upload-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.onboard-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3.5rem; align-items: start; }

/* ══ FOOTER ══ */

#footer { background: rgba(201, 169, 110, 0.08) !important; border-top: 2px solid rgba(201,169,110,.25); padding: 5rem 0 2.25rem; }
.fgr { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3.5rem; margin-bottom: 3.5rem; }

/* ===== FOOTER FIX ===== */

#footer{
  width: 100%;
}

#footer .cnt{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;          /* Center container */
  padding-left: 40px;      /* Equal breathing space */
  padding-right: 40px;
  box-sizing: border-box;
}

.fgr{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* ── Logo wrap ── */
.f-logo-wrap { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }

/* Symbol icon — increased size */
.nav-logo-symbol { width: 62px; height: 62px; object-fit: contain; flex-shrink: 0; }

/* SVG text logo container — increased size */
.f-logo-wrap .logo { width: 220px; flex-shrink: 0; }
.f-logo-wrap .logo svg { width: 100%; height: auto; display: block; }

/* Kill any white/solid background inside the SVG logo */
.f-logo-wrap .logo svg rect[fill="white"],
.f-logo-wrap .logo svg rect[fill="#ffffff"],
.f-logo-wrap .logo svg rect[fill="#fff"] { fill: transparent !important; }

.f-logo-img { width: 171px; height: 51px; object-fit: contain; }
.f-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: rgba(30,25,20,.9); }
.f-logo span { color: var(--g); }

.f-desc { font-size: .95rem; line-height: 1.85; color: rgba(30,25,20,.55); max-width: 255px; margin-bottom: 1.75rem; }

.f-col-h { font-size: .8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #8a5030; margin-bottom: 1.1rem; }

.fls { display: flex; flex-direction: column; gap: .7rem; }
.fls a { font-size: 1rem; color: rgba(30,25,20,.55); transition: color .25s; }
.fls a:hover { color: rgba(30,25,20,.9); }

.fco { display: flex; flex-direction: column; gap: .7rem; }
.fci { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; color: rgba(30,25,20,.55); transition: color .25s; }
.fci:hover { color: rgba(30,25,20,.9); }
.fci svg { width: 15px; height: 15px; stroke: var(--terra); fill: none; flex-shrink: 0; margin-top: 3px; }

.fnl-lb { font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(30,25,20,.45); display: block; margin-bottom: .65rem; }
.fnl-rw { display: flex; gap: .55rem; }
.fnl-in { flex: 1; background: rgba(255,255,255,.6); border: 1.5px solid rgba(201,169,110,.35); border-radius: 8px; padding: .75rem 1rem; color: rgba(30,25,20,.9); font-family: 'DM Sans', sans-serif; font-size: .95rem; outline: none; transition: border-color .25s; }
.fnl-in:focus { border-color: var(--g); }
.fnl-in::placeholder { color: rgba(30,25,20,.35); }
.fnl-btn { background: var(--terra); color: #fff; border: none; padding: .75rem 1.2rem; border-radius: 8px; font-size: .95rem; font-weight: 600; cursor: pointer; transition: background .25s; font-family: 'DM Sans', sans-serif; }
.fnl-btn:hover { background: var(--terra-d); }

.fbot { border-top: 1px solid rgba(30,25,20,.1); padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.f-cp { font-size: .82rem; color: rgba(30,25,20,.4); }
.f-le { display: flex; gap: 1.75rem; }
.f-le a { font-size: .82rem; color: rgba(30,25,20,.4); transition: color .25s; }
.f-le a:hover { color: rgba(30,25,20,.75); }

/* ── Social Icons ── */
.f-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.f-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(201,169,110,.15); border: 1.5px solid rgba(201,169,110,.3); transition: background .25s, border-color .25s; }
.f-social a:hover { background: rgba(201,169,110,.3); border-color: var(--g); }
.f-social a svg { width: 16px; height: 16px; stroke: rgba(30,25,20,.55); fill: none; transition: stroke .25s; }
.f-social a:hover svg { stroke: var(--terra); }

/* ══ WHATSAPP FAB ══ */
.wa { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 500; box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: transform .25s; }
.wa:hover { transform: scale(1.08); }
.wa svg { width: 32px; height: 32px; fill: #fff; }
/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1100px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ===== HERO CONTAINER ===== */
  .hr {
    height: auto !important;
    min-height: auto !important;
    padding: 50px 20px;
    overflow: visible !important;
  }

  /* Background overlay adjust */
  .hr-ov {
    background: rgba(10, 25, 45, 0.65);
  }

  /* ===== SLIDES FIX (IMPORTANT) ===== */
.hs {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .9s var(--e); z-index: 2;
}
.hs.on { opacity: 1; pointer-events: auto; }

.hs-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 50px rgba(0,0,0,0.3);
  width: calc(100% - 3rem);   /* ← full width minus small gap */
  height: calc(100% - 3rem);  /* ← full height minus small gap */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

  /* ===== TITLE ===== */
  .hs-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hs-kick {
    font-size: 13px;
    margin-bottom: 10px;
  }

  /* ===== SERVICES LIST ===== */
  .hs-items {
    margin-top: 15px;
  }

  .hs-item {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  /* ===== STATS GRID ===== */
  .hs-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
  }

  .hs-sn {
    font-size: 20px;
  }

  .hs-body {
    font-size: 14px;
    margin-top: 15px;
  }

}
@media (max-width: 1100px) {
  #nav { padding: 1rem 1.75rem; }
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .burger   { display: flex; }
  .menu-dots { display: flex; }

  /* Topbar stacks */
  .tb { flex-direction: column; align-items: flex-start; padding: 0 1.2rem; }
  .tb-r { width: 100%; justify-content: space-between; }

  /* Hero */
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hl::after { display: none; }
  .hr { height: 50vh; }

  /* Grids */
  .who-hd  { grid-template-columns: 1fr; gap: 2rem; }
  .who-gr  { grid-template-columns: 1fr 1fr; }
  .about-gr { grid-template-columns: 1fr; gap: 3rem; }
  .mv-g    { grid-template-columns: 1fr; gap: 3rem; }
  .mv-r    { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .pgr     { grid-template-columns: 1fr 1fr; }
  .tgr     { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid::before { display: none; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .guides-grid   { grid-template-columns: 1fr 1fr; }
  .ai-grid  { grid-template-columns: 1fr 1fr; }
  .fgr      { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* Article featured */
  .art-card.featured { grid-column: auto; display: block; }
  .art-card.featured .art-img { height: 200px; min-height: auto; }

  /* Hub */
  .hub-hero-inner { grid-template-columns: 1fr; }
  .hub-stats { display: none; }
  .upload-layout  { grid-template-columns: 1fr; }
  .onboard-layout { grid-template-columns: 1fr; }
  .book-layout    { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-opts   { grid-template-columns: 1fr 1fr; }
  .msg-layout { grid-template-columns: 1fr; }
  .msg-sidebar { border-right: none; border-bottom: 1px solid var(--bdr); padding-right: 0; padding-bottom: 1.5rem; margin-bottom: 1.5rem; }

  /* Calc / FAQ */
  .calc-layout { grid-template-columns: 1fr; }
  .faq-layout  { grid-template-columns: 1fr; }
  .faq-cats    { position: static; flex-direction: row; flex-wrap: wrap; }

  /* Newsletter */
  .nl-inner { grid-template-columns: 1fr; }

  /* Sticky bar offsets */
  #filter-bar    { top: 69px; }
  #hub-tabs-bar  { top: 69px; }
  #res-tabs      { top: 69px; }

  .cnt { padding: 0 1.75rem; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 992px) tweaks
══════════════════════════════════════════════ */
@media (max-width: 992px) {
  .tb-lk  { font-size: .72rem; }
  .tb-hrs { font-size: .68rem; }
  .nav-logo-img { width: 38px; height: 38px; }
  .nav-nm { font-size: .95rem; }
  .nav-sb { font-size: .7rem; }
  .nav-r  { gap: .4rem; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 640px)
══════════════════════════════════════════════ */
@media (max-width: 640px) {
  html { font-size: 16px; }

  /* Door */
  #door-l::before, #door-r::before { display: none !important; }

  /* Nav */
  #nav { padding: .8rem .9rem; }
  .nav-logo { gap: .5rem; }
  .nav-logo-img { width: 34px; height: 34px; }
  .nav-nm { font-size: .85rem; letter-spacing: .08em; }
  .nav-sb { display: none; }
  .cart-btn { width: 36px; height: 36px; }
  .cbadge   { width: 18px; height: 18px; font-size: .55rem; }

  /* Hero */
  .hl-h1 { font-size: 2.6rem; }
  .hl-acts { flex-direction: column; align-items: flex-start; }
  .hs-big { font-size: 4rem; }

  /* Typography */
  .sh { font-size: 2.2rem; }

  /* All grids → single column */
  .svc-grid, .pgr, .tgr, .how-grid, .who-gr,
  .fgr, .articles-grid, .guides-grid, .mv-r,
  .faq-grid { grid-template-columns: 1fr; }

  .ai-grid { grid-template-columns: 1fr 1fr; }

  /* Buttons */
  .hl-acts   { flex-direction: column; }
  .cta-btns  { flex-direction: column; }
  .hub-hero-btns { flex-direction: column; align-items: flex-start; }

  /* Trust */
  .trust-inner { gap: 1.75rem; }

  /* Tabs */
  .hub-tabs, .resources-tabs { gap: 0; }
  .htab, .rtab { padding: .9rem 1.15rem; font-size: .9rem; }
  .hub-tabs { gap: 20px; padding: 14px 1rem; }
  .resources-tabs { gap: 20px; padding: 14px 1rem; }

  /* Contact */
  .contact-opts { grid-template-columns: 1fr; }

  /* Booking */
  .time-slots { grid-template-columns: repeat(2,1fr); }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .nl-row    { grid-template-columns: 1fr; }

  /* Misc */
  .calc-info-stat { grid-template-columns: 1fr; }
  .pcard.featured { order: -1; }
  .filter-inner   { gap: .35rem; }
  .cmp-table      { display: block; overflow-x: auto; }

  /* Sticky bar offsets */
  #hub-tabs-bar { top: 65px; }
  #res-tabs     { top: 65px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — VERY SMALL (≤ 576px)
══════════════════════════════════════════════ */
@media (max-width: 576px) {
  .tb { padding: 0 .9rem; }
}



/* ══════════════════════════════════════════════
   LEDGERTECH — MOBILE RESPONSIVE FIX
   Fixes: hero overlap, stats cards, button sizing,
   hs-box overflow, slide panel containment
══════════════════════════════════════════════ */

/* ══ HERO GRID — STACK ON MOBILE ══ */
@media (max-width: 992px) {

  /* Force full single-column stack */
  #hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  /* ── Left panel ── */
  .hl {
    padding: 90px 20px 44px !important;
    text-align: left !important;
    position: relative !important;
    z-index: 2 !important;
    background: var(--bg) !important;
  }

  .hl::after {
    display: none !important;
  }

  .hl-h1 {
    font-size: clamp(2rem, 6.5vw, 2.6rem) !important;
    line-height: 1.18 !important;
    margin-bottom: 1rem !important;
  }

  .hl-sub {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
    margin-bottom: 1.25rem !important;
  }

  .hl-ticks {
    margin-bottom: 1.75rem !important;
  }

  .hl-tick {
    font-size: 0.88rem !important;
  }

  .hl-acts {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .hl-acts .btn-nv,
  .hl-acts .btn-terra,
  .hl-acts .btn-ol,
  .hl-acts .btn-ghost,
  .hl-acts .btn-white,
  .hl-acts a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.92rem !important;
    padding: 0.9rem 1.5rem !important;
  }

  /* ── Right panel — fixed height, clipped, no overflow ── */
  .hr {
    position: relative !important;
    width: 100% !important;
    height: 480px !important;
    min-height: 480px !important;
    max-height: 480px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
  }

  /* Slides are absolute, contained inside .hr */
  .hs {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.5rem !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }

  .hs.on {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* ── White slide box ── */
  .hs-box {
    background: #faf8f4 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 14px !important;
    padding: 1.6rem 1.4rem !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22) !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: calc(480px - 3rem) !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem !important;
  }

  /* ── Slide content sizing ── */
  .hs-box .hs-kick {
    font-size: 0.75rem !important;
    margin-bottom: 0.5rem !important;
    gap: 0.4rem !important;
  }

  .hs-box .hs-title {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5rem !important;
    color: #0d1b2a !important;
  }

  .hs-box .hs-body {
    font-size: 0.85rem !important;
    line-height: 1.65 !important;
    margin-bottom: 0.5rem !important;
    color: rgba(13,27,42,0.65) !important;
  }

  .hs-box .hs-big {
    font-size: 2.8rem !important;
    line-height: 1 !important;
    color: #0d1b2a !important;
  }

  /* Stats grid — 2 columns, smaller */
  .hs-box .hs-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.65rem !important;
    margin-top: 0.5rem !important;
  }

  .hs-box .hs-stat {
    border: 1px solid rgba(13,27,42,0.15) !important;
    background: rgba(13,27,42,0.04) !important;
    padding: 0.75rem 0.65rem !important;
    border-radius: 8px !important;
  }

  .hs-box .hs-sn {
    font-size: 1.6rem !important;
    line-height: 1 !important;
    color: #0d1b2a !important;
  }

  .hs-box .hs-sn sup {
    font-size: 0.8rem !important;
    color: #a0522d !important;
  }

  .hs-box .hs-sl {
    font-size: 0.68rem !important;
    color: rgba(13,27,42,0.5) !important;
    margin-top: 3px !important;
  }

  /* Items list */
  .hs-box .hs-items {
    gap: 0.5rem !important;
    margin-top: 0.4rem !important;
  }

  .hs-box .hs-item {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    color: rgba(13,27,42,0.82) !important;
  }

  .hs-box .hs-dot {
    background: var(--terra) !important;
    width: 5px !important;
    height: 5px !important;
  }

  /* Testimonial quote */
  .hs-box .hs-q {
    font-size: 3rem !important;
    line-height: 0.5 !important;
    color: rgba(139,105,20,0.25) !important;
    margin-bottom: 0.5rem !important;
  }

  .hs-box .hs-qt {
    font-size: 1.05rem !important;
    line-height: 1.55 !important;
    color: #0d1b2a !important;
    margin-bottom: 0.5rem !important;
  }

  .hs-box .hs-qw {
    font-size: 0.78rem !important;
    color: rgba(13,27,42,0.5) !important;
  }

  .hs-box .hs-st {
    margin-bottom: 0.5rem !important;
  }

  .hs-box .hs-st span {
    font-size: 0.82rem !important;
    color: #a0522d !important;
  }

  /* Navigation dots */
  .h-dots {
    bottom: 0.85rem !important;
    z-index: 5 !important;
  }

  .h-dot {
    width: 16px !important;
    height: 2px !important;
  }

  .h-dot.on {
    width: 24px !important;
  }

}

/* ══ SMALL MOBILE (≤ 640px) ══ */
@media (max-width: 640px) {

  .hr {
    height: 420px !important;
    min-height: 420px !important;
    max-height: 420px !important;
  }

  .hs-box {
    max-height: calc(420px - 2.5rem) !important;
    padding: 1.3rem 1.1rem !important;
    border-radius: 12px !important;
  }

  .hs-box .hs-title {
    font-size: 1.1rem !important;
  }

  .hs-box .hs-body {
    font-size: 0.8rem !important;
  }

  .hs-box .hs-big {
    font-size: 2.2rem !important;
  }

  .hs-box .hs-sn {
    font-size: 1.4rem !important;
  }

  .hs-box .hs-stats {
    gap: 0.5rem !important;
  }

  .hs-box .hs-stat {
    padding: 0.6rem 0.5rem !important;
  }

  /* Kick label compact */
  .hs-box .hs-kick {
    font-size: 0.68rem !important;
  }

  /* Hero left panel */
  .hl {
    padding: 80px 16px 36px !important;
  }

  .hl-h1 {
    font-size: clamp(1.8rem, 5.5vw, 2.2rem) !important;
  }

  .hl-sub {
    font-size: 0.88rem !important;
  }

  .hl-tick {
    font-size: 0.82rem !important;
  }

}

/* ══ WHO WE HELP — MOBILE ══ */
@media (max-width: 900px) {
  .who-hd {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .who-gr {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .wc {
    height: 190px !important;
  }
}

@media (max-width: 520px) {
  .who-gr {
    grid-template-columns: 1fr !important;
  }

  .wc {
    height: 170px !important;
  }
}

/* ══ ABOUT SECTION — MOBILE ══ */
@media (max-width: 900px) {
  .about-gr {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .about-ph {
    height: 340px !important;
  }

  .astats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.85rem !important;
  }

  .ast-n {
    font-size: 2.2rem !important;
  }

  .mv-g {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .mv-r {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .astats {
    grid-template-columns: 1fr 1fr !important;
  }

  .mv-r {
    grid-template-columns: 1fr !important;
  }
}

/* ══ SERVICES GRID — MOBILE ══ */
@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr !important;
  }

  .svc-card {
    padding: 1.75rem 1.5rem !important;
  }
}

/* ══ PRICING GRID — MOBILE ══ */
@media (max-width: 900px) {
  .pgr {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .pcard.featured {
    order: -1 !important;
  }
}

@media (max-width: 640px) {
  .pgr {
    grid-template-columns: 1fr !important;
  }

  .pcard {
    padding: 2rem 1.5rem !important;
  }

  .pcard-price {
    font-size: 3.2rem !important;
  }
}

/* ══ TESTIMONIALS — MOBILE ══ */
@media (max-width: 900px) {
  .tgr {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .tgr {
    grid-template-columns: 1fr !important;
  }
}

/* ══ HOW IT WORKS — MOBILE ══ */
@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .how-grid::before {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .how-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ══ NEWSLETTER — MOBILE ══ */
@media (max-width: 900px) {
  .nl-inner {
    grid-template-columns: 1fr !important;
    padding: 2.5rem 1.75rem !important;
    gap: 1.75rem !important;
  }
}

@media (max-width: 640px) {
  .nl-inner {
    padding: 2rem 1.25rem !important;
    border-radius: 12px !important;
  }

  .nl-l h3 {
    font-size: 1.5rem !important;
  }

  .nl-row {
    grid-template-columns: 1fr !important;
  }
}

/* ══ FOOTER — MOBILE ══ */
@media (max-width: 900px) {
  .fgr {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
}

@media (max-width: 640px) {
  .fgr {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }

  .fbot {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.65rem !important;
  }

  .f-le {
    gap: 1rem !important;
    flex-wrap: wrap !important;
  }
}

/* ══ TOPBAR — MOBILE ══ */
@media (max-width: 900px) {
  .tb {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.3rem !important;
    padding: 0.5rem 1rem !important;
  }

  .tb-l {
    gap: 1rem !important;
  }

  .tb-r {
    width: 100% !important;
    justify-content: space-between !important;
  }

  .tb-hrs {
    display: none !important;
  }
}

/* ══ TRUST BAR — MOBILE ══ */
@media (max-width: 640px) {
  .trust-inner {
    gap: 1.25rem !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    padding: 0 1rem !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .trust-item {
    font-size: 0.82rem !important;
    flex-shrink: 0 !important;
  }
}

/* ══ OFFICE BAND — MOBILE ══ */
@media (max-width: 640px) {
  .ob {
    flex-direction: column !important;
    gap: 0.65rem !important;
  }

  .ob-ofs {
    gap: 1rem !important;
  }
}

/* ══ CTA BAND — MOBILE ══ */
@media (max-width: 640px) {
  .cta-btns {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .cta-btns .btn-nv,
  .cta-btns .btn-terra,
  .cta-btns .btn-ghost,
  .cta-btns .btn-white {
    width: 100% !important;
    justify-content: center !important;
  }

  #cta-band,
  #svc-cta {
    padding: 5rem 0 !important;
  }

  .cta-inner h2,
  .svc-cta-inner h2 {
    font-size: 2rem !important;
  }
}

/* ══ RESOURCE TABS — MOBILE ══ */
@media (max-width: 640px) {
  .resources-tabs {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    padding: 10px 8px !important;
  }

  .rtab {
    padding: 10px 6px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.04em !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }
}

/* ══ ARTICLES GRID — MOBILE ══ */
@media (max-width: 900px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .art-card.featured {
    grid-column: auto !important;
    display: block !important;
  }

  .art-card.featured .art-img {
    height: 200px !important;
    min-height: auto !important;
  }
}

@media (max-width: 640px) {
  .articles-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ══ GUIDES GRID — MOBILE ══ */
@media (max-width: 900px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .guides-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ══ ALL INCLUDED GRID — MOBILE ══ */
@media (max-width: 900px) {
  .ai-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ══ SECTION PADDING — MOBILE ══ */
@media (max-width: 640px) {
  #who,
  #about,
  #services,
  #pricing,
  #how,
  #testimonials,
  #resources,
  #newsletter,
  #cta-band {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .cnt {
    padding: 0 14px !important;
  }
}

/* ══ GENERAL BUTTON FIXES — MOBILE ══ */
@media (max-width: 640px) {
  .btn-nv,
  .btn-terra,
  .btn-ghost,
  .btn-white {
    font-size: 0.88rem !important;
    padding: 0.85rem 1.6rem !important;
  }

  .btn-ol {
    font-size: 1.1rem !important;
  }
}

/* ══ PREVENT HORIZONTAL SCROLL ══ */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

*, *::before, *::after {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Exception for inner scrolling tables/tracks */
.cmp-wrap,
.cli-ou,
.filter-inner,
.htabs-inner,
.rtabs-inner,
.trust-inner {
  max-width: none !important;
}

body {
   
    background: var(--greige);
    color: #c9a96e  !important;
    font-size: 1.125rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

