/* ==========================================================================
   FEXINA LLC — Site Stylesheet
   Brand: #0A3C78 navy · #1877C9 blue · #63B3E6 sky · #6B7280 gray · #F5F7FA wash
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  --navy: #0A3C78;
  --navy-900: #072d5b;
  --blue: #1877C9;
  --blue-600: #1467af;
  --sky: #63B3E6;
  --sky-050: #eaf3fb;
  --gray: #6B7280;
  --gray-400: #9ca3af;
  --ink: #101828;
  --wash: #F5F7FA;
  --line: #e4e9f0;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
  --shadow: 0 4px 12px rgba(10, 60, 120, .07), 0 2px 4px rgba(10, 60, 120, .05);
  --shadow-lg: 0 18px 40px rgba(10, 60, 120, .12), 0 4px 10px rgba(10, 60, 120, .06);

  --container: 1200px;
  --header-h: 78px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
/* Author `display` rules outrank the UA stylesheet's [hidden] rule, so the
   attribute must be enforced explicitly — the wizard relies on it. */
[hidden] { display: none !important; }
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  padding: .7em 1.3em; background: var(--navy); color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-size: .9rem; font-weight: 600;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* --- Layout --------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 76px 0; }
.section--wash { background: var(--wash); }
.section--tight { padding: 52px 0; }
.grid { display: grid; gap: 24px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* --- Type ----------------------------------------------------------------- */
.h1 { font-size: clamp(2.15rem, 1.35rem + 2.6vw, 3.4rem); }
.h2 { font-size: clamp(1.7rem, 1.25rem + 1.5vw, 2.4rem); }
.h3 { font-size: clamp(1.15rem, 1.05rem + .45vw, 1.4rem); }
.lead { font-size: 1.06rem; color: var(--gray); max-width: 62ch; }
.muted { color: var(--gray); }
.small { font-size: .875rem; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--blue); margin-bottom: .7rem;
}

/* Section heading with the brand underline rule */
.section-head { margin-bottom: 40px; }
.section-head .h2 { position: relative; padding-bottom: 14px; margin-bottom: .55rem; }
.section-head .h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 62px; height: 4px; border-radius: 2px; background: var(--blue);
}
.section-head.text-center .h2::after { left: 50%; transform: translateX(-50%); }
.section-head p { color: var(--gray); max-width: 60ch; margin-bottom: 0; }
.section-head.text-center p { margin-inline: auto; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .82em 1.7em; border: 2px solid transparent; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; line-height: 1.25; text-align: center;
  cursor: pointer; transition: background .18s var(--ease), color .18s var(--ease),
    border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--blue); color: #fff; box-shadow: var(--shadow-lg); }
.btn--accent { background: var(--blue); color: #fff; box-shadow: var(--shadow); }
.btn--accent:hover { background: var(--navy); color: #fff; box-shadow: var(--shadow-lg); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--sky-050); color: var(--navy); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn--lg { padding: .95em 2.1em; font-size: 1rem; }
.btn--sm { padding: .6em 1.15em; font-size: .85rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line);
}
.site-header.is-stuck { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); flex-shrink: 0; }
.brand:hover { color: var(--navy); }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: grid; line-height: 1; }
.brand__name { font-size: 1.42rem; font-weight: 700; letter-spacing: .07em; color: var(--navy); }
.brand__sub { font-size: .62rem; font-weight: 600; letter-spacing: .22em; color: var(--blue); justify-self: end; margin-top: 3px; }

.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-list > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .35em; padding: .6em .85em;
  border-radius: var(--radius-sm); font-size: .935rem; font-weight: 500; color: #33405a;
  background: none; border: 0; cursor: pointer; white-space: nowrap;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav-link:hover { color: var(--blue); background: var(--sky-050); }
.nav-link.is-active { color: var(--blue); font-weight: 600; }
.nav-link .caret { width: 11px; height: 11px; transition: transform .2s var(--ease); }
.has-dropdown.is-open > .nav-link .caret { transform: rotate(180deg); }
.header-cta { margin-left: 14px; }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; translate: -50% 0;
  min-width: 290px; padding: 10px; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.has-dropdown:hover .dropdown, .has-dropdown.is-open .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 11px; padding: .6em .7em;
  border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; color: #33405a;
}
.dropdown a:hover { background: var(--sky-050); color: var(--navy); }
.dropdown a svg { width: 20px; height: 20px; color: var(--blue); flex: none; }
.dropdown__all { margin-top: 6px; border-top: 1px solid var(--line); padding-top: 8px; }
.dropdown__all a { color: var(--blue); font-weight: 600; }

