/* =========================================================
   US SIGN PROS — Signage & Water Systems
   Global stylesheet
   ========================================================= */

:root {
  /* Brand */
  --navy:        #12244A;   /* logo navy */
  --navy-800:    #16294f;
  --navy-700:    #1d3566;
  --sign:        #F1591F;   /* signage accent (logo orange) */
  --sign-600:    #D8480F;
  --water:       #12B5E5;   /* water accent (cyan)   */
  --water-600:   #0E9BC7;

  /* Neutrals */
  --ink:         #10202F;
  --body:        #43586b;
  --muted:       #6b7d8f;
  --line:        #e3e9ef;
  --bg:          #ffffff;
  --bg-soft:     #f5f8fb;
  --bg-soft-2:   #eef3f8;

  /* System */
  --shadow-sm:   0 1px 2px rgba(10,37,64,.06), 0 1px 3px rgba(10,37,64,.08);
  --shadow-md:   0 6px 18px rgba(10,37,64,.08), 0 2px 6px rgba(10,37,64,.06);
  --shadow-lg:   0 24px 60px rgba(10,37,64,.16);
  --radius:      16px;
  --radius-sm:   10px;
  --maxw:        1180px;
  --font:        'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 { color: var(--ink); font-weight: 800; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; letter-spacing: -.01em; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

section { position: relative; }
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #cdd9e5; }
.section--navy h2, .section--navy h3 { color: #fff; }

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--water-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow.sign  { color: var(--sign-600); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: .4rem; }

.lead { font-size: 1.14rem; color: var(--body); }
.text-muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: .98rem; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--sign); color: #fff; box-shadow: 0 8px 20px rgba(241,89,31,.32); }
.btn-primary:hover { transform: translateY(-2px); background: var(--sign-600); box-shadow: 0 12px 26px rgba(241,89,31,.42); }
.btn-water { background: var(--water); color: #04252f; box-shadow: 0 8px 20px rgba(18,181,229,.32); }
.btn-water:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(18,181,229,.42); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-700); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.topbar {
  background: var(--navy); color: #b9c8d6; font-size: .84rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #dbe6f0; transition: color .15s; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-info svg { width: 15px; height: 15px; opacity: .85; }
.topbar-social { display: flex; gap: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu a {
  display: block; padding: 10px 15px; font-weight: 600; font-size: .96rem; color: var(--ink); border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--water-600); background: var(--bg-soft); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Dropdown */
.has-dd > a::after { content: "▾"; font-size: .7em; margin-left: 6px; color: var(--muted); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s var(--ease);
}
.has-dd:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 10px 14px; font-size: .92rem; font-weight: 500; border-radius: 9px; display: flex; align-items: center; gap: 10px; }
.dropdown a b { color: var(--ink); font-weight: 700; }
.dropdown a:hover { background: var(--bg-soft); }
.dropdown .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot.sign { background: var(--sign); } .dot.water { background: var(--water); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .25s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 82% -10%, rgba(18,181,229,.16), transparent 60%),
    radial-gradient(900px 480px at 8% 110%, rgba(245,166,35,.14), transparent 60%),
    linear-gradient(180deg, #0A2540 0%, #0c2c4f 60%, #0e335c 100%);
  color: #dbe7f2;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding: clamp(60px,8vw,104px) 0; }
.hero h1 { color: #fff; }
.hero h1 .grad-sign { color: var(--sign); }
.hero h1 .grad-water { color: var(--water); }
.hero p.lead { color: #b7c8d8; max-width: 540px; font-size: 1.16rem; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 30px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: #cfe0ee; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); padding: 8px 14px; border-radius: 999px; }
.hero-badge svg { width: 16px; height: 16px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .num { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hero-stats .lbl { font-size: .82rem; color: #90a6ba; text-transform: uppercase; letter-spacing: .08em; }

/* Hero split visual */
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card {
  border-radius: 20px; padding: 26px 22px; min-height: 230px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.12);
  transition: transform .3s var(--ease);
}
.hero-card:hover { transform: translateY(-6px); }
.hero-card.sign  { background: linear-gradient(160deg, #23364a, #1a2c3f); }
.hero-card.water { background: linear-gradient(160deg, #103a4e, #0c2c42); margin-top: 34px; }
.hero-card .hc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s var(--ease); }
.hero-card:hover .hc-img { transform: scale(1.06); }
.hero-card .hc-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,20,40,.15) 0%, rgba(10,20,40,.55) 55%, rgba(8,16,32,.9) 100%); }
.hero-card > .hc-icon, .hero-card > h3, .hero-card > p, .hero-card > .hc-tag { position: relative; z-index: 2; }
.hero-card .hc-icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: auto; }
.hero-card.sign .hc-icon  { background: rgba(245,166,35,.16); color: var(--sign); }
.hero-card.water .hc-icon { background: rgba(18,181,229,.16); color: var(--water); }
.hero-card .hc-icon svg { width: 28px; height: 28px; }
.hero-card h3 { color: #fff; margin: 0; font-size: 1.1rem; }
.hero-card p { color: #a9bccd; font-size: .86rem; margin: 0; }
.hero-card .hc-tag { position: absolute; top: 18px; right: 18px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.hero-card.sign .hc-tag  { background: rgba(245,166,35,.16); color: var(--sign); }
.hero-card.water .hc-tag { background: rgba(18,181,229,.16); color: var(--water); }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; }
.hero-wave svg { width: 100%; height: 90px; }

/* ---------- Trust bar ---------- */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 24px; flex-wrap: wrap; }
.trustbar .t-item { display: flex; align-items: center; gap: 12px; color: var(--body); font-weight: 600; font-size: .95rem; }
.trustbar .t-item svg { width: 26px; height: 26px; color: var(--water-600); flex: none; }

/* ---------- Divisions (split) ---------- */
.divisions { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.division {
  border-radius: 22px; padding: 40px; position: relative; overflow: hidden;
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.division:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.division::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; }
.division.sign::before  { background: linear-gradient(90deg, var(--sign), #ffcf6b); }
.division.water::before { background: linear-gradient(90deg, var(--water), #7fe0ff); }
.division .d-icon { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px; }
.division.sign .d-icon  { background: rgba(245,166,35,.12); color: var(--sign-600); }
.division.water .d-icon { background: rgba(18,181,229,.12); color: var(--water-600); }
.division .d-icon svg { width: 34px; height: 34px; }
.division h3 { font-size: 1.5rem; }
.division ul { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 10px; }
.division ul li { display: flex; align-items: center; gap: 10px; font-size: .96rem; color: var(--body); }
.division ul li svg { width: 18px; height: 18px; flex: none; }
.division.sign ul li svg { color: var(--sign-600); }
.division.water ul li svg { color: var(--water-600); }

/* ---------- Feature cards grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .c-icon { width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; background: var(--bg-soft); color: var(--water-600); }
.card .c-icon svg { width: 28px; height: 28px; }
.card.sign-accent .c-icon { color: var(--sign-600); background: rgba(245,166,35,.10); }
.card h3 { margin-bottom: 8px; font-size: 1.14rem; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Product cards ---------- */
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .pc-visual { aspect-ratio: 4/3; display: grid; place-items: center; position: relative; overflow: hidden; }
.product-card .pc-visual svg.art { width: 68%; height: 68%; }
.product-card.sign  .pc-visual { background: linear-gradient(150deg, #fff5e2, #ffe9c4); }
.product-card.water .pc-visual { background: linear-gradient(150deg, #e4f7fe, #cfeffb); }
.product-card .pc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .pc-img { transform: scale(1.06); }
.product-card .pc-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,16,32,.28)); pointer-events: none; }
.product-card .pc-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.product-card .pc-tag { position: absolute; top: 14px; left: 14px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: rgba(255,255,255,.85); color: var(--navy); backdrop-filter: blur(4px); }
.product-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.product-card p { color: var(--muted); font-size: .92rem; margin: 0 0 16px; }
.product-card .pc-link { margin-top: auto; font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; color: var(--water-600); }
.product-card.sign .pc-link { color: var(--sign-600); }
.product-card .pc-link svg { width: 16px; height: 16px; transition: transform .2s; }
.product-card:hover .pc-link svg { transform: translateX(4px); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat .num { font-size: clamp(2.2rem,4vw,3rem); font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1; }
.stat .num .plus { color: var(--water); }
.stat .lbl { color: #93a8bc; margin-top: 8px; font-size: .92rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .s-num { counter-increment: step; font-size: 2.4rem; font-weight: 800; color: var(--bg-soft-2); line-height: 1; }
.step .s-num::before { content: counter(step,decimal-leading-zero); }
.step h3 { font-size: 1.08rem; margin: 6px 0 8px; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }
.step::after { content: ""; position: absolute; top: 46px; right: -14px; width: 28px; height: 2px; background: var(--line); z-index: 1; }
.step:last-child::after { display: none; }

/* ---------- Why / feature list ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { display: grid; gap: 22px; margin-top: 24px; }
.feature-item { display: flex; gap: 16px; }
.feature-item .fi-icon { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--bg-soft); color: var(--water-600); }
.feature-item .fi-icon svg { width: 24px; height: 24px; }
.feature-item h3 { font-size: 1.08rem; margin-bottom: 4px; }
.feature-item p { color: var(--muted); font-size: .94rem; margin: 0; }

.media-frame {
  border-radius: 22px; overflow: hidden; position: relative; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg,#0e335c,#0a2540); aspect-ratio: 5/6; padding: 30px;
  display: flex; flex-direction: column; justify-content: space-between; color: #fff;
  border: 1px solid rgba(255,255,255,.1);
}
.media-frame.map { aspect-ratio: 5/6; }

/* Photo frame utility */
.photo-frame { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; background: var(--bg-soft-2); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame.tall { aspect-ratio: 4/5; }
.photo-frame.wide { aspect-ratio: 16/10; }
.photo-frame .pf-cap { position: absolute; left: 16px; bottom: 16px; right: 16px; z-index: 2; color: #fff; font-weight: 700; font-size: 1.02rem; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6,14,28,.7)); pointer-events: none; }
.photo-frame.plain::after { display: none; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 14px; }
.photo-grid .photo-frame { aspect-ratio: 1/1; }
.photo-grid .span2 { grid-column: span 2; aspect-ratio: 16/7; }

/* ---------- CTA band ---------- */
.cta {
  background:
    radial-gradient(700px 300px at 90% 10%, rgba(18,181,229,.22), transparent 60%),
    radial-gradient(600px 320px at 5% 90%, rgba(245,166,35,.18), transparent 60%),
    linear-gradient(120deg,#0A2540,#123a63);
  color: #fff; border-radius: 26px; padding: clamp(40px,6vw,68px); text-align: center; position: relative; overflow: hidden;
}
.cta h2 { color: #fff; }
.cta p { color: #bcd0e2; max-width: 620px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta .hero-actions { justify-content: center; }

/* ---------- Locations ---------- */
.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.location {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.location:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.location .loc-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; }
.location.us .loc-badge  { background: rgba(245,166,35,.12); color: var(--sign-600); }
.location.cn .loc-badge  { background: rgba(18,181,229,.12); color: var(--water-600); }
.location h3 { font-size: 1.3rem; margin-bottom: 4px; }
.location .loc-row { display: flex; gap: 12px; align-items: flex-start; margin-top: 14px; color: var(--body); font-size: .96rem; }
.location .loc-row svg { width: 20px; height: 20px; color: var(--muted); flex: none; margin-top: 2px; }
.location .loc-row a:hover { color: var(--water-600); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.contact-info-card { display: grid; gap: 18px; }
.ci-item { display: flex; gap: 15px; align-items: flex-start; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.ci-item .ci-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff; display: grid; place-items: center; flex: none; }
.ci-item .ci-ic svg { width: 22px; height: 22px; }
.ci-item h4 { margin: 0 0 3px; color: var(--ink); font-size: 1rem; }
.ci-item p, .ci-item a { margin: 0; color: var(--muted); font-size: .94rem; }
.ci-item a:hover { color: var(--water-600); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .97rem; color: var(--ink); background: #fdfefe; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--water); box-shadow: 0 0 0 3px rgba(18,181,229,.15); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; padding: 14px 18px; border-radius: 10px; background: #e7f8ef; color: #1a7a48; font-weight: 600; font-size: .92rem; margin-bottom: 18px; border: 1px solid #bfe9d1; }
.form-success.show { display: block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(800px 400px at 85% -20%, rgba(18,181,229,.18), transparent 60%),
    linear-gradient(180deg,#0A2540,#0e335c);
  color: #cfe0ee; padding: clamp(56px,7vw,92px) 0 clamp(52px,6vw,80px); position: relative; overflow: hidden;
}
.page-hero .ph-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .20; z-index: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #a9c0d4; max-width: 620px; font-size: 1.12rem; margin: 0; }
.breadcrumb { font-size: .86rem; color: #7f9ab1; margin-bottom: 16px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; opacity: .6; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.acc-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-family: inherit; font-weight: 700; font-size: 1.02rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc-q .chev { transition: transform .25s; flex: none; color: var(--water-600); }
.acc-item.open .acc-q .chev { transform: rotate(180deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc-a p { padding: 0 24px 20px; margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; position: relative; }
.quote-card .stars { color: var(--sign); letter-spacing: 2px; margin-bottom: 12px; }
.quote-card p { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; }
.quote-card .who b { color: var(--ink); display: block; font-size: .95rem; }
.quote-card .who span { color: var(--muted); font-size: .84rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #9fb4c7; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { color: #9fb4c7; font-size: .93rem; transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer .f-about img { width: 190px; height: auto; margin-bottom: 18px; background: #fff; padding: 12px 14px; border-radius: 14px; }
.footer .f-about p { font-size: .92rem; color: #8ba2b6; max-width: 300px; }
.footer .f-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.footer .f-contact svg { width: 17px; height: 17px; flex: none; margin-top: 3px; opacity: .8; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--water); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; color: #7e93a6; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Back to top ---------- */
.to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(12px); transition: .25s; z-index: 90; border: none; cursor: pointer; }
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .divisions, .locations, .grid-4, .stats-band, .grid-2 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-visual { max-width: 460px; }
}
@media (max-width: 760px) {
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 76px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px 20px 22px; box-shadow: var(--shadow-lg);
  }
  .nav-menu.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 16px; }
  .nav-menu.open .has-dd > a::after { display: none; }
  .grid-3, .grid-4, .divisions, .locations, .stats-band, .grid-2, .steps { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: 1fr 1fr; max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-info { display: none; }
  .trustbar .container { justify-content: flex-start; }
  h1 { font-size: 2.1rem; }
}
@media (max-width: 420px) {
  .hero-stats { gap: 22px; }
  .hero-visual { grid-template-columns: 1fr; }
  .hero-card.water { margin-top: 0; }
}
