/* ============================================================
   AL Patio Solutions & Awnings — site styles
   Engine anatomy ported from the Urbanshades build, re-skinned:
   navy #011640 + lime #c3d628, Archivo variable font.
   Breakpoints: desktop ≥1200 / tablet 810–1199.98 / phone ≤809.98
   ============================================================ */

@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* palette */
  --navy-950: #010b21;  /* deepest — footer bg */
  --navy-900: #011640;  /* brand navy — headings, dark bands */
  --navy-800: #06215a;  /* raised navy panel */
  --navy-700: #12306e;  /* borders on navy */
  --ink-600: #2c3757;   /* secondary heading ink */
  --grey-500: #4d5771;  /* body copy on light */
  --grey-400: #7d859c;  /* muted labels */
  --grey-250: #c6cbd9;  /* light borders on tint */
  --grey-150: #dfe4ee;  /* hairlines */
  --lime-500: #c3d628;  /* brand lime — accents, arrow circles */
  --lime-600: #a9bb13;  /* lime hover */
  --lime-text: #5d6b00; /* AA-safe lime-family text on light */
  --tint-cool: #f2f5fa; /* navy-tinted section bg */
  --tint-warm: #f6f8ea; /* lime-tinted section bg */
  --paper: #ffffff;
  --white: #ffffff;
  --scrim-navy: rgba(1, 13, 38, .62);

  --font-body: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-card: 0 14px 40px rgba(1, 22, 64, .10);
  --shadow-pop: 0 24px 64px rgba(1, 22, 64, .18);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; }