.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid var(--line); border-radius: var(--radius-sm);
  cursor: pointer; color: var(--navy);
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; border-radius: 2px; transition: .22s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile-cta { display: none; }

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; background: linear-gradient(160deg, #fbfcfe 0%, var(--wash) 55%, #eaf1f9 100%); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -140px; width: 560px; height: 560px;
  border-radius: 50%; background: radial-gradient(circle, rgba(99,179,230,.22), transparent 68%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr); gap: 52px; align-items: center; padding: 68px 0 76px; }
.hero__title { font-size: clamp(2.15rem, 1.2rem + 3.1vw, 3.55rem); margin-bottom: .35em; }
.hero__title .accent { color: var(--blue); display: block; }
.hero__text { font-size: 1.03rem; color: #48566e; max-width: 46ch; margin-bottom: 1.9em; }
.hero__points { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; margin-top: 26px; }
.hero__points li { display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 500; color: #48566e; }
.hero__points svg { width: 17px; height: 17px; color: var(--blue); flex: none; }

/* Photo mosaic — mirrors the brand layout */
.mosaic { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.mosaic figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--sky-050); box-shadow: var(--shadow); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.mosaic figure:hover img { transform: scale(1.06); }
.mosaic .m-wide  { grid-column: span 6; aspect-ratio: 16 / 6.4; border-radius: var(--radius-lg); }
.mosaic .m-third { grid-column: span 2; aspect-ratio: 1 / .84; }

/* --- Service cards -------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.service-card {
  display: flex; flex-direction: column; padding: 26px 20px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); color: inherit;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky); color: inherit; }
.service-card__icon {
  width: 54px; height: 54px; margin: 0 auto 16px; display: grid; place-items: center;
  border-radius: var(--radius-sm); background: var(--sky-050); color: var(--blue);
  transition: background .22s var(--ease), color .22s var(--ease);
}
.service-card:hover .service-card__icon { background: var(--blue); color: #fff; }
.service-card__icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--navy); }
.service-card p { font-size: .855rem; color: var(--gray); line-height: 1.6; margin-bottom: 0; }
.service-card__link { margin-top: 16px; font-size: .82rem; font-weight: 600; color: var(--blue); }

/* Rich service cards (services page) */
.service-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 26px; }
.service-tile {
  display: flex; flex-direction: column; overflow: hidden; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.service-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-tile__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--sky-050); }
.service-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.service-tile:hover .service-tile__media img { transform: scale(1.05); }
.service-tile__badge {
  position: absolute; left: 14px; top: 14px; width: 42px; height: 42px; display: grid; place-items: center;
  background: rgba(255,255,255,.94); border-radius: 10px; color: var(--blue); box-shadow: var(--shadow-sm);
}
.service-tile__badge svg { width: 25px; height: 25px; }
.service-tile__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-tile__body h3 { color: var(--navy); margin-bottom: .45rem; }
.service-tile__body p { font-size: .9rem; color: var(--gray); }
.tile-list { list-style: none; margin: 0 0 18px; font-size: .875rem; color: #48566e; }
.tile-list li { display: flex; gap: 9px; padding: 3px 0; }
.tile-list li::before { content: "\2713"; color: var(--blue); font-weight: 700; flex: none; }
.service-tile__actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }

