:root {
  --navy: #001a48;
  --navy-deep: #000f2e;
  --navy-mid: #0a2a5c;
  --navy-soft: #e8eef8;
  --red: #c51f34;
  --red-deep: #9e1426;
  --red-soft: #fce8eb;
  --ink: #0d1b33;
  --muted: #5a6a82;
  --line: rgba(0, 26, 72, 0.12);
  --paper: #f4f6fb;
  --paper-2: #ebf0f8;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 16px;
  --max: 1180px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(197, 31, 52, 0.08), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(0, 26, 72, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f9fc 0%, var(--paper) 40%, #f2f5fa 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 246, 251, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.6rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: var(--red);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--navy);
}

.nav-cta {
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-deep);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy-mid);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(0, 26, 72, 0.04);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

/* Typography helpers */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 780;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 42rem;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-word em,
h1 em,
h2 em {
  font-style: normal;
  color: var(--red);
}

/* Hero — full bleed composition */
.hero-stage {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 15, 46, 0.92) 0%, rgba(0, 26, 72, 0.78) 45%, rgba(10, 42, 92, 0.55) 100%),
    radial-gradient(circle at 75% 35%, rgba(197, 31, 52, 0.35), transparent 42%),
    url("hero-image.svg") center / cover no-repeat;
  color: #fff;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 7rem 1.5rem 4.5rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero-brand span {
  color: #ffb3bd;
}

.hero-stage h1 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: 1.1rem;
}

.hero-stage h1 em {
  color: #ffb3bd;
}

.hero-copy {
  max-width: 34rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 42rem;
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.hero-meta span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.section-tight {
  padding: 3.5rem 1.5rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  max-width: 46rem;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-navy {
  background:
    linear-gradient(160deg, var(--navy-deep), var(--navy) 55%, var(--navy-mid));
  color: #fff;
}

.section-navy h2,
.section-navy h3,
.section-navy .eyebrow {
  color: #fff;
}

.section-navy .eyebrow {
  color: #ffb3bd;
}

.section-navy .lead,
.section-navy p {
  color: rgba(255, 255, 255, 0.78);
}

.section-panel {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(232, 238, 248, 0.65), rgba(244, 246, 251, 0.2));
}

/* Pathway / offerings */
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.path-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.path-block:hover {
  border-color: rgba(197, 31, 52, 0.35);
  transform: translateY(-3px);
}

.path-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.path-block h3 {
  font-size: 1.55rem;
}

.path-block p {
  color: var(--muted);
}

.path-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.path-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.path-list a {
  display: contents;
  text-decoration: none;
}

.path-list strong {
  color: var(--navy);
}

.path-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.path-list .go {
  color: var(--red);
  font-weight: 800;
}

.mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  background: var(--navy-soft);
  color: var(--navy);
  flex-shrink: 0;
}

.mark.red {
  background: var(--red-soft);
  color: var(--red);
}

/* Feature rows */
.feature-rows {
  display: grid;
  gap: 1rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.feature-index {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.feature-row h3 {
  margin-bottom: 0.35rem;
}

.feature-row p {
  color: var(--muted);
}

/* Audience / detail mosaic */
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
}

.mosaic-main,
.mosaic-side {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 2rem;
}

.mosaic-main {
  background:
    linear-gradient(145deg, rgba(0, 26, 72, 0.04), transparent 50%),
    var(--white);
}

.mosaic-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.mosaic-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--red);
  margin-top: 0.55rem;
}

.side-stack {
  display: grid;
  gap: 1rem;
}

.side-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.side-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.side-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.side-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Catalog preview */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-item {
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  display: grid;
  gap: 0.55rem;
  min-height: 10.5rem;
  transition: transform 0.2s var(--ease), border-color 0.2s;
}

.catalog-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 26, 72, 0.28);
}

.catalog-item .tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.catalog-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.catalog-item .price {
  margin-top: auto;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-display);
}

/* Contact channels */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.channel {
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  display: grid;
  gap: 0.35rem;
  min-height: 8.5rem;
  transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
}

.channel:hover {
  transform: translateY(-3px);
  border-color: var(--navy);
}

.channel .channel-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
}

.channel .channel-hint {
  color: var(--muted);
  font-size: 0.88rem;
}

.channel.wa:hover {
  background: #f0faf4;
  border-color: #1d9b57;
}

