/* ============================================================
   COMPONENTS
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 600; font-size: var(--step-0);
  text-decoration: none; line-height: 1.2;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn-primary { background: var(--amber-500); color: var(--ink-900); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #ffb01c; color: var(--ink-900); box-shadow: var(--shadow-md); }

.btn-signal { background: var(--signal-600); color: var(--white); }
.btn-signal:hover { background: var(--signal-500); color: var(--white); }

.btn-outline { border-color: var(--line-strong); color: var(--ink-900); background: var(--white); }
.btn-outline:hover { border-color: var(--signal-500); color: var(--signal-600); }

.btn-ghost-light { border-color: rgba(255,255,255,.35); color: var(--white); background: rgba(255,255,255,.06); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); color: var(--white); }

.btn-whatsapp { background: #128c7e; color: var(--white); }
.btn-whatsapp:hover { background: #0f7a6d; color: var(--white); }

.btn-sm { padding: 0.55rem 1.05rem; font-size: var(--step--1); }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(247, 249, 252, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: var(--bar-h); }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-weight: 700; color: var(--ink-900); font-size: 1.05rem; letter-spacing: -0.02em; }
.brand-sub { font-size: 0.72rem; color: var(--ink-500); }

.nav-list { display: flex; align-items: center; gap: 0.2rem; list-style: none; padding: 0; margin: 0; }
.nav-list a {
  display: block; padding: 0.5rem 0.75rem; border-radius: var(--r-sm);
  color: var(--ink-700); text-decoration: none; font-size: 0.94rem; font-weight: 500;
}
.nav-list a:hover { background: var(--signal-100); color: var(--signal-600); }
.nav-list a[aria-current="page"] { color: var(--signal-600); background: var(--signal-100); }

.nav-drop { position: relative; }
.nav-drop > button {
  display: flex; align-items: center; gap: 0.3rem; background: none; border: 0;
  padding: 0.5rem 0.75rem; border-radius: var(--r-sm); font-size: 0.94rem; font-weight: 500; color: var(--ink-700);
}
.nav-drop > button:hover { background: var(--signal-100); color: var(--signal-600); }
.nav-drop > button svg { width: 14px; height: 14px; transition: transform .2s ease; }
.nav-drop[data-open="true"] > button svg { transform: rotate(180deg); }
.nav-drop-panel {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 244px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 0.4rem; list-style: none; margin: 0; display: none;
}
.nav-drop[data-open="true"] .nav-drop-panel { display: block; }
.nav-drop-panel a { padding: 0.6rem 0.75rem; }

.nav-toggle {
  display: none; background: var(--white); border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); padding: 0.5rem 0.65rem;
}
.nav-toggle svg { width: 22px; height: 22px; }

.header-cta { display: inline-flex; }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; inset: var(--bar-h) 0 0 0; background: var(--paper);
    padding: 1.25rem var(--gutter) 3rem; overflow-y: auto; display: none;
  }
  .site-nav[data-open="true"] { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav-list a { padding: 0.8rem 0.75rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-drop { position: static; }
  .nav-drop > button { width: 100%; justify-content: space-between; padding: 0.8rem 0.75rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-drop-panel { position: static; box-shadow: none; border: 0; background: var(--signal-100); border-radius: var(--r-sm); margin-bottom: 0.4rem; }
  .header-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 80% 0%, #17325c 0%, var(--ink-900) 55%);
  color: var(--ink-200);
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 100% 46px; mask-image: linear-gradient(to bottom, #000, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 960px) { .hero-inner { grid-template-columns: 1.08fr 0.92fr; } }

.hero h1 { color: var(--white); }
.hero .lede { color: #b9c8de; margin-top: 1.1rem; }
.hero .btn-row { margin-top: 1.9rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05);
  color: #cfe0f7; border-radius: var(--r-pill); padding: 0.35rem 0.9rem; font-size: 0.85rem;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber-500); }

.hero-points { list-style: none; padding: 0; margin: 2.1rem 0 0; display: grid; gap: 0.6rem; }
.hero-points li { display: flex; gap: 0.6rem; align-items: flex-start; color: #c6d4e7; font-size: 0.95rem; }
.hero-points svg { width: 18px; height: 18px; color: var(--signal-400); flex: none; margin-top: 3px; }

/* Signal panel — the one decorative moment on the page */
.hero-panel {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  backdrop-filter: blur(6px);
}
.hero-panel h2 { font-size: var(--step-1); color: var(--white); }
.hero-panel .small { color: #9fb2cc; }
.quick-links { list-style: none; padding: 0; margin: 1.1rem 0 0; display: grid; gap: 0.5rem; }
.quick-links a {
  display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 0.95rem;
  border-radius: var(--r-md); background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); color: var(--white); text-decoration: none;
  font-weight: 500; font-size: 0.97rem; transition: background .2s ease, border-color .2s ease;
}
.quick-links a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); color: var(--white); }
.quick-links svg { width: 20px; height: 20px; color: var(--signal-400); flex: none; }
.quick-links .chev { margin-left: auto; color: #8ea6c6; display: flex; }
.quick-links .chev svg { width: 16px; height: 16px; }

/* ---------- Page header (inner pages) ---------- */
.page-head {
  background: linear-gradient(180deg, var(--ink-900), var(--ink-800));
  color: var(--ink-200); padding-block: clamp(2.25rem, 5vw, 3.5rem) clamp(2.5rem, 5vw, 3.75rem);
}
.page-head h1 { color: var(--white); margin-top: 0.5rem; }
.page-head p { color: #b9c8de; margin-top: 0.9rem; font-size: var(--step-1); line-height: 1.5; }
.page-head .btn-row { margin-top: 1.6rem; }

.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.45rem; list-style: none; padding: 0; margin: 0; font-size: 0.85rem; color: #93a7c2; }
.breadcrumb a { color: #b9c8de; text-decoration: none; }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.breadcrumb li + li::before { content: "/"; margin-right: 0.45rem; color: #5b7091; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: clamp(1.25rem, 2.5vw, 1.6rem); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card h3 { margin-bottom: 0.45rem; }
.card p { color: var(--ink-500); font-size: 0.96rem; }
.card .card-cta { margin-top: auto; padding-top: 1.1rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }
a.card, .card-link { text-decoration: none; color: inherit; }
.card:hover { border-color: var(--signal-400); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-icon {
  width: 44px; height: 44px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--signal-100); color: var(--signal-600); margin-bottom: 0.95rem;
}
.card-icon svg { width: 23px; height: 23px; }

.card-flat { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(1.15rem, 2.5vw, 1.5rem); }
.card-flat:hover { transform: none; }

.info-panel {
  background: var(--signal-100); border: 1px solid #cfe0fb;
  border-radius: var(--r-md); padding: clamp(1.1rem, 2.5vw, 1.4rem);
}
.info-panel h3 { font-size: var(--step-0); margin-bottom: 0.4rem; }
.info-panel p, .info-panel li { color: var(--ink-700); font-size: 0.95rem; }

.notice {
  border-left: 3px solid var(--amber-500); background: var(--amber-100);
  padding: 0.95rem 1.15rem; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.93rem; color: #6b4a02;
}
.notice strong { color: #533902; }

/* ---------- Steps (real sequences only) ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; counter-reset: step; }
.steps li {
  display: grid; grid-template-columns: 34px 1fr; gap: 0.95rem; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.05rem 1.2rem;
  max-width: none;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink-900); color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
}
.steps h3 { font-size: var(--step-0); margin-bottom: 0.2rem; }
.steps p { font-size: 0.95rem; color: var(--ink-500); }

/* ---------- Checklist ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.check-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.96rem; }
.check-list svg { width: 19px; height: 19px; color: var(--green-600); flex: none; margin-top: 3px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.35rem, 3vw, 2.1rem); box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 1.05rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } .form-span-2 { grid-column: 1 / -1; } }

.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--ink-900); }
.field .hint { font-size: 0.82rem; color: var(--ink-500); }
.field .req { color: var(--red-600); }

.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.95rem;
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  background: var(--white); color: var(--ink-900); font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--signal-500); box-shadow: 0 0 0 3px rgba(26,115,232,.18);
}
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: var(--red-600); }
.field-error { font-size: 0.82rem; color: var(--red-600); min-height: 0; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status { border-radius: var(--r-md); padding: 1rem 1.15rem; font-size: 0.95rem; }
.form-status[data-state="success"] { background: var(--green-100); border: 1px solid #b7e0c9; color: #0f5c3a; }
.form-status[data-state="error"] { background: var(--red-100); border: 1px solid #f2c3bd; color: #8c2018; }
.form-status h3 { font-size: var(--step-0); margin-bottom: 0.3rem; color: inherit; }
.form-status .btn { margin-top: 0.85rem; }

.btn[data-loading="true"] { opacity: 0.75; pointer-events: none; }
.spinner {
  width: 17px; height: 17px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,.25); border-top-color: currentColor;
  animation: spin .7s linear infinite; display: none;
}
.btn[data-loading="true"] .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.7rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.05rem 1.25rem;
  font-family: var(--font-display); font-weight: 600; color: var(--ink-900);
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 11px; height: 11px; flex: none;
  border-right: 2px solid var(--ink-400); border-bottom: 2px solid var(--ink-400);
  transform: rotate(45deg) translateY(-3px); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq-item .faq-body { padding: 0 1.25rem 1.25rem; color: var(--ink-500); font-size: 0.97rem; }

/* ---------- Areas ---------- */
.area-grid { display: grid; gap: 0.7rem; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
.area-chip {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0.85rem 1rem; display: flex; flex-direction: column; gap: 0.15rem;
}
.area-chip strong { font-family: var(--font-display); font-size: 0.98rem; color: var(--ink-900); }
.area-chip span { font-size: 0.82rem; color: var(--ink-500); }

/* ---------- Map ---------- */
.map-frame {
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line);
  background: var(--ink-100); min-height: 300px;
}
.map-frame iframe { width: 100%; height: 360px; border: 0; }
.map-fallback { padding: 2rem 1.5rem; text-align: center; color: var(--ink-500); }

/* ---------- Location finder ---------- */
.finder-bar { display: grid; gap: 0.75rem; }
@media (min-width: 720px) { .finder-bar { grid-template-columns: 1fr auto auto; align-items: end; } }
.result-list { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
.result-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.05rem 1.2rem; display: flex; gap: 1rem; align-items: flex-start; flex-wrap: wrap;
}
.result-item .dist {
  margin-left: auto; font-family: var(--font-display); font-weight: 600;
  color: var(--signal-600); white-space: nowrap;
}
.empty-state {
  border: 1px dashed var(--line-strong); border-radius: var(--r-md);
  padding: clamp(1.5rem, 4vw, 2.5rem); text-align: center; color: var(--ink-500); background: var(--white);
}
.empty-state h3 { margin-bottom: 0.45rem; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white); }
table { border-collapse: collapse; width: 100%; font-size: 0.95rem; }
th, td { text-align: left; padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--line); }
th { font-family: var(--font-display); font-weight: 600; color: var(--ink-900); background: var(--paper); }
tr:last-child td { border-bottom: 0; }

/* ---------- Legal / long-form ---------- */
.prose h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
.prose p, .prose ul, .prose ol { margin-top: 0.9rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: 0.4rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--ink-900), #16325d);
  color: var(--ink-200); border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid; gap: 1.25rem; align-items: center;
}
@media (min-width: 840px) { .cta-band { grid-template-columns: 1fr auto; } }
.cta-band h2 { color: var(--white); font-size: var(--step-2); }
.cta-band p { color: #b9c8de; margin-top: 0.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: #a9bcd4; padding-block: clamp(2.75rem, 6vw, 4rem) 1.5rem; }
.footer-grid { display: grid; gap: clamp(1.75rem, 4vw, 2.5rem); grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.footer-grid h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.85rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-grid a { color: #a9bcd4; text-decoration: none; font-size: 0.93rem; }
.footer-grid a:hover { color: var(--white); text-decoration: underline; }
.footer-brand p { font-size: 0.92rem; margin-top: 0.85rem; max-width: 34ch; }
.footer-bottom {
  margin-top: clamp(2rem, 5vw, 3rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12); font-size: 0.85rem; color: #8ba0bb;
  display: grid; gap: 0.75rem;
}
.footer-bottom .disclaimer { max-width: 80ch; }

/* ---------- Floating + sticky CTAs ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: #128c7e; color: var(--white); display: grid; place-items: center;
  box-shadow: var(--shadow-lift); text-decoration: none;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.06); color: var(--white); }
.wa-float svg { width: 29px; height: 29px; }
@media (max-width: 720px) { .wa-float { bottom: 76px; right: 14px; width: 50px; height: 50px; } .wa-float svg { width: 26px; height: 26px; } }

.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  background: var(--white); border-top: 1px solid var(--line);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  grid-template-columns: 1fr 1fr 1fr; gap: 8px;
  box-shadow: 0 -6px 20px rgba(10,22,40,.08);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 7px 4px; border-radius: var(--r-sm); text-decoration: none;
  font-size: 0.73rem; font-weight: 600; font-family: var(--font-display);
}
.mobile-bar svg { width: 19px; height: 19px; }
.mobile-bar .mb-call { background: var(--ink-900); color: var(--white); }
.mobile-bar .mb-wa { background: #128c7e; color: var(--white); }
.mobile-bar .mb-sim { background: var(--amber-500); color: var(--ink-900); }
@media (max-width: 720px) { .mobile-bar { display: grid; } }

/* ---------- Misc ---------- */
.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 0.2rem 0.6rem; border-radius: var(--r-pill);
  background: var(--amber-100); color: #6b4a02; border: 1px solid #edd9a8;
}
.divider { height: 1px; background: var(--line); border: 0; margin-block: 2rem; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-list svg { width: 20px; height: 20px; color: var(--signal-600); flex: none; margin-top: 3px; }
.contact-list strong { display: block; font-family: var(--font-display); font-size: 0.9rem; color: var(--ink-900); }
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* ============================================================
   COLOUR LAYER
   Each service keeps one hue across icons, hover states and
   accent rules, so colour carries meaning instead of decorating.
   ============================================================ */

/* ---------- Accent assignment ---------- */
.card { --accent: var(--signal-600); --accent-soft: var(--signal-100); }
.grid > .card:nth-child(6n + 2) { --accent: var(--teal-600);   --accent-soft: var(--teal-100); }
.grid > .card:nth-child(6n + 3) { --accent: var(--amber-600);  --accent-soft: var(--amber-100); }
.grid > .card:nth-child(6n + 4) { --accent: var(--violet-600); --accent-soft: var(--violet-100); }
.grid > .card:nth-child(6n + 5) { --accent: var(--lime-600);   --accent-soft: var(--lime-100); }
.grid > .card:nth-child(6n + 6) { --accent: var(--rose-600);   --accent-soft: var(--rose-100); }

/* Coloured top rule that grows on hover */
.card { position: relative; overflow: hidden; }
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.card:hover::before, .card:focus-within::before { transform: scaleX(1); }
.card:hover { border-color: var(--accent); }

.card-icon {
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 22%, transparent);
  transition: background-color .2s ease, color .2s ease;
}
.card:hover .card-icon { background: var(--accent); color: var(--white); }

/* Flat cards get a coloured left edge instead */
.card-flat { border-left: 3px solid var(--signal-500); }
.grid > .card-flat:nth-child(6n + 2) { border-left-color: var(--teal-500); }
.grid > .card-flat:nth-child(6n + 3) { border-left-color: var(--amber-500); }
.grid > .card-flat:nth-child(6n + 4) { border-left-color: var(--violet-500); }
.grid > .card-flat:nth-child(6n + 5) { border-left-color: var(--lime-500); }
.grid > .card-flat:nth-child(6n + 6) { border-left-color: var(--rose-500); }

/* ---------- Buttons ---------- */
.btn-primary { background: var(--grad-action); box-shadow: 0 2px 10px rgba(240, 162, 2, .35); }
.btn-primary:hover { background: linear-gradient(135deg, #ffc247, #f59300); box-shadow: 0 6px 18px rgba(240, 162, 2, .42); }
.btn-signal { background: var(--grad-signal); box-shadow: 0 2px 10px rgba(26, 115, 232, .32); }
.btn-signal:hover { background: linear-gradient(135deg, var(--signal-400), var(--violet-500)); box-shadow: 0 6px 18px rgba(26, 115, 232, .4); }
.btn-outline:hover { border-color: var(--signal-500); background: var(--signal-100); }

/* ---------- Header ---------- */
.site-header {
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(13, 48, 105, .04);
}
.site-header::after {
  content: ""; display: block; height: 3px; background: var(--grad-rule);
  position: absolute; left: 0; right: 0; bottom: -3px; opacity: .9;
}
.site-header { position: sticky; }

/* ---------- Hero ---------- */
.hero { background: var(--grad-hero); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(42% 55% at 88% 12%, rgba(18, 160, 153, .32), transparent 70%),
    radial-gradient(38% 50% at 8% 88%, rgba(112, 89, 230, .3), transparent 70%),
    radial-gradient(30% 40% at 60% 100%, rgba(240, 162, 2, .18), transparent 70%);
}
.hero-eyebrow {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .28);
}
.hero-eyebrow .dot { background: var(--amber-400); box-shadow: 0 0 0 4px rgba(240, 162, 2, .25); }
.hero-panel {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .2);
  box-shadow: 0 20px 60px rgba(4, 12, 28, .35);
}
.quick-links li:nth-child(1) a svg { color: var(--signal-400); }
.quick-links li:nth-child(2) a svg { color: #3fd6cd; }
.quick-links li:nth-child(3) a svg { color: var(--amber-400); }
.quick-links li:nth-child(4) a svg { color: #a894ff; }
.quick-links li:nth-child(5) a svg { color: #ff8fb0; }
.quick-links a:hover { border-color: rgba(255, 255, 255, .4); }

/* ---------- Page header ---------- */
.page-head { background: var(--grad-hero); position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(45% 120% at 92% 0%, rgba(18, 160, 153, .3), transparent 70%),
    radial-gradient(40% 110% at 4% 100%, rgba(112, 89, 230, .26), transparent 70%);
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head + .section { position: relative; }

/* ---------- Section headings ---------- */
.section-head h2 { position: relative; padding-bottom: .7rem; }
.section-head h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 58px; height: 4px; border-radius: 4px; background: var(--grad-rule);
}
.center .section-head h2::after, .section-head.center h2::after { left: 50%; transform: translateX(-50%); }

/* ---------- Steps ---------- */
.steps li { border-left: 3px solid var(--signal-500); }
.steps li:nth-child(2) { border-left-color: var(--teal-500); }
.steps li:nth-child(3) { border-left-color: var(--violet-500); }
.steps li:nth-child(4) { border-left-color: var(--amber-500); }
.steps li::before { background: var(--grad-signal); }
.steps li:nth-child(2)::before { background: linear-gradient(135deg, var(--teal-500), var(--signal-500)); }
.steps li:nth-child(3)::before { background: linear-gradient(135deg, var(--violet-500), var(--signal-500)); }
.steps li:nth-child(4)::before { background: var(--grad-action); color: var(--ink-900); }

/* ---------- Panels ---------- */
.info-panel {
  background: linear-gradient(140deg, var(--signal-100), var(--violet-100));
  border-color: #d3dffb;
}
.notice {
  background: linear-gradient(120deg, var(--amber-100), #fff8ea);
  border-left-width: 4px;
}

/* ---------- Area chips ---------- */
.area-chip { border-top: 3px solid var(--signal-500); }
.area-grid > .area-chip:nth-child(6n + 2) { border-top-color: var(--teal-500); }
.area-grid > .area-chip:nth-child(6n + 3) { border-top-color: var(--amber-500); }
.area-grid > .area-chip:nth-child(6n + 4) { border-top-color: var(--violet-500); }
.area-grid > .area-chip:nth-child(6n + 5) { border-top-color: var(--lime-500); }
.area-grid > .area-chip:nth-child(6n + 6) { border-top-color: var(--rose-500); }
.area-chip:hover { box-shadow: var(--shadow-sm); border-color: var(--line-strong); }

/* ---------- FAQ ---------- */
.faq-item { border-left: 3px solid transparent; transition: border-color .2s ease; }
.faq-item[open] { border-left-color: var(--signal-500); background: linear-gradient(180deg, var(--signal-100), var(--white) 60%); }
.faq-item summary:hover { color: var(--signal-600); }

/* ---------- Forms ---------- */
.form-card {
  border-top: 4px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--grad-rule) border-box;
  border: 1px solid transparent;
  border-top-width: 4px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  box-shadow: 0 0 0 3px rgba(26, 115, 232, .2);
}
.form-status[data-state="success"] { background: linear-gradient(120deg, var(--green-100), #f0fbf5); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-band); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(45% 120% at 88% 10%, rgba(240, 162, 2, .22), transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }

/* ---------- Empty states ---------- */
.empty-state { background: linear-gradient(180deg, #fbfdff, var(--white)); border-color: #c9d8ee; }

/* ---------- Result list ---------- */
.result-item { border-left: 3px solid var(--teal-500); }

/* ---------- Table ---------- */
th { background: linear-gradient(180deg, var(--signal-100), #eef4fd); }

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(60% 100% at 10% 0%, rgba(26, 115, 232, .22), transparent 60%),
    radial-gradient(50% 90% at 92% 10%, rgba(18, 160, 153, .18), transparent 60%),
    var(--ink-900);
  border-top: 4px solid transparent;
  border-image: var(--grad-rule) 1;
}
.footer-grid h3 { position: relative; padding-bottom: .5rem; }
.footer-grid h3::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 3px;
  border-radius: 3px; background: var(--amber-500);
}
.footer-grid > div:nth-child(3) h3::after { background: var(--teal-500); }
.footer-grid > div:nth-child(4) h3::after { background: var(--violet-500); }
.footer-grid > div:nth-child(5) h3::after { background: var(--signal-400); }

/* ---------- Floating CTAs ---------- */
.wa-float { background: linear-gradient(135deg, #25d366, #128c7e); }
.mobile-bar { box-shadow: 0 -6px 22px rgba(13, 48, 105, .12); }
.mobile-bar .mb-call { background: linear-gradient(135deg, var(--signal-600), var(--violet-600)); }
.mobile-bar .mb-wa { background: linear-gradient(135deg, #25d366, #128c7e); }
.mobile-bar .mb-sim { background: var(--grad-action); }

/* ---------- Badge ---------- */
.badge { background: linear-gradient(120deg, var(--amber-100), #fff4de); }

/* ---------- Check list ---------- */
.check-list svg { color: var(--teal-600); }

/* ---------- Section rhythm ----------
   FAQ blocks and enquiry blocks get their own tone, so a long page
   reads as distinct zones rather than one continuous sheet. */
.section[data-faq] {
  background: linear-gradient(180deg, #eef4fd 0%, #f4f7fc 100%);
  border-block: 1px solid #e2ebf8;
}
.section#enquiry {
  background: linear-gradient(180deg, #fff9ee 0%, #fdfbf6 100%);
  border-block: 1px solid #f6e7cc;
}
