:root{
  --bg:#f4fbf8;
  --bg-2:#edf9f3;
  --surface:rgba(255,255,255,.78);
  --surface-strong:#ffffff;
  --surface-dark:#0f172a;
  --ink:#0f172a;
  --muted:#5b6478;
  --line:rgba(148,163,184,.24);
  --brand:#0f766e;
  --brand-2:#14b8a6;
  --brand-3:#0891b2;
  --accent:#22c55e;
  --success:#10b981;
  --shadow:0 20px 60px rgba(15,23,42,.10);
  --shadow-soft:0 10px 30px rgba(15,118,110,.12);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
  --container:min(1260px,calc(100% - 32px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at top left,rgba(15,118,110,.13),transparent 30%),
    radial-gradient(circle at top right,rgba(20,184,166,.13),transparent 24%),
    linear-gradient(180deg,var(--bg) 0%,#f9fffc 42%,#eef8f3 100%);
  font:16px/1.7 "Segoe UI",Inter,Arial,sans-serif;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:var(--container);margin:0 auto}
h1,h2,h3{
  margin:0 0 14px;
  line-height:1.02;
  font-family:Inter,"Segoe UI",Arial,sans-serif;
  letter-spacing:-.03em;
}
h1{font-size:clamp(2.7rem,5vw,5.5rem);font-weight:800}
h2{font-size:clamp(2rem,3vw,3.5rem);font-weight:780}
h3{font-size:1.35rem;font-weight:760}
p{margin:0 0 16px;color:var(--muted)}
strong{color:var(--ink)}

.site-header{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(18px);
  background:rgba(243,247,251,.76);
  border-bottom:1px solid rgba(255,255,255,.45);
}
.nav-shell{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.brand-mark{
  width:54px;
  height:54px;
  border-radius:20px;
  display:grid;
  place-items:center;
  font-weight:800;
  color:#fff;
  letter-spacing:.08em;
  background:linear-gradient(135deg,var(--brand),var(--brand-2) 58%,var(--brand-3));
  box-shadow:0 12px 26px rgba(15,118,110,.22);
}
.brand strong{display:block;font-size:1.08rem}
.brand small{
  display:block;
  color:var(--muted);
  font-size:.87rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.main-nav,.nav-actions,.hero-actions,.button-row,.footer-bottom,.keyword-row,.hero-metrics,.chip-row{
  display:flex;
  gap:12px;
}
.hero-actions{
  margin:22px 0 0;
  align-items:center;
  flex-wrap:wrap;
}
.main-nav{align-items:center}
.main-nav a,.nav-pill,.nav-cta,.primary-button,.secondary-button,.ghost-button,.card-link,.menu-toggle,.signature-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  cursor:pointer;
  font:inherit;
  font-weight:700;
  transition:.22s ease;
}
.main-nav a{
  padding:10px 2px;
  color:#334155;
  background:transparent;
}
.nav-pill,.ghost-button{
  background:rgba(255,255,255,.72);
  border-color:rgba(148,163,184,.24);
  color:var(--ink);
}
.nav-cta,.primary-button{
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2) 48%,var(--brand-3));
  box-shadow:var(--shadow-soft);
}
.secondary-button{
  background:#f8fafc;
  color:var(--brand);
  border-color:rgba(37,99,235,.18);
}
.card-link{
  background:#fff;
  border-color:rgba(148,163,184,.22);
  color:var(--ink);
}
.menu-toggle{display:none;background:#fff}
.main-nav a:hover,.nav-pill:hover,.nav-cta:hover,.primary-button:hover,.secondary-button:hover,.ghost-button:hover,.card-link:hover,.menu-toggle:hover,.signature-badge:hover{
  transform:translateY(-2px);
}

main{overflow:hidden}
.hero-section,.province-hero{
  position:relative;
  padding:40px 0 24px;
}
.hero-orb{
  position:absolute;
  border-radius:999px;
  filter:blur(18px);
  opacity:.8;
  pointer-events:none;
}
.hero-orb-a{
  width:220px;
  height:220px;
  top:36px;
  right:6%;
  background:rgba(15,118,110,.18);
}
.hero-orb-b{
  width:180px;
  height:180px;
  top:220px;
  left:4%;
  background:rgba(20,184,166,.16);
}

.hero-grid,.province-hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:24px;
  align-items:start;
}

.hero-copy,.section-card,.service-card,.province-card,.side-card,.district-card,.table-card,.faq-grid details,.process-card,.offer-ribbon,.media-card,.province-copy,.floating-note{
  background:var(--surface);
  border:1px solid rgba(255,255,255,.58);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}
.hero-copy,.province-copy,.section-card,.service-card,.province-card,.side-card,.district-card,.table-card,.faq-grid details,.process-card,.offer-ribbon{
  padding:28px;
}
.hero-copy{
  position:relative;
  overflow:hidden;
  min-height:100%;
  background:
    radial-gradient(circle at top right,rgba(255,255,255,.16),transparent 28%),
    linear-gradient(135deg,#082f2d 0%,#0f766e 46%,#22c55e 100%);
  color:#eff6ff;
}
.hero-copy::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.08),transparent 42%);
  pointer-events:none;
}
.hero-copy>*{position:relative}
.hero-copy p,.hero-copy strong{color:#dbeafe}
.hero-side-panel{
  position:relative;
  width:100%;
  margin:10px 0 0;
  padding:26px;
  border-radius:30px;
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(241,250,248,.92));
  border:1px solid rgba(148,163,184,.18);
  box-shadow:0 24px 60px rgba(15,23,42,.12);
  backdrop-filter:blur(16px);
  display:grid;
  gap:18px;
}
.hero-side-panel::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  border-radius:30px 30px 0 0;
  background:linear-gradient(90deg,var(--brand),var(--brand-2),var(--brand-3));
}
.eyebrow{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color:#bfdbfe;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.75rem;
  margin-bottom:18px;
}
.hero-kicker{
  margin:0 0 18px;
  font-size:clamp(1rem,1.4vw,1.2rem);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#bfdbfe;
}
.hero-copy h2{
  font-size:clamp(2.3rem,4.35vw,4.8rem);
  font-weight:800;
  margin:0 0 14px;
}
.highlight-word{color:#fff}
.keyword-row,.chip-row,.hero-metrics{flex-wrap:wrap}
.keyword-pill,.chip-row span{
  display:inline-flex;
  align-items:center;
  padding:9px 13px;
  border-radius:999px;
  font-size:.84rem;
  font-weight:700;
}
.keyword-pill{
  color:#0f172a;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(15,118,110,.14);
  box-shadow:0 8px 20px rgba(15,23,42,.05);
}
.province-copy .keyword-pill{
  color:#0f172a;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(15,118,110,.18);
}
.chip-row span{
  color:var(--ink);
  background:rgba(255,255,255,.84);
  border:1px solid rgba(148,163,184,.18);
}
.hero-side-panel .hero-metrics{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.hero-metrics article{
  min-width:0;
  padding:18px 18px 16px;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff,rgba(239,248,246,.92));
  border:1px solid rgba(15,118,110,.12);
}
.hero-metrics strong{
  display:block;
  margin-bottom:6px;
  font-size:1.8rem;
  color:var(--brand);
}
.hero-metrics span{
  color:#425466;
  font-weight:600;
}

.hero-stack{position:relative;display:grid;gap:18px}
.media-card{
  padding:0;
  overflow:hidden;
  min-height:380px;
  background:#dbeafe;
}
.media-card img,.image-callout img,.dark-card img{width:100%;height:100%;object-fit:cover}
.spotlight-card{border-radius:36px}
.floating-note{
  position:absolute;
  max-width:220px;
  padding:16px 18px;
}
.floating-note strong{
  display:block;
  margin-bottom:4px;
  font-size:.84rem;
  color:var(--brand);
}
.floating-note span{font-weight:700;color:var(--ink)}
.note-a{top:34px;right:-6px}
.note-b{
  left:-6px;
  top:300px;
  bottom:auto;
}

.hero-copy .hero-actions .ghost-button{
  background:rgba(255,255,255,.92);
  border-color:rgba(255,255,255,.42);
}

.offer-ribbon{
  margin-top:24px;
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:22px;
  background:linear-gradient(135deg,rgba(255,255,255,.74),rgba(255,255,255,.94));
}
.offer-copy span,.section-label{
  display:inline-block;
  margin-bottom:10px;
  color:var(--brand);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.74rem;
  font-weight:800;
}
.offer-panel{
  padding:24px;
  border-radius:26px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(148,163,184,.18);
}
.stat-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:22px;
}
.stat-tile{
  padding:18px;
  border-radius:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(240,253,250,.84));
  border:1px solid rgba(15,118,110,.12);
  box-shadow:0 12px 30px rgba(15,23,42,.06);
}
.stat-tile strong{
  display:block;
  margin-bottom:6px;
  color:var(--brand);
  font-size:1.45rem;
}
.stat-tile span{
  color:#4b5563;
  font-weight:600;
}
.visual-card{
  padding:0;
  overflow:hidden;
}
.visual-card img{
  width:100%;
  height:100%;
  min-height:240px;
  object-fit:cover;
}
.offer-form{display:grid;gap:12px}
.field-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
label{
  display:grid;
  gap:8px;
  font-weight:700;
  color:var(--ink);
}
input,select,textarea{
  width:100%;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(148,163,184,.24);
  background:rgba(255,255,255,.92);
  color:var(--ink);
  font:inherit;
}
textarea{min-height:124px;resize:vertical}
input:focus,select:focus,textarea:focus{
  outline:3px solid rgba(37,99,235,.14);
  border-color:rgba(37,99,235,.34);
}
.form-status{min-height:24px;font-weight:700;color:var(--brand)}

