/* ============================================================
   TPS Pro LLC — Unified Design System
   One stylesheet. Every page. Navy + Gold + White + Gray.
   ============================================================ */

:root {
  --navy:      #0A1628;   /* primary dark */
  --navy-2:    #0F2238;   /* alt dark sections */
  --navy-3:    #16304D;   /* borders / hovers on dark */
  --gold:      #C9A84C;   /* primary accent */
  --gold-2:    #DCC06B;   /* accent hover / light */
  --gold-soft: rgba(201,168,76,.12);
  --white:     #FFFFFF;
  --ink:       #1A2433;   /* body text on light */
  --muted:     #5A6675;   /* secondary text */
  --line:      #E3E7EC;   /* hairlines */
  --gray-50:   #F5F7FA;   /* light section bg */
  --max:       1240px;
  --radius:    14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; color: var(--navy); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 15px; padding: 15px 28px; border-radius: 8px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 16px; height: 16px; }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 30px -12px rgba(201,168,76,.7); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(201,168,76,.85); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* ---------- TOPBAR ---------- */
.topbar { background: var(--navy); color: #c7d2de; font-size: 13px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.06); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 16px; }
.topbar-left { display: flex; gap: 22px; }
.topbar-left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar .gold { color: var(--gold); }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-right a { white-space: nowrap; transition: color .2s; }
.topbar-right a:hover { color: var(--gold); }

/* ---------- HEADER ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); transition: box-shadow .25s; }
.header.scrolled { box-shadow: 0 10px 30px -20px rgba(10,22,40,.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; height: 84px; }

.logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.logo img { width: 56px; height: 56px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-weight: 900; font-size: 20px; color: var(--navy); letter-spacing: -0.02em; }
.logo-text small { font-weight: 600; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a, .nav-dd > button { font-size: 14.5px; font-weight: 600; color: var(--ink); transition: color .2s; position: relative; padding: 6px 0; display: inline-flex; align-items: center; gap: 5px; background: none; }
.nav > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .25s ease; transform-origin: left; }
.nav > a:hover, .nav-dd > button:hover { color: var(--gold); }
.nav > a:hover::after, .nav > a.active::after { transform: scaleX(1); }
.nav > a.active { color: var(--gold); }

/* nav dropdown */
.nav-dd { position: relative; }
.nav-dd > button svg { width: 13px; height: 13px; transition: transform .2s; }
.nav-dd:hover > button svg { transform: rotate(180deg); }
.nav-dd-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 24px 50px -20px rgba(10,22,40,.35); min-width: 250px; padding: 8px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s; z-index: 200; }
.nav-dd:hover .nav-dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.nav-dd-menu a { display: block; padding: 11px 14px; font-size: 14px; font-weight: 500; color: var(--ink); border-radius: 8px; transition: background .15s, color .15s; }
.nav-dd-menu a:hover { background: var(--gray-50); color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; flex-direction: column; line-height: 1.15; text-align: right; }
.header-phone small { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.header-phone strong { font-size: 19px; font-weight: 800; color: var(--navy); transition: color .2s; }
.header-phone:hover strong { color: var(--gold); }
.header-cta .btn { padding: 12px 20px; font-size: 14px; }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 8px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border: 1px solid var(--line); flex-shrink: 0; }
.menu-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; }

/* CTAs that only appear inside the mobile slide-down menu */
.nav-cta-mobile { display: none; }