/* --- Why choose / split band --------------------------------------------- */
.value-band { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.value-band__left { position: relative; display: grid; grid-template-columns: 200px 1fr; background: var(--navy); color: #fff; }
.value-band__photo { position: relative; overflow: hidden; }
.value-band__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.value-band__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, var(--navy) 100%); }
.value-band__content { padding: 42px 38px; }
.value-band__content h2 { color: #fff; font-size: clamp(1.35rem, 1.1rem + .8vw, 1.75rem); margin-bottom: 1.1rem; }
.value-list { list-style: none; display: grid; gap: 15px; }
.value-list li { display: flex; gap: 13px; font-size: .9rem; line-height: 1.5; color: rgba(255,255,255,.9); }
.value-list__icon { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.4); }
.value-list__icon svg { width: 16px; height: 16px; }
.value-list strong { color: #fff; font-weight: 600; }

.value-band__right { position: relative; display: grid; grid-template-columns: 1fr 1fr; background: var(--wash); }
.value-band__cta { padding: 42px 34px; align-self: center; }
.value-band__cta h2 { color: var(--navy); font-size: clamp(1.35rem, 1.1rem + .8vw, 1.75rem); }
.value-band__cta p { font-size: .92rem; color: #48566e; margin-bottom: 1.4em; }
.value-band__right .value-band__photo::after { background: linear-gradient(90deg, var(--wash) 0%, transparent 42%); }

/* --- Stats ---------------------------------------------------------------- */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 20px; }
.stat { padding: 24px 20px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat__num { font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1.1; }
.stat__label { font-size: .84rem; color: var(--gray); margin-top: 4px; }

/* --- Steps ---------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 15px;
  border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; font-size: 1.05rem;
}
.step h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: .35rem; }
.step p { font-size: .885rem; color: var(--gray); margin-bottom: 0; }

/* --- Page hero (interior pages) ------------------------------------------ */
.page-hero { position: relative; padding: 54px 0 58px; background: linear-gradient(140deg, var(--navy) 0%, #0e4a92 55%, var(--blue) 100%); color: #fff; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -110px; top: -110px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.11), transparent 70%);
}
.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1190px;
}
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero p { color: rgba(255,255,255,.86); font-size: 1.03rem; margin-bottom: 0; max-width: 60ch; }
.page-hero .eyebrow { color: var(--sky); }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; font-size: .82rem; margin-bottom: 14px; color: rgba(255,255,255,.68); padding-left: 0; }
.crumbs a { color: rgba(255,255,255,.86); }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .55; }

/* Service detail hero with photo */
.detail-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.detail-hero__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.detail-hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* --- Checklist / include grid -------------------------------------------- */
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 12px 28px; list-style: none; }
.check-grid li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; font-size: .93rem; border-bottom: 1px solid var(--line); }
.check-grid li svg { width: 19px; height: 19px; color: var(--blue); flex: none; margin-top: 3px; }

.note {
  display: flex; gap: 13px; padding: 16px 18px; margin-top: 26px;
  background: var(--sky-050); border-left: 4px solid var(--blue); border-radius: var(--radius-sm);
  font-size: .88rem; color: #3a4a63;
}
.note svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 2px; }
.note p { margin: 0; }

/* --- Cards / FAQ ---------------------------------------------------------- */
.card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.card h3 { color: var(--navy); font-size: 1.06rem; }
.card p:last-child { margin-bottom: 0; }

.faq { display: grid; gap: 12px; max-width: 840px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 22px; font-weight: 600; font-size: .96rem; color: var(--navy); cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--blue); line-height: 1; transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 22px 19px; font-size: .92rem; color: var(--gray); }
.faq details > div p:last-child { margin-bottom: 0; }

