/* ==========================================================================
   ASTELLAZ PHARMACEUTICALS — Design System & Stylesheet
   Brand: Blue #0B6FB4 / Orange #F2791D / Navy #16264F
   ========================================================================== */

/* ---------- 1. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
svg { display: block; }

/* ---------- 2. Design Tokens ---------- */
:root{
  /* Brand colors sampled from the official Astellaz logo */
  --blue-900:#0A2E52;
  --blue-700:#0B4E85;
  --blue-600:#0B6FB4;
  --blue-500:#1583D6;
  --blue-100:#E7F2FB;
  --blue-50:#F3F9FD;

  --orange-700:#C2590F;
  --orange-600:#E06A13;
  --orange-500:#F2791D;
  --orange-400:#F6934A;
  --orange-100:#FDEBDC;

  --navy-900:#0F1E3D;
  --navy-800:#16264F;
  --navy-600:#324371;

  --ink-900:#151B26;
  --ink-700:#3A4457;
  --ink-500:#657085;
  --ink-300:#9AA5B7;

  --white:#FFFFFF;
  --bg-soft:#F6F9FC;
  --bg-alt:#EEF4FA;
  --border:#E1E8F0;

  --green-600:#1E9E5A;
  --green-100:#E5F7ED;
  --red-600:#D64545;

  --font-head:'Poppins', 'Segoe UI', sans-serif;
  --font-body:'Inter', 'Segoe UI', sans-serif;

  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --radius-pill:999px;

  --shadow-sm: 0 2px 8px rgba(15,30,61,.06);
  --shadow-md: 0 10px 30px rgba(15,30,61,.10);
  --shadow-lg: 0 20px 50px rgba(15,30,61,.16);

  --container: 1220px;
  --header-h: 84px;
}