/* ---------- HERO (homepage) ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('images/hero-buildout.jpg') center 35%/cover no-repeat; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,22,40,.97) 0%, rgba(10,22,40,.9) 45%, rgba(10,22,40,.62) 100%); }
.hero-inner { position: relative; max-width: 840px; padding: 120px 0 130px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 26px; background: var(--gold-soft); border: 1px solid rgba(201,168,76,.35); padding: 8px 16px; border-radius: 999px; }
.hero h1 { font-size: clamp(38px, 6vw, 66px); font-weight: 900; color: #fff; margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); }
.hero-sub { font-size: clamp(18px, 2.4vw, 23px); color: #d7dee7; font-weight: 400; max-width: 640px; margin-bottom: 38px; }
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { margin-top: 44px; display: flex; gap: 30px; flex-wrap: wrap; color: #aeb9c6; font-size: 14px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; font-weight: 500; }
.hero-trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero { position: relative; color: #fff; background: var(--navy); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -140px; top: -140px; width: 420px; height: 420px; border-radius: 50%; background: var(--gold-soft); }
.page-hero-inner { position: relative; padding: 72px 0 64px; max-width: 800px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: #9fadbc; margin-bottom: 22px; }
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero .eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: #fff; margin-bottom: 18px; }
.page-hero p { font-size: clamp(16px, 2vw, 20px); color: #c2cdd9; max-width: 640px; }
.page-hero .hero-btns { margin-top: 32px; }

/* ---------- SECTIONS ---------- */
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section.gray { background: var(--gray-50); }
.section.navy { background: var(--navy); color: #fff; }
.section.navy h2, .section.navy h3 { color: #fff; }
.section-head { max-width: 730px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.kicker { display: inline-block; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 800; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 900; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section.navy .section-head p { color: #c2cdd9; }

/* generic prose */
.prose p { color: var(--muted); font-size: 16.5px; margin-bottom: 18px; }
.prose h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 900; margin: 40px 0 16px; }
.prose h3 { font-size: 22px; font-weight: 800; margin: 30px 0 12px; }
.prose ul { margin: 0 0 22px; display: grid; gap: 12px; }
.prose ul li { position: relative; padding-left: 30px; color: var(--ink); font-size: 16px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold-soft); border: 1px solid rgba(201,168,76,.4); }
.prose ul li::after { content: ""; position: absolute; left: 5px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.prose strong { color: var(--navy); }

/* ---------- TRUSTED BY ---------- */
.trusted { background: var(--navy-2); padding: 38px 0; border-top: 1px solid rgba(255,255,255,.06); }
.trusted p { text-align: center; color: #8896a6; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; }
.trusted-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 44px; }
.trusted-row span { color: #e7ecf2; font-weight: 800; font-size: clamp(16px, 2.2vw, 22px); opacity: .82; transition: opacity .2s, color .2s; }
.trusted-row span:hover { opacity: 1; color: var(--gold); }

/* ---------- STAT BAR ---------- */
.statbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.statbar .stat { text-align: center; }
.statbar .stat strong { display: block; font-size: clamp(32px, 4vw, 46px); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.statbar .stat span { font-size: 14px; color: var(--muted); font-weight: 500; }
.section.navy .statbar .stat span { color: #9fadbc; }

/* ---------- SERVICE CARDS ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; transition: transform .25s, box-shadow .25s, border-color .25s; display: block; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(10,22,40,.4); border-color: transparent; }
.service-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.service-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }
.service-card .more { font-size: 14px; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .more { gap: 10px; }

/* ---------- FEATURE / WHY CARDS ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .fi { flex-shrink: 0; width: 46px; height: 46px; border-radius: 10px; background: var(--gold-soft); border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; }
.feature .fi svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14.5px; }
.section.navy .feature h3 { color: #fff; }
.section.navy .feature p { color: #b6c2d0; }

/* ---------- PORTFOLIO ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pf-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; background: var(--navy); }
.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pf-item:hover img { transform: scale(1.07); }
.pf-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.82) 0%, rgba(10,22,40,0) 52%); }
.pf-cap { position: absolute; left: 20px; bottom: 18px; z-index: 2; color: #fff; }
.pf-cap small { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 3px; }
.pf-cap strong { font-size: 19px; font-weight: 800; }

/* ---------- SPLIT (image + text) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-img { order: 2; }
.split-img img { border-radius: 16px; width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 30px 60px -30px rgba(0,0,0,.4); }
.split-badge { position: relative; }
.about-badge { position: absolute; bottom: -22px; left: -22px; background: var(--gold); color: var(--navy); padding: 18px 24px; border-radius: 12px; font-weight: 800; box-shadow: 0 20px 40px -16px rgba(0,0,0,.5); }
.about-badge small { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; opacity: .8; }
.about-badge strong { font-size: 18px; }

/* ---------- TESTIMONIALS ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; }
.testi .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testi p { color: var(--ink); font-size: 15.5px; line-height: 1.7; margin-bottom: 22px; flex-grow: 1; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.testi .who strong { display: block; font-size: 14.5px; color: var(--navy); }
.testi .who span { font-size: 13px; color: var(--muted); }

/* ---------- REVIEW BADGE ---------- */
.review-badge { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px; box-shadow: 0 10px 30px -18px rgba(10,22,40,.3); }
.review-badge .stars { color: var(--gold); font-size: 17px; letter-spacing: 1px; }
.review-badge strong { font-weight: 800; color: var(--navy); }
.review-badge span { color: var(--muted); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; font-size: 17px; font-weight: 700; color: var(--navy); }
.faq-q .ico { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: transform .25s, background .2s, color .2s; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { color: var(--muted); font-size: 15.5px; padding: 0 4px 24px; }

/* ---------- CTA BANNER ---------- */
.cta { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: var(--gold-soft); }
.cta-inner { position: relative; text-align: center; padding: 90px 0; }
.cta h2 { font-size: clamp(32px, 5vw, 50px); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta p { font-size: 18px; color: #c2cdd9; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-phone { display: inline-flex; flex-direction: column; align-items: center; margin-bottom: 30px; }
.cta-phone small { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.cta-phone a { font-size: clamp(32px, 6vw, 50px); font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.cta-phone a:hover { color: var(--gold); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FORM ---------- */
.form-wrap { background: #fff; border-radius: 20px; border: 1px solid var(--line); box-shadow: 0 40px 80px -40px rgba(10,22,40,.3); overflow: hidden; }
.form-head { background: var(--navy); color: #fff; padding: 30px 36px; }
.form-head h2 { color: #fff; font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.form-head p { font-size: 14px; color: #c2cdd9; }
.form-body { padding: 32px 36px 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; margin-bottom: 8px; }
.form-group label .req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 15px; font-family: inherit; color: var(--ink); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.form-group textarea { resize: vertical; min-height: 110px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.check { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink); cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.form-trust { text-align: center; font-size: 13px; color: var(--muted); margin-top: 16px; }
.form-trust strong { color: var(--navy); }

/* contact info card (navy) */
.info-card { background: var(--navy); color: #fff; border-radius: 20px; padding: 44px; position: relative; overflow: hidden; height: 100%; }
.info-card::before { content: ""; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; background: var(--gold-soft); }
.info-card > * { position: relative; z-index: 1; }
.info-card h2 { color: #fff; font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.info-card .lead { color: #c2cdd9; font-size: 15px; margin-bottom: 30px; }
.info-list { display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; background: var(--gold-soft); border: 1px solid rgba(201,168,76,.3); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.info-ico svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-item .lbl { font-size: 11px; color: #9fadbc; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.info-item .val { font-size: 15.5px; color: #fff; font-weight: 600; margin-top: 2px; display: block; }
.info-item .val.big { font-size: 20px; font-weight: 800; color: var(--gold); }

/* ---------- AREA TAGS ---------- */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-tag { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: 14px; font-weight: 600; color: var(--ink); transition: background .2s, border-color .2s, color .2s; }
.area-tag:hover { background: var(--gold-soft); border-color: var(--gold); color: var(--navy); }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy); color: #9fadbc; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .logo-text strong { color: #fff; }
.footer .logo-text small { color: var(--gold); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 20px 0; max-width: 320px; }
.footer-phone-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px 18px; max-width: 280px; }
.footer-phone-card .lbl { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; display: block; margin-bottom: 5px; }
.footer-phone-card a { font-size: 21px; font-weight: 800; color: #fff; }
.footer-phone-card a:hover { color: var(--gold); }
.footer-col h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #fff; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 14px; color: #c2cdd9; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .testi-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split.reverse .split-img { order: 0; }
  .split-img { max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .statbar { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { gap: 16px; }
  .nav { display: flex; position: fixed; top: 84px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 16px; box-shadow: 0 20px 40px -20px rgba(10,22,40,.4); transform: translateY(-130%); transition: transform .3s ease; border-top: 1px solid var(--line); max-height: calc(100vh - 84px); overflow-y: auto; z-index: 99; }
  .nav.open { transform: translateY(0); }
  .nav > a, .nav-dd > button { padding: 15px 28px; border-bottom: 1px solid var(--line); width: 100%; justify-content: flex-start; }
  .nav > a::after { display: none; }
  .nav-dd { width: 100%; }
  .nav-dd-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-bottom: 1px solid var(--line); border-radius: 0; padding: 0 0 8px; min-width: 0; background: var(--gray-50); }
  .nav-dd-menu a { padding-left: 44px; }
  .nav-cta-mobile { display: flex; align-items: center; gap: 8px; margin: 14px 28px 0; padding: 14px 18px; border-radius: 8px; font-weight: 700; font-size: 15px; justify-content: center; }
  .nav-cta-mobile.cta-quote { background: var(--gold); color: var(--navy); }
  .nav-cta-mobile.cta-call { border: 1.5px solid var(--line); color: var(--navy); margin-top: 8px; }
  .section { padding: 70px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .header-cta .btn-gold { display: none; }
  .logo img { width: 48px; height: 48px; }
  .logo-text strong { font-size: 18px; }
  .grid-4, .grid-3, .testi-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .statbar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 90px 0 100px; }
  .hero-btns, .cta-btns { flex-direction: column; align-items: stretch; }
  .checks { grid-template-columns: 1fr; }
  .info-card, .form-body, .form-head { padding-left: 24px; padding-right: 24px; }
  .about-badge { left: 50%; transform: translateX(-50%); }
}
