/*
Theme Name:  High Calibre Consultants
Theme URI:   https://highcalibreconsultants.co
Author:      High Calibre Consultants
Description: Custom analytics consultancy theme
Version:     1.0.0
License:     Proprietary
Text Domain: hcc
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Prevent any element from causing horizontal scroll */
img, svg, video, canvas, iframe { max-width: 100%; }

:root {
  --navy:       #0B1929;
  --navy-mid:   #132236;
  --navy-light: #1E3450;
  --gold:       #C8973A;
  --gold-light: #E5B96A;
  --gold-pale:  #F5E8D0;
  --cream:      #FAF7F2;
  --white:      #FFFFFF;
  --gray-100:   #F2F0EB;
  --gray-200:   #E0DDD6;
  --gray-400:   #9E9B94;
  --gray-600:   #5C5A55;
  --gray-900:   #1A1915;
  --teal:       #1B8A6B;
  --r:          4px;
  --rlg:        8px;
  --rxl:        16px;
}

html { scroll-behavior: smooth; font-size: 17.6px; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(6px); }
}

.anim-up   { animation: fadeUp 0.7s ease both; }
.anim-fade { animation: fadeIn 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }
.delay-5 { animation-delay: 0.58s; }

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,25,41,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,151,58,0.18);
  padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 74.8px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12.1px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--gold); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 18px; height: 18px; }
.logo-name {
  font-size: 16.5px; font-weight: 700; color: #fff;
  letter-spacing: 0.06em; line-height: 1.15;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 12.1px; font-weight: 500; color: var(--gold-light);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 14.3px; font-weight: 400; letter-spacing: 0.04em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 8px 22px; border-radius: var(--r);
  font-weight: 600 !important; font-size: 14.3px !important;
  letter-spacing: 0.02em !important; transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: var(--navy);
  display: flex; align-items: flex-start;
  position: relative; overflow: hidden;
  padding: 0.35rem 3rem 1.2rem;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,151,58,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,58,.07) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute; top: -220px; right: -220px;
  width: 740px; height: 740px; pointer-events: none;
  background: radial-gradient(circle, rgba(200,151,58,.13) 0%, transparent 65%);
}
.hero-glow2 {
  position: absolute; bottom: -180px; left: -180px;
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(circle, rgba(30,52,80,.8) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 2;
  padding-top: 0.2rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,151,58,.11);
  border: 1px solid rgba(200,151,58,.28);
  color: var(--gold-light);
  font-size: 12.1px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 2px;
  margin-bottom: 1.5rem;
  max-width: 100%; white-space: normal; word-break: break-word;
}
.hero-eyebrow::before {
  content: ''; width: 6.6px; height: 6.6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.75rem,4.4vw,4.125rem);
  font-weight: 400; line-height: 1.1;
  color: #fff; margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  color: rgba(255,255,255,.58);
  font-size: 18.7px; font-weight: 300; line-height: 1.8;
  margin-bottom: 2.5rem; max-width: 460px; word-wrap: break-word;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-gold {
  background: var(--gold); color: var(--navy);
  padding: 14px 28px; border-radius: var(--r);
  font-weight: 600; font-size: 15.4px;
  text-decoration: none; letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: 9px;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,.78);
  padding: 14px 28px; border-radius: var(--r);
  font-size: 15.4px; font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  transition: border-color .2s, color .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* Hero dashboard visual */
.hero-visual { position: relative; animation: floatA 6s ease-in-out infinite; }

/* ── Main card ── */
.dash-card {
  background: var(--navy-mid);
  border: 1px solid rgba(200,151,58,.22);
  border-radius: var(--rxl); padding: 1.4rem 1.5rem 1.2rem;
  min-width: 462px;
}