/* ---------- 3. Base Typography ---------- */
body{
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4{
  font-family: var(--font-head);
  color: var(--navy-800);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 700; }
h2{ font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3{ font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4{ font-size: 1.1rem; }
p{ margin-bottom: 1rem; color: var(--ink-500); }
strong{ color: var(--ink-900); font-weight: 600; }

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
section{ padding: 88px 0; }
@media (max-width: 780px){ section{ padding: 56px 0; } }

.section-head{ max-width: 700px; margin-bottom: 48px; }
.section-head.center{ margin-inline: auto; text-align: center; }
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-600); background: var(--orange-100);
  padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.eyebrow::before{ content:''; width:6px; height:6px; border-radius:50%; background: var(--orange-500); }
.section-head p{ font-size: 1.05rem; margin-top: 12px; }
.bg-soft{ background: var(--bg-soft); }
.bg-navy{ background: linear-gradient(160deg, var(--navy-900), var(--blue-900) 120%); color: #C9D6EA; }
.bg-navy h2, .bg-navy h3{ color: #fff; }
.bg-navy p{ color: #AFC0DA; }

/* ---------- 4. Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content:center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  padding: 14px 28px; border-radius: var(--radius-pill);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  white-space: nowrap; border: 2px solid transparent;
}
.btn svg{ width: 18px; height: 18px; flex: none; }
.btn-primary{ background: var(--orange-500); color: #fff; box-shadow: 0 10px 24px rgba(242,121,29,.32); }
.btn-primary:hover{ background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(242,121,29,.4); }
.btn-blue{ background: var(--blue-600); color: #fff; box-shadow: 0 10px 24px rgba(11,111,180,.3); }
.btn-blue:hover{ background: var(--blue-700); transform: translateY(-2px); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover{ background: rgba(255,255,255,.12); border-color:#fff; }
.btn-outline-navy{ background: transparent; border-color: var(--border); color: var(--navy-800); }
.btn-outline-navy:hover{ border-color: var(--blue-600); color: var(--blue-600); }
.btn-ghost{ background: var(--blue-100); color: var(--blue-700); }
.btn-ghost:hover{ background: var(--blue-600); color: #fff; }
.btn-sm{ padding: 10px 20px; font-size: .86rem; }
.btn-block{ width: 100%; }

/* ---------- 5. Header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled{ box-shadow: 0 6px 24px rgba(15,30,61,.08); border-color: var(--border); }

.topbar{
  background: var(--navy-900); color: #B9C6DF; font-size: .82rem;
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; height: 40px; }
.topbar-links{ display:flex; gap: 22px; }
.topbar a{ display:inline-flex; align-items:center; gap:6px; }
.topbar a:hover{ color:#fff; }
.topbar svg{ width:14px; height:14px; }
.topbar-social{ display:flex; gap:12px; }
.topbar-social a{ width:26px; height:26px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; }
.topbar-social svg{ width:13px; height:13px; }
.topbar-social a:hover{ background: var(--orange-500); }

.navbar{ height: var(--header-h); display:flex; align-items:center; justify-content:space-between; }
.brand{ display:flex; align-items:center; gap:12px; flex:none; }
.brand img{ height: 46px; width:auto; }
.brand-word{ font-family: var(--font-head); line-height:1.05; }
.brand-word b{ display:block; font-size: 1.28rem; font-weight:700; letter-spacing:.03em; color: var(--navy-800); }
.brand-word span{ display:block; font-size: .66rem; font-weight:600; letter-spacing:.14em; color: var(--orange-600); }

.nav-main{ display:flex; align-items:center; gap: 2px; }
.nav-main a{
  font-family: var(--font-head); font-weight:600; font-size:.95rem; color: var(--ink-700);
  padding: 10px 16px; border-radius: var(--radius-pill); position:relative; transition: color .2s ease, background .2s ease;
}
.nav-main a:hover{ color: var(--blue-600); background: var(--blue-50); }
.nav-main a.active{ color: var(--blue-600); background: var(--blue-100); }
.nav-actions{ display:flex; align-items:center; gap:12px; }
.nav-actions .btn{ padding: 12px 22px; }
.nav-call{ display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:600; color: var(--navy-800); }
.nav-call .ico-circle{ width:40px; height:40px; border-radius:50%; background: var(--blue-100); display:flex; align-items:center; justify-content:center; flex:none; }
.nav-call .ico-circle svg{ width:18px; height:18px; color: var(--blue-600); }
.nav-call small{ display:block; font-size:.7rem; font-weight:500; color: var(--ink-500); }

.nav-toggle{ display:none; flex-direction:column; gap:5px; width:40px; height:40px; align-items:center; justify-content:center; }
.nav-toggle span{ width:22px; height:2px; background: var(--navy-800); border-radius:2px; transition: all .25s ease; }

@media (max-width: 1080px){
  .nav-main, .nav-call{ display:none; }
  .nav-toggle{ display:flex; }
  .topbar-links span.hide-sm{ display:none; }
}

/* Mobile drawer */
.mobile-drawer{
  position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); height: 100vh;
  background: #fff; z-index: 900; transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1); box-shadow: -20px 0 60px rgba(0,0,0,.25);
  display:flex; flex-direction:column; padding: 26px 22px; overflow-y:auto;
}
.mobile-drawer.open{ transform: translateX(0); }
.drawer-overlay{ position: fixed; inset:0; background: rgba(15,25,50,.5); z-index:890; opacity:0; pointer-events:none; transition: opacity .3s ease; }
.drawer-overlay.open{ opacity:1; pointer-events:auto; }
.drawer-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 26px; }
.drawer-close{ width:38px; height:38px; border-radius:50%; background: var(--bg-soft); display:flex; align-items:center; justify-content:center; }
.mobile-drawer nav{ display:flex; flex-direction:column; gap:2px; }
.mobile-drawer nav a{ padding: 14px 6px; font-family:var(--font-head); font-weight:600; font-size:1.05rem; color: var(--navy-800); border-bottom: 1px solid var(--border); }
.mobile-drawer nav a.active{ color: var(--blue-600); }
.drawer-cta{ margin-top: 24px; display:flex; flex-direction:column; gap:12px; }
.drawer-contact{ margin-top:auto; padding-top:20px; border-top:1px solid var(--border); font-size:.9rem; color: var(--ink-500); }
.drawer-contact a{ color: var(--blue-600); font-weight:600; }

/* ---------- 6. Hero ---------- */
.hero{
  position: relative; overflow:hidden;
  background: radial-gradient(ellipse 90% 80% at 80% -10%, #DCEDFA 0%, transparent 60%), linear-gradient(180deg, #FBFDFF 0%, #F3F8FC 100%);
  padding: 72px 0 100px;
}
.hero .container{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items:center; }
.hero-badge{
  display:inline-flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--border);
  padding: 8px 18px 8px 8px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); margin-bottom:22px;
}
.hero-badge .dot-icon{ width:30px; height:30px; border-radius:50%; background: var(--green-100); display:flex; align-items:center; justify-content:center; }
.hero-badge .dot-icon svg{ width:15px; height:15px; color: var(--green-600); }
.hero-badge span{ font-family: var(--font-head); font-weight:600; font-size:.82rem; color: var(--navy-800); }
.hero h1{ margin-bottom:20px; }
.hero h1 em{ font-style:normal; color: var(--blue-600); position:relative; }
.hero-lead{ font-size:1.15rem; max-width:540px; margin-bottom: 30px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:16px; margin-bottom:44px; }
.hero-stats{ display:flex; gap:36px; flex-wrap:wrap; }
.hero-stats div b{ display:block; font-family:var(--font-head); font-size:1.9rem; font-weight:700; color: var(--navy-800); }
.hero-stats div span{ font-size:.85rem; color: var(--ink-500); }

.hero-visual{ position:relative; }
.hero-visual .frame{
  border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg);
  border: 10px solid #fff; aspect-ratio: 4/4.6; background: linear-gradient(160deg, var(--blue-600), var(--navy-900));
  display:flex; align-items:center; justify-content:center; position:relative;
}
.hero-visual .frame img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.16; }
.hero-visual .frame .logo-mark{ width:56%; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }
.float-card{
  position:absolute; background:#fff; border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  padding: 14px 18px; display:flex; align-items:center; gap:12px; max-width:230px;
}
.float-card .ic{ width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex:none; }
.float-card b{ display:block; font-family:var(--font-head); font-size:.95rem; color:var(--navy-800); }
.float-card span{ font-size:.76rem; color: var(--ink-500); }
.float-card.card-1{ top: 8%; left: -8%; }
.float-card.card-1 .ic{ background: var(--orange-100); color:var(--orange-600); }
.float-card.card-2{ bottom: 10%; right: -10%; }
.float-card.card-2 .ic{ background: var(--blue-100); color:var(--blue-600); }
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-visual{ max-width: 420px; margin-inline:auto; }
  .float-card{ display:none; }
}