.section{padding:42px 0}
.province-hero + .section,
.province-hero + .section + .section,
.province-hero + .section + .section + .section,
.province-hero + .section + .section + .section + .section,
.province-hero + .section + .section + .section + .section + .section,
.province-hero + .section + .section + .section + .section + .section + .section{
  padding-top:56px;
}
.mosaic-grid,.pricing-shell,.info-grid,.service-grid,.province-grid,.district-grid,.faq-grid,.footer-grid,.process-grid{
  display:grid;
  gap:20px;
}
.mosaic-grid{
  grid-template-columns:1.1fr .9fr;
  grid-template-areas:
    "intro image"
    "signal image";
}
.intro-card{grid-area:intro}
.image-callout{
  grid-area:image;
  padding:0;
  overflow:hidden;
}
.signal-card{grid-area:signal}
.pricing-shell,.info-grid{grid-template-columns:1fr 1fr}
.service-grid{grid-template-columns:repeat(3,1fr)}
.province-grid{grid-template-columns:repeat(3,1fr)}
.province-grid-featured{grid-template-columns:repeat(2,1fr)}
.district-grid,.faq-grid,.process-grid{grid-template-columns:repeat(3,1fr)}
section.pricing-shell,
section.info-grid{
  display:block;
}

.section-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.with-search{align-items:center}
.search-box{min-width:260px;color:var(--ink)}
.search-box input{margin-top:8px}

