/* ============================================================
   APEX Integrated Works — Design System
   Brand: Deep Slate Navy / Burnt Orange / Warm Cream
   ============================================================ */

:root {
  --navy: #2C3E50;
  --navy-dark: #182631;
  --orange: #E67E22;
  --orange-dark: #C6690F;
  --white: #FFFFFF;
  --cream: #FFFCF5;
  --grey: #64717C;
  --line: #E5E8EA;

  --radius-panel: 30px;
  --radius-image: 20px;
  --radius-card: 18px;
  --radius-pill: 999px;

  --shadow-soft: 0 12px 40px rgba(24, 38, 49, 0.10);
  --shadow-card: 0 8px 24px rgba(24, 38, 49, 0.08);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }

h1, h2, h3, h4 { font-weight: 600; margin: 0 0 0.5em; letter-spacing: -0.01em; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 4.4vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); font-weight: 600; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) { .container { padding: 0 28px; } }
.section { padding: 96px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-head { max-width: 760px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--grey); font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark { border-color: var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-ghost { color: var(--navy); font-weight: 500; }
.btn-ghost .arrow { transition: transform 0.25s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: all 0.35s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 252, 245, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(24,38,49,0.06);
}
.header-left, .header-right { display: flex; align-items: center; gap: 22px; }
.nav-inline { display: none; gap: 22px; }
@media (min-width: 640px) { .nav-inline { display: flex; } }
.nav-inline a { font-size: 15px; font-weight: 500; color: var(--white); transition: color 0.2s; }
.site-header.is-scrolled .nav-inline a,
.site-header.on-light .nav-inline a { color: var(--navy); }
.nav-inline a:hover { color: var(--orange); }

.logo-mark { display: flex; align-items: center; }
.logo-img { height: 34px; width: auto; display: block; }
.logo-img-primary { display: none; }
.site-header.is-scrolled .logo-img-reverse, .site-header.on-light .logo-img-reverse { display: none; }
.site-header.is-scrolled .logo-img-primary, .site-header.on-light .logo-img-primary { display: block; }
.footer-brand .logo-img, .full-menu-top .logo-img { height: 30px; }

.icon-btn { background: none; border: none; color: var(--white); display: flex; padding: 6px; }
.site-header.is-scrolled .icon-btn, .site-header.on-light .icon-btn { color: var(--navy); }
.icon-btn svg { width: 22px; height: 22px; }

.menu-toggle { display: flex; align-items: center; gap: 8px; background: none; border: none; color: var(--white); font-weight: 500; font-size: 15px; }
.site-header.is-scrolled .menu-toggle, .site-header.on-light .menu-toggle { color: var(--navy); }

.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

/* Full screen menu */
.full-menu {
  position: fixed; inset: 0; background: var(--navy-dark);
  z-index: 200; display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.full-menu.is-open { transform: translateY(0); }
.full-menu-top { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; }
.full-menu-top .logo-mark { color: var(--white); }
.close-menu { background: none; border: none; color: var(--white); }
.close-menu svg { width: 26px; height: 26px; }
.full-menu-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 24px; max-width: var(--container); margin: 0 auto; width: 100%; }
.full-menu-links { display: flex; flex-direction: column; gap: 6px; }
.full-menu-links a {
  color: var(--white); font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 600;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.full-menu-links a span.tag { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); font-weight: 500; }
.full-menu-links a:hover { color: var(--orange); }

.menu-search { position: relative; margin-bottom: 28px; }
.menu-search input {
  width: 100%; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.25);
  color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); font-family: inherit; padding: 12px 40px 12px 0;
}
.menu-search input::placeholder { color: rgba(255,255,255,0.35); }
.menu-search input:focus { outline: none; border-color: var(--orange); }
.menu-search svg { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; color: rgba(255,255,255,0.4); pointer-events: none; }
.search-results { display: flex; flex-direction: column; }
.search-results a {
  display: flex; align-items: center; justify-content: space-between; color: var(--white);
  font-size: 1.15rem; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.search-results a:hover { color: var(--orange); }
.search-results a .tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); font-weight: 500; border: 1px solid rgba(255,255,255,0.2); padding: 4px 10px; border-radius: var(--radius-pill); }
.search-empty { color: rgba(255,255,255,0.5); font-size: 15px; padding: 12px 0; }
.full-menu-footer { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; padding: 32px 0 8px; color: rgba(255,255,255,0.7); font-size: 15px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 32px; }
.full-menu-footer a { color: var(--white); font-weight: 500; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  background: var(--navy-dark); overflow: hidden; color: var(--white);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,38,49,0.35) 0%, rgba(24,38,49,0.55) 55%, rgba(24,38,49,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: 90px; width: 100%; }
.hero-content .eyebrow { color: var(--orange); }
.hero-content h1 { max-width: 900px; }
.hero-content .lead { font-size: 19px; max-width: 620px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px; }
.scroll-cue { position: absolute; bottom: 28px; right: 28px; z-index: 2; color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
@media (max-width: 480px) { .scroll-cue { right: 32px; bottom: 24px; } }
.scroll-cue .line { width: 1px; height: 32px; background: rgba(255,255,255,0.4); animation: scrollcue 2s infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top;} 50% {transform: scaleY(1); transform-origin: top;} 51% {transform-origin: bottom;} 100% {transform: scaleY(0); transform-origin: bottom;} }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--navy-dark); color: var(--white); padding: 190px 0 80px; }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--orange); }
.page-hero p.lead { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 700px; }
.page-hero.on-cream { background: var(--cream); color: var(--navy); }
.page-hero.on-cream .breadcrumb { color: var(--grey); }
.page-hero.on-cream p.lead { color: var(--grey); }