/* marquee strip */
.marquee-strip{ background: var(--navy-900); padding: 20px 0; overflow:hidden; }
.marquee-track{ display:flex; gap:64px; width:max-content; animation: marquee 28s linear infinite; }
.marquee-track span{ font-family: var(--font-head); font-weight:600; letter-spacing:.06em; text-transform:uppercase; font-size:.86rem; color:#8FA3C4; display:flex; align-items:center; gap:14px; }
.marquee-track span::before{ content:''; width:6px; height:6px; border-radius:50%; background: var(--orange-500); }
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ---------- 7. Cards / Grids ---------- */
.grid{ display:grid; gap: 26px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){ .grid-4{ grid-template-columns: repeat(2,1fr);} .grid-3{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px){ .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; } }

.card{ background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

/* division/feature cards */
.division-card{ padding: 34px 26px; text-align:left; }
.division-card .ic{ width:58px; height:58px; border-radius: 16px; display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.division-card .ic svg{ width:28px; height:28px; }
.division-card h3{ margin-bottom:10px; font-size:1.15rem; }
.division-card p{ font-size:.92rem; margin-bottom: 14px; }
.division-card a{ font-family:var(--font-head); font-weight:600; font-size:.85rem; color: var(--blue-600); display:inline-flex; align-items:center; gap:6px; }
.division-card a svg{ width:14px; height:14px; transition: transform .2s ease; }
.division-card a:hover svg{ transform: translateX(4px); }
.tone-1 .ic{ background: var(--blue-100); color: var(--blue-600); }
.tone-2 .ic{ background: var(--orange-100); color: var(--orange-600); }
.tone-3 .ic{ background: var(--green-100); color: var(--green-600); }
.tone-4 .ic{ background: #F4E9FF; color: #7C3AED; }
.tone-5 .ic{ background: #FFE9EE; color: #E0426B; }

/* why-choose feature list */
.feature-row{ display:flex; gap:18px; padding: 22px 0; border-bottom:1px solid var(--border); }
.feature-row:last-child{ border-bottom:none; }
.feature-row .ic{ width:48px; height:48px; border-radius:14px; background: var(--blue-100); color:var(--blue-600); display:flex; align-items:center; justify-content:center; flex:none; }
.feature-row .ic svg{ width:22px; height:22px; }
.feature-row h4{ margin-bottom:6px; }
.feature-row p{ font-size:.92rem; margin:0; }

/* stat tiles */
.stat-tile{ text-align:center; padding: 30px 18px; border-radius: var(--radius-md); background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); }
.stat-tile b{ display:block; font-family:var(--font-head); font-size:2.4rem; font-weight:700; color:#fff; }
.stat-tile span{ font-size:.85rem; color:#9FB3D1; }

/* ---------- 8. Product Cards ---------- */
.filter-bar{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 40px; }
.filter-chip{
  font-family: var(--font-head); font-weight:600; font-size:.86rem; padding: 10px 20px;
  border-radius: var(--radius-pill); border:1px solid var(--border); color: var(--ink-700); background:#fff;
  transition: all .2s ease;
}
.filter-chip:hover{ border-color: var(--blue-500); color: var(--blue-600); }
.filter-chip.active{ background: var(--navy-800); border-color: var(--navy-800); color:#fff; }

.product-card{ overflow:hidden; display:flex; flex-direction:column; }
.product-card .shot{ aspect-ratio: 16/12; background: var(--bg-soft); display:flex; align-items:center; justify-content:center; overflow:hidden; position:relative; }
.product-card .shot img{ width:100%; height:100%; object-fit:contain; padding:6px; transition: transform .4s ease; }
.product-card:hover .shot img{ transform: scale(1.05); }
.product-card .rx{ position:absolute; top:12px; left:12px; background:#fff; color: var(--red-600); font-weight:700; font-style:italic; font-size:.78rem; padding:4px 9px; border-radius:8px; box-shadow: var(--shadow-sm); }
.product-card .div-tag{ position:absolute; top:12px; right:12px; background: var(--navy-900); color:#fff; font-family:var(--font-head); font-size:.68rem; font-weight:600; letter-spacing:.04em; padding:5px 12px; border-radius: var(--radius-pill); }
.product-card .body{ padding: 22px; flex:1; display:flex; flex-direction:column; }
.product-card h3{ font-size:1.15rem; margin-bottom:4px; }
.product-card .pack{ font-size:.78rem; color: var(--ink-300); font-weight:600; margin-bottom:12px; text-transform:uppercase; letter-spacing:.04em;}
.product-card .comp{ font-size:.86rem; background: var(--bg-soft); border-radius:10px; padding:12px 14px; margin-bottom:14px; color: var(--ink-700); }
.product-card .tags{ display:flex; flex-wrap:wrap; gap:6px; margin-top:auto; }
.product-card .tags span{ font-size:.72rem; font-weight:600; background: var(--blue-50); color: var(--blue-700); padding:5px 10px; border-radius:var(--radius-pill); }
.product-card .tagline{ font-style:italic; color: var(--orange-600); font-weight:600; font-size:.88rem; margin-bottom: 10px; }

/* gallery / lightbox */
.gallery-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:22px; }
@media (max-width:720px){ .gallery-grid{ grid-template-columns:1fr; } }
.gallery-item{ position:relative; border-radius: var(--radius-md); overflow:hidden; cursor:zoom-in; box-shadow: var(--shadow-sm); border:1px solid var(--border); }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; display:block; }
.gallery-item:hover img{ transform: scale(1.04); }
.gallery-item .zoom-tag{ position:absolute; bottom:12px; right:12px; background: rgba(15,25,50,.75); color:#fff; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.gallery-item .zoom-tag svg{ width:16px; height:16px; }
.lightbox{ position:fixed; inset:0; background: rgba(10,18,36,.92); z-index:1000; display:none; align-items:center; justify-content:center; padding:40px; }
.lightbox.open{ display:flex; }
.lightbox img{ max-width:min(900px,92vw); max-height:88vh; border-radius:12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close{ position:absolute; top:26px; right:26px; width:46px; height:46px; border-radius:50%; background: rgba(255,255,255,.12); color:#fff; display:flex; align-items:center; justify-content:center; }
.lightbox-close svg{ width:20px; height:20px; }

/* ---------- 9. Timeline / About ---------- */
.split{ display:grid; grid-template-columns: .95fr 1.05fr; gap:60px; align-items:center; }
@media (max-width: 940px){ .split{ grid-template-columns:1fr; gap:34px; } }
.split.reverse .col-media{ order:2; }
.col-media img, .col-media .media-box{ border-radius: var(--radius-lg); }
.media-box{ position:relative; aspect-ratio: 6/5; border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--blue-600), var(--navy-900)); display:flex; align-items:center; justify-content:center; overflow:hidden; box-shadow: var(--shadow-lg); }
.media-box::after{ content:''; position:absolute; inset:0; background: radial-gradient(circle at 70% 20%, rgba(242,121,29,.35), transparent 55%); }
.media-box img{ width:46%; position:relative; z-index:1; filter: drop-shadow(0 16px 30px rgba(0,0,0,.35)); }
.media-ribbon{ position:absolute; bottom:20px; left:20px; right:20px; background: rgba(255,255,255,.1); backdrop-filter: blur(6px); border:1px solid rgba(255,255,255,.25); border-radius:14px; padding:14px 18px; color:#fff; font-family:var(--font-head); font-weight:600; z-index:2; text-align:center;}
.media-ribbon small{ display:block; font-weight:500; font-size:.72rem; color:#CFE0F5; margin-top:2px; }

.check-list{ display:flex; flex-direction:column; gap:14px; margin: 22px 0 28px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; font-size:.98rem; color: var(--ink-700); }
.check-list svg{ width:20px; height:20px; color: var(--green-600); flex:none; margin-top:2px; }

.timeline{ position:relative; padding-left: 34px; }
.timeline::before{ content:''; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background: var(--border); }
.timeline-item{ position:relative; padding-bottom: 34px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{ content:''; position:absolute; left:-34px; top:2px; width:20px; height:20px; border-radius:50%; background:#fff; border:4px solid var(--blue-600); }
.timeline-item b{ font-family:var(--font-head); color: var(--orange-600); font-size:.82rem; letter-spacing:.05em; text-transform:uppercase; }
.timeline-item h4{ margin: 4px 0 6px; }
.timeline-item p{ margin:0; font-size:.92rem; }

/* values grid */
.value-card{ padding:28px 24px; }
.value-card .num{ font-family: var(--font-head); font-size:.78rem; font-weight:700; color: var(--orange-500); letter-spacing:.08em; margin-bottom:14px; }

/* team */
.team-card{ text-align:center; padding: 32px 24px; }
.avatar{ width:92px; height:92px; border-radius:50%; margin:0 auto 18px; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:700; font-size:1.7rem; color:#fff; }
.team-card h4{ margin-bottom:2px; }
.team-card span{ display:block; font-size:.84rem; color: var(--orange-600); font-weight:600; margin-bottom:12px; }
.team-card p{ font-size:.88rem; }

/* certificate */
.cert-card{ display:flex; align-items:center; gap:18px; padding:24px; }
.cert-card .ic{ width:56px; height:56px; border-radius:14px; background: var(--blue-100); color:var(--blue-600); display:flex; align-items:center; justify-content:center; flex:none; }
.cert-card .ic svg{ width:26px; height:26px; }
.cert-card h4{ margin-bottom:4px; }
.cert-card p{ margin:0; font-size:.86rem; }

/* ---------- 10. Franchise page ---------- */
.perk-card{ padding:28px 24px; }
.perk-card .ic{ width:52px; height:52px; border-radius:14px; background: var(--orange-100); color: var(--orange-600); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.perk-card .ic svg{ width:24px; height:24px; }

.process-steps{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; counter-reset: step; }
@media (max-width:900px){ .process-steps{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:560px){ .process-steps{ grid-template-columns: 1fr;} }
.process-step{ position:relative; background:#fff; border:1px solid var(--border); border-radius: var(--radius-md); padding: 30px 22px; }
.process-step::before{ counter-increment: step; content: counter(step); font-family: var(--font-head); font-weight:700; font-size:1.1rem; width:38px; height:38px; border-radius:50%; background: var(--navy-900); color:#fff; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.process-step h4{ margin-bottom:8px; }
.process-step p{ font-size:.88rem; margin:0; }

.district-tags{ display:flex; flex-wrap:wrap; gap:10px; }
.district-tags span{ background:#fff; border:1px solid var(--border); padding:9px 18px; border-radius: var(--radius-pill); font-size:.86rem; font-weight:600; color: var(--navy-800); }

/* ---------- 11. Forms ---------- */
.form-card{ background:#fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; border:1px solid var(--border); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
@media (max-width:600px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom: 20px; }
.field label{ display:block; font-family:var(--font-head); font-weight:600; font-size:.86rem; color: var(--navy-800); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding: 13px 16px; border-radius:10px; border:1.5px solid var(--border);
  background: var(--bg-soft); color: var(--ink-900); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--blue-500); background:#fff; }
.field textarea{ resize: vertical; min-height: 120px; }
.field-note{ font-size:.78rem; color: var(--ink-300); margin-top:6px; }
.hp-field{ position:absolute; left:-9999px; opacity:0; }

/* ---------- 12. Info tiles (contact) ---------- */
.info-tile{ display:flex; gap:16px; padding: 24px; }
.info-tile .ic{ width:50px; height:50px; border-radius:14px; background: var(--blue-100); color: var(--blue-600); display:flex; align-items:center; justify-content:center; flex:none; }
.info-tile .ic svg{ width:22px; height:22px; }
.info-tile h4{ margin-bottom:6px; }
.info-tile p{ margin:0; font-size:.9rem; }
.map-frame{ border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--border); box-shadow: var(--shadow-md); }
.map-frame iframe{ width:100%; height: 380px; border:0; display:block; }

/* ---------- 13. Testimonials ---------- */
.testi-card{ padding: 30px 26px; }
.testi-card .stars{ display:flex; gap:4px; margin-bottom:16px; color: var(--orange-500); }
.testi-card .stars svg{ width:16px; height:16px; }
.testi-card p{ font-size:.98rem; color: var(--ink-700); font-style:italic; }
.testi-who{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.testi-who .av{ width:44px; height:44px; border-radius:50%; background: var(--navy-800); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:700; }
.testi-who b{ display:block; font-size:.92rem; color: var(--navy-800); }
.testi-who span{ font-size:.78rem; color: var(--ink-300); }

/* ---------- 14. FAQ ---------- */
.faq-item{ border-bottom: 1px solid var(--border); }
.faq-q{ width:100%; display:flex; justify-content:space-between; align-items:center; gap:18px; padding: 22px 4px; text-align:left; font-family:var(--font-head); font-weight:600; color: var(--navy-800); font-size:1.02rem; }
.faq-q .plus{ width:30px; height:30px; border-radius:50%; background: var(--blue-100); color: var(--blue-600); display:flex; align-items:center; justify-content:center; flex:none; transition: transform .3s ease, background .3s ease, color .3s ease; }
.faq-q .plus svg{ width:14px; height:14px; }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); background: var(--navy-900); color:#fff; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .35s ease; }
.faq-a p{ padding: 0 4px 22px; margin:0; font-size:.94rem; }

/* ---------- 15. CTA band ---------- */
.cta-band{ position:relative; border-radius: var(--radius-lg); overflow:hidden; padding: 60px; background: linear-gradient(120deg, var(--blue-700), var(--navy-900)); display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-band::after{ content:''; position:absolute; inset:0; background: radial-gradient(circle at 90% 10%, rgba(242,121,29,.35), transparent 55%); pointer-events:none; }
.cta-band h2{ color:#fff; margin-bottom:10px; position:relative; }
.cta-band p{ color:#C7D6EC; margin:0; max-width:480px; position:relative; }
.cta-band .cta-actions{ display:flex; gap:14px; flex-wrap:wrap; position:relative; }
@media (max-width:780px){ .cta-band{ padding: 40px 26px; } }

/* ---------- 16. Footer ---------- */
.site-footer{ background: var(--navy-900); color: #A9B9D6; padding-top: 76px; }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom:1px solid rgba(255,255,255,.1); }
@media (max-width: 940px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.footer-brand img{ height:38px; }
.footer-brand b{ font-family: var(--font-head); color:#fff; font-size:1.1rem; }
.site-footer p{ color:#8FA0C2; font-size:.92rem; }
.site-footer h4{ color:#fff; font-size:.95rem; margin-bottom:20px; letter-spacing:.03em; }
.footer-links{ display:flex; flex-direction:column; gap:12px; }
.footer-links a{ font-size:.92rem; color:#A9B9D6; transition: color .2s ease, padding .2s ease; }
.footer-links a:hover{ color:#fff; padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; font-size:.9rem; margin-bottom:16px; align-items:flex-start; }
.footer-contact svg{ width:18px; height:18px; color: var(--orange-500); flex:none; margin-top:2px; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:16px; height:16px; }
.footer-social a:hover{ background: var(--orange-500); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 22px 0; font-size:.82rem; color:#7488AC; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color:#7488AC; }
.footer-bottom a:hover{ color:#fff; }
.footer-legal{ display:flex; gap:18px; }

/* floating action buttons */
.fab-stack{ position:fixed; right:22px; bottom:22px; z-index:600; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
.fab{ width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-lg); transition: transform .2s ease; }
.fab:hover{ transform: scale(1.08); }
.fab svg{ width:26px; height:26px; }
.fab-wa{ background:#25D366; color:#fff; }
.fab-call{ background: var(--blue-600); color:#fff; }
.fab-top{ background:#fff; color: var(--navy-800); border:1px solid var(--border); width:44px; height:44px; opacity:0; pointer-events:none; transform: translateY(10px); }
.fab-top.show{ opacity:1; pointer-events:auto; transform:none; }
.fab-top svg{ width:18px; height:18px; }

/* breadcrumb / page header */
.page-header{ background: linear-gradient(160deg, var(--navy-900), var(--blue-900) 130%); padding: 62px 0 56px; position:relative; overflow:hidden; }
.page-header::after{ content:''; position:absolute; inset:0; background: radial-gradient(circle at 85% 20%, rgba(242,121,29,.28), transparent 55%); }
.page-header .container{ position:relative; }
.breadcrumb{ display:flex; gap:8px; align-items:center; font-size:.85rem; color:#9FB3D1; margin-bottom:16px; }
.breadcrumb a:hover{ color:#fff; }
.breadcrumb svg{ width:12px; height:12px; }
.page-header h1{ color:#fff; margin-bottom:12px; }
.page-header p{ color:#B9CAE5; max-width:560px; margin:0; }

/* misc utility */
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.text-center{ text-align:center; }
.tag-pill{ display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:5px 12px; border-radius: var(--radius-pill); }
.pill-blue{ background: var(--blue-100); color: var(--blue-700); }
.pill-orange{ background: var(--orange-100); color: var(--orange-700); }
.pill-green{ background: var(--green-100); color: var(--green-600); }
.divider{ height:1px; background: var(--border); margin: 60px 0; }
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
.skip-link{ position:absolute; left:-999px; top:0; background:#fff; padding:12px 20px; z-index:2000; border-radius:0 0 10px 0; }
.skip-link:focus{ left:0; }

/* trust logos strip */
.trust-strip{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:14px 40px; opacity:.9; }
.trust-strip .titem{ display:flex; align-items:center; gap:10px; font-family:var(--font-head); font-weight:700; color: var(--navy-600); font-size:.92rem; }
.trust-strip svg{ width:22px; height:22px; color: var(--blue-600); }

/* legal / prose content */
.prose{ max-width: 820px; }
.prose h2{ margin-top: 42px; margin-bottom: 14px; }
.prose h2:first-child{ margin-top:0; }
.prose p{ font-size: .98rem; }
.prose ul{ list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.prose ul li{ font-size: .98rem; color: var(--ink-500); margin-bottom: 8px; }
.prose .updated{ color: var(--ink-300); font-size: .86rem; margin-bottom: 30px; display:block; }

/* 404 */
.error-page{ min-height: 60vh; display:flex; align-items:center; justify-content:center; text-align:center; padding: 80px 20px; }
.error-page b{ font-family: var(--font-head); font-size: 7rem; color: var(--blue-100); display:block; line-height:1; }
