/* =====================================================================
   360DesignCX — a division of The MustardTree Group
   Design system: teal-forward (clinical trust) with mustard-gold accents,
   Playfair Display + Inter, on a deep-navy canvas. Shared DNA with the group.
   ===================================================================== */

:root {
  /* Brand — royal purple with a mustard-gold accent (kept from the group) */
  --navy-900: #150c2b;
  --navy: #241654;
  --navy-700: #33236e;
  --teal: #6d28d9;
  --teal-600: #5b21b6;
  --teal-500: #6d28d9;
  --teal-400: #8b5cf6;
  --teal-bright: #a78bfa;
  --gold: #c39a37;
  --gold-400: #cfaa4a;
  --gold-100: #f4e8c8;

  /* Neutrals — lavender-biased so they read as chosen, not default grey */
  --ink: #1b1338;
  --slate: #524a6b;
  --muted: #736d88;
  --paper: #ffffff;
  --mist: #f6f4fc;
  --mist-2: #efeafa;
  --line: #e7e2f4;
  --line-strong: #d7cfec;

  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(16, 31, 44, 0.06), 0 2px 8px rgba(16, 31, 44, 0.05);
  --shadow: 0 10px 30px rgba(16, 31, 44, 0.08), 0 2px 8px rgba(16, 31, 44, 0.05);
  --shadow-lg: 0 30px 70px rgba(20, 11, 43, 0.18);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--slate);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal-600);
  text-decoration: none;
}
a:hover {
  color: var(--teal);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 1.05em;
  height: 1.05em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(109, 40, 217, 0.28);
  color: var(--btn-fg);
}
.btn--primary {
  --btn-bg: var(--teal);
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.22);
}
.btn--primary:hover {
  --btn-bg: var(--teal-500);
}
.btn--gold {
  --btn-bg: var(--gold);
  --btn-fg: #241a04;
}
.btn--gold:hover {
  --btn-bg: var(--gold-400);
  box-shadow: 0 12px 26px rgba(195, 154, 55, 0.35);
}
.btn--dark {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
}
.btn--dark:hover {
  --btn-bg: var(--navy-700);
  box-shadow: 0 12px 26px rgba(20, 11, 43, 0.3);
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  --btn-bg: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: none;
}
.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--teal-600);
  border-color: var(--line-strong);
}
.btn--outline:hover {
  --btn-bg: var(--mist);
  --btn-fg: var(--teal);
  border-color: var(--teal);
  box-shadow: none;
}
.btn--sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
}
.btn--lg {
  padding: 1.05rem 1.9rem;
  font-size: 1.05rem;
}
.btn--block {
  width: 100%;
}

/* ---------- Group ribbon ---------- */
.ribbon {
  background: var(--navy-900);
  color: #ded5f2;
  font-size: 0.82rem;
}
.ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
}
.ribbon__text strong {
  color: #fff;
}
.ribbon__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-400);
  font-weight: 600;
  white-space: nowrap;
}
.ribbon__link:hover {
  color: #fff;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}
.brand__mark {
  flex: none;
}
.brand__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.brand__cx {
  color: var(--teal);
}
.nav {
  display: flex;
  gap: 1.9rem;
  margin-left: auto;
}
.nav a {
  color: var(--slate);
  font-weight: 500;
  font-size: 0.98rem;
  position: relative;
  padding-block: 0.25rem;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.28s var(--ease);
}
.nav a:hover {
  color: var(--ink);
}
.nav a:hover::after {
  width: 100%;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem clamp(1.25rem, 4vw, 2rem) 1.5rem;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-nav a:not(.btn) {
  padding: 0.85rem 0.5rem;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn {
  margin-top: 0.75rem;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 0.9rem;
}
.eyebrow--light {
  color: var(--gold-400);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #efeafb;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: min(90vh, 840px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1666214280557-f1b5022eb634?auto=format&fit=crop&w=1920&q=80")
    center 30% / cover no-repeat;
  transform: scale(1.05);
  z-index: -2;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      105deg,
      rgba(20, 11, 43, 0.94) 0%,
      rgba(20, 11, 43, 0.82) 38%,
      rgba(28, 16, 60, 0.6) 64%,
      rgba(41, 24, 92, 0.4) 100%
    ),
    radial-gradient(120% 90% at 88% 22%, rgba(124, 58, 237, 0.24), transparent 62%);
}
.hero__inner {
  width: 100%;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero__title {
  font-size: clamp(2.35rem, 5.2vw, 4rem);
  color: #fff;
  margin: 0.4rem 0 1.3rem;
  max-width: 15ch;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: #ded5f2;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.25rem;
}
.hero__badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #e0d8f4;
}
.hero__badges svg {
  width: 20px;
  height: 20px;
  color: var(--gold-400);
  flex: none;
}

/* Hero floating panel */
.hero__panel {
  position: relative;
  min-height: 340px;
}
.glass {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(20, 11, 43, 0.35);
  color: #fff;
  padding: 1rem 1.15rem;
}
.glass strong {
  display: block;
  font-size: 0.98rem;
}
.glass small {
  color: #c9bee6;
  font-size: 0.82rem;
}
.glass--status {
  top: 6%;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.glass--status .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.22);
  flex: none;
}
.glass--toast {
  top: 41%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.glass--toast .glass__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-bright);
  color: #1a0f33;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: none;
}
.glass--metric {
  bottom: 4%;
  right: 10%;
  width: 210px;
}
.glass__metric {
  display: flex;
  flex-direction: column;
}
.glass__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.glass__label {
  font-size: 0.78rem;
  color: #c9bee6;
}
.glass__spark {
  margin-top: 0.4rem;
  height: 34px;
}
.glass__spark svg {
  width: 100%;
  height: 100%;
}