.service-card,.province-card,.district-card,.process-card,.section-card,.side-card,.table-card,.faq-grid details{
  background:rgba(255,255,255,.76);
}
.service-card h3,.province-card h3,.district-card h3{margin-bottom:10px}
.vibrant-card:nth-child(1){border-color:rgba(37,99,235,.18)}
.vibrant-card:nth-child(2){border-color:rgba(6,182,212,.18)}
.vibrant-card:nth-child(3){border-color:rgba(124,58,237,.18)}

.province-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
}
.hero-card:nth-child(3n+1){background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(239,246,255,.86))}
.hero-card:nth-child(3n+2){background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(236,254,255,.86))}
.hero-card:nth-child(3n+3){background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(245,243,255,.86))}

.bullet-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.bullet-list li{margin-bottom:8px}

.pricing-story{
  background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(239,246,255,.82));
}
.dark-card{
  padding:0;
  overflow:hidden;
  background:linear-gradient(145deg,#072f2c,#0f766e 56%,#14b8a6);
}

.site-footer{
  margin-top:40px;
  background:linear-gradient(180deg,#0f172a 0%,#111c35 100%);
  color:#eff6ff;
}
.footer-grid{
  grid-template-columns:1.24fr 1fr 1fr;
  padding:34px 0 24px;
}
.site-footer p,.footer-list li,.footer-list a,.footer-bottom,.footer-bottom-copy{color:#cbd5e1}
.footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.footer-bottom{
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:14px 0 22px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-bottom-copy{
  font-weight:600;
}
.signature-badge{
  gap:7px;
  padding:6px 11px;
  font-size:11px;
  color:#111827!important;
  background:#f4b400;
  position:relative;
  overflow:hidden;
  box-shadow:none;
}
.signature-badge::before{
  content:"";
  position:absolute;
  inset:0;
  left:-100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.44),transparent);
  animation:signature-shine 3s infinite;
}
.signature-dot{
  width:6px;
  height:6px;
  border-radius:999px;
  background:#111827;
  animation:signature-pulse 1.5s infinite;
}

.province-copy{
  background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(239,252,247,.82));
}
.province-side{
  display:grid;
  gap:8px;
}
.accent-card{
  background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(241,253,248,.84));
}
.back-link{
  display:inline-flex;
  margin-bottom:16px;
  color:var(--brand);
  font-weight:700;
}
.province-copy > .back-link,
.offer-copy > .back-link{
  display:none;
}
.province-copy > .eyebrow{
  display:none;
}
.offer-copy .stat-strip{
  margin-top:18px;
}
.breadcrumb-nav{
  margin:0 0 18px;
}
.breadcrumb-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}
.breadcrumb-list li{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:.92rem;
}
.breadcrumb-list li:not(:last-child)::after{
  content:"/";
  color:rgba(15,118,110,.45);
}
.breadcrumb-list a{
  color:var(--brand);
  font-weight:700;
}
.breadcrumb-list span[aria-current="page"]{
  color:var(--ink);
  font-weight:700;
}
.market-card{
  background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(248,250,252,.84));
}
.process-card{
  background:linear-gradient(145deg,rgba(255,255,255,.84),rgba(243,244,246,.82));
}
.process-step{
  display:inline-flex;
  padding:10px 14px;
  margin-bottom:14px;
  border-radius:999px;
  background:linear-gradient(135deg,rgba(37,99,235,.12),rgba(6,182,212,.12));
  color:var(--brand);
  font-weight:800;
}
.district-card strong{
  display:block;
  margin-bottom:10px;
  color:var(--brand);
}
.table-card{overflow:auto}
.price-table{
  width:100%;
  border-collapse:collapse;
}
.price-table th,.price-table td{
  padding:15px 14px;
  text-align:left;
  border-bottom:1px solid rgba(148,163,184,.18);
}
.price-table th{
  background:#eff6ff;
  color:var(--brand);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.table-note{margin-top:14px}
.faq-grid details summary{
  cursor:pointer;
  font-weight:800;
  color:var(--ink);
}

.mobile-menu[hidden]{display:none!important}
.mobile-menu{
  border-top:1px solid rgba(148,163,184,.14);
  background:rgba(243,247,251,.95);
}
.mobile-menu-inner{
  display:grid;
  gap:12px;
  padding:16px 0 20px;
}

@keyframes signature-shine{
  0%{left:-100%}
  50%{left:120%}
  100%{left:120%}
}
@keyframes signature-pulse{
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(1.45);opacity:.55}
}