.channel.call:hover {
  background: var(--red-soft);
  border-color: var(--red);
}

/* Process */
.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  min-height: 12rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffb3bd;
  margin-bottom: 1rem;
}

.process-step h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

/* CTA band */
.cta-band {
  padding: 4.5rem 1.5rem;
  background:
    radial-gradient(600px 240px at 20% 0%, rgba(197, 31, 52, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
}

.cta-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.6rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

/* Page interiors */
.page-hero {
  position: relative;
  padding: 4.5rem 1.5rem 3rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 26, 72, 0.04), transparent 40%),
    linear-gradient(180deg, #eef2f9, transparent);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.page-hero h1 {
  margin-bottom: 0.85rem;
  max-width: 16ch;
}

.page-hero .lead {
  margin-top: 0.25rem;
}

.page-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.prose {
  max-width: 46rem;
  display: grid;
  gap: 1.1rem;
}

.prose p {
  color: var(--muted);
  font-size: 1.05rem;
}

.prose strong {
  color: var(--navy);
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.detail-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: grid;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease), border-color 0.2s;
  min-height: 16rem;
}

.detail-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 31, 52, 0.35);
}

.detail-panel h3 {
  font-size: 1.6rem;
}

.detail-panel p {
  color: var(--muted);
}

.detail-panel ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-top: auto;
}

.detail-panel li {
  color: var(--ink);
  padding-left: 1rem;
  position: relative;
  font-size: 0.95rem;
}

.detail-panel li::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.detail-panel .panel-cta {
  color: var(--red);
  font-weight: 800;
  margin-top: 0.5rem;
}

/* Micro catalog */
.micro-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.micro-filter {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  border-radius: var(--radius);
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.micro-filter.active,
.micro-filter:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.micro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.micro-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  display: grid;
  gap: 0.55rem;
  min-height: 12.5rem;
  transition: transform 0.2s var(--ease), border-color 0.2s;
}

.micro-card.hidden {
  display: none;
}

.micro-card-clickable {
  cursor: pointer;
}

.micro-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 26, 72, 0.28);
}

.micro-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  background: var(--navy-soft);
  color: var(--navy);
}

.micro-card h3 {
  font-size: 1.15rem;
}

.micro-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.micro-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
}

.micro-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
}

.simple-note {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--navy-soft);
  color: var(--navy);
}

.simple-note a {
  color: var(--red);
  font-weight: 800;
}

/* Contact page */
.inquiry-banner {
  background: var(--white);
  border: 1px solid rgba(197, 31, 52, 0.25);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  margin-bottom: 2rem;
  display: grid;
  gap: 0.65rem;
}

.inquiry-banner h2 {
  font-size: 1.35rem;
}

.inquiry-message {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--ink);
  font-size: 1.02rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
}

.contact-method {
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s var(--ease), border-color 0.2s;
}

.contact-method:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
}

.contact-method strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
}

.contact-method span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-aside {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-aside h3 {
  color: #fff;
}

.contact-aside p,
.contact-aside li {
  color: rgba(255, 255, 255, 0.78);
}

.contact-aside ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.contact-aside li {
  padding-left: 1rem;
  position: relative;
}

.contact-aside li::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #ffb3bd;
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.copy-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 1.5rem 2.5rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  background: #fff;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
}

.footer-brand p {
  max-width: 26rem;
  font-size: 0.95rem;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
}

/* Floating chat */
.float-contact-wrap {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  display: grid;
  justify-items: end;
  gap: 0.6rem;
}

.float-contact-btn {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 12px;
  border: none;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.float-contact-btn:hover {
  background: var(--red-deep);
}

.float-contact-btn.open {
  background: var(--red-deep);
}

.float-contact-menu {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.45rem;
  min-width: 12rem;
  display: none;
  gap: 0.25rem;
}

.float-contact-menu.is-open {
  display: grid;
}

.float-contact-link {
  text-decoration: none;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.float-contact-link:hover {
  background: var(--navy-soft);
}

/* Responsive */
@media (max-width: 980px) {
  .path-grid,
  .mosaic,
  .split-2,
  .contact-layout,
  .cta-band-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .micro-grid,
  .process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(244, 246, 251, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .logo-img {
    height: 34px;
  }

  .hero-inner {
    padding: 5.5rem 1.25rem 3rem;
  }

  .catalog-grid,
  .micro-grid,
  .process-rail,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