/* ---------- Grid / Cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 620px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.service-card {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card .thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--navy); }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card .body p { color: var(--grey); font-size: 15px; flex: 1; }
.plus-btn {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease); z-index: 2;
}
.service-card:hover .plus-btn { transform: rotate(90deg); }
.card-footer-link { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; font-weight: 500; font-size: 14px; color: var(--navy); }

.placeholder-media {
  aspect-ratio: 4/3; border-radius: var(--radius-image); overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.placeholder-media::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image: repeating-linear-gradient(45deg, rgba(230,126,34,0.08) 0px, rgba(230,126,34,0.08) 2px, transparent 2px, transparent 18px);
}
.placeholder-media .tag {
  position: relative; z-index: 1; color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 18px; border-radius: var(--radius-pill);
}

/* ---------- Dark panel ---------- */
.dark-panel { background: var(--navy-dark); color: var(--white); border-radius: var(--radius-panel); }
.section-dark { background: var(--navy-dark); color: var(--white); }
.section-dark .grey-text, .on-dark-grey { color: rgba(255,255,255,0.65); }

.trust-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-card); padding: 32px; }
.trust-card .num { color: var(--orange); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; margin-bottom: 16px; display: block; }
.trust-card p { color: rgba(255,255,255,0.7); }

/* ---------- Fit / stat rows ---------- */
.fit-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .fit-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fit-list { grid-template-columns: 1fr; } }
.fit-item { border-top: 2px solid var(--navy); padding-top: 18px; }
.fit-item p { color: var(--grey); font-size: 15px; margin: 0; }

/* ---------- Process / Accordion ---------- */
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 28px 0;
  border-top: 1px solid var(--line);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step .step-num { font-size: 15px; font-weight: 600; color: var(--orange); }
.process-step h3 { margin-bottom: 6px; }
.process-step p { color: var(--grey); margin: 0; max-width: 640px; }

.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 17px; font-weight: 500; color: var(--navy);
}
.accordion-trigger .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.accordion-trigger .plus::before, .accordion-trigger .plus::after { content:""; position: absolute; background: var(--navy); transition: transform 0.3s var(--ease); }
.accordion-trigger .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.accordion-trigger .plus::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.accordion-item.is-open .accordion-trigger .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.accordion-panel-inner { padding: 0 0 22px; color: var(--grey); max-width: 720px; }
.accordion-item.is-open .accordion-panel { max-height: 600px; }

/* ---------- Sector panels ---------- */
.sector-panel {
  position: relative; border-radius: var(--radius-image); overflow: hidden; aspect-ratio: 3/4;
  display: flex; align-items: flex-end; padding: 28px; color: var(--white);
}
.sector-panel .sp-bg { position: absolute; inset: 0; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); }
.sector-panel .sp-bg::after { content:""; position: absolute; inset:0; background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 60%); }
.sector-panel .sp-content { position: relative; z-index: 1; width: 100%; }
.sector-panel .sp-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 8px; display: block; }
.sector-panel h3 { color: var(--white); margin-bottom: 4px; }
.sector-panel:hover .plus-btn { transform: rotate(90deg); }

/* ---------- Guide cards ---------- */
.guide-card { background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 28px; display: flex; flex-direction: column; height: 100%; }
.guide-card .g-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange); margin-bottom: 12px; }
.guide-card p { color: var(--grey); flex: 1; }
.guide-card.coming-soon { opacity: 0.6; }
.coming-soon-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: var(--line); color: var(--grey); padding: 5px 12px; border-radius: var(--radius-pill); }