/* ── Header row ── */
.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.dash-head-left { display: flex; flex-direction: column; gap: 1px; }
.dash-head-title {
  font-size: 12.1px; font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .12em; text-transform: uppercase;
}
.dash-head-total {
  font-size: 24.2px; font-weight: 700; color: var(--gold-light);
  letter-spacing: -.01em; line-height: 1;
}
.dash-head-right { display: flex; align-items: center; gap: .55rem; }
.live-badge {
  display: flex; align-items: center; gap: 5px;
  background: rgba(27,138,107,.18); color: #4ECBA1;
  font-size: 12.1px; font-weight: 500;
  padding: 3px 9px; border-radius: 20px;
}
.live-dot { width: 5.5px; height: 5.5px; background: #4ECBA1; border-radius: 50%; animation: pulse 1.8s infinite; }

/* ── KPI strip (was metric cards) ── */
.metrics {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: .5rem; margin-bottom: 1rem;
}
.metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px; padding: .6rem .65rem;
}
.metric-lbl {
  font-size: 9.9px; font-weight: 500;
  color: rgba(255,255,255,.38);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 3px;
}
.metric-val { color: #fff; font-size: 17.6px; font-weight: 700; line-height: 1; }
.metric-chg { font-size: 9.9px; margin-top: 3px; }
.up   { color: #4ECBA1; }
.down { color: #F07C7C; }

/* ── Chart row: bar chart left + donut right ── */
.dash-chart-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 1rem; margin-bottom: 1rem; align-items: end;
}

/* Bar chart */
.chart-area { display: flex; flex-direction: column; gap: .35rem; }
.chart-legend {
  display: flex; gap: .8rem;
}
.cleg {
  display: flex; align-items: center; gap: 4px;
  font-size: 9.9px; color: rgba(255,255,255,.45); letter-spacing: .04em;
}
.cleg-dot { width: 7.7px; height: 7.7px; border-radius: 2px; flex-shrink: 0; }
.bars {
  display: flex; align-items: flex-end; gap: 4px; height: 88px;
}
.bg { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; height: 100%; justify-content: flex-end; }
.b  { width: 100%; border-radius: 3px 3px 0 0; animation: barGrow .8s ease both; }
.b.g  { background: var(--gold); }
.b.d  { background: rgba(255,255,255,.13); }          /* forecast – muted white */
.b.gf { background: rgba(200,151,58,.35); }            /* actual past – dimmed gold */
.bl { font-size: 8.8px; color: rgba(255,255,255,.25); letter-spacing: .03em; }

/* Donut */
.donut-wrap {
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
}
.donut-title {
  font-size: 9.9px; font-weight: 500; color: rgba(255,255,255,.4);
  letter-spacing: .08em; text-transform: uppercase;
}
.donut-svg { width: 79.2px; height: 79.2px; }
.donut-legend { display: flex; flex-direction: column; gap: 3px; }
.dleg {
  display: flex; align-items: center; gap: 5px;
  font-size: 9.9px; color: rgba(255,255,255,.5);
}
.dleg-dot { width: 6.6px; height: 6.6px; border-radius: 50%; flex-shrink: 0; }

/* ── Bottom row: inline badges + table ── */
.dash-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: .9rem;
  display: grid; grid-template-columns: auto 1fr;
  gap: .9rem; align-items: start;
}

/* Inline stat badges (replaced floating cards) */
.dash-badges { display: flex; flex-direction: column; gap: .5rem; }
.dash-badge {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(200,151,58,.08);
  border: 1px solid rgba(200,151,58,.2);
  border-radius: 8px; padding: .55rem .7rem;
  min-width: 130px;
}
.db-icon {
  width: 30.8px; height: 30.8px; border-radius: 6px;
  background: rgba(200,151,58,.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.db-icon svg { width: 14.3px; height: 14.3px; }
.db-main { font-size: 14.3px; font-weight: 700; color: #fff; line-height: 1; }
.db-sub  { font-size: 9.9px; color: rgba(255,255,255,.38); letter-spacing: .04em; margin-top: 1px; }

/* Mini table */
.dash-table { width: 100%; border-collapse: collapse; }
.dash-table th {
  font-size: 9.4px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .07em; color: rgba(255,255,255,.35);
  padding: 0 4px 4px; text-align: right;
}
.dash-table th:first-child { text-align: left; }
.dash-table td {
  font-size: 12.1px; color: rgba(255,255,255,.7);
  padding: 3px 4px; text-align: right;
  border-top: 1px solid rgba(255,255,255,.05);
}
.dash-table td:first-child { text-align: left; color: rgba(255,255,255,.5); }
.dash-table tr.total td {
  font-weight: 700; color: var(--gold-light);
  border-top: 1px solid rgba(200,151,58,.3);
}
.dash-table .pos { color: #4ECBA1; }
.dash-table .neg { color: #F07C7C; }

/* ── CLIENT STRIP ───────────────────────────────── */
.strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.75rem 3rem;
  display: flex; align-items: center; justify-content: center;
  gap: .65rem; flex-wrap: wrap;
}
.strip-lbl {
  color: rgba(255,255,255,.3); font-size: 12.1px;
  letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; margin-right: .75rem;
}
.pill {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.48);
  font-size: 13.2px; padding: 5px 14px;
  border-radius: 20px; letter-spacing: .04em;
}

/* ── SHARED SECTION ─────────────────────────────── */
section { padding: 6rem 3rem; overflow: hidden; }
.inner { max-width: 1240px; margin: 0 auto; width: 100%; }
.inner > * { min-width: 0; }
.eyebrow {
  font-size: 12.1px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .7rem;
}
h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem,3.3vw,3.08rem);
  font-weight: 400; line-height: 1.15;
  color: var(--navy); letter-spacing: -.01em;
  margin-bottom: 1.2rem;
}
h2 em { font-style: italic; color: var(--gold); }
.lead {
  color: var(--gray-600); font-size: 18.7px;
  font-weight: 300; line-height: 1.78;
  max-width: 580px; margin-bottom: 3.5rem;
}

/* ── SERVICES ───────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5px;
  background: var(--gray-200);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--rlg); overflow: hidden;
  width: 100%; max-width: 100%; box-sizing: border-box;
}
.svc-card {
  background: var(--white); padding: 2rem 1.8rem;
  cursor: default; transition: background .2s;
  overflow: hidden; min-width: 0; width: 100%;
  box-sizing: border-box;
}
.svc-card:hover { background: var(--gray-100); }
.svc-icon {
  width: 50.6px; height: 50.6px; background: var(--navy);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem;
}
.svc-icon svg {
  width: 24.2px; height: 24.2px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.svc-title {
  font-size: 17.6px; font-weight: 600; color: var(--navy);
  margin-bottom: .5rem; letter-spacing: -.01em;
  word-break: break-word; overflow-wrap: break-word;
}
.svc-desc {
  font-size: 15.4px; color: var(--gray-600);
  font-weight: 300; line-height: 1.65; margin-bottom: 1rem;
  word-break: break-word; overflow-wrap: break-word;
}
.svc-tag {
  display: inline-block; font-size: 12.1px; font-weight: 500;
  color: var(--gold); letter-spacing: .06em;
  text-transform: uppercase; border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ── WHY US ─────────────────────────────────────── */
.why-sec { background: var(--navy); }
.why-sec h2    { color: #fff; }
.why-sec .eyebrow { color: var(--gold-light); }
.why-sec .lead { color: rgba(255,255,255,.5); }

.why-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.why-list { display: flex; flex-direction: column; gap: 1.15rem; }
.why-item {
  display: flex; gap: 1rem; padding: 1.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rlg);
  transition: background .2s, border-color .2s;
}
.why-item:hover {
  background: rgba(200,151,58,.07);
  border-color: rgba(200,151,58,.22);
}
.why-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.1rem; color: var(--gold);
  font-weight: 400; line-height: 1; min-width: 46.2px;
}
.why-h { font-size: 16.5px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.why-p { font-size: 14.3px; color: rgba(255,255,255,.42); font-weight: 300; line-height: 1.6; }

.stats-panel { display: flex; flex-direction: column; gap: 1.15rem; }
.stat-big {
  background: var(--navy-light);
  border: 1px solid rgba(200,151,58,.16);
  border-radius: var(--rlg);
  padding: 2rem 1.75rem; text-align: center;
}
.stat-big-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3.6rem; font-weight: 400;
  color: var(--gold-light); line-height: 1;
  margin-bottom: .45rem;
}
.stat-big-desc { font-size: 15.4px; color: rgba(255,255,255,.4); font-weight: 300; }
.stat-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-mini {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rlg);
  padding: 1.25rem; text-align: center;
}
.stat-mini-n {
  font-family: 'DM Serif Display', serif;
  font-size: 2.1rem; color: #fff;
  font-weight: 400; line-height: 1; margin-bottom: 4px;
}
.stat-mini-l { font-size: 13.2px; color: rgba(255,255,255,.38); }