/* ---------- Metrics band ---------- */
.metrics {
  background: var(--navy);
  color: #fff;
}
.metrics__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.metric {
  padding: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.metric:last-child {
  border-right: none;
}
.metric__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  color: #fff;
  line-height: 1;
}
.metric__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #c7bce4;
}

/* ---------- Sections ---------- */
.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.section--mist {
  background: var(--mist);
}
.section--dark {
  background: linear-gradient(160deg, var(--navy-900), var(--navy) 60%);
  color: #ded5f2;
}
.section__head {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.section__title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}
.section__title--light {
  color: #fff;
}
.section__intro {
  margin-top: 1.1rem;
  font-size: 1.12rem;
  color: var(--muted);
}
.section--dark .section__intro {
  color: #c7bce4;
}

/* ---------- Cards (services) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.card:hover::before {
  transform: scaleX(1);
}
.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(109, 40, 217, 0.14), rgba(167, 139, 250, 0.14));
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.card__icon svg {
  width: 28px;
  height: 28px;
}
.card__title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.card p {
  color: var(--muted);
  font-size: 0.98rem;
}
.card__list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
}
.card__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--slate);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Split (spotlights) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media {
  order: -1;
}
.split__lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}
.section--dark .split__lead {
  color: #e2daf5;
}
.split__body {
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.split__media {
  position: relative;
}
.split__media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.split__chip {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(36, 22, 84, 0.82);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.split__chip svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
}
.split__chip--gold {
  background: rgba(195, 154, 55, 0.95);
  color: #241a04;
}
.split__chip--gold svg {
  color: #241a04;
}

.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.ticks li {
  position: relative;
  padding-left: 2rem;
  color: #d3c9ee;
}
.ticks li strong {
  color: #fff;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.16);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.72em;
  width: 5px;
  height: 9px;
  border: solid #1a0f33;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Journey chips */
.journey {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.journey__step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.journey__step span {
  font-family: var(--font-display);
  color: var(--teal);
  font-weight: 800;
}

/* ---------- Sectors ---------- */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.sector {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.sector:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
}
.sector__ico {
  font-size: 1.4rem;
  line-height: 1;
}
.sector-band {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sector-band img {
  width: 100%;
  height: clamp(220px, 30vw, 340px);
  object-fit: cover;
}
.sector-band figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1.75rem 1.5rem;
  background: linear-gradient(transparent, rgba(20, 11, 43, 0.85));
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  background: linear-gradient(150deg, var(--teal), var(--teal-bright));
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 18px rgba(109, 40, 217, 0.28);
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.step p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.9rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.plan--featured {
  border-color: var(--teal);
  box-shadow: 0 24px 55px rgba(109, 40, 217, 0.18);
  transform: translateY(-8px);
}
.plan__flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #241a04;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.plan__name {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.plan__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1rem;
}
.plan__from {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.plan__desc {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 1.25rem;
}
.plan__list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.plan__list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
  color: var(--slate);
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.12);
}
.plan__list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.5em;
  width: 4px;
  height: 8px;
  border: solid var(--teal);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.plan .btn {
  margin-top: auto;
}
.pricing__note {
  text-align: center;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 90%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(207, 170, 74, 0.4), transparent 70%);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}