/* ---------- Explore Building (interactive) ---------- */
.explore-wrap { background: var(--navy-dark); border-radius: var(--radius-panel); padding: 56px 40px; color: var(--white); }
.explore-progress { display: flex; gap: 28px; margin-bottom: 40px; flex-wrap: wrap; }
.explore-progress span { font-size: 13px; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.explore-progress span.active { color: var(--orange); }
.explore-grid { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .explore-grid { grid-template-columns: 1fr; } }

.explore-list { display: flex; flex-direction: column; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; }
.explore-row {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 14px 18px; background: none; border: none; border-left: 2px solid transparent;
  border-bottom: 1px solid rgba(255,255,255,0.06); cursor: pointer; transition: all 0.2s var(--ease);
}
.explore-row:last-child { border-bottom: none; }
.explore-row:hover { background: rgba(255,255,255,0.03); }
.explore-row.is-active { background: rgba(230,126,34,0.1); border-left-color: var(--orange); }
.explore-row svg { width: 18px; height: 18px; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.explore-row.is-active svg { color: var(--orange); }
.explore-row span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.72); }
.explore-row.is-active span { color: var(--white); }

.explore-panel .es-label { color: var(--orange); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; display: block; }
.explore-panel h3 { color: var(--white); margin-bottom: 12px; font-size: 1.7rem; }
.explore-panel p.desc { color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.explore-panel .related { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 22px; }
.explore-panel .related strong { color: rgba(255,255,255,0.85); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 72px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 56px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-top h4 { color: var(--white); font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-top a, .footer-top p { display: block; color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 10px; }
.footer-top a:hover { color: var(--orange); }
.footer-brand .logo-mark { color: var(--white); margin-bottom: 16px; }
.footer-brand p { max-width: 300px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Floating WhatsApp / Talk to APEX ---------- */
.floating-cta { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
@media (max-width: 480px) { .floating-cta { right: 28px; bottom: 24px; } }
.floating-main {
  display: flex; align-items: center; gap: 10px; background: var(--orange); color: var(--white);
  padding: 15px 22px; border-radius: var(--radius-pill); border: none; font-weight: 500; font-size: 14.5px;
  box-shadow: 0 10px 30px rgba(230,126,34,0.4); transition: transform 0.25s var(--ease);
}
.floating-main:hover { transform: translateY(-3px); }
.floating-panel {
  background: var(--white); border-radius: 18px; box-shadow: var(--shadow-soft);
  width: 260px; overflow: hidden; opacity: 0; transform: translateY(10px) scale(0.98); pointer-events: none;
  transition: all 0.25s var(--ease);
}
.floating-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-panel a, .floating-panel button {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px; font-size: 14.5px; color: var(--navy);
  border-bottom: 1px solid var(--line); width: 100%; text-align: left; background: none; border-left: none; border-right: none; border-top: none;
}
.floating-panel a:last-child, .floating-panel button:last-child { border-bottom: none; }
.floating-panel a:hover, .floating-panel button:hover { background: var(--cream); color: var(--orange); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 500; color: var(--navy); }
.field .hint { font-size: 12.5px; color: var(--grey); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; padding: 13px 16px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--white); color: var(--navy);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 120px; }
.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill label {
  display: block; padding: 10px 18px; border-radius: var(--radius-pill); border: 1px solid var(--line);
  font-size: 14px; font-weight: 500; color: var(--grey); cursor: pointer; transition: all 0.2s;
}
.radio-pill input:checked + label { border-color: var(--orange); background: rgba(230,126,34,0.08); color: var(--orange); }
.radio-pill input:focus-visible + label { outline: 2px solid var(--orange); outline-offset: 2px; }
.form-note { background: rgba(230,126,34,0.08); border: 1px solid rgba(230,126,34,0.25); border-radius: 14px; padding: 18px 22px; font-size: 14.5px; color: var(--navy); margin-bottom: 32px; }
.form-success { display: none; text-align: center; padding: 60px 20px; }
.form-success.is-visible { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--orange); margin: 0 auto 20px; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill { font-size: 13.5px; padding: 8px 16px; border-radius: var(--radius-pill); background: var(--white); border: 1px solid var(--line); color: var(--navy); }
.two-col-text { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .two-col-text { grid-template-columns: 1fr; gap: 28px; } }
.check-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--grey); }
.check-list li:last-child { border-bottom: none; }
.check-list svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--orange); margin-top: 2px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--orange); color: white; padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.faq-page-link { display:flex; align-items:center; justify-content:space-between; padding: 20px 0; border-top: 1px solid var(--line); }