/* --- CTA band ------------------------------------------------------------- */
.cta-band { position: relative; padding: 62px 0; background: linear-gradient(135deg, var(--navy) 0%, #0f4d97 100%); color: #fff; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; left: -90px; bottom: -140px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(99,179,230,.18), transparent 70%); }
.cta-band__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 0; max-width: 54ch; }

/* --- Forms ---------------------------------------------------------------- */
.form-shell { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.form-shell__head { padding: 26px 32px; background: var(--navy); color: #fff; }
.form-shell__head h2 { color: #fff; font-size: 1.32rem; margin-bottom: .2rem; }
.form-shell__head p { color: rgba(255,255,255,.8); font-size: .89rem; margin: 0; }
.form-shell__body { padding: 30px 32px 34px; }

.field { margin-bottom: 20px; }
.field > label, .field-label { display: block; margin-bottom: 7px; font-size: .875rem; font-weight: 600; color: #33405a; }
.field .req { color: #d92d20; margin-left: 2px; }
.field .hint { display: block; margin-top: 6px; font-size: .79rem; color: var(--gray); }
.input, .select, .textarea {
  width: 100%; padding: .72em .95em; background: #fff;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-size: .93rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.input:hover, .select:hover, .textarea:hover { border-color: #c9d4e2; }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,119,201,.14);
}
.textarea { min-height: 118px; resize: vertical; }
.select {
  appearance: none; padding-right: 2.5em; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8em center; background-size: 17px;
}
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0 20px; }
.field-row--3 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

.input.is-invalid, .select.is-invalid, .textarea.is-invalid { border-color: #d92d20; background: #fffbfa; }
.error-msg { display: none; margin-top: 6px; font-size: .8rem; font-weight: 500; color: #d92d20; }
.error-msg.is-shown { display: block; }

.fieldset { border: 0; padding: 0; margin: 0 0 22px; }
.fieldset > legend { padding: 0; margin-bottom: 12px; font-size: .875rem; font-weight: 600; color: #33405a; }

/* Selectable option cards (radio / checkbox) */
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 12px; }
.option-grid--wide { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }
.option {
  position: relative; display: flex; align-items: center; gap: 12px; padding: 14px 15px;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  cursor: pointer; transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.option:hover { border-color: var(--sky); background: #fbfdff; }
.option input { position: absolute; opacity: 0; width: 0; height: 0; }
.option__icon { width: 38px; height: 38px; flex: none; display: grid; place-items: center; border-radius: 9px; background: var(--sky-050); color: var(--blue); transition: .18s var(--ease); }
.option__icon svg { width: 22px; height: 22px; }
.option__label { font-size: .885rem; font-weight: 600; color: #33405a; line-height: 1.35; }
.option__sub { display: block; font-size: .77rem; font-weight: 400; color: var(--gray); margin-top: 2px; }
.option.is-selected { border-color: var(--blue); background: var(--sky-050); box-shadow: 0 0 0 3px rgba(24,119,201,.1); }
.option.is-selected .option__icon { background: var(--blue); color: #fff; }
.option.has-focus { outline: 3px solid var(--sky); outline-offset: 2px; }

/* Compact checkbox list for tasks */
.task-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)); gap: 9px; }
.task {
  position: relative; display: flex; align-items: flex-start; gap: 10px; padding: 11px 13px;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: .875rem; line-height: 1.45; cursor: pointer; transition: .16s var(--ease);
}
.task:hover { border-color: var(--sky); background: #fbfdff; }
.task input { position: absolute; opacity: 0; width: 0; height: 0; }
.task__box {
  width: 19px; height: 19px; flex: none; margin-top: 1px; display: grid; place-items: center;
  border: 1.5px solid #c2cddb; border-radius: 5px; background: #fff; transition: .16s var(--ease);
}
.task__box svg { width: 12px; height: 12px; color: #fff; opacity: 0; transition: opacity .16s var(--ease); }
.task.is-selected { border-color: var(--blue); background: var(--sky-050); }
.task.is-selected .task__box { background: var(--blue); border-color: var(--blue); }
.task.is-selected .task__box svg { opacity: 1; }
.task.has-focus { outline: 3px solid var(--sky); outline-offset: 2px; }

/* Consent checkbox */
.consent { display: flex; align-items: flex-start; gap: 11px; font-size: .84rem; color: var(--gray); line-height: 1.55; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; flex: none; accent-color: var(--blue); cursor: pointer; }

/* --- Multi-step booking --------------------------------------------------- */
.stepper { display: flex; align-items: flex-start; gap: 4px; padding: 22px 32px; background: var(--wash); border-bottom: 1px solid var(--line); }
.stepper__item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; position: relative; text-align: center; }
.stepper__item::before {
  content: ""; position: absolute; top: 15px; left: -50%; width: 100%; height: 2px;
  background: var(--line); z-index: 0;
}
.stepper__item:first-child::before { display: none; }
.stepper__item.is-done::before, .stepper__item.is-current::before { background: var(--blue); }
.stepper__dot {
  position: relative; z-index: 1; width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 50%; background: #fff; border: 2px solid var(--line);
  font-size: .8rem; font-weight: 700; color: var(--gray-400); transition: .22s var(--ease);
}
.stepper__dot svg { width: 15px; height: 15px; }
.stepper__item.is-current .stepper__dot { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 0 4px rgba(24,119,201,.14); }
.stepper__item.is-done .stepper__dot { background: var(--blue); border-color: var(--blue); color: #fff; }
.stepper__label { font-size: .74rem; font-weight: 600; color: var(--gray); letter-spacing: .01em; }
.stepper__item.is-current .stepper__label { color: var(--navy); }

.step-panel { display: none; }
.step-panel.is-active { display: block; animation: fadeUp .32s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.step-panel__title { font-size: 1.16rem; color: var(--navy); margin-bottom: .2rem; }
.step-panel__sub { font-size: .885rem; color: var(--gray); margin-bottom: 24px; }

.form-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.form-nav .spacer { margin-left: auto; }

/* Review summary */
.review { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.review__group + .review__group { border-top: 1px solid var(--line); }
.review__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 18px; background: var(--wash); }
.review__head h4 { margin: 0; font-size: .85rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); }
.review__edit { background: none; border: 0; padding: 0; font-size: .8rem; font-weight: 600; color: var(--blue); cursor: pointer; }
.review__edit:hover { text-decoration: underline; }
.review dl { display: grid; grid-template-columns: minmax(120px, 34%) 1fr; gap: 9px 18px; margin: 0; padding: 16px 18px; font-size: .885rem; }
.review dt { color: var(--gray); }
.review dd { margin: 0; font-weight: 500; color: var(--ink); overflow-wrap: anywhere; }
.review dd ul { list-style: none; }
.review dd li { position: relative; padding-left: 16px; }
.review dd li::before { content: "\2022"; position: absolute; left: 2px; color: var(--blue); }

/* Success panel */
.success { display: none; padding: 46px 32px; text-align: center; }
.success.is-shown { display: block; animation: fadeUp .4s var(--ease); }
.success__icon { width: 74px; height: 74px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: #e7f6ed; color: #12996a; }
.success__icon svg { width: 38px; height: 38px; }
.success h2 { color: var(--navy); font-size: 1.5rem; }
.success p { color: var(--gray); max-width: 50ch; margin-inline: auto; }
.success__ref { display: inline-block; margin: 8px 0 22px; padding: .5em 1.2em; background: var(--wash); border: 1px dashed var(--blue); border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700; letter-spacing: .06em; color: var(--navy); }
.form-alert {
  display: none; gap: 11px; padding: 14px 17px; margin-bottom: 22px; border-radius: var(--radius-sm);
  background: #fef3f2; border-left: 4px solid #d92d20; color: #912018; font-size: .87rem;
}
.form-alert.is-shown { display: flex; }
.form-alert svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }

/* Booking sidebar */
.booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; align-items: start; }
.side-card { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.side-card + .side-card { margin-top: 20px; }
.side-card h3 { font-size: 1rem; color: var(--navy); }
.side-card p { font-size: .875rem; color: var(--gray); }
.side-card--navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.side-card--navy h3 { color: #fff; }
.side-card--navy p { color: rgba(255,255,255,.82); }
.side-list { list-style: none; display: grid; gap: 13px; font-size: .875rem; }
.side-list li { display: flex; gap: 11px; align-items: flex-start; }
.side-list svg { width: 19px; height: 19px; color: var(--blue); flex: none; margin-top: 2px; }
.side-card--navy .side-list svg { color: var(--sky); }
.side-card--navy .side-list li { color: rgba(255,255,255,.9); }
.side-card--navy a { color: #fff; font-weight: 600; }
.side-card--navy .btn { font-weight: 600; }
.side-card--navy .btn--light { color: var(--navy); }
.side-card--navy .btn--light:hover { color: var(--navy); }

/* --- Contact -------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 350px minmax(0, 1fr); gap: 34px; align-items: start; }
.contact-methods { display: grid; gap: 14px; }
.contact-method {
  display: flex; gap: 15px; padding: 18px 20px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: .2s var(--ease);
}
.contact-method:hover { border-color: var(--sky); box-shadow: var(--shadow); }
.contact-method__icon { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--sky-050); color: var(--blue); }
.contact-method__icon svg { width: 22px; height: 22px; }
.contact-method h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--gray); font-weight: 600; margin-bottom: .25rem; }
.contact-method p, .contact-method a { margin: 0; font-size: .96rem; font-weight: 600; color: var(--navy); line-height: 1.45; }
.contact-method a:hover { color: var(--blue); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

/* --- Footer --------------------------------------------------------------- */
.contact-strip { padding: 26px 0; background: var(--navy); color: #fff; }
.contact-strip__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 20px 28px; }
.contact-strip__item { display: flex; align-items: center; gap: 13px; font-size: .9rem; }
.contact-strip__item svg { width: 21px; height: 21px; color: var(--sky); flex: none; }
.contact-strip__item a, .contact-strip__item span { color: rgba(255,255,255,.92); }
.contact-strip__item a:hover { color: #fff; text-decoration: underline; }

.site-footer { padding: 56px 0 0; background: #071f3d; color: rgba(255,255,255,.72); font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 36px; padding-bottom: 44px; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--sky); }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__sub { color: var(--sky); }
.footer-about p { margin: 18px 0 0; max-width: 38ch; line-height: 1.65; }
.footer-tagline { display: inline-block; margin-top: 14px; padding: .35em .9em; border: 1px solid rgba(255,255,255,.2); border-radius: 100px; font-size: .74rem; letter-spacing: .05em; color: var(--sky); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  padding: 20px 0 26px; border-top: 1px solid rgba(255,255,255,.11); font-size: .82rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; }
.footer-credit-row { flex-basis: 100%; margin-top: 4px; }
.footer-credit { margin: 0; font-size: .73rem; line-height: 1.7; color: rgba(255,255,255,.42); }
.footer-credit a { color: rgba(255,255,255,.62); text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover, .footer-credit a:focus-visible { color: var(--sky); }

/* --- Reveal on scroll ----------------------------------------------------- */
/* Scoped to .js-anim, which an inline head script sets. If scripting fails or
   is blocked, the rule never applies and every section stays visible. */
.js-anim .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js-anim .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1080px) {
  .booking-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 46px 0 56px; }
  .detail-hero { grid-template-columns: 1fr; gap: 30px; }
  .detail-hero__media { order: -1; }
  .value-band { grid-template-columns: 1fr; }
  .value-band__right { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  :root { --header-h: 70px; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; margin: 0; padding: 14px 20px 26px;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    transform: translateY(-14px); opacity: 0; visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .main-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { width: 100%; justify-content: space-between; padding: .8em .6em; font-size: 1rem; }
  .dropdown {
    position: static; translate: none; opacity: 1; visibility: visible; transform: none;
    min-width: 0; box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin: 2px 0 8px 12px; padding: 0 0 0 8px; display: none;
  }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.is-open .dropdown { display: block; }
  .nav-mobile-cta { display: block; margin-top: 14px; }
  .stepper { padding: 18px 16px; }
  .stepper__label { display: none; }
  .form-shell__head, .form-shell__body { padding-inline: 22px; }
  .value-band__left { grid-template-columns: 1fr; }
  .value-band__left .value-band__photo { aspect-ratio: 16 / 8; }
  .value-band__left .value-band__photo::after { background: linear-gradient(180deg, transparent 40%, var(--navy) 100%); }
  .value-band__right { grid-template-columns: 1fr; }
  .value-band__right .value-band__photo { aspect-ratio: 16 / 8; order: 2; }
  .value-band__right .value-band__photo::after { background: linear-gradient(180deg, var(--wash) 0%, transparent 42%); }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .section { padding: 52px 0; }
  .container { padding-inline: 18px; }
  .mosaic .m-third { grid-column: span 3; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .form-shell__head, .form-shell__body { padding-inline: 18px; }
  .form-shell__body { padding-top: 24px; }
  .review dl { grid-template-columns: 1fr; gap: 2px 0; padding: 14px 16px; }
  .review dt { margin-top: 8px; font-size: .8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
}
@media (max-width: 420px) {
  .stepper__dot { width: 28px; height: 28px; font-size: .74rem; }
  .stepper__item::before { top: 13px; }
}

/* --- Print ---------------------------------------------------------------- */
@media print {
  .site-header, .cta-band, .site-footer, .form-nav, .nav-toggle { display: none !important; }
  body { font-size: 12pt; }
  .step-panel { display: block !important; }
}