.cta-band p {
  color: #e2daf5;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

/* ---------- Contact ---------- */
.split--contact {
  align-items: start;
}
.contact__points {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.contact__points li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__points svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 12px;
  background: var(--mist-2);
  color: var(--teal);
  flex: none;
}
.contact__points strong {
  display: block;
  color: var(--ink);
}
.contact__points span {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact__form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: #fdfefe;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.14);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #d9534f;
  box-shadow: 0 0 0 4px rgba(217, 83, 79, 0.14);
}
.field__error {
  margin-top: 0.35rem;
  color: #c0392b;
  font-size: 0.84rem;
}
.field--consent .check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 400;
}
.field--consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--teal);
  flex: none;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}
.form__status.is-success {
  background: #e7f6ef;
  color: #14663f;
  border: 1px solid #b7e2cd;
}
.form__status.is-error {
  background: #fdeceb;
  color: #a5302b;
  border: 1px solid #f3c4c1;
}
.btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: #a89fc4;
  padding-top: clamp(3.5rem, 6vw, 5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.brand--footer .brand__text {
  color: #fff;
}
.footer__tagline {
  margin: 1.1rem 0;
  color: #9c93bd;
  font-size: 0.95rem;
}
.footer__group {
  color: var(--gold-400);
  font-weight: 600;
  font-size: 0.9rem;
}
.footer__group:hover {
  color: #fff;
}
.footer__col h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__col a {
  display: block;
  color: #a89fc4;
  padding: 0.35rem 0;
  font-size: 0.94rem;
}
.footer__col a:hover {
  color: #fff;
}
.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__legal p {
  font-size: 0.82rem;
  color: #8a80ad;
  max-width: 80ch;
}
.footer__legal strong {
  color: #ded5f2;
}

/* ---------- Entrance ----------
   Content is ALWAYS visible (no JS gating). Only the hero — always above the
   fold — gets a gentle load-in, so nothing can ever render blank. */
@media (prefers-reduced-motion: no-preference) {
  .hero__content {
    animation: rise 0.8s var(--ease) both;
  }
  .hero__panel {
    animation: rise 0.8s var(--ease) 0.12s both;
  }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .card:hover,
  .sector:hover {
    transform: none;
  }
}

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem 1.5rem;
}
.team__card {
  text-align: center;
}
.team__photo {
  position: relative;
  width: min(72%, 172px);
  margin: 0 auto 1.15rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(150deg, var(--teal), var(--navy));
  box-shadow: var(--shadow), 0 0 0 5px #fff, 0 0 0 6px var(--line-strong);
}
.team__mono {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.7rem;
  letter-spacing: 0.03em;
  color: var(--gold-400);
}
.team__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team__img.is-missing {
  display: none;
}
.team__name {
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
}
.team__role {
  color: var(--muted);
  font-size: 0.92rem;
}
.team__card--lead .team__photo {
  box-shadow: var(--shadow), 0 0 0 5px #fff, 0 0 0 6px var(--gold);
}
.team__tag {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a5114;
  background: var(--gold-100);
  border: 1px solid var(--gold);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards,
  .sectors {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .plan--featured {
    transform: none;
    order: -1;
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__panel {
    display: none;
  }
  .metrics__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .metric:nth-child(2) {
    border-right: none;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__media {
    order: 0;
  }
  .split__media {
    max-width: 620px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .nav,
  .site-header__actions .btn--sm {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-nav:not([hidden]) {
    display: flex;
  }
  .ribbon__text {
    font-size: 0.75rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .cards,
  .sectors,
  .steps {
    grid-template-columns: 1fr;
  }
  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .journey {
    grid-template-columns: 1fr;
  }
  .ribbon__text {
    display: none;
  }
  .ribbon__inner {
    justify-content: center;
  }
}