main { display: block; }
:focus-visible { outline: 3px solid var(--lime-500); outline-offset: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 300;
  background: var(--navy-900); color: #fff; padding: 10px 18px; border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.06; }
p { line-height: 1.55; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 809.98px) { .container { padding: 0 20px; } }

/* section kicker: lime triangle echoing the logo mark */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 14px/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey-400);
}
.kicker::before {
  content: ""; width: 0; height: 0;
  border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-bottom: 12px solid var(--lime-500);
}
.section--navy .kicker { color: #aab4cf; }

.sec-head { max-width: 780px; margin-bottom: 56px; }
.sec-title { font-size: 46px; margin: 18px 0 0; }
.sec-lead { font-size: 18px; color: var(--grey-500); margin-top: 18px; max-width: 640px; }
.section--navy .sec-title { color: #fff; }
.section--navy .sec-lead { color: #b9c2d9; }
@media (max-width: 1199.98px) and (min-width: 810px) { .sec-title { font-size: 38px; } }
@media (max-width: 809.98px) {
  .sec-head { margin-bottom: 36px; }
  .sec-title { font-size: 30px; }
  .sec-lead { font-size: 15.5px; }
}

/* ---------- badge chip (location/photo tags) ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 13px;
  background: var(--lime-500);
  border-radius: 16px;
  font: 600 14px/1.2 var(--font-body); letter-spacing: .02em;
  color: var(--navy-900);
  width: max-content;
}
.badge--ghost { background: rgba(255,255,255,.14); color: #fff; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
@media (max-width: 809.98px) { .badge { font-size: 12px; } }

/* ---------- pill buttons (label + arrow-circle, sweep-fill hover) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 22px;
  padding: 8px 10px 8px 24px;
  border-radius: 44px;
  font: 600 16px/1.4 var(--font-body);
  position: relative; overflow: hidden;
  transition: color .3s ease;
  width: max-content;
}
.btn .btn-label { position: relative; z-index: 1; }
.btn .btn-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none; position: relative; z-index: 1;
  transition: color .3s ease, background .3s ease;
}
.btn .btn-arrow svg { transform: rotate(-45deg); transition: transform .3s ease; }
.btn:hover .btn-arrow svg { transform: rotate(0); }
.btn::before {
  content: ""; position: absolute; z-index: 0;
  right: 10px; top: 50%; width: 34px; height: 34px;
  border-radius: 50%; transform: translateY(-50%) scale(0);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  background: var(--lime-500);
}
.btn:hover::before { transform: translateY(-50%) scale(24); }

/* navy pill on light bg */
.btn--navy { background: var(--navy-900); color: #fff; }
.btn--navy .btn-arrow { background: var(--lime-500); color: var(--navy-900); }
.btn--navy:hover { color: var(--navy-900); }
.btn--navy:hover .btn-arrow { background: var(--navy-900); color: var(--lime-500); }

/* white pill on dark imagery */
.btn--light { background: #fff; color: var(--navy-900); }
.btn--light .btn-arrow { background: var(--lime-500); color: var(--navy-900); }
.btn--light:hover { color: var(--navy-900); }
.btn--light:hover .btn-arrow { background: var(--navy-900); color: var(--lime-500); }

/* lime pill (footer CTA) */
.btn--lime { background: var(--lime-500); color: var(--navy-900); }
.btn--lime .btn-arrow { background: var(--navy-900); color: var(--lime-500); }
.btn--lime::before { background: #fff; }
.btn--lime:hover { color: var(--navy-900); }

.btn--xl { font-size: 18px; padding: 12px 14px 12px 30px; gap: 26px; }
.btn--xl .btn-arrow { width: 44px; height: 44px; }

/* header compact pill */
.btn--contact { font-size: 15px; padding: 6px 8px 6px 18px; gap: 14px; background: var(--lime-500); color: var(--navy-900); }
.btn--contact .btn-arrow { width: 28px; height: 28px; background: var(--navy-900); color: var(--lime-500); }
.btn--contact::before { background: #fff; }

/* WhatsApp text button */
.cta-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px; border-radius: 44px;
  font: 600 16px/1.4 var(--font-body);
  background: rgba(255,255,255,.12); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  transition: background .25s ease;
}
.cta-wa:hover { background: rgba(37,211,102,.25); }
.cta-wa svg { color: #25d366; }
.cta-wa--dark { background: var(--tint-cool); color: var(--navy-900); border-color: var(--grey-150); }
.cta-wa--dark:hover { background: #e4f6e9; }

/* inline arrow link */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 16px/1.3 var(--font-body); color: var(--navy-900);
  border-bottom: 2px solid var(--lime-500); padding-bottom: 3px;
  transition: gap .2s ease;
}
.link-arrow:hover { gap: 12px; }
.link-arrow svg { flex: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: absolute; inset: 0 0 auto 0; z-index: 100;
  transition: background .25s ease, box-shadow .25s ease;
}
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* logo lockup */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 46px; height: 24px; flex: none; }
.lm-navy { fill: var(--navy-900); }
.lm-lime { fill: var(--lime-500); }
.logo-text { display: flex; flex-direction: column; line-height: 1.02; }
.logo-text strong { font: 700 16px/1.05 var(--font-body); letter-spacing: .015em; color: var(--navy-900); white-space: nowrap; }
.logo-text em { font: 600 10.5px/1.3 var(--font-body); font-style: normal; letter-spacing: .24em; text-transform: uppercase; color: var(--grey-400); }

/* dark hero pages: white text over imagery */
.nav-dark .site-header:not(.is-solid) .logo-text strong { color: #fff; }
.nav-dark .site-header:not(.is-solid) .logo-text em { color: rgba(255,255,255,.72); }
.nav-dark .site-header:not(.is-solid) .lm-navy { fill: #fff; }
.nav-dark .site-header:not(.is-solid) .main-nav > a,
.nav-dark .site-header:not(.is-solid) .nav-drop-toggle,
.nav-dark .site-header:not(.is-solid) .nav-call { color: #fff; }

/* light pages: solid white bar from the start */
.nav-light .site-header { position: sticky; top: 0; background: #fff; border-bottom: 1px solid var(--grey-150); }

/* scrolled state (added by JS on dark pages) */
.site-header.is-solid {
  position: fixed;
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(1,22,64,.08);
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a, .nav-drop-toggle {
  font: 600 15.5px/1.2 var(--font-body); color: var(--navy-900);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 0;
}
.main-nav > a:hover, .nav-drop-toggle:hover { color: var(--lime-600); }
.nav-drop-chev { transition: transform .2s ease; }
.nav-drop:hover .nav-drop-chev { transform: rotate(180deg); }

.nav-call { display: inline-flex; align-items: center; gap: 9px; font: 600 15.5px/1.2 var(--font-body); color: var(--navy-900); white-space: nowrap; }
.nav-call-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--lime-500); color: var(--navy-900);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}

/* mega menus */
.nav-drop { position: relative; }
.nav-mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}
.nav-drop:hover .nav-mega, .nav-drop:focus-within .nav-mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease;
}
.nav-mega::before { content: ""; position: absolute; inset: -16px 0 auto 0; height: 16px; } /* hover bridge */
.nav-mega-inner {
  width: 720px; background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--grey-150);
  box-shadow: var(--shadow-pop);
  padding: 22px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.nm-card { display: flex; flex-direction: column; gap: 4px; border-radius: var(--radius-md); }
.nm-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 10px; background: var(--tint-cool);
  margin-bottom: 8px;
}
.nm-title { font: 700 15px/1.25 var(--font-body); color: var(--navy-900); }
.nm-sub { font: 500 12.5px/1.35 var(--font-body); color: var(--grey-400); }
.nm-card:hover .nm-title { color: var(--lime-600); }
.nav-mega-foot {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center;
  border-top: 1px solid var(--grey-150); padding-top: 16px; margin-top: 4px;
}
.nav-mega-foot a { font: 600 13.5px/1.3 var(--font-body); color: var(--grey-500); }
.nav-mega-foot a:hover { color: var(--navy-900); }
.nav-mega-foot a:last-child { color: var(--lime-text); margin-left: auto; }
.nm-note { font: 500 13.5px/1.3 var(--font-body); color: var(--grey-400); }

.nav-mega-inner--loc { grid-template-columns: 1fr 1fr; width: 640px; }
.nm-region { display: flex; flex-direction: column; gap: 12px; }
.nm-links { display: flex; flex-direction: column; gap: 7px; }
.nm-links--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 12px; }
.nm-links a { font: 500 13.5px/1.3 var(--font-body); color: var(--grey-500); }
.nm-links a:hover { color: var(--navy-900); }

/* hamburger + mobile menu */
.hamburger { display: none; width: 44px; height: 40px; position: relative; z-index: 130; flex-direction: column; align-items: center; justify-content: center; gap: 7px; }
.hamburger span { display: block; width: 26px; height: 2.4px; background: var(--navy-900); border-radius: 2px; transition: transform .25s ease, opacity .25s ease, background .25s ease; }
.nav-dark .site-header:not(.is-solid) .hamburger span { background: #fff; }
body.menu-open .hamburger span { background: var(--navy-900); }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(4.7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { transform: translateY(-4.7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 120;
  background: #fff; padding: 96px 26px 40px;
  overflow-y: auto;
  flex-direction: column; gap: 4px;
}
body.menu-open .mobile-menu { display: flex; }
body.menu-open { overflow: hidden; }
.mobile-menu > a { font: 700 22px/1.3 var(--font-body); color: var(--navy-900); padding: 9px 0; }
.mobile-sub { display: flex; flex-direction: column; gap: 2px; padding: 2px 0 10px 16px; border-left: 2px solid var(--lime-500); margin-left: 4px; }
.mobile-sub a { font: 500 15.5px/1.4 var(--font-body); color: var(--grey-500); padding: 5px 0; }
.mm-contact { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 14px; }
.mm-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font: 600 15px/1.2 var(--font-body);
  padding: 11px 18px; border-radius: 40px; border: 1.5px solid var(--grey-150);
  color: var(--navy-900);
}
.mm-btn--wa svg { color: #1fb355; }

@media (max-width: 1279.98px) {
  .nav-call { display: none; }
  .main-nav { gap: 22px; }
}
@media (max-width: 1023.98px) and (min-width: 810px) {
  .main-nav { gap: 16px; }
  .main-nav > a, .nav-drop-toggle { font-size: 14.5px; }
  .logo-text strong { font-size: 14.5px; }
}
@media (max-width: 809.98px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 14px 20px; }
}

/* mobile bottom quick-contact bar */
.mobile-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  background: rgba(1, 16, 46, .92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 8px;
  grid-template-columns: 1fr 1fr 1.3fr; gap: 6px;
}
.mcta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 13.5px/1 var(--font-body); color: #fff;
  padding: 12px 6px; border-radius: 12px;
}
.mcta--wa svg { color: #25d366; }
.mcta--quote { background: var(--lime-500); color: var(--navy-900); }
@media (max-width: 809.98px) {
  .mobile-cta { display: grid; }
  body { padding-bottom: 74px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy-900); }
.hero--sub { min-height: 62vh; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(1,11,33,.55) 0%, rgba(1,11,33,.26) 34%, rgba(1,11,33,.34) 55%, rgba(1,11,33,.93) 100%); }
.hero-scrim::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(92deg, rgba(1,11,33,.55) 0%, rgba(1,11,33,.22) 40%, transparent 68%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1240px; margin: 0 auto; padding: 150px 32px 72px; color: #fff; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; font: 600 14px/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--lime-500); margin-bottom: 20px; }
.hero-kicker::before { content: ""; width: 34px; height: 3px; background: var(--lime-500); }
.hero-title { font-size: 62px; font-weight: 750; color: #fff; max-width: 16ch; text-wrap: balance; }
.hero-sub { font-size: 18.5px; line-height: 1.55; color: rgba(255,255,255,.86); max-width: 54ch; margin-top: 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.22); font: 600 14.5px/1.4 var(--font-body); color: rgba(255,255,255,.9); }
.hero-meta span { display: inline-flex; align-items: center; gap: 9px; }
.hero-meta svg { color: var(--lime-500); flex: none; }
@media (max-width: 1199.98px) and (min-width: 810px) { .hero-title { font-size: 50px; } }
@media (max-width: 809.98px) {
  .hero { min-height: 86vh; }
  .hero--sub { min-height: 58vh; }
  .hero-content { padding: 120px 20px 44px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 15.5px; }
  .hero-meta { gap: 8px 18px; font-size: 13px; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; }
.section--tint { background: var(--tint-cool); }
.section--warm { background: var(--tint-warm); }
.section--navy { background: var(--navy-900); color: #fff; }
.section--flush-top { padding-top: 0; }
@media (max-width: 809.98px) { .section { padding: 68px 0; } }

/* crumbs (inner pages) */
.crumbs { font: 500 13.5px/1.4 var(--font-body); color: var(--grey-400); display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs a:hover { color: var(--navy-900); }
.crumbs .sep { color: var(--grey-250); }

/* ---------- product cards grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--grey-150); border-radius: var(--radius-lg);
  padding: 14px; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-media { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; background: var(--tint-cool); position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 18px 8px 10px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-title { font-size: 21px; }
.card-sub { font: 400 15px/1.5 var(--font-body); color: var(--grey-500); }
.card-cta { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 8px; font: 600 15px/1 var(--font-body); color: var(--navy-900); }
.card-cta svg { transition: transform .25s ease; color: var(--lime-600); }
.card:hover .card-cta svg { transform: translateX(4px); }
.section--navy .card { background: var(--navy-800); border-color: var(--navy-700); }
.section--navy .card-title { color: #fff; }
.section--navy .card-sub { color: #b9c2d9; }
.section--navy .card-cta { color: var(--lime-500); }
@media (max-width: 1199.98px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 809.98px) { .cards { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- alternating feature rows ---------- */
.feat {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
  padding: 44px 0;
}
.feat + .feat { border-top: 1px solid var(--grey-150); }
.feat--flip .feat-media { order: 2; }
.feat-media { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-card); }
.feat-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.feat-media .badge { position: absolute; left: 14px; top: 14px; }
.feat-body .kicker { margin-bottom: 14px; }
.feat-title { font-size: 32px; margin-bottom: 14px; }
.feat-body p { color: var(--grey-500); font-size: 16.5px; }
.feat-body p + p { margin-top: 12px; }
.feat-body .link-arrow, .feat-body .btn { margin-top: 22px; }
.feat-body .ticks { margin-top: 18px; }
@media (max-width: 1199.98px) and (min-width: 810px) { .feat { gap: 40px; } .feat-title { font-size: 27px; } }
@media (max-width: 809.98px) {
  .feat { grid-template-columns: 1fr; gap: 22px; padding: 32px 0; }
  .feat--flip .feat-media { order: 0; }
  .feat-title { font-size: 24px; }
  .feat-body p { font-size: 15px; }
}

/* ---------- lime triangle tick list ---------- */
.ticks { display: grid; gap: 14px; }
.ticks li { display: flex; gap: 14px; align-items: flex-start; font: 500 16.5px/1.5 var(--font-body); color: var(--grey-500); list-style: none; }
.ticks li::before {
  content: ""; flex: none; margin-top: 6px;
  width: 0; height: 0;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-bottom: 11px solid var(--lime-500);
}
.ticks li strong { color: var(--navy-900); font-weight: 700; }
.section--navy .ticks li { color: #c3cbdf; }
.section--navy .ticks li strong { color: #fff; }

/* ---------- stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { border-left: 3px solid var(--lime-500); padding: 6px 0 6px 22px; }
.stat-num { font: 750 52px/1 var(--font-body); letter-spacing: -0.03em; color: #fff; display: flex; align-items: baseline; gap: 2px; }
.stat-num sub { font: 700 26px/1 var(--font-body); }
.stat-label { font: 500 15px/1.45 var(--font-body); color: #aab4cf; margin-top: 10px; }
@media (max-width: 1199.98px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; } }
@media (max-width: 809.98px) { .stat-num { font-size: 40px; } }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--grey-150); border-radius: var(--radius-lg);
  padding: 30px 28px; counter-increment: step; position: relative;
}
.step::before {
  content: "0" counter(step);
  font: 750 15px/1 var(--font-body); letter-spacing: .06em;
  color: var(--navy-900);
  display: inline-flex; padding: 7px 12px; border-radius: 20px;
  background: var(--lime-500); margin-bottom: 18px;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15.5px; color: var(--grey-500); }
@media (max-width: 809.98px) { .steps { grid-template-columns: 1fr; gap: 14px; } }

/* ---------- accordion (FAQ) ---------- */
.acc { display: grid; gap: 12px; max-width: 860px; }
.acc details { background: #fff; border: 1px solid var(--grey-150); border-radius: var(--radius-md); overflow: hidden; }
.acc summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px;
  font: 700 17px/1.35 var(--font-body); color: var(--navy-900);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2.4px solid var(--lime-600); border-bottom: 2.4px solid var(--lime-600);
  transform: rotate(45deg); transition: transform .25s ease; margin-top: -4px;
}
.acc details[open] summary::after { transform: rotate(225deg); margin-top: 6px; }
.acc details > div { padding: 0 24px 22px; font: 400 15.5px/1.6 var(--font-body); color: var(--grey-500); }
.acc details > div p + p { margin-top: 10px; }

/* ---------- area chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips a {
  font: 600 14.5px/1 var(--font-body); color: var(--navy-900);
  padding: 11px 18px; border-radius: 30px;
  background: #fff; border: 1px solid var(--grey-150);
  transition: background .2s ease, border-color .2s ease;
}
.chips a:hover { background: var(--lime-500); border-color: var(--lime-500); }
.section--navy .chips a { background: var(--navy-800); border-color: var(--navy-700); color: #fff; }
.section--navy .chips a:hover { background: var(--lime-500); border-color: var(--lime-500); color: var(--navy-900); }

/* ---------- quote form panel ---------- */
.quote-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.quote-panel {
  background: var(--navy-800); border: 1px solid var(--navy-700);
  border-radius: var(--radius-lg); padding: 36px;
}
.quote-panel h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.quote-panel .qp-sub { color: #aab4cf; font-size: 15px; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .fw { grid-column: 1 / -1; }
.field label { display: block; font: 600 13px/1.2 var(--font-body); letter-spacing: .04em; text-transform: uppercase; color: #aab4cf; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid var(--navy-700); border-radius: 10px;
  color: #fff; padding: 13px 14px; font-size: 15.5px;
}
.field input::placeholder, .field textarea::placeholder { color: #6f7a99; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%23aab4cf' stroke-width='1.6' stroke-linecap='round' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field select option { color: var(--navy-900); background: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lime-500); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.quote-panel .btn { margin-top: 22px; width: 100%; justify-content: space-between; }
.form-error { margin-top: 14px; font-size: 14.5px; line-height: 1.5; color: #ffd7d7; }
.form-error a { text-decoration: underline; color: #fff; }
.quote-aside .kicker { margin-bottom: 14px; }
.quote-aside h2 { font-size: 40px; color: #fff; }
.quote-aside p { color: #b9c2d9; font-size: 16.5px; margin-top: 16px; max-width: 46ch; }
.quote-contacts { margin-top: 30px; display: grid; gap: 0; }
.quote-contacts a { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--navy-700); font: 600 15.5px/1.3 var(--font-body); color: #fff; }
.quote-contacts .qc-label { color: #aab4cf; font-weight: 500; }
.quote-contacts a:hover .qc-label { color: var(--lime-500); }
@media (max-width: 1199.98px) { .quote-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 809.98px) {
  .quote-panel { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-aside h2 { font-size: 30px; }
}

/* ---------- gallery ---------- */
.masonry { columns: 3 320px; column-gap: 18px; }
.masonry a { display: block; margin-bottom: 18px; border-radius: var(--radius-md); overflow: hidden; position: relative; break-inside: avoid; }
.masonry img { width: 100%; transition: transform .4s ease; }
.masonry a:hover img { transform: scale(1.03); }
.lightbox { border: 0; padding: 0; background: transparent; margin: auto; width: min(1100px, 92vw); max-width: 92vw; }
.lightbox::backdrop { background: rgba(1, 8, 24, .9); }
.lightbox img { width: 100%; height: auto; max-height: 86vh; object-fit: contain; border-radius: 10px; }
.lb-close, .lb-prev, .lb-next {
  position: fixed; z-index: 5; color: #fff; font-size: 34px; line-height: 1;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.1); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- prose (blog articles) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 30px; margin: 44px 0 16px; }
.prose h3 { font-size: 22px; margin: 34px 0 12px; }
.prose p { font-size: 16.5px; line-height: 1.7; color: var(--grey-500); margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: var(--grey-500); font-size: 16.5px; line-height: 1.7; }
.prose li { margin-bottom: 8px; }
.prose img { border-radius: var(--radius-md); margin: 28px 0; }
.prose a { color: var(--navy-900); border-bottom: 2px solid var(--lime-500); }
.prose strong { color: var(--navy-900); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-950); color: #fff; overflow: hidden; }
.footer-shell { max-width: 1240px; margin: 0 auto; padding: 96px 32px 28px; }
.footer-cta { text-align: center; padding-bottom: 80px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-cta-title { font-size: 44px; color: #fff; max-width: 18ch; margin: 0 auto; }
.footer-cta-sub { color: #9aa5c4; margin: 16px 0 30px; font-size: 16.5px; }
.footer-cta .btn { margin: 0 auto; }
.footer-columns { display: grid; grid-template-columns: 1.1fr 2.2fr; gap: 60px; padding: 64px 0 40px; }
.footer-tagline { font-size: 15.5px; line-height: 1.65; color: #9aa5c4; max-width: 40ch; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.footer-action {
  display: inline-flex; align-items: center; gap: 9px;
  font: 600 14.5px/1.2 var(--font-body); color: #fff;
  border: 1px solid rgba(255,255,255,.18); border-radius: 40px;
  padding: 10px 18px; transition: background .2s ease, border-color .2s ease;
}
.footer-action:hover { background: rgba(255,255,255,.08); }
.footer-action--wa svg { color: #25d366; }
.footer-links { display: grid; grid-template-columns: repeat(4, auto); gap: 28px; justify-content: space-between; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h3 { font: 700 12.5px/1 var(--font-body); letter-spacing: .18em; color: var(--lime-500); margin-bottom: 8px; }
.footer-col a { font: 500 14.5px/1.45 var(--font-body); color: #c3cbdf; width: max-content; }
.footer-col a:hover { color: #fff; }
.fc-label { color: #7d89ab; display: inline-block; min-width: 92px; }
.footer-address { font-style: normal; font: 500 13.5px/1.6 var(--font-body); color: #7d89ab; margin-top: 10px; }
.footer-copy-row { cursor: pointer; font: 600 14.5px/1.45 var(--font-body); color: var(--lime-500); position: relative; width: max-content; }
.footer-copy-row .cv-copied { display: none; }
.footer-copy-row.copied .cv-default { display: none; }
.footer-copy-row.copied .cv-copied { display: inline; color: #fff; }
.footer-masthead { color: rgba(255,255,255,.07); padding: 26px 0 8px; }
.masthead-mark { width: 100%; height: auto; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px; font: 500 13.5px/1.5 var(--font-body); color: #7d89ab;
}
@media (max-width: 1199.98px) {
  .footer-columns { grid-template-columns: 1fr; gap: 44px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 809.98px) {
  .footer-shell { padding: 64px 20px 22px; }
  .footer-cta-title { font-size: 30px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   appear-on-scroll
   ============================================================ */
.js [data-appear] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.js [data-appear].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-appear] { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}
