/* ══════════════════════════════════════════════════════
   HQ EXTERIORS — Main Stylesheet
   ══════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --white:   #FFFFFF;
  --cream:   #FFFFFF;
  --stone:   #F0F0F0;
  --navy:    #1B2D45;
  --navy2:   #243852;
  --blue:    #2E6DA4;
  --gold:    #C9963A;
  --gold2:   #E8B84B;
  --text:    #1C1C1C;
  --muted:   #6B7280;
  --light:   #9CA3AF;
  --border:  #E5E1DA;
  --bg-alt:  #F9F9F9;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(27,45,69,.10);
  --shadow2: 0 12px 48px rgba(27,45,69,.14);
  --font-h:  'Cormorant', Georgia, serif;
  --font-b:  'Outfit', sans-serif;
  --nav-h:   80px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b); color: var(--text);
  background: var(--white); line-height: 1.6; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--font-b); }

/* ── UTILITY ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-label {
  font-family: var(--font-b); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-h); font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; line-height: 1.15; color: var(--navy);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; letter-spacing: .04em;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 13px 27px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; letter-spacing: .04em;
  border: 1.5px solid var(--navy); cursor: pointer;
  transition: all .2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── TOPBAR ──────────────────────────────────────────── */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.8);
  font-size: 13px; padding: 9px 0; text-align: center;
  letter-spacing: .03em;
}
.topbar a { color: var(--gold2); font-weight: 500; }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 40px; height: 40px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.nav-logo-mark span { color: var(--gold2); font-family: var(--font-h); font-size: 20px; font-weight: 700; line-height: 1; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text strong { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: .01em; }
.nav-logo-text small { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 8px 14px; font-size: 14px; font-weight: 400; color: var(--text); border-radius: var(--radius); transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--navy); background: var(--bg-alt); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn-primary { padding: 10px 28px; }
.nav-phone { font-size: 15px; font-weight: 600; color: var(--navy); letter-spacing: .01em; }
.nav-phone:hover { color: var(--blue); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: all .25s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow2); z-index: 99;
  padding: 16px 24px 24px; flex-direction: column; gap: 4px;
  transform: translateY(-10px); opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  display: block; padding: 14px 16px; font-size: 16px; font-weight: 400;
  color: var(--text); border-radius: var(--radius);
  transition: background .15s;
}
.mobile-menu a:hover { background: var(--bg-alt); }
.mobile-menu .btn-primary { justify-content: center; margin-top: 8px; color: var(--white); }
.mobile-menu .mobile-phone {
  text-align: center; padding: 10px; font-size: 16px; font-weight: 600;
  color: var(--navy);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h) - 36px);
  display: flex; align-items: center;
  background: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: .40;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px;
  align-items: center; padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
  font-size: 12px; font-weight: 500; color: var(--muted);
  box-shadow: var(--shadow);
}
.hero-badge .dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }
.hero-title {
  font-family: var(--font-h); font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 600; line-height: 1.1; color: var(--navy);
  margin-bottom: 22px;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-desc { font-size: 17px; color: #3B4249; max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 24px; }
.hero-trust-item { text-align: center; }
.hero-trust-num { font-family: var(--font-h); font-size: 26px; font-weight: 700; color: var(--navy); }
.hero-trust-lbl { font-size: 11px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.hero-trust-div { width: 1px; height: 40px; background: var(--border); }

/* Hero Form Card */
.hero-form-card {
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow2); padding: 36px;
  border: 1px solid var(--border);
}
.hero-form-card h3 { font-family: var(--font-h); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.hero-form-card p { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--text); letter-spacing: .04em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none; -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,109,164,.1); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; padding: 15px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500; cursor: pointer;
  letter-spacing: .04em; transition: background .2s; margin-top: 4px;
}
.form-submit:hover { background: var(--blue); }
.form-note { font-size: 11px; color: var(--light); text-align: center; margin-top: 10px; }
.req { color: #e74c3c; font-weight: 700; }
.form-error { font-size: 11px; color: #e74c3c; font-weight: 500; margin-left: 6px; animation: fadeIn .2s ease; }
.form-group.has-error input,
.form-group.has-error select { border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231,76,60,.1); }
@keyframes fadeIn { from{opacity:0}to{opacity:1} }

/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 28px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; color: var(--white); }
.trust-icon { width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 22px; height: 22px; }
.trust-text strong { display: block; font-size: 16px; font-weight: 600; }
.trust-text span { font-size: 12px; color: rgba(255,255,255,.55); }

/* ── ABOUT ───────────────────────────────────────────── */
.about { padding: 100px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow2);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-inset {
  position: absolute; bottom: -28px; right: -28px;
  width: 200px; border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow2); border: 4px solid var(--white);
}
.about-img-inset img { width: 100%; height: 140px; object-fit: cover; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: 16px; }
.about-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); }
.about-list .check { width: 22px; height: 22px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.about-list .check svg { width: 12px; height: 12px; stroke: var(--white); }

/* ── PRODUCTS ────────────────────────────────────────── */
.products { padding: 100px 0; background: var(--bg-alt); }
.products-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.products-header .section-title { margin-bottom: 16px; }
.products-header p { color: var(--muted); font-size: 16px; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border-radius: 10px;
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.product-card-img { aspect-ratio: 3/2; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 24px 22px; }
.product-card-body h3 { font-family: var(--font-h); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.product-card-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.product-tag { display: inline-block; background: var(--bg-alt); color: var(--navy); font-size: 11px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }

/* ── WHY US ──────────────────────────────────────────── */
.why { padding: 100px 0; background: var(--white); }
.why-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  padding: 36px 30px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.why-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.why-icon { width: 52px; height: 52px; background: var(--bg-alt); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-family: var(--font-h); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.why-card p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ── PROCESS ─────────────────────────────────────────── */
.process { padding: 100px 0; background: var(--navy); }
.process-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.process-header .section-label { color: var(--gold2); }
.process-header .section-title { color: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 38px; left: 12.5%; right: 12.5%; height: 1px; background: rgba(255,255,255,.15); z-index: 0; }
.process-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-num {
  width: 76px; height: 76px; border-radius: 50%;
  border: 1.5px solid rgba(201,150,58,.5);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; background: var(--navy2);
}
.step-num span { font-family: var(--font-h); font-size: 28px; font-weight: 700; color: var(--gold2); }
.process-step h3 { font-family: var(--font-h); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── GALLERY ─────────────────────────────────────────── */
.gallery { padding: 100px 0; background: var(--bg-alt); }
.gallery-header { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.gallery-header p { color: var(--muted); margin-top: 12px; }
.gallery-tabs { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-tab {
  padding: 9px 22px; border-radius: 20px;
  font-size: 13px; font-weight: 500; border: 1.5px solid var(--border);
  background: var(--white); color: var(--muted); cursor: pointer;
  transition: all .2s;
}
.gallery-tab.active, .gallery-tab:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,45,69,.6), transparent);
  opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-size: 14px; font-weight: 500; }

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews { padding: 100px 0; background: var(--white); }
.reviews-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.reviews-stars { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 10px; }
.star { color: var(--gold); font-size: 20px; }
.reviews-rating { font-family: var(--font-h); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.reviews-count { font-size: 13px; color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 26px;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; color: var(--gold); font-size: 14px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 600; font-size: 16px; flex-shrink: 0;
}
.review-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.review-info span { font-size: 12px; color: var(--muted); }

/* ── OFFER BANNER ────────────────────────────────────── */
.offer-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #2E4F6F 100%);
  position: relative; overflow: hidden;
}
.offer-banner::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(201,150,58,.08);
}
.offer-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.offer-text .offer-pill {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.offer-text h2 { font-family: var(--font-h); font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; color: var(--white); line-height: 1.2; max-width: 560px; margin-bottom: 14px; }
.offer-text p { color: rgba(255,255,255,.6); font-size: 16px; max-width: 480px; }
.offer-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.offer-actions .btn-primary { background: var(--gold); color: var(--navy); }
.offer-actions .btn-primary:hover { background: var(--gold2); }
.offer-note { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── SERVICE AREAS ───────────────────────────────────── */
.areas { padding: 100px 0; background: var(--bg-alt); }
.areas-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.areas-header .section-title { margin-bottom: 16px; }
.areas-header p { color: var(--muted); }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 40px; }
.area-tag {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 14px; text-align: center;
  font-size: 13px; font-weight: 500; color: var(--navy);
  transition: all .2s; cursor: default;
}
.area-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.areas-cta { text-align: center; }
.areas-cta p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact { padding: 100px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 520px; gap: 80px; align-items: start; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--bg-alt); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; text-transform: uppercase; letter-spacing: .06em; }
.contact-detail-text span { font-size: 15px; color: var(--muted); }
.contact-detail-text a { color: var(--muted); transition: color .15s; }
.contact-detail-text a:hover { color: var(--blue); }
.contact-form-card { background: var(--bg-alt); border-radius: 12px; padding: 40px; border: 1px solid var(--border); }
.contact-form-card h3 { font-family: var(--font-h); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 24px; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.45); margin-top: 16px; max-width: 260px; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul li a:hover { color: var(--gold2); }
.footer-logo-mark { width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.footer-logo-mark span { color: var(--gold2); font-family: var(--font-h); font-size: 22px; font-weight: 700; }
.footer-logo-wrapper { display: flex; align-items: center; gap: 12px; }
.footer-logo-text strong { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--white); }
.footer-logo-text small { display: block; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .15s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── FLOAT CTA ───────────────────────────────────────── */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  background: var(--navy); color: var(--white);
  padding: 14px 22px; border-radius: 40px;
  font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(27,45,69,.35);
  transition: transform .2s, background .2s, opacity .2s;
  opacity: 0; transform: translateY(16px); pointer-events: none;
}
.float-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.float-cta:hover { background: var(--blue); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-card { max-width: 520px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 500px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links, .nav-phone, .nav-cta .btn-primary { display: none; }
  .hamburger { display: block; }

  /* Topbar */
  .topbar { padding: 6px 0; font-size: 12px; }
  .topbar-inner { flex-direction: column; gap: 4px; }

  /* Trust bar */
  .trust-bar { padding: 20px 0; }
  .trust-bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-text strong { font-size: 13px; }
  .trust-text span { font-size: 11px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner { padding: 40px 0 48px; gap: 36px; }
  .hero-title { font-size: 36px; font-weight: 700; }
  .hero-title em { color: var(--navy); }
  .hero-desc { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { justify-content: center; text-align: center; }
  .hero-trust { justify-content: center; }
  .hero-form-card { padding: 28px 22px; }
  .hero-form-card h3 { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* About */
  .about { padding: 64px 0; }
  .about-images { display: block; max-width: 100%; margin-bottom: 0; }
  .about-img-inset { position: static; width: 120px; margin-top: -24px; margin-left: auto; }
  .about-content p { font-size: 15px; }
  .about-list li { font-size: 14px; }

  /* Products */
  .products { padding: 64px 0; }
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card { display: block; }
  .product-card-img { aspect-ratio: 3/2; }
  .product-card-body { padding: 18px 16px; }
  .product-card-body h3 { font-size: 18px; margin-bottom: 6px; }
  .product-card-body p { font-size: 13px; margin-bottom: 10px; }

  /* Why */
  .why { padding: 64px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 24px 20px; display: flex; gap: 16px; align-items: flex-start; }
  .why-icon { margin-bottom: 0; flex-shrink: 0; width: 44px; height: 44px; }
  .why-card h3 { font-size: 18px; margin-bottom: 6px; }
  .why-card p { font-size: 14px; }

  /* Process */
  .process { padding: 64px 0; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .step-num { width: 60px; height: 60px; }
  .step-num span { font-size: 22px; }
  .process-step h3 { font-size: 17px; }
  .process-step p { font-size: 13px; }

  /* Gallery */
  .gallery { padding: 64px 0; }
  .gallery-tabs { gap: 6px; }
  .gallery-tab { padding: 7px 14px; font-size: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Reviews */
  .reviews { padding: 64px 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 22px 20px; }
  .review-text { font-size: 14px; }

  /* Offer */
  .offer-banner { padding: 48px 0; }
  .offer-inner { flex-direction: column; text-align: center; align-items: center; }
  .offer-text h2 { font-size: 26px; }
  .offer-actions { align-items: center; }

  /* Areas */
  .areas { padding: 64px 0; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .area-tag { padding: 8px 10px; font-size: 12px; }

  /* Contact */
  .contact { padding: 64px 0; }
  .contact-inner { gap: 48px; }
  .contact-form-card { padding: 28px 22px; }

  /* Footer */
  footer { padding: 48px 0 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .footer-bottom-links { justify-content: center; }

  /* Float CTA */
  .float-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (380px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 30px; font-weight: 700; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .hero-trust-div { width: 40px; height: 1px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