/* ── TIERS ──────────────────────────────────────── */
.tiers-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.tier {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--rxl); padding: 2rem 1.8rem;
  position: relative;
  transition: border-color .22s, transform .22s;
}
.tier:hover { border-color: var(--gold); transform: translateY(-4px); }
.tier.feat { background: var(--navy); border-color: var(--gold); }
.tier.feat .tier-name  { color: rgba(255,255,255,.5); }
.tier.feat .tier-title { color: #fff; }
.tier.feat .tier-body  { color: rgba(255,255,255,.45); border-color: rgba(255,255,255,.1); }
.tier.feat .tier-feat  { color: rgba(255,255,255,.65); }
.tier.feat .chk        { color: var(--gold); }
.feat-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 12.1px; font-weight: 600;
  padding: 4px 18px; border-radius: 20px;
  white-space: nowrap; letter-spacing: .04em;
}
.tier-name {
  font-size: 12.1px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: .35rem;
}
.tier-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.65rem; font-weight: 400;
  color: var(--navy); margin-bottom: .7rem;
}
.tier-body {
  font-size: 14.3px; color: var(--gray-600);
  font-weight: 300; line-height: 1.65;
  margin-bottom: 1.4rem; padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--gray-200);
}
.tier-feats { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.8rem; }
.tier-feat  { font-size: 14.3px; color: var(--gray-600); display: flex; align-items: flex-start; gap: 8px; font-weight: 300; }
.chk { color: var(--teal); font-size: 15.4px; flex-shrink: 0; margin-top: 1px; }