@media (max-width:1080px){
  .hero-grid,.province-hero-grid,.mosaic-grid,.pricing-shell,.info-grid,.service-grid,.province-grid,.district-grid,.faq-grid,.footer-grid,.process-grid,.province-grid-featured,.offer-ribbon{
    grid-template-columns:1fr 1fr;
    grid-template-areas:none;
  }
  .main-nav,.nav-actions{display:none}
  .menu-toggle{display:inline-flex}
  .note-a,.note-b{
    position:static;
    max-width:none;
  }
  .hero-side-panel .hero-metrics{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .stat-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:720px){
  .hero-grid,.province-hero-grid,.mosaic-grid,.pricing-shell,.info-grid,.field-grid,.service-grid,.province-grid,.district-grid,.faq-grid,.footer-grid,.process-grid,.province-grid-featured,.offer-ribbon{
    grid-template-columns:1fr;
  }
  .hero-side-panel{
    width:100%;
    margin-left:0;
    padding:20px;
  }
  .hero-side-panel .hero-metrics{
    grid-template-columns:1fr;
  }
  .stat-strip{
    grid-template-columns:1fr;
  }
  .hero-copy,.province-copy,.section-card,.service-card,.province-card,.side-card,.district-card,.table-card,.faq-grid details,.process-card,.offer-ribbon{
    padding:20px;
  }
  .section-heading,.footer-bottom{display:block}
  .search-box{min-width:0}
  .footer-bottom-signature{margin-top:12px}
}