.t-btn {
  width: 100%; padding: 12px; border-radius: var(--r);
  font-size: 15.4px; font-weight: 600; text-align: center;
  cursor: pointer; border: none; letter-spacing: .02em;
  transition: all .2s; font-family: inherit;
}
.t-btn-lt { background: var(--gray-100); color: var(--navy); border: 1.5px solid var(--gray-200); }
.t-btn-lt:hover { background: var(--gray-200); }
.t-btn-gd { background: var(--gold); color: var(--navy); }
.t-btn-gd:hover { background: var(--gold-light); }

/* ── CONTACT ────────────────────────────────────── */
.contact-sec { background: var(--navy); overflow: hidden; }
.contact-sec h2    { color: #fff; }
.contact-sec .eyebrow { color: var(--gold-light); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: center;
}
.contact-lead { color: rgba(255,255,255,.48); font-size: 17.6px; font-weight: 300; line-height: 1.78; margin-bottom: 2rem; }
.cdt { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; color: rgba(255,255,255,.55); font-size: 15.4px; font-weight: 300; word-break: break-all; overflow-wrap: anywhere; }
.cdt-icon {
  width: 41.8px; height: 41.8px;
  background: rgba(200,151,58,.11);
  border: 1px solid rgba(200,151,58,.24);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cdt-icon svg { width: 17.6px; height: 17.6px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.form-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--rxl); padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.fg label {
  font-size: 13.2px; font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em; text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 11px 14px;
  color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: 15.4px; font-weight: 300; outline: none;
  transition: border-color .2s; width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.22); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select option { background: var(--navy); color: #fff; }
.fg textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--gray-900);
  padding: 2.75rem 3rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-in {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-copy { font-size: 14.3px; color: rgba(255,255,255,.28); font-weight: 300; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { color: rgba(255,255,255,.32); text-decoration: none; font-size: 14.3px; font-weight: 300; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }

/* ── HAMBURGER MENU ─────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 200;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE — Tablet 600–900px ─────────────────────────────────── */
@media (max-width: 900px) {
  html { font-size: 16px; }

  /* Nav */
  nav {
    padding: 0 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(11,25,41,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0 1rem;
    border-bottom: 1px solid rgba(200,151,58,0.2);
    z-index: 150;
    list-style: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a.nav-cta {
    margin: 0.75rem 1.5rem 0;
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
    display: block;
  }

  /* Hero */
  .hero          { padding: 1.5rem 1rem 2rem; }
  .hero-inner    { grid-template-columns: 1fr; gap: 2rem; padding-top: 0.5rem; }
  .hero-visual   { display: none; }
  h1             { font-size: clamp(2rem,8vw,3rem); }
  .hero-desc     { font-size: 15px; max-width: 100%; }
  .hero-btns     { flex-direction: column; gap: 0.75rem; }
  .btn-gold, .btn-ghost { width: 100%; justify-content: center; }

  /* Strip */
  .strip { padding: 1.25rem 1rem; gap: 0.5rem; flex-wrap: wrap; }

  /* Sections — safe horizontal padding */
  section { padding: 3.5rem 0; }
  .inner  { padding: 0 1rem; width: 100%; box-sizing: border-box; }

  /* Services — clean single-column card list */
  .svc-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--gray-200);
    border: none;
    border-radius: 0;
    width: 100%;
  }
  .svc-card {
    padding: 1.5rem 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border-bottom: 1.5px solid var(--gray-200);
  }
  .svc-card:last-child { border-bottom: none; }
  .svc-desc {
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: normal;
  }
  .svc-title {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  /* Why Us */
  .why-layout    { grid-template-columns: 1fr; }
  .stats-panel   { display: flex; flex-direction: column; gap: 0.75rem; }
  .stat-mini-grid { grid-template-columns: 1fr; gap: 0.75rem; }

  /* Tiers */
  .tiers-grid    { grid-template-columns: 1fr; }
  .tier.feat     { order: -1; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  /* Stack First / Last name vertically */
  .form-row       { grid-template-columns: 1fr; gap: 0; }
  .form-box       { padding: 1.5rem 1.25rem; }
  .cdt            { font-size: 13px; word-break: break-all; overflow-wrap: anywhere; }
  .contact-lead   { font-size: 15px; }

  /* Footer */
  footer { padding: 2rem 1.25rem; }
  .footer-in { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── RESPONSIVE — Mobile ≤480px ─────────────────── */
@media (max-width: 480px) {
  html { font-size: 15px; }

  nav { height: 60px; padding: 0 1rem; }
  .logo-name { font-size: 13px; }
  .logo-sub  { font-size: 9px; }

  h1  { font-size: clamp(1.75rem,9vw,2.5rem); }
  h2  { font-size: clamp(1.5rem,7vw,2rem); }

  .hero { padding: 1.25rem 1rem 1.5rem; }
  .hero-eyebrow { font-size: 10px; }
  .hero-desc    { font-size: 14px; }

  section { padding: 3rem 0; }
  .inner  { padding: 0 1rem; }

  .eyebrow   { font-size: 10px; }
  .lead      { font-size: 15px; }

  .svc-card  { padding: 1.25rem 0.875rem; max-width: 100%; box-sizing: border-box; }
  .svc-title { font-size: 15px; }
  .svc-desc  { font-size: 13.5px; }

  .why-num   { font-size: 1.8rem; min-width: 36px; }
  .why-h     { font-size: 14px; }
  .why-p     { font-size: 12.5px; }

  .stat-big-num  { font-size: 3rem; }
  .stat-mini-n   { font-size: 1.75rem; }

  .tier          { padding: 1.5rem 1rem; }
  .tier-title    { font-size: 1.4rem; }

  /* Contact — full width stacked */
  .contact-sec   { padding: 3rem 1rem; }
  .form-box      { padding: 1.25rem 1rem; }
  .form-row      { grid-template-columns: 1fr; gap: 0; }
  .fg label      { font-size: 11px; }
  .fg input, .fg select, .fg textarea { font-size: 14px; padding: 10px 12px; }
  .cdt           { font-size: 12.5px; gap: 9px; }
  .cdt-icon      { width: 34px; height: 34px; flex-shrink: 0; }
  .contact-lead  { font-size: 14px; }

  .strip  { padding: 1rem; justify-content: flex-start; }
  .pill   { font-size: 11px; padding: 4px 10px; }

  footer { padding: 1.75rem 1rem; }
  .footer-links  { flex-wrap: wrap; gap: 0.75rem; }
  .footer-copy   { font-size: 12px; }
}

/* ── RESPONSIVE — Very small ≤360px ────────────── */
@media (max-width: 360px) {
  html { font-size: 14px; }

  nav { padding: 0 0.875rem; }
  .nav-logo img { height: 38px !important; width: 38px !important; }

  section { padding: 2.5rem 0; }
  .inner  { padding: 0 0.875rem; }
  .hero   { padding: 1rem 0.875rem 1.5rem; }
  .form-box { padding: 1rem 0.875rem; }

  .hero-btns { gap: 0.5rem; }
  .btn-gold, .btn-ghost { font-size: 13px; padding: 11px 16px; }

  .why-item  { padding: 1rem; }
  .svc-card  { padding: 1.1rem 0.875rem; }
}