:root {
  --bg: #f5ead2;
  --bg-soft: #fffaf1;
  --bg-mist: #f7f3eb;
  --surface: rgba(255, 250, 242, 0.82);
  --surface-strong: #fffaf0;
  --surface-deep: #17314a;
  --line: rgba(24, 44, 62, 0.12);
  --text: #182b3b;
  --muted: #516477;
  --brand: #d16228;
  --brand-deep: #b94a19;
  --brand-soft: #efb85b;
  --navy: #1a3b56;
  --navy-soft: #3d617c;
  --teal: #3d7d88;
  --sand: #efd18c;
  --shadow: 0 24px 70px rgba(24, 44, 62, 0.12);
  --shadow-soft: 0 18px 42px rgba(24, 44, 62, 0.08);
  --radius-xl: 38px;
  --radius: 26px;
  --radius-sm: 18px;
  --hero-frame-radius: 30px;
  --hero-frame-inner-radius: 22px;
  --hero-frame-padding: 0.78rem;
  --hero-frame-image-padding: 0.58rem;
  --hero-frame-min-height: 224px;
  --max: 1640px;
  --page-gutter: 2rem;
  --page-gutter-mobile: 1rem;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-head: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 209, 140, 0.72), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(209, 98, 40, 0.18), transparent 18%),
    linear-gradient(180deg, #f5ead2 0%, #fbf5e8 42%, #f8f6f1 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(rgba(24, 58, 86, 0.12), rgba(24, 58, 86, 0.12)) left var(--page-gutter) top 0 / 1px 100% no-repeat,
    linear-gradient(rgba(24, 58, 86, 0.12), rgba(24, 58, 86, 0.12)) right var(--page-gutter) top 0 / 1px 100% no-repeat;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: var(--page-gutter);
  top: -3.2rem;
  z-index: 120;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(24, 44, 62, 0.22);
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 0.9rem;
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(250, 243, 227, 0.94);
  border-bottom: 1px solid rgba(24, 44, 62, 0.06);
  box-shadow: 0 18px 42px rgba(24, 44, 62, 0.08);
}

.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.98rem 0;
}

.site-header .container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-left: 1px solid rgba(24, 58, 86, 0.07);
  border-right: 1px solid rgba(24, 58, 86, 0.07);
}

.brand {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  padding: 0.42rem 0.92rem 0.42rem 0.68rem;
  border-radius: 26px;
  border: 1px solid rgba(209, 98, 40, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 241, 220, 0.94));
  box-shadow: 0 16px 28px rgba(123, 86, 30, 0.1);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 0.06rem;
}

.brand-mark::after {
  display: none;
}

.brand img {
  width: 58px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 8px 14px rgba(24, 44, 62, 0.12));
}

.brand-text {
  min-width: 0;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-family: var(--font-head);
  color: #153047;
  font-size: 1.42rem;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text span {
  color: rgba(24, 58, 86, 0.72);
  font-size: 0.6rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.12rem;
  min-width: 0;
  flex-wrap: nowrap;
  padding-right: 0.22rem;
}

.site-nav a {
  padding: 0.74rem 0.64rem;
  border-radius: 999px;
  color: #3c5063;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav .button {
  flex: 0 0 auto;
  margin-right: 0.18rem;
  padding: 0.78rem 1.06rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--navy);
  background: rgba(24, 58, 86, 0.09);
}

.resource-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 1.5rem;
  align-items: start;
}

.resource-links {
  display: grid;
  gap: 0.72rem;
}

.resource-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(61, 125, 136, 0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 244, 240, 0.82));
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(24, 44, 62, 0.08);
}

.resource-links-external a::after {
  content: "EXT";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: rgba(61, 125, 136, 0.14);
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.resource-links a.resource-pdf-link::after {
  content: "PDF";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.55rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(201, 90, 36, 0.14);
  color: var(--brand-deep);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}

.resource-copy .note {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-left: 4px solid var(--teal);
  border-radius: 14px;
  background: rgba(61, 125, 136, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1500px) and (min-width: 1181px) {
  .brand {
    gap: 0.55rem;
    padding: 0.36rem 0.62rem 0.36rem 0.52rem;
  }

  .brand img {
    width: 48px;
  }

  .brand-text strong {
    font-size: 1.24rem;
  }

  .brand-text span {
    font-size: 0.56rem;
    letter-spacing: 0;
  }

  .site-nav a {
    padding: 0.68rem 0.48rem;
    font-size: 0.86rem;
  }

  .site-nav .button {
    padding: 0.74rem 0.94rem;
  }
}

a:focus-visible,
.button:focus-visible,
button.button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(209, 98, 40, 0.4);
  outline-offset: 3px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.92rem 1.24rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
button.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #ee8740 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(209, 98, 40, 0.24);
}

.button-secondary {
  background: rgba(24, 58, 86, 0.08);
  color: var(--navy);
  border: 1px solid rgba(24, 58, 86, 0.08);
}

.hero-support-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.7rem;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(24, 58, 86, 0.18);
}

.page-shell {
  padding: 1.4rem 0 4.4rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(243, 225, 182, 0.94) 68%, rgba(232, 198, 119, 0.88)),
    radial-gradient(circle at top right, rgba(209, 98, 40, 0.18), transparent 28%);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -4rem auto auto -3rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 65%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -6rem -5rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(61, 125, 136, 0.16), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  align-items: center;
  padding: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.56rem 0.98rem;
  border-radius: 999px;
  background: rgba(24, 58, 86, 0.08);
  color: var(--navy);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.hero-premium .eyebrow {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(135deg, rgba(232, 243, 223, 0.99), rgba(200, 220, 182, 0.97));
  border: 1px solid rgba(92, 123, 72, 0.24);
  color: #3d5636;
  box-shadow: 0 12px 22px rgba(76, 103, 61, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero h1,
.page-title h1 {
  margin: 1rem 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 12ch;
  text-wrap: balance;
}

.hero p,
.lede {
  max-width: 62ch;
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1.03rem;
  text-wrap: pretty;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(24, 58, 86, 0.08);
  border: 1px solid rgba(24, 58, 86, 0.08);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-metric,
.stat-card,
.card,
.faq-item,
.panel,
.badge-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-metric {
  padding: 1rem;
}

.hero-metric strong,
.stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.38rem;
  line-height: 1.04;
  color: var(--navy);
}

.hero-metric span,
.stat-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.91rem;
}

.hero-stage {
  position: relative;
  min-height: 100%;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 10% 5% 6% 16%;
  border-radius: 38% 62% 56% 44% / 50% 38% 62% 50%;
  background: radial-gradient(circle at center, rgba(255, 250, 238, 0.95), rgba(236, 203, 126, 0.94) 55%, rgba(206, 140, 59, 0.46) 100%);
  filter: blur(4px);
}

.hero-stage::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 36%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(24, 58, 86, 0.18), transparent 70%);
}

.hero-art-panel {
  position: relative;
  z-index: 1;
  padding: 1.15rem;
}

.hero-art-panel img {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  filter: drop-shadow(0 28px 55px rgba(126, 71, 20, 0.2));
  animation: heroFloat 7s ease-in-out infinite;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  max-width: 220px;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: rgba(255, 250, 242, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--navy);
}

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

.note-top {
  top: 12%;
  left: -1%;
  animation: noteFloat 6s ease-in-out infinite;
}

.note-bottom {
  right: 2%;
  bottom: 7%;
  animation: noteFloat 6s ease-in-out infinite reverse;
}

.section {
  padding: 3.1rem 0 0;
}

.section h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.95rem, 3vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.35rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
  text-wrap: pretty;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.1rem;
}

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

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

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

.section-header > *,
.spotlight-layout > *,
.split > *,
.contact-grid > *,
.hero-grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.badge-grid > *,
.faq-grid > *,
.feature-layout > *,
.services-grid > *,
.stat-mosaic > * {
  min-width: 0;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 1rem;
  align-items: stretch;
}

.service-card-primary {
  grid-row: span 2;
}

.card,
.panel,
.stat-card,
.faq-item {
  padding: 1.25rem;
}

.card h3,
.panel h3,
.faq-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  line-height: 1.1;
}

.card p,
.panel p,
.faq-item p,
.card li,
.panel li {
  color: var(--muted);
}

.image-shell,
.split-image,
.warm-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 25%, rgba(255, 251, 243, 0.98), rgba(239, 214, 156, 0.92) 68%, rgba(224, 181, 100, 0.84));
}

.image-shell {
  min-height: 220px;
  margin-bottom: 1rem;
  padding: 0.9rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.service-card-primary .image-shell {
  min-height: 300px;
}

.image-shell::after,
.warm-panel::after,
.split-image::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 6%;
  height: 18px;
  border-radius: 50%;
  background: rgba(120, 70, 26, 0.18);
  filter: blur(16px);
}

.image-shell img,
.split-image img,
.warm-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-tag {
  display: inline-flex;
  padding: 0.35rem 0.68rem;
  border-radius: 999px;
  background: rgba(209, 98, 40, 0.12);
  color: var(--brand-deep);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.mini-list,
.list-clean,
.check-list {
  list-style: none;
  padding: 0;
}

.mini-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.95rem 0 1.2rem;
}

.mini-list li,
.list-clean li {
  position: relative;
  padding-left: 1.18rem;
}

.mini-list li::before,
.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
}

.list-clean {
  margin: 0;
}

.list-clean li {
  margin: 0.55rem 0;
}

.section-highlight {
  position: relative;
}

.spotlight-layout,
.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.2rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.98fr 1.02fr;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.15rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  box-shadow: 0 0 0 6px rgba(209, 98, 40, 0.12);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.badge-card {
  padding: 0.95rem 1rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy);
}

.warm-panel {
  padding: 1rem;
  border: 1px solid rgba(24, 58, 86, 0.08);
  box-shadow: var(--shadow);
}

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

.stat-card {
  text-align: center;
  padding: 1.35rem 1rem;
}

.steps {
  counter-reset: step;
}

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

.step-home {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 255, 255, 0.72));
}

.step-card {
  display: grid;
  gap: 0.9rem;
}

.step-card img {
  border-radius: 22px;
  border: 1px solid rgba(24, 44, 62, 0.08);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  color: #fff;
  font-weight: 800;
}

.sector-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.sector-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: rgba(24, 58, 86, 0.07);
  border: 1px solid rgba(24, 58, 86, 0.08);
  box-shadow: 0 8px 18px rgba(24, 44, 62, 0.05);
  color: var(--navy);
  font-weight: 700;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.1rem;
}

.contact-list a {
  color: var(--navy);
  font-weight: 700;
}

form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(24, 44, 62, 0.16);
  background: #fff;
  font: inherit;
  color: var(--text);
}

select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.8rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(24, 58, 86, 0.55) 50%),
    linear-gradient(135deg, rgba(24, 58, 86, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 1.18rem) calc(50% - 0.15rem),
    calc(100% - 0.86rem) calc(50% - 0.15rem);
  background-size: 0.42rem 0.42rem, 0.42rem 0.42rem;
  background-repeat: no-repeat;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: rgba(209, 98, 40, 0.34);
  box-shadow: 0 0 0 4px rgba(209, 98, 40, 0.1);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

input[type="file"] {
  padding: 0.72rem 0.82rem;
  background: rgba(255, 252, 246, 0.92);
}

input[type="file"]::file-selector-button {
  margin-right: 0.8rem;
  padding: 0.62rem 0.88rem;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 58, 86, 0.1);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.form-note,
.microcopy {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  position: relative;
  margin-top: 3rem;
  padding: 2.35rem;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 86% 16%, rgba(239, 184, 91, 0.2), transparent 14%),
    linear-gradient(135deg, #10263a 0%, #183a56 58%, #2c596e 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%);
  background-size: 36px 36px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 88%);
}

.cta-band h2,
.cta-band p {
  position: relative;
  color: inherit;
}

.cta-band .button-primary {
  box-shadow: 0 16px 32px rgba(209, 98, 40, 0.3);
}

.cta-band .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.site-footer {
  padding: 3rem 0 2.5rem;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  padding: 1.7rem;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(12, 29, 43, 0.97), rgba(31, 64, 88, 0.94));
  color: #fff6e3;
  box-shadow: var(--shadow);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.footer-mark img {
  width: 62px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 18px rgba(3, 8, 13, 0.18));
}

.footer-brand-copy strong,
.footer-brand-copy span {
  display: block;
}

.footer-brand-copy strong {
  font-size: 1.35rem;
  line-height: 1;
}

.footer-brand-copy span {
  margin-top: 0.18rem;
  color: rgba(255, 241, 212, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-lede {
  margin: 1rem 0 0;
  max-width: 62ch;
  color: rgba(255, 241, 212, 0.88);
}

.footer-meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.footer-meta a,
.footer-meta span {
  color: rgba(255, 247, 231, 0.94);
  font-weight: 700;
}

.footer-column {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 0.9rem;
}

.footer-links-title {
  color: rgba(255, 241, 212, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
  align-content: start;
}

.footer-links a {
  padding: 0.74rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff4d3;
  font-weight: 800;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.page-title {
  margin-bottom: 1rem;
}

.page-title p {
  max-width: 60ch;
}

.notice {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(61, 125, 136, 0.1);
  color: var(--navy);
  font-weight: 700;
}

.fssd-hero {
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.92), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(239, 184, 91, 0.18), transparent 16%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 238, 0.98) 56%, rgba(245, 232, 201, 0.96));
  box-shadow: 0 28px 72px rgba(123, 86, 30, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.fssd-hero-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(370px, 0.76fr);
  gap: clamp(1.05rem, 1.82vw, 2rem);
  padding: clamp(1.5rem, 2.28vw, 2.18rem);
  min-height: clamp(610px, 46vw, 680px);
  align-items: stretch;
}

.fssd-hero .eyebrow,
.fssd-overview .eyebrow,
.fssd-sector-section .eyebrow,
.fssd-route-section .eyebrow,
.fssd-scope-section .eyebrow,
.fssd-support-section .eyebrow,
.fssd-process-section .eyebrow,
.fssd-faq-section .eyebrow,
.fssd-cta .eyebrow {
  background: linear-gradient(135deg, rgba(236, 241, 231, 0.96), rgba(225, 232, 214, 0.96));
  border: 1px solid rgba(104, 125, 86, 0.16);
  color: #43554a;
  box-shadow: 0 10px 18px rgba(68, 86, 72, 0.06);
}

.fssd-hero h1 {
  max-width: none;
  font-size: clamp(2.05rem, 3vw, 3.22rem);
  line-height: 0.93;
  margin: 0.78rem 0 0.54rem;
}

.fssd-hero p {
  max-width: 56ch;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.fssd-hero .hero-actions {
  margin-top: 0.72rem;
}

.fssd-hero .hero-points {
  margin-bottom: 0.98rem;
  gap: 0.5rem;
}

.fssd-hero .hero-points li {
  font-size: 0.93rem;
}

.fssd-hero .hero-points li::before {
  width: 0.68rem;
  height: 0.68rem;
  top: 0.52rem;
}

.fssd-hero .hero-title-line,
.bp-hero .hero-title-line {
  display: block;
}

.fssd-hero-panel {
  position: relative;
  display: grid;
  align-self: stretch;
  grid-template-rows: auto minmax(var(--hero-frame-min-height), 1fr) auto;
  gap: 0.58rem;
  padding: var(--hero-frame-padding);
  border-radius: var(--hero-frame-radius);
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 240, 0.9));
  box-shadow: 0 24px 48px rgba(24, 44, 62, 0.08);
}

.image-shell-fssd-hero {
  min-height: clamp(340px, 30vw, 420px);
  height: 100%;
  margin: 0;
  padding: var(--hero-frame-image-padding);
  border-radius: var(--hero-frame-inner-radius);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(160deg, rgba(255, 250, 242, 0.98), rgba(241, 224, 193, 0.94));
}

.image-shell-fssd-hero img {
  filter: contrast(1.01) saturate(0.99) brightness(0.98) drop-shadow(0 22px 30px rgba(128, 92, 36, 0.12));
}

.fssd-hero-card-grid {
  gap: 0.55rem;
}

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

.hero-card-rail span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.76rem;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 58, 86, 0.06);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 10px 20px rgba(24, 44, 62, 0.05);
}

.fssd-submission-hero-grid {
  padding: clamp(1.5rem, 2.28vw, 2.18rem);
  gap: clamp(1.05rem, 1.82vw, 2rem);
}

.fssd-submission-hero h1 {
  font-size: clamp(1.94rem, 2.78vw, 3.02rem);
  margin: 0.7rem 0 0.46rem;
}

.fssd-submission-hero p {
  font-size: 0.92rem;
  margin-bottom: 0.72rem;
}

.fssd-submission-hero .hero-points {
  margin-bottom: 0.88rem;
  gap: 0.46rem;
}

.fssd-submission-hero .hero-points li {
  font-size: 0.91rem;
}

.fssd-submission-hero-panel {
  gap: 0.58rem;
  padding: var(--hero-frame-padding);
}

.fssd-submission-image-shell {
  min-height: var(--hero-frame-min-height);
  margin-bottom: 0;
}

.fssd-submission-hero .hero-actions {
  align-items: center;
  gap: 0.72rem;
}

.fssd-submission-hero-rail span,
.fssd-submission-hero-card-rail span {
  min-height: 4.25rem;
  padding: 0.66rem 0.58rem;
  font-size: 0.68rem;
  line-height: 1.28;
  word-break: normal;
  overflow-wrap: anywhere;
}

.fssd-mini-card {
  padding: 0.7rem 0.76rem;
  border-radius: 16px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(24, 44, 62, 0.05);
}

.fssd-mini-card strong,
.fssd-mini-card span {
  display: block;
}

.fssd-mini-card strong {
  margin-bottom: 0.22rem;
  color: var(--navy);
  font-size: 0.9rem;
}

.fssd-mini-card span {
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.45;
}

.fssd-glance-grid,
.fssd-route-grid {
  align-items: stretch;
}

.fssd-glance-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 242, 0.92));
}

.fssd-glance-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(209, 98, 40, 0.9), rgba(239, 184, 91, 0.88));
}

.fssd-glance-card h3 {
  font-size: 1.46rem;
  margin-bottom: 0.7rem;
}

.fssd-sector-section .section-header {
  margin-bottom: 1rem;
}

.fssd-sector-section {
  padding-top: clamp(1.5rem, 2.6vw, 2.4rem);
}

.fssd-sector-cloud {
  gap: 0.72rem;
  max-width: 78rem;
}

.fssd-sector-cloud .sector-chip {
  border: 1px solid rgba(24, 58, 86, 0.1);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.74), transparent 30%),
    linear-gradient(135deg, rgba(229, 108, 74, 0.16), rgba(255, 244, 219, 0.96));
  color: #8b4c2b;
  box-shadow: 0 12px 24px rgba(24, 44, 62, 0.07);
}

.fssd-sector-cloud .sector-chip:nth-child(3n+2) {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.74), transparent 30%),
    linear-gradient(135deg, rgba(86, 145, 116, 0.18), rgba(235, 249, 240, 0.95));
  color: #2f6f50;
}

.fssd-sector-cloud .sector-chip:nth-child(3n) {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.74), transparent 30%),
    linear-gradient(135deg, rgba(74, 118, 198, 0.17), rgba(236, 244, 255, 0.96));
  color: #345e9a;
}

.fssd-route-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.2rem;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 242, 0.92));
  box-shadow: 0 20px 40px rgba(24, 44, 62, 0.06);
}

.fssd-route-card h3 {
  font-size: 1.5rem;
}

.fssd-route-card .image-shell {
  min-height: 245px;
  margin-bottom: 1rem;
  padding: 0.95rem;
}

.fssd-route-card:nth-child(1) .image-shell {
  box-shadow: inset 0 0 0 1px rgba(74, 118, 198, 0.12);
}

.fssd-route-card:nth-child(2) .image-shell {
  box-shadow: inset 0 0 0 1px rgba(219, 108, 45, 0.12);
}

.fssd-route-card:nth-child(3) .image-shell {
  box-shadow: inset 0 0 0 1px rgba(88, 145, 78, 0.12);
}

.fssd-route-card .fssd-route-image {
  min-height: 0;
  aspect-ratio: auto;
  align-items: center;
  padding: 0.65rem;
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.96), rgba(245, 229, 196, 0.88));
  box-shadow: none;
}

.fssd-route-card .fssd-route-image::after {
  display: none;
}

.fssd-route-card .fssd-route-image img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: 22px;
}

.fssd-route-card:nth-child(1) .service-tag {
  background: rgba(74, 118, 198, 0.12);
  color: #4c6fb5;
}

.fssd-route-card:nth-child(2) .service-tag {
  background: rgba(219, 108, 45, 0.12);
  color: #be632e;
}

.fssd-route-card:nth-child(3) .service-tag {
  background: rgba(88, 145, 78, 0.13);
  color: #547f47;
}

.fssd-route-card .button {
  width: fit-content;
  margin-top: auto;
}

.fssd-scope-layout,
.fssd-support-layout {
  gap: clamp(1.25rem, 2.6vw, 2.1rem);
}

.fssd-scope-panel {
  padding: 1.35rem 1.3rem;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 240, 0.9));
  box-shadow: 0 18px 36px rgba(24, 44, 62, 0.06);
}

.fssd-scope-panel h3 {
  font-size: 1.65rem;
  margin-bottom: 0.9rem;
}

.fssd-support-copy {
  max-width: 47rem;
}

.fssd-support-visual {
  min-height: 460px;
}

.fssd-support-badges .badge-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 244, 231, 0.96));
}

.fssd-process-section .section-header {
  margin-bottom: 1.4rem;
}

.fssd-faq-section .faq-grid {
  gap: 1.05rem;
}

.fssd-cta {
  margin-top: 2.4rem;
}

.bp-hero {
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.93), transparent 18%),
    radial-gradient(circle at 84% 12%, rgba(175, 195, 134, 0.14), transparent 17%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.99), rgba(250, 251, 245, 0.98) 56%, rgba(239, 243, 232, 0.96));
  box-shadow: 0 28px 72px rgba(88, 112, 66, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.bp-hero-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(370px, 0.76fr);
  gap: clamp(1.05rem, 1.82vw, 2rem);
  padding: clamp(1.5rem, 2.28vw, 2.18rem);
}

.bp-hero .eyebrow,
.bp-overview .eyebrow,
.bp-focus-section .eyebrow,
.bp-trigger-section .eyebrow,
.bp-support-section .eyebrow,
.bp-related-section .eyebrow,
.bp-process-section .eyebrow,
.bp-faq-section .eyebrow,
.bp-cta .eyebrow {
  background: linear-gradient(135deg, rgba(236, 243, 227, 0.98), rgba(225, 234, 211, 0.98));
  border: 1px solid rgba(110, 141, 83, 0.16);
  color: #4d6240;
  box-shadow: 0 10px 18px rgba(86, 112, 66, 0.06);
}

.bp-hero h1 {
  max-width: none;
  font-size: clamp(1.95rem, 2.9vw, 3.08rem);
  line-height: 0.93;
  margin: 0.72rem 0 0.48rem;
}

.bp-hero p {
  max-width: 56ch;
  font-size: 0.9rem;
  margin-bottom: 0.72rem;
}

.bp-hero .hero-actions {
  margin-top: 0.72rem;
}

.bp-hero .hero-points {
  margin-bottom: 0.9rem;
  gap: 0.46rem;
}

.bp-hero .hero-points li {
  font-size: 0.9rem;
}

.bp-hero .hero-points li::before {
  background: linear-gradient(135deg, #73935a, #aac38d);
  box-shadow: 0 0 0 5px rgba(115, 147, 90, 0.12);
}

.bp-hero-panel {
  gap: 0.58rem;
  padding: var(--hero-frame-padding);
  border-radius: var(--hero-frame-radius);
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 237, 0.93));
  box-shadow: 0 24px 48px rgba(78, 104, 57, 0.08);
}

.bp-hero-panel .service-tag,
.bp-glance-card .service-tag,
.bp-focus-card .service-tag,
.bp-trigger-panel .service-tag,
.bp-related-card .service-tag {
  background: rgba(106, 145, 74, 0.12);
  color: #5b7f47;
}

.image-shell-bp-hero {
  min-height: var(--hero-frame-min-height);
  margin: 0;
  padding: var(--hero-frame-image-padding);
  border-radius: var(--hero-frame-inner-radius);
  background:
    radial-gradient(circle at 50% 21%, rgba(255, 255, 255, 0.94), transparent 27%),
    linear-gradient(160deg, rgba(249, 252, 245, 0.98), rgba(228, 237, 213, 0.94));
}

.image-shell-bp-hero img {
  filter: contrast(1.01) saturate(0.98) brightness(0.985) drop-shadow(0 22px 30px rgba(81, 110, 61, 0.12));
}

.bp-hero-card-grid {
  gap: 0.55rem;
}

.bp-mini-card {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(47, 76, 109, 0.05);
}

.bp-glance-card::before,
.bp-focus-card::before {
  background: linear-gradient(90deg, rgba(78, 120, 164, 0.92), rgba(138, 176, 211, 0.92));
}

.bp-sector-cloud {
  margin-top: 1rem;
}

.bp-focus-grid,
.bp-related-grid {
  align-items: stretch;
}

.bp-focus-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 1.15rem 1.18rem 1.2rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.93));
  box-shadow: 0 20px 40px rgba(47, 76, 109, 0.06);
}

.bp-focus-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
}

.bp-focus-card h3,
.bp-related-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.68rem;
}

.bp-trigger-layout,
.bp-support-layout {
  gap: clamp(1.25rem, 2.6vw, 2.05rem);
}

.bp-trigger-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 252, 0.92));
}

.bp-support-copy {
  max-width: 47rem;
}

.bp-support-visual {
  min-height: 430px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 243, 249, 0.94));
  box-shadow: 0 18px 36px rgba(47, 76, 109, 0.06);
}

.bp-support-badges .badge-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 251, 0.96));
}

.bp-related-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem 1.18rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.93));
  box-shadow: 0 18px 36px rgba(47, 76, 109, 0.06);
}

.bp-related-card .button {
  width: fit-content;
  margin-top: auto;
}

.bp-process-section .section-header {
  margin-bottom: 1.35rem;
}

.bp-faq-section .faq-grid {
  gap: 1.05rem;
}

.bp-cta {
  margin-top: 2.3rem;
}

.fp-hero {
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.93), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(241, 180, 84, 0.17), transparent 17%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.99), rgba(255, 250, 239, 0.98) 56%, rgba(248, 238, 212, 0.96));
  box-shadow: 0 28px 72px rgba(140, 95, 33, 0.11), inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.fp-hero-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(370px, 0.76fr);
  gap: clamp(1.05rem, 1.82vw, 2rem);
  padding: clamp(1.5rem, 2.28vw, 2.18rem);
}

.fp-hero .eyebrow,
.fp-overview .eyebrow,
.fp-focus-section .eyebrow,
.fp-trigger-section .eyebrow,
.fp-support-section .eyebrow,
.fp-related-section .eyebrow,
.fp-process-section .eyebrow,
.fp-faq-section .eyebrow,
.fp-cta .eyebrow {
  background: linear-gradient(135deg, rgba(245, 238, 214, 0.98), rgba(237, 226, 192, 0.98));
  border: 1px solid rgba(160, 134, 68, 0.16);
  color: #665733;
  box-shadow: 0 10px 18px rgba(135, 111, 48, 0.06);
}

.fp-hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.89), rgba(251, 246, 233, 0.93));
  box-shadow: 0 24px 48px rgba(114, 81, 35, 0.08);
}

.fp-hero-panel .service-tag,
.fp-glance-card .service-tag,
.fp-focus-card .service-tag,
.fp-trigger-panel .service-tag,
.fp-related-card .service-tag {
  background: rgba(189, 132, 37, 0.12);
  color: #9a6527;
}

.image-shell-fp-hero {
  min-height: var(--hero-frame-min-height);
  margin: 0;
  padding: var(--hero-frame-image-padding);
  border-radius: var(--hero-frame-inner-radius);
  background:
    radial-gradient(circle at 50% 21%, rgba(255, 255, 255, 0.94), transparent 27%),
    linear-gradient(160deg, rgba(255, 252, 245, 0.98), rgba(242, 226, 188, 0.94));
}

.image-shell-fp-hero img {
  object-fit: cover;
  object-position: 50% 50%;
  filter: contrast(1) saturate(0.98) brightness(0.985) drop-shadow(0 22px 30px rgba(128, 92, 36, 0.12));
}

.fp-glance-card::before,
.fp-focus-card::before {
  background: linear-gradient(90deg, rgba(204, 112, 44, 0.92), rgba(239, 185, 93, 0.92));
}

.fp-sector-cloud {
  margin-top: 1rem;
}

.fp-focus-grid,
.fp-related-grid {
  align-items: stretch;
}

.fp-focus-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 1.15rem 1.18rem 1.2rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 246, 234, 0.93));
  box-shadow: 0 20px 40px rgba(114, 81, 35, 0.06);
}

.fp-focus-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
}

.fp-focus-card h3,
.fp-related-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.68rem;
}

.fp-trigger-layout,
.fp-support-layout {
  gap: clamp(1.25rem, 2.6vw, 2.05rem);
}

.fp-trigger-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(251, 246, 233, 0.92));
}

.fp-support-copy {
  max-width: 47rem;
}

.fp-support-visual {
  min-height: 430px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 240, 218, 0.94));
  box-shadow: 0 18px 36px rgba(114, 81, 35, 0.06);
}

.fp-support-visual img {
  object-fit: cover;
  object-position: 50% 50%;
}

.fp-support-badges .badge-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 245, 229, 0.96));
}

.fp-related-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem 1.18rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 246, 234, 0.93));
  box-shadow: 0 18px 36px rgba(114, 81, 35, 0.06);
}

.fp-related-card .button {
  width: fit-content;
  margin-top: auto;
}

.fp-process-section .section-header {
  margin-bottom: 1.35rem;
}

.fp-faq-section .faq-grid {
  gap: 1.05rem;
}

.fp-cta {
  margin-top: 2.3rem;
}

.maa-hero {
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.93), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(150, 183, 116, 0.16), transparent 17%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.99), rgba(249, 251, 241, 0.98) 56%, rgba(236, 243, 225, 0.96));
  box-shadow: 0 28px 72px rgba(86, 119, 60, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.maa-hero-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(370px, 0.76fr);
  gap: clamp(1.05rem, 1.82vw, 2rem);
  padding: clamp(1.5rem, 2.28vw, 2.18rem);
}

.maa-hero .eyebrow,
.maa-overview .eyebrow,
.maa-focus-section .eyebrow,
.maa-trigger-section .eyebrow,
.maa-support-section .eyebrow,
.maa-related-section .eyebrow,
.maa-process-section .eyebrow,
.maa-faq-section .eyebrow,
.maa-cta .eyebrow {
  background: linear-gradient(135deg, rgba(236, 243, 227, 0.98), rgba(225, 234, 211, 0.98));
  border: 1px solid rgba(110, 141, 83, 0.16);
  color: #4d6240;
  box-shadow: 0 10px 18px rgba(86, 112, 66, 0.06);
}

.maa-hero-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.89), rgba(243, 248, 234, 0.93));
  box-shadow: 0 24px 48px rgba(78, 104, 57, 0.08);
  padding: var(--hero-frame-padding);
  gap: 0.58rem;
}

.maa-hero-panel .service-tag,
.maa-glance-card .service-tag,
.maa-focus-card .service-tag,
.maa-trigger-panel .service-tag,
.maa-related-card .service-tag {
  background: rgba(106, 145, 74, 0.12);
  color: #5b7f47;
}

.image-shell-maa-hero {
  min-height: var(--hero-frame-min-height);
  margin: 0;
  padding: var(--hero-frame-image-padding);
  border-radius: var(--hero-frame-inner-radius);
  background:
    radial-gradient(circle at 50% 21%, rgba(255, 255, 255, 0.94), transparent 27%),
    linear-gradient(160deg, rgba(249, 252, 245, 0.98), rgba(228, 237, 213, 0.94));
}

.image-shell-maa-hero img {
  filter: contrast(1) saturate(0.98) brightness(0.99) drop-shadow(0 22px 30px rgba(81, 110, 61, 0.12));
}

.maa-glance-card::before,
.maa-focus-card::before {
  background: linear-gradient(90deg, rgba(102, 146, 72, 0.92), rgba(177, 202, 125, 0.92));
}

.maa-sector-cloud {
  margin-top: 1rem;
}

.maa-focus-grid,
.maa-related-grid {
  align-items: stretch;
}

.maa-focus-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 1.15rem 1.18rem 1.2rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 237, 0.93));
  box-shadow: 0 20px 40px rgba(78, 104, 57, 0.06);
}

.maa-focus-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
}

.maa-focus-card h3,
.maa-related-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.68rem;
}

.maa-trigger-layout,
.maa-support-layout {
  gap: clamp(1.25rem, 2.6vw, 2.05rem);
}

.maa-trigger-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 237, 0.92));
}

.maa-support-copy {
  max-width: 47rem;
}

.maa-support-visual {
  min-height: 430px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 228, 0.94));
  box-shadow: 0 18px 36px rgba(78, 104, 57, 0.06);
}

.maa-support-badges .badge-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 249, 235, 0.96));
}

.maa-related-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem 1.18rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 237, 0.93));
  box-shadow: 0 18px 36px rgba(78, 104, 57, 0.06);
}

.maa-related-card .button {
  width: fit-content;
  margin-top: auto;
}

.maa-process-section .section-header {
  margin-bottom: 1.35rem;
}

.maa-faq-section .faq-grid {
  gap: 1.05rem;
}

.maa-cta {
  margin-top: 2.3rem;
}

.why-hero {
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.93), transparent 18%),
    radial-gradient(circle at 84% 12%, rgba(165, 191, 139, 0.14), transparent 17%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.99), rgba(250, 251, 246, 0.98) 56%, rgba(239, 243, 232, 0.96));
  box-shadow: 0 28px 72px rgba(79, 104, 61, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.why-hero-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(370px, 0.76fr);
  gap: clamp(1.05rem, 1.82vw, 2rem);
  padding: clamp(1.5rem, 2.28vw, 2.18rem);
}

.why-hero .eyebrow,
.why-proof-section .eyebrow,
.why-reasons-section .eyebrow,
.why-fit-section .eyebrow,
.why-faq-section .eyebrow,
.why-cta .eyebrow {
  background: linear-gradient(135deg, rgba(235, 242, 229, 0.98), rgba(224, 232, 214, 0.98));
  border: 1px solid rgba(98, 126, 83, 0.16);
  color: #4a5f48;
  box-shadow: 0 10px 18px rgba(75, 97, 67, 0.06);
}

.why-hero h1 {
  max-width: none;
  font-size: clamp(2rem, 2.85vw, 3.12rem);
  line-height: 0.93;
  margin: 0.72rem 0 0.48rem;
}

.why-hero p {
  max-width: 56ch;
  font-size: 0.92rem;
  margin-bottom: 0.72rem;
}

.why-hero .hero-actions {
  margin-top: 0.72rem;
}

.why-hero .hero-points {
  margin-bottom: 0.9rem;
  gap: 0.48rem;
}

.why-hero .hero-points li {
  font-size: 0.9rem;
}

.why-hero .hero-points li::before {
  background: linear-gradient(135deg, #6a8a59, #a9c287);
  box-shadow: 0 0 0 5px rgba(106, 138, 89, 0.12);
}

.why-hero-panel {
  position: relative;
  display: grid;
  gap: 0.58rem;
  padding: var(--hero-frame-padding);
  border-radius: var(--hero-frame-radius);
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.89), rgba(244, 249, 238, 0.93));
  box-shadow: 0 24px 48px rgba(72, 100, 57, 0.08);
}

.why-hero-panel .service-tag,
.why-reason-card .service-tag,
.why-fit-panel .service-tag {
  background: rgba(106, 138, 89, 0.12);
  color: #5a764d;
}

.image-shell-why-hero {
  min-height: var(--hero-frame-min-height);
  margin: 0;
  padding: var(--hero-frame-image-padding);
  border-radius: var(--hero-frame-inner-radius);
  background:
    radial-gradient(circle at 50% 21%, rgba(255, 255, 255, 0.94), transparent 27%),
    linear-gradient(160deg, rgba(250, 252, 248, 0.98), rgba(232, 239, 222, 0.94));
}

.image-shell-why-hero img {
  filter: contrast(1.01) saturate(0.98) brightness(0.99) drop-shadow(0 22px 30px rgba(72, 100, 57, 0.11));
}

.why-proof-grid,
.why-reasons-grid {
  align-items: stretch;
}

.why-proof-note {
  margin-bottom: 1.1rem;
  padding: 1.1rem 1.12rem;
  border-radius: 28px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 84% 14%, rgba(173, 198, 149, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 237, 0.92));
  box-shadow: 0 18px 36px rgba(72, 100, 57, 0.06);
}

.why-proof-note strong {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.86rem;
  line-height: 0.96;
}

.why-proof-note p {
  max-width: 62ch;
  margin: 0;
}

.why-proof-note-label {
  margin-bottom: 0.5rem;
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-proof-card,
.why-reason-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 239, 0.93));
  box-shadow: 0 20px 40px rgba(72, 100, 57, 0.06);
}

.why-proof-card::before,
.why-reason-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(105, 142, 78, 0.9), rgba(184, 208, 137, 0.88));
}

.why-proof-card {
  text-align: left;
  padding: 1.3rem 1.1rem 1.15rem;
}

.why-proof-card strong {
  font-size: 1.55rem;
}

.why-reason-card {
  padding: 1.15rem 1.18rem 1.2rem;
}

.why-reason-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.68rem;
}

.why-fit-layout {
  gap: clamp(1.25rem, 2.6vw, 2.05rem);
}

.why-fit-panel {
  padding: 1.3rem 1.25rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 236, 0.92));
  box-shadow: 0 18px 36px rgba(72, 100, 57, 0.06);
}

.why-sector-cloud {
  margin-top: 1rem;
}

.why-fit-panel .microcopy {
  margin-top: 1rem;
}

.why-faq-section .faq-grid {
  gap: 1.05rem;
}

.why-cta {
  margin-top: 2.3rem;
}

.quote-hero {
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.93), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(239, 184, 91, 0.15), transparent 17%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 239, 0.98) 56%, rgba(245, 235, 208, 0.96));
  box-shadow: 0 28px 72px rgba(124, 88, 35, 0.11), inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.quote-hero-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(370px, 0.76fr);
  gap: clamp(1.05rem, 1.82vw, 2rem);
  padding: clamp(1.5rem, 2.28vw, 2.18rem);
}

.quote-hero .eyebrow,
.quote-contact-section .eyebrow,
.quote-form-section .eyebrow,
.quote-next-section .eyebrow {
  background: linear-gradient(135deg, rgba(245, 238, 214, 0.98), rgba(237, 226, 192, 0.98));
  border: 1px solid rgba(160, 134, 68, 0.16);
  color: #665733;
  box-shadow: 0 10px 18px rgba(135, 111, 48, 0.06);
}

.quote-hero h1 {
  max-width: none;
  font-size: clamp(2.08rem, 3.02vw, 3.24rem);
  line-height: 0.93;
  margin: 0.78rem 0 0.54rem;
}

.quote-hero p {
  max-width: 56ch;
  font-size: 0.96rem;
  margin-bottom: 0.82rem;
}

.quote-hero .hero-actions {
  margin-top: 0.72rem;
}

.quote-hero .hero-points {
  margin-bottom: 0.98rem;
  gap: 0.5rem;
}

.quote-hero .hero-points li {
  font-size: 0.93rem;
}

.quote-hero-panel {
  position: relative;
  display: grid;
  gap: 0.58rem;
  padding: var(--hero-frame-padding);
  border-radius: var(--hero-frame-radius);
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 246, 233, 0.93));
  box-shadow: 0 24px 48px rgba(114, 81, 35, 0.08);
}

.quote-hero-panel .service-tag,
.quote-method-card .service-tag,
.quote-note-card .service-tag,
.quote-contact-card .service-tag {
  background: rgba(189, 132, 37, 0.12);
  color: #9a6527;
}

.image-shell-quote-hero {
  min-height: var(--hero-frame-min-height);
  margin: 0;
  padding: var(--hero-frame-image-padding);
  border-radius: var(--hero-frame-inner-radius);
  background:
    radial-gradient(circle at 50% 21%, rgba(255, 255, 255, 0.94), transparent 27%),
    linear-gradient(160deg, rgba(255, 251, 244, 0.98), rgba(243, 231, 206, 0.94));
}

.image-shell-quote-hero img {
  filter: contrast(1.01) saturate(0.99) brightness(0.985) drop-shadow(0 22px 30px rgba(114, 81, 35, 0.11));
}

.quote-contact-section .section-header,
.quote-next-section .section-header {
  margin-bottom: 1.15rem;
}

.quote-contact-rail,
.quote-form-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.quote-contact-rail {
  margin-bottom: 1.05rem;
}

.quote-contact-rail span,
.quote-form-assurance span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 58, 86, 0.06);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(24, 44, 62, 0.05);
}

.quote-method-grid {
  align-items: stretch;
}

.quote-method-card {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 242, 0.93));
  box-shadow: 0 18px 36px rgba(114, 81, 35, 0.06);
}

.quote-method-card a {
  color: var(--navy);
  font-weight: 700;
}

.ri-timeline-section {
  position: relative;
}

.ri-timeline-section .section-header {
  max-width: 760px;
}

.ri-timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
  margin-top: 1.6rem;
}

.ri-timeline-grid::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(229, 108, 44, 0.22), rgba(21, 63, 92, 0.16));
  pointer-events: none;
}

.ri-timeline-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 248px;
  flex-direction: column;
  gap: 0.72rem;
  padding: 1.25rem;
  border: 1px solid rgba(229, 108, 44, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 207, 128, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.94));
  box-shadow: 0 18px 40px rgba(65, 46, 21, 0.08);
  color: var(--text);
  text-decoration: none;
}

.ri-timeline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  pointer-events: none;
}

.ri-step-no {
  display: inline-flex;
  width: fit-content;
  min-height: 2.1rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e66e2d, #f6a33a);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(226, 110, 45, 0.22);
}

.ri-step-label {
  color: #bf5c2b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ri-timeline-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
}

.ri-timeline-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.56;
}

.ri-timeline-card:hover,
.ri-timeline-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(65, 46, 21, 0.12);
}

.fsc-readiness-section .section-header {
  max-width: 880px;
}

.fsc-route-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
  margin-top: 1.8rem;
  align-items: stretch;
}

.fsc-route-flow::before {
  content: "";
  position: absolute;
  top: 3.1rem;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(209, 98, 40, 0.42), rgba(25, 93, 87, 0.36), rgba(21, 63, 92, 0.34));
  box-shadow: 0 12px 26px rgba(42, 66, 74, 0.12);
  pointer-events: none;
}

.fsc-route-card {
  position: relative;
  z-index: 1;
  min-height: 286px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
  padding: 1.35rem;
  border: 1px solid rgba(209, 98, 40, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.92)),
    radial-gradient(circle at 88% 10%, rgba(247, 175, 71, 0.2), transparent 30%);
  box-shadow: 0 20px 42px rgba(65, 46, 21, 0.08);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.fsc-route-card::before {
  content: attr(data-step);
  position: absolute;
  right: 0.65rem;
  top: -0.35rem;
  color: rgba(209, 98, 40, 0.08);
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.fsc-route-card::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: 1.1rem;
  width: 5.3rem;
  height: 5.3rem;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(21, 63, 92, 0.2) 0 2px, transparent 2px 100%),
    linear-gradient(rgba(21, 63, 92, 0.16) 0 2px, transparent 2px 100%),
    linear-gradient(135deg, rgba(236, 244, 239, 0.78), rgba(255, 244, 223, 0.66));
  background-size: 1.2rem 1.2rem, 1.2rem 1.2rem, 100% 100%;
  opacity: 0.56;
  pointer-events: none;
}

.fsc-route-card:nth-child(2) {
  margin-top: 1.35rem;
}

.fsc-route-card:hover,
.fsc-route-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(209, 98, 40, 0.28);
  box-shadow: 0 28px 54px rgba(65, 46, 21, 0.13);
}

.fsc-route-card:nth-child(2):hover,
.fsc-route-card:nth-child(2):focus-visible {
  transform: translateY(-4px);
}

.fsc-route-step {
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #e66e2d, #f6a33a);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(226, 110, 45, 0.24);
}

.fsc-route-label {
  width: fit-content;
  padding: 0.35rem 0.78rem;
  border-radius: 999px;
  background: rgba(239, 231, 211, 0.78);
  color: #b45322;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fsc-route-card h3 {
  max-width: 82%;
  margin: 0.15rem 0 0;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.22;
}

.fsc-route-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.fsc-route-pill {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 246, 231, 0.9);
  border: 1px solid rgba(209, 98, 40, 0.14);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button-whatsapp,
.quote-live-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-whatsapp::before,
.quote-live-link-whatsapp::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.button-whatsapp {
  border: 1px solid rgba(14, 103, 58, 0.3);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(135deg, #1fad61 0%, #0f7a45 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(19, 113, 65, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-whatsapp-home {
  border: 1px solid rgba(14, 103, 58, 0.32);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, #22b765 0%, #0f7f49 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(24, 125, 72, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-whatsapp-home::before {
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
}

.button-whatsapp-primary {
  background: linear-gradient(135deg, #22b160 0%, #38c975 100%);
  color: #fff;
  border: 1px solid rgba(27, 138, 75, 0.16);
  box-shadow: 0 18px 34px rgba(36, 129, 79, 0.22);
}

.button-whatsapp-primary::before {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  transform: translateY(-1px);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.3), transparent 24%),
    linear-gradient(135deg, #21ba68 0%, #0d6e3e 100%);
  box-shadow: 0 20px 36px rgba(19, 113, 65, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button-whatsapp-home:hover,
.button-whatsapp-home:focus-visible {
  box-shadow: 0 22px 40px rgba(24, 125, 72, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.quote-method-card-whatsapp {
  position: relative;
  background:
    radial-gradient(circle at 84% 16%, rgba(47, 195, 107, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(238, 249, 243, 0.95));
  box-shadow: 0 20px 38px rgba(36, 129, 79, 0.08);
}

.quote-method-card-whatsapp h3 {
  color: #164d33;
}

.quote-live-link {
  width: fit-content;
  margin-top: 0.1rem;
  padding: 0.82rem 1.05rem;
  border: 1px solid rgba(47, 195, 107, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 248, 240, 0.98));
  color: #1d5f3d;
  box-shadow: 0 14px 24px rgba(36, 129, 79, 0.08);
}

.quote-live-link:hover,
.quote-live-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(36, 129, 79, 0.12);
}

.quote-live-note {
  margin-top: 0.72rem;
  margin-bottom: 0;
  color: #1d5f3d;
  font-size: 0.82rem;
  font-weight: 700;
}

.quote-method-card p:last-child {
  margin-bottom: 0;
}

.quote-form-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.75fr);
  gap: clamp(1.2rem, 2.4vw, 1.9rem);
}

.quote-form-panel,
.quote-aside-panel {
  border-radius: 34px;
  box-shadow: 0 18px 36px rgba(114, 81, 35, 0.06);
}

.quote-form-panel {
  padding: 1.45rem 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 242, 0.93));
}

.quote-form-panel h2,
.quote-aside-panel h2 {
  margin-bottom: 0.5rem;
}

.quote-form-panel .lede {
  margin-bottom: 1rem;
  max-width: 55ch;
}

.quote-form-panel label {
  color: var(--navy);
  font-size: 0.94rem;
}

.quote-form-panel form {
  gap: 0.95rem;
}

.quote-form-panel .button-primary {
  width: fit-content;
  margin-top: 0.15rem;
}

.quote-upload-block {
  display: grid;
  gap: 0.38rem;
}

.quote-upload-help,
.quote-upload-feedback {
  margin: 0;
  font-size: 0.88rem;
}

.quote-upload-help {
  color: var(--muted);
}

.quote-upload-feedback {
  color: rgba(24, 58, 86, 0.72);
  font-weight: 700;
}

.quote-upload-feedback.has-files {
  color: var(--navy);
}

.quote-upload-feedback.is-error {
  color: #b54b38;
}

.quote-form-panel .form-note {
  max-width: 58ch;
}

.quote-form-assurance {
  margin-top: 0.15rem;
}

.quote-aside-panel {
  display: grid;
  gap: 1rem;
  padding: 1.3rem 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(251, 246, 233, 0.92));
}

.quote-note-card,
.quote-contact-card {
  padding: 1rem 1.02rem;
  border-radius: 26px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.quote-note-card h3 {
  margin-bottom: 0.45rem;
}

.quote-contact-card strong {
  color: var(--navy);
}

.quote-response-card {
  padding: 1rem 1.02rem;
  border-radius: 26px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 84% 14%, rgba(239, 184, 91, 0.1), transparent 22%),
    rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.quote-response-card h3 {
  margin-bottom: 0.45rem;
}

.quote-response-card p {
  margin-bottom: 0;
}

.quote-contact-card p:last-child,
.quote-note-card p:last-child {
  margin-bottom: 0;
}

.how-hero {
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.93), transparent 18%),
    radial-gradient(circle at 84% 12%, rgba(167, 194, 144, 0.14), transparent 17%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.99), rgba(250, 251, 246, 0.98) 56%, rgba(239, 243, 232, 0.96));
  box-shadow: 0 28px 72px rgba(79, 104, 61, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.how-hero-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(370px, 0.76fr);
  gap: clamp(1.05rem, 1.82vw, 2rem);
  padding: clamp(1.5rem, 2.28vw, 2.18rem);
}

.how-hero .eyebrow,
.how-process-section .eyebrow,
.how-route-section .eyebrow,
.how-prepare-section .eyebrow,
.how-faq-section .eyebrow,
.how-cta .eyebrow {
  background: linear-gradient(135deg, rgba(235, 242, 229, 0.98), rgba(224, 232, 214, 0.98));
  border: 1px solid rgba(98, 126, 83, 0.16);
  color: #4a5f48;
  box-shadow: 0 10px 18px rgba(75, 97, 67, 0.06);
}

.how-hero h1 {
  max-width: none;
  font-size: clamp(2.3rem, 3.28vw, 3.58rem);
  line-height: 0.93;
  margin: 0.76rem 0 0.52rem;
}

.how-hero .hero-title-line {
  white-space: normal;
}

.how-hero p {
  max-width: 56ch;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.how-hero .hero-actions {
  margin-top: 0.72rem;
}

.how-hero .hero-points {
  margin-bottom: 0.96rem;
  gap: 0.5rem;
}

.how-hero .hero-points li {
  font-size: 0.98rem;
}

.how-hero .hero-points li::before {
  background: linear-gradient(135deg, #6a8a59, #a9c287);
  box-shadow: 0 0 0 5px rgba(106, 138, 89, 0.12);
}

.how-hero-panel {
  position: relative;
  display: grid;
  gap: 0.58rem;
  padding: var(--hero-frame-padding);
  border-radius: var(--hero-frame-radius);
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.89), rgba(244, 249, 238, 0.93));
  box-shadow: 0 24px 48px rgba(72, 100, 57, 0.08);
}

.how-hero-panel .service-tag,
.how-route-panel .service-tag,
.how-prepare-card .service-tag,
.how-prepare-visual-panel .service-tag {
  background: rgba(106, 138, 89, 0.12);
  color: #5a764d;
  font-size: 0.79rem;
  padding: 0.38rem 0.76rem;
}

.how-hero-card-rail span {
  font-size: 0.8rem;
  padding: 0.74rem 0.8rem;
}

.image-shell-how-hero {
  min-height: var(--hero-frame-min-height);
  margin: 0;
  padding: var(--hero-frame-image-padding);
  border-radius: var(--hero-frame-inner-radius);
  background:
    radial-gradient(circle at 50% 21%, rgba(255, 255, 255, 0.94), transparent 27%),
    linear-gradient(160deg, rgba(250, 252, 248, 0.98), rgba(232, 239, 222, 0.94));
}

.image-shell-how-hero img {
  filter: contrast(1.01) saturate(0.98) brightness(0.99) drop-shadow(0 22px 30px rgba(72, 100, 57, 0.11));
}

.how-process-section .section-header,
.how-prepare-section .section-header {
  margin-bottom: 1.15rem;
}

.how-section-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.76fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
  padding: 1.18rem 1.22rem;
  border-radius: 32px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 86% 12%, rgba(173, 198, 149, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 237, 0.92));
  box-shadow: 0 18px 36px rgba(72, 100, 57, 0.06);
}

.how-banner-copy h2 {
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
  font-size: clamp(1.98rem, 2.55vw, 2.56rem);
  line-height: 0.99;
  color: var(--navy);
}

.how-banner-copy p {
  max-width: 60ch;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

.how-banner-note {
  padding: 1rem 1.02rem;
  border-radius: 26px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.how-banner-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.9rem;
  line-height: 0.96;
}

.how-banner-note p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.58;
}

.how-banner-note-label {
  margin-bottom: 0.55rem;
  color: var(--brand-deep);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-banner-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.how-banner-rail span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 58, 86, 0.06);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(24, 44, 62, 0.05);
}

.how-process-shell {
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 184, 91, 0.12), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(173, 198, 149, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 251, 241, 0.92));
}

.how-jump-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin: 1.1rem 0 1.4rem;
}

.how-jump-rail a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.04rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(24, 44, 62, 0.05);
}

.how-jump-rail a:hover {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.94);
}

.how-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-flow-card {
  --flow-accent: rgba(209, 98, 40, 0.94);
  --flow-soft: rgba(239, 184, 91, 0.92);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  min-height: 100%;
  padding: 1.15rem 1.08rem 1.02rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(24, 58, 86, 0.08);
  box-shadow: 0 18px 34px rgba(24, 44, 62, 0.07);
  overflow: hidden;
}

.how-flow-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--flow-accent), var(--flow-soft));
}

.how-flow-card:nth-child(2) {
  --flow-accent: rgba(205, 113, 43, 0.94);
  --flow-soft: rgba(239, 191, 107, 0.92);
}

.how-flow-card:nth-child(3) {
  --flow-accent: rgba(198, 101, 42, 0.94);
  --flow-soft: rgba(235, 180, 101, 0.9);
}

.how-flow-card:nth-child(4) {
  --flow-accent: rgba(186, 88, 35, 0.94);
  --flow-soft: rgba(225, 161, 86, 0.9);
}

.how-flow-card:nth-child(5) {
  --flow-accent: rgba(177, 120, 45, 0.92);
  --flow-soft: rgba(224, 187, 103, 0.9);
}

.how-flow-card:nth-child(6) {
  --flow-accent: rgba(105, 134, 79, 0.92);
  --flow-soft: rgba(178, 204, 132, 0.88);
}

.how-flow-card:nth-child(7) {
  --flow-accent: rgba(86, 125, 72, 0.94);
  --flow-soft: rgba(160, 197, 113, 0.88);
}

.how-flow-card-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.how-flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--flow-accent), var(--flow-soft));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(209, 98, 40, 0.16);
}

.how-flow-phase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(24, 58, 86, 0.06);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-flow-card h3 {
  margin: 0;
  font-size: clamp(1.48rem, 1.7vw, 1.82rem);
  line-height: 1.02;
}

.how-flow-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.62;
}

.how-flow-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 240, 230, 0.96));
  border: 1px solid rgba(24, 58, 86, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.how-flow-footnote {
  margin: 1rem 0 0;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  border: 1px solid rgba(24, 58, 86, 0.07);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
  font-size: 0.95rem;
  line-height: 1.62;
}

.how-route-layout {
  gap: clamp(1.25rem, 2.6vw, 2.05rem);
  align-items: start;
}

.how-route-copy {
  display: grid;
  gap: 1rem;
}

.how-route-visual {
  min-height: 0;
  padding: 0.9rem;
  border-radius: 30px;
}

.how-route-visual img {
  border-radius: 22px;
}

.how-route-copy-note {
  margin: 0;
}

.how-route-panel {
  padding: 1.25rem 1.2rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 236, 0.92));
  box-shadow: 0 18px 36px rgba(72, 100, 57, 0.06);
}

.how-route-stack {
  display: grid;
  gap: 0.82rem;
  margin-top: 0.95rem;
}

.how-route-item {
  display: grid;
  gap: 0.18rem;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(24, 58, 86, 0.07);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.how-route-item strong {
  color: var(--navy);
  font-size: 1.04rem;
}

.how-route-item strong a:hover {
  color: var(--brand-deep);
}

.how-route-item span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.how-route-copy .check-list {
  margin-top: 0;
}

.how-route-copy .check-list li {
  font-size: 0.98rem;
  line-height: 1.62;
}

.how-prepare-banner,
.how-faq-banner {
  margin-bottom: 1.1rem;
}

.how-prepare-layout {
  align-items: stretch;
}

.how-prepare-visual-panel {
  display: grid;
  gap: 0.85rem;
  padding: 1.12rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 249, 236, 0.92));
  box-shadow: 0 18px 36px rgba(72, 100, 57, 0.06);
}

.how-prepare-visual {
  min-height: 0;
  padding: 0.9rem;
  border-radius: 28px;
}

.how-prepare-visual img {
  border-radius: 22px;
}

.how-prepare-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.how-prepare-card {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 239, 0.93));
  box-shadow: 0 18px 36px rgba(72, 100, 57, 0.06);
}

.how-prepare-card h3 {
  font-size: 1.48rem;
  margin-bottom: 0.55rem;
}

.how-route-copy-note,
.how-route-panel .microcopy,
.how-prepare-visual-panel .microcopy,
.how-prepare-card p,
.how-faq-section .faq-item p {
  font-size: 0.97rem;
  line-height: 1.62;
}

.how-faq-section .faq-item h3 {
  font-size: 1.3rem;
  line-height: 1.08;
}

.how-faq-section .faq-shell {
  background:
    radial-gradient(circle at 8% 12%, rgba(173, 198, 149, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 251, 241, 0.92));
}

.how-faq-section .faq-grid {
  gap: 1.05rem;
}

.how-cta {
  margin-top: 2.3rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}

th,
td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: rgba(24, 58, 86, 0.06);
}

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

.hero-premium {
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.92), transparent 18%),
    radial-gradient(circle at 86% 11%, rgba(239, 184, 91, 0.18), transparent 16%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 238, 0.98) 56%, rgba(245, 232, 201, 0.96));
  box-shadow: 0 28px 72px rgba(123, 86, 30, 0.13), inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.hero-premium::after {
  inset: auto auto -9rem -7rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(239, 184, 91, 0.12), transparent 72%);
}

.hero-premium .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(675px, 0.95fr);
  gap: clamp(2.2rem, 3.25vw, 4.1rem);
  padding: clamp(2.45rem, 3.5vw, 4.3rem);
}

.hero-premium h1 {
  max-width: none;
  font-size: clamp(2.38rem, 3.28vw, 4.1rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero-premium h1 span {
  display: block;
}

.hero-title-line {
  white-space: nowrap;
}

.hero-home .hero-title-line {
  white-space: normal;
}

.hero-premium p {
  max-width: 54ch;
  font-size: 1.02rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 41rem;
  padding-right: 0.15rem;
}

.fssd-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 41rem;
  padding-right: 0.15rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  display: grid;
  gap: 0.62rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  box-shadow: 0 0 0 5px rgba(209, 98, 40, 0.11);
}

.hero-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.hero-rail span {
  display: inline-grid;
  gap: 0.15rem;
  min-width: 168px;
  padding: 0.88rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: rgba(255, 252, 246, 0.88);
  color: var(--navy);
  box-shadow: 0 16px 32px rgba(24, 44, 62, 0.08);
}

.hero-rail strong {
  font-size: 0.98rem;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-rail small {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.35;
}

.hero-premium .hero-stage::before,
.hero-premium .hero-stage::after {
  display: none;
}

.stage-shell {
  --mx: 50%;
  --my: 32%;
  position: relative;
  overflow: hidden;
  min-height: 612px;
  padding: 1.25rem;
  border-radius: var(--hero-frame-radius);
  border: 1px solid rgba(201, 157, 84, 0.22);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.62), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 250, 242, 0.97) 64%, rgba(248, 237, 211, 0.95));
  box-shadow: 0 28px 62px rgba(123, 86, 30, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.stage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(239, 184, 91, 0.16), transparent 18%),
    radial-gradient(circle at 16% 22%, rgba(61, 125, 136, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 78%);
  opacity: 1;
}

.stage-shell::after {
  display: none;
}

.stage-chip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #dd6d2c 0%, #ef8e4d 100%);
  border: 1px solid rgba(185, 74, 25, 0.16);
  color: #fff;
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(209, 98, 40, 0.18);
}

.stage-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.stage-halo-left {
  width: 14rem;
  height: 14rem;
  left: -2rem;
  bottom: 10rem;
  background: radial-gradient(circle, rgba(248, 178, 73, 0.12), transparent 68%);
}

.stage-halo-right {
  width: 12rem;
  height: 12rem;
  right: 3rem;
  top: 5rem;
  background: radial-gradient(circle, rgba(116, 170, 205, 0.1), transparent 72%);
}

.stage-panel-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage-shell:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 70px rgba(123, 86, 30, 0.18);
}

.stage-scene {
  position: absolute;
  inset: 4.45rem 1rem 5.15rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-scene img {
  width: min(100%, 1040px);
  height: auto;
  filter: contrast(1.01) saturate(0.99) drop-shadow(0 20px 30px rgba(128, 92, 36, 0.12));
  animation: none;
  transition: transform 0.32s ease;
}

.hero-home .stage-shell {
  background:
    radial-gradient(circle at 74% 18%, rgba(239, 184, 91, 0.12), transparent 15%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 240, 0.98) 61%, rgba(245, 231, 200, 0.96));
}

.hero-home .stage-shell::before {
  background:
    radial-gradient(circle at 82% 15%, rgba(239, 184, 91, 0.14), transparent 16%),
    radial-gradient(circle at 78% 54%, rgba(209, 98, 40, 0.08), transparent 16%),
    radial-gradient(circle at 16% 22%, rgba(61, 125, 136, 0.08), transparent 18%),
    linear-gradient(90deg, transparent 0 56%, rgba(245, 233, 207, 0.08) 76%, rgba(228, 207, 164, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 78%);
}

.hero-home .stage-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 38%, rgba(230, 204, 157, 0.16), transparent 18%),
    linear-gradient(90deg, transparent 0 64%, rgba(224, 198, 150, 0.1) 82%, rgba(203, 175, 127, 0.14) 100%);
  pointer-events: none;
}

.hero-home .stage-halo-right {
  right: 1.8rem;
  top: 4.4rem;
  background: radial-gradient(circle, rgba(232, 175, 89, 0.12), transparent 70%);
}

.hero-home .stage-scene img {
  filter: contrast(1.05) saturate(1.01) brightness(0.97) drop-shadow(0 24px 34px rgba(128, 92, 36, 0.13));
}

.stage-shell:hover .stage-scene img {
  transform: translateY(-2px) scale(1.01);
}

.stage-footer {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.05rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.64rem;
}

.stage-footer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 58, 86, 0.06);
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(24, 44, 62, 0.06);
  text-align: center;
}

.trust-showcase {
  padding-top: 2.2rem;
}

.stat-spotlight {
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: center;
}

.trust-copy p:last-of-type {
  margin-bottom: 1.5rem;
}

.trust-copy {
  max-width: 48rem;
}

.trust-showcase .eyebrow {
  background: linear-gradient(135deg, rgba(236, 241, 231, 0.96), rgba(225, 232, 214, 0.96));
  border: 1px solid rgba(104, 125, 86, 0.16);
  color: #43554a;
  box-shadow: 0 10px 18px rgba(68, 86, 72, 0.06);
}

.trust-copy h2 {
  max-width: 18ch;
}

.trust-points {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.55rem;
  padding: 0;
  list-style: none;
}

.trust-points li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted);
  font-weight: 600;
}

.trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #d97a34, #efb85b);
  box-shadow: 0 0 0 5px rgba(217, 122, 52, 0.11);
}

.stat-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  perspective: 1200px;
}

.counter-card {
  position: relative;
  overflow: hidden;
  min-height: 258px;
  padding: 1.55rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: 0 22px 40px rgba(24, 44, 62, 0.14);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 52px rgba(24, 44, 62, 0.18);
}

.counter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.22), transparent 42%, rgba(255, 255, 255, 0.08) 100%);
  pointer-events: none;
}

.counter-card::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -45%;
  width: 50%;
  height: 160%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transition: transform 0.45s ease;
}

.counter-card:hover::after {
  transform: translateX(180%) rotate(18deg);
}

.counter-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(10, 20, 31, 0.2);
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.counter-number {
  position: relative;
  z-index: 1;
  display: block;
  margin: 1rem 0 0.6rem;
  font-family: var(--font-head);
  font-size: clamp(3rem, 4.3vw, 4.65rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.proof-card .proof-title {
  position: relative;
  z-index: 1;
  display: block;
  margin: 1rem 0 0.7rem;
  font-family: var(--font-head);
  font-size: clamp(1.42rem, 2.15vw, 1.98rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.counter-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
}

.tone-terracotta {
  background: linear-gradient(145deg, #de6a59, #ef7288);
}

.tone-gold {
  background: linear-gradient(145deg, #e6b61f, #ffd63e);
}

.tone-blue {
  background: linear-gradient(145deg, #61a5d9, #84c6ee);
}

.tone-olive {
  background: linear-gradient(145deg, #a5c92f, #cae542);
}

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

.services-showcase {
  padding: 1.7rem;
  border-radius: 42px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 251, 244, 0.62));
  box-shadow: 0 20px 42px rgba(24, 44, 62, 0.06);
}

.services-showcase .section-header {
  margin-bottom: 1.3rem;
  padding-inline: 0.25rem;
}

.services-showcase .eyebrow {
  background: linear-gradient(135deg, rgba(234, 239, 232, 0.96), rgba(222, 230, 216, 0.96));
  border: 1px solid rgba(104, 125, 86, 0.14);
  color: #43554a;
}

.services-grid .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.2rem;
  border-radius: 36px;
  border: 1px solid rgba(24, 58, 86, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 247, 0.92));
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.services-grid .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 45%);
  pointer-events: none;
}

.services-grid .service-card .button {
  margin-top: auto;
  width: 100%;
}

.services-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(24, 44, 62, 0.14);
}

.image-shell-service {
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
  padding: 0.7rem;
  border-radius: 32px;
  border: 1px solid rgba(232, 218, 188, 0.92);
  background: linear-gradient(160deg, rgba(255, 253, 248, 0.99), rgba(246, 237, 219, 0.92));
}

.image-shell-service::after {
  display: none;
}

.image-shell-service::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  z-index: 2;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 22%, transparent 74%, rgba(121, 88, 40, 0.06) 100%),
    radial-gradient(circle at 50% 24%, transparent 0 54%, rgba(60, 44, 27, 0.06) 100%);
  pointer-events: none;
}

.image-shell-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--service-focus, 50% 50%);
  border-radius: 26px;
  box-shadow: 0 18px 34px rgba(24, 44, 62, 0.12);
  filter: var(--service-filter, contrast(1.02) saturate(1.005) brightness(0.99));
  transform: scale(var(--service-scale, 1.00));
  transform-origin: center;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.services-grid .service-card:hover .image-shell-service img {
  transform: scale(calc(var(--service-scale, 1.00) + 0.015));
}

.services-grid .service-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.54rem;
  line-height: 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin-bottom: 0.55rem;
}

.services-grid .service-card p {
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.service-list {
  gap: 0.5rem;
  margin: 0 0 1.2rem;
}

.service-list li {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.service-card-fssd .image-shell-service {
  box-shadow: inset 0 0 0 1px rgba(229, 108, 74, 0.12);
  background: linear-gradient(160deg, rgba(255, 249, 241, 0.98), rgba(240, 223, 192, 0.94));
}

.service-card-fssd .image-shell-service img {
  --service-focus: 50% 50%;
  --service-scale: 1.00;
  --service-filter: contrast(1.02) saturate(1) brightness(0.985) sepia(0.015);
}

.service-card-bp .image-shell-service {
  box-shadow: inset 0 0 0 1px rgba(74, 118, 198, 0.12);
}

.service-card-bp .image-shell-service img {
  --service-focus: 50% 50%;
  --service-scale: 1.00;
  --service-filter: contrast(1.02) saturate(1.005) brightness(0.985);
}

.service-card-fire .image-shell-service {
  box-shadow: inset 0 0 0 1px rgba(219, 108, 45, 0.12);
  background: linear-gradient(160deg, rgba(255, 250, 244, 0.98), rgba(244, 232, 213, 0.94));
}

.service-card-fire .image-shell-service img {
  --service-focus: 50% 50%;
  --service-scale: 1.00;
  --service-filter: contrast(1.03) saturate(1.01) brightness(0.985);
}

.service-card-maa .image-shell-service {
  box-shadow: inset 0 0 0 1px rgba(88, 145, 78, 0.12);
}

.service-card-maa .image-shell-service img {
  /* MAA source is 1536x1024 (landscape); shift focus right so the right-side figure stays in view.
     Replace this with a true 1024x1024 square image and reset focus to 50% 50% when available. */
  --service-focus: 65% 50%;
  --service-scale: 1.00;
  --service-filter: contrast(1.04) saturate(1.012) brightness(0.98);
}

.service-card-fssd {
  box-shadow: 0 20px 44px rgba(226, 110, 86, 0.12);
}

.service-card-bp {
  box-shadow: 0 20px 44px rgba(83, 129, 212, 0.12);
}

.service-card-fire {
  box-shadow: 0 20px 44px rgba(227, 144, 56, 0.12);
}

.service-card-maa {
  box-shadow: 0 20px 44px rgba(110, 171, 73, 0.12);
}

.service-card-fssd .service-tag {
  background: rgba(229, 108, 74, 0.14);
  color: #c35a30;
}

.service-card-bp .service-tag {
  background: rgba(74, 118, 198, 0.12);
  color: #4c6fb5;
}

.service-card-fire .service-tag {
  background: rgba(219, 108, 45, 0.12);
  color: #c96b34;
}

.service-card-maa .service-tag {
  background: rgba(88, 145, 78, 0.12);
  color: #547f4c;
}

.image-shell-premium {
  min-height: 260px;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.85), transparent 30%),
    linear-gradient(155deg, #fff9ed 0%, #f0d793 55%, #d7ac48 100%);
}

.image-shell-premium img {
  width: min(100%, 94%);
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(111, 69, 23, 0.2));
}

.warm-panel-premium {
  min-height: 440px;
  padding: 1.1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid rgba(24, 58, 86, 0.09);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), transparent 16%),
    linear-gradient(155deg, #fff9ed 0%, #f0d793 56%, #e6bc63 100%);
}

.warm-panel-premium img {
  width: min(100%, 610px);
  height: auto;
  filter: drop-shadow(0 26px 38px rgba(119, 78, 25, 0.24));
}

.home-review-visual {
  min-height: 430px;
  padding: 0.9rem;
  align-items: stretch;
  justify-content: stretch;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 236, 176, 0.34), transparent 18%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.52), transparent 18%),
    linear-gradient(155deg, #fff8e8 0%, #f1d78f 54%, #ebc760 100%);
}

.home-review-visual img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
  border-radius: 30px;
  box-shadow: 0 24px 44px rgba(112, 72, 20, 0.18);
  filter: contrast(1.06) saturate(1.03) brightness(0.98) drop-shadow(0 20px 34px rgba(119, 78, 25, 0.16));
}

.warm-panel-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 69, 94, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(rgba(32, 69, 94, 0.04) 0 1px, transparent 1px 100%);
  background-size: 34px 34px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 78%);
}

.process-shell,
.faq-shell {
  position: relative;
  padding: 1.8rem;
  border-radius: 42px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  box-shadow: 0 22px 48px rgba(24, 44, 62, 0.07);
}

.process-shell {
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 184, 91, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 249, 240, 0.9));
}

.faq-shell {
  background:
    radial-gradient(circle at 6% 10%, rgba(235, 241, 230, 0.48), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 251, 244, 0.92));
}

.process-showcase .eyebrow,
.faq-showcase .eyebrow,
.home-cta-band .eyebrow {
  background: linear-gradient(135deg, rgba(236, 241, 231, 0.96), rgba(225, 232, 214, 0.96));
  border: 1px solid rgba(104, 125, 86, 0.16);
  color: #43554a;
  box-shadow: 0 10px 18px rgba(68, 86, 72, 0.06);
}

.process-header {
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.7fr);
  gap: 0.9rem 1.25rem;
  align-items: end;
  margin-bottom: 1rem;
}

.process-intro p {
  max-width: 46rem;
}

.process-intro-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  margin-top: 0.9rem;
}

.process-intro-rail span {
  display: inline-flex;
  align-items: center;
  padding: 0.66rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 242, 231, 0.96));
  border: 1px solid rgba(24, 58, 86, 0.08);
  box-shadow: 0 10px 22px rgba(24, 44, 62, 0.05);
  color: var(--navy);
  font-weight: 700;
}

.process-note {
  position: relative;
  justify-self: end;
  max-width: 30rem;
  padding: 1rem 1.15rem 1.05rem;
  border-radius: 32px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(252, 245, 230, 0.96));
  box-shadow: 0 16px 34px rgba(24, 44, 62, 0.06);
  overflow: hidden;
}

.process-note::after {
  content: "";
  position: absolute;
  right: -3.4rem;
  bottom: -3.6rem;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 184, 91, 0.24), transparent 64%);
}

.process-note-label,
.faq-kicker,
.cta-band-label {
  margin-bottom: 0.55rem;
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-note strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.48rem;
  line-height: 1.04;
  max-width: 16ch;
  text-wrap: balance;
}

.home-shell .section h2 {
  font-size: clamp(1.82rem, 2.45vw, 2.72rem);
  line-height: 0.97;
  letter-spacing: -0.038em;
}

.home-shell .hero-copy,
.home-shell .trust-copy,
.home-shell .process-intro {
  max-width: 44rem;
}

.home-shell .services-showcase .section-header h2,
.home-shell .section-highlight h2,
.home-shell .process-intro h2,
.home-shell .faq-header h2,
.home-shell .cta-band-copy h2 {
  max-width: 19ch;
}

.home-shell .trust-copy h2 {
  max-width: 17.5ch;
}

.home-shell .faq-showcase .faq-item h3 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.home-shell .process-intro p {
  max-width: 52ch;
}

.home-shell .process-header {
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.74fr);
  gap: 1rem 1.4rem;
  align-items: end;
}

.home-shell .process-intro {
  max-width: 44rem;
}

.home-shell .process-note {
  justify-self: end;
  max-width: 22rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 28px;
}

.home-shell .process-note::after {
  right: -2.2rem;
  bottom: -2.4rem;
  width: 7.4rem;
  height: 7.4rem;
}

.home-shell .process-note-label {
  margin-bottom: 0;
}

.home-shell .process-note strong {
  margin-bottom: 0.1rem;
  max-width: 14ch;
  font-size: 1.18rem;
  line-height: 1.03;
}

.home-shell .process-note p {
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.52;
}

.process-note-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.66rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 58, 86, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(24, 44, 62, 0.05);
}

.process-note-link:hover,
.process-note-link:focus-visible {
  transform: translateY(-1px);
}

.process-note p {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
}

.process-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(24, 58, 86, 0.08);
}

.process-rail span {
  display: inline-flex;
  align-items: center;
  padding: 0.76rem 0.98rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 58, 86, 0.08);
  box-shadow: 0 10px 22px rgba(24, 44, 62, 0.05);
  color: var(--navy);
  font-weight: 700;
}

.home-process-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-process-flow .how-flow-card {
  padding: 1rem 0.95rem 0.92rem;
  border-radius: 28px;
  box-shadow: 0 16px 30px rgba(24, 44, 62, 0.06);
}

.home-process-flow .how-flow-card h3 {
  font-size: clamp(1.2rem, 1.28vw, 1.42rem);
  line-height: 1.04;
}

.home-process-flow .how-flow-card p {
  font-size: 0.87rem;
  line-height: 1.5;
}

.home-process-flow .how-flow-number {
  width: 2.15rem;
  height: 2.15rem;
  font-size: 0.9rem;
}

.home-process-flow .how-flow-phase {
  padding: 0.38rem 0.62rem;
  font-size: 0.66rem;
}

.home-process-flow .how-flow-note {
  padding: 0.66rem 0.82rem;
  font-size: 0.77rem;
}

.home-process-footnote {
  margin-top: 0.95rem;
  font-size: 0.9rem;
}

.home-process-footnote a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.faq-header {
  margin-bottom: 1.35rem;
}

.faq-showcase .faq-grid {
  gap: 1.1rem;
}

.faq-showcase .faq-item {
  position: relative;
  min-height: 100%;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 242, 0.92));
  box-shadow: 0 18px 34px rgba(24, 44, 62, 0.06);
}

.faq-showcase .faq-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  border-radius: 32px 32px 0 0;
  background: linear-gradient(90deg, rgba(209, 98, 40, 0.9), rgba(239, 184, 91, 0.88));
}

.faq-showcase .faq-item h3,
.faq-showcase .faq-item p {
  position: relative;
}

.faq-showcase .faq-item h3 {
  margin-top: 0;
}

.faq-showcase .faq-item p {
  margin-bottom: 0;
}

.home-cta-band {
  margin-top: 2.5rem;
  padding: 2.35rem;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background:
    radial-gradient(circle at 90% 14%, rgba(239, 184, 91, 0.26), transparent 18%),
    linear-gradient(140deg, rgba(255, 250, 244, 0.98) 0%, rgba(252, 241, 218, 0.98) 54%, rgba(245, 225, 184, 0.96) 100%);
  color: var(--text);
  box-shadow: 0 24px 58px rgba(24, 44, 62, 0.1);
}

.home-cta-band::before {
  opacity: 0.32;
  background:
    linear-gradient(90deg, rgba(24, 58, 86, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(rgba(24, 58, 86, 0.05) 0 1px, transparent 1px 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
}

.cta-band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.2rem;
  align-items: center;
}

.cta-band-copy p {
  max-width: 56ch;
}

.cta-band-panel {
  padding: 1.25rem 1.3rem 1.15rem;
  border-radius: 30px;
  border: 1px solid rgba(24, 58, 86, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 34px rgba(24, 44, 62, 0.06);
}

.cta-check-list {
  margin-top: 0.9rem;
}

.home-cta-band h2,
.home-cta-band p {
  color: var(--text);
}

.home-cta-band .button-primary {
  box-shadow: 0 16px 30px rgba(209, 98, 40, 0.22);
}

.home-cta-band .button-secondary {
  background: rgba(24, 58, 86, 0.07);
  border-color: rgba(24, 58, 86, 0.1);
  color: var(--navy);
}

.button.button-whatsapp,
.button.button-whatsapp-home,
.button.button-whatsapp-primary {
  border-color: rgba(14, 103, 58, 0.42) !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.3), transparent 24%),
    linear-gradient(135deg, #25d366 0%, #128c4a 100%) !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(18, 140, 74, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.button.button-whatsapp::before,
.button.button-whatsapp-home::before,
.button.button-whatsapp-primary::before {
  background: #fff !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2) !important;
}

.button.button-whatsapp:hover,
.button.button-whatsapp:focus-visible,
.button.button-whatsapp-home:hover,
.button.button-whatsapp-home:focus-visible,
.button.button-whatsapp-primary:hover,
.button.button-whatsapp-primary:focus-visible {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #2be06f 0%, #0f7f43 100%) !important;
  color: #fff !important;
  box-shadow: 0 22px 40px rgba(18, 140, 74, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

.process-showcase .steps-home {
  position: relative;
  gap: 1.1rem;
}

.process-showcase .step-number {
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1.05rem;
  box-shadow: 0 12px 24px rgba(209, 98, 40, 0.18);
}

.step-home {
  --step-accent: rgba(209, 98, 40, 0.94);
  --step-soft: rgba(239, 184, 91, 0.92);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 238px;
  padding: 1.55rem 1.35rem 1.25rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 255, 255, 0.8));
  overflow: hidden;
  border: 1px solid rgba(24, 58, 86, 0.08);
  box-shadow: 0 18px 34px rgba(24, 44, 62, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.step-home:nth-child(2) {
  --step-accent: rgba(205, 113, 43, 0.94);
  --step-soft: rgba(239, 191, 107, 0.92);
}

.step-home:nth-child(3) {
  --step-accent: rgba(196, 92, 42, 0.94);
  --step-soft: rgba(236, 176, 98, 0.9);
}

.step-home:nth-child(4) {
  --step-accent: rgba(182, 85, 32, 0.94);
  --step-soft: rgba(232, 168, 87, 0.9);
}

.step-home:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(24, 44, 62, 0.14);
}

.step-home::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--step-accent), var(--step-soft));
}

.step-home::after {
  content: "";
  position: absolute;
  top: 2.3rem;
  right: -0.82rem;
  width: 1.08rem;
  height: 1.08rem;
  border-top: 2px solid rgba(209, 98, 40, 0.28);
  border-right: 2px solid rgba(209, 98, 40, 0.28);
  transform: rotate(45deg);
}

.step-home:last-child::after {
  display: none;
}

.step-kicker {
  margin-bottom: 0.5rem;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-home h3 {
  font-size: 1.52rem;
  line-height: 1.02;
  margin-bottom: 0.65rem;
}

.step-home p {
  margin: 0;
}

.step-detail {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding: 0.74rem 0.96rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 230, 0.96));
  border: 1px solid rgba(24, 58, 86, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes noteFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1240px) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 0.86fr);
    gap: 1.45rem;
    padding: 2.3rem;
  }

  .hero-home h1 {
    font-size: clamp(2.22rem, 3.02vw, 3.52rem);
  }

  .hero-home .hero-copy {
    max-width: none;
  }

  .hero-home .stage-shell {
    min-height: 572px;
  }

  .hero-home .stage-footer span {
    font-size: 0.7rem;
    padding: 0.7rem 0.8rem;
  }

  .home-shell .process-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-shell .process-note {
    justify-self: stretch;
    max-width: none;
  }

  .home-process-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) and (min-width: 761px) {
  .site-header .container {
    flex-wrap: wrap;
  }

  .brand {
    max-width: calc(100% - 7rem);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    flex: 0 0 100%;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 0.35rem 0 0.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.9rem;
  }

  .site-nav .button {
    margin-right: 0;
  }
}

@media (max-width: 1080px) {
  .feature-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
    gap: 1.2rem;
    padding: 2.15rem;
  }

  .hero-home h1 {
    font-size: clamp(2.12rem, 3.08vw, 3.34rem);
  }

  .hero-home .stage-shell {
    min-height: 548px;
  }

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

  .fssd-hero-grid,
  .why-hero-grid,
  .quote-hero-grid,
  .how-hero-grid,
  .bp-hero-grid,
  .fp-hero-grid,
  .maa-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.88fr);
    gap: 1.35rem;
  }

  .how-section-banner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  }

  .quote-form-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 1.1rem;
  }

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

  .service-card-primary {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .step-home::after {
    display: none;
  }

  .cta-band-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .resource-shell,
  .spotlight-layout,
  .split,
  .split.reverse,
  .contact-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 2rem;
  }

  .fssd-hero-grid {
    min-height: auto;
    align-items: start;
  }

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

  .fssd-hero h1 {
    max-width: none;
  }

  .why-hero h1,
  .quote-hero h1,
  .how-hero h1,
  .bp-hero h1 {
    max-width: none;
  }

  .how-section-banner {
    grid-template-columns: 1fr;
  }

  .how-jump-rail {
    margin-top: 0.95rem;
  }

  .fp-hero h1,
  .maa-hero h1 {
    max-width: none;
  }

  .why-hero-panel,
  .quote-hero-panel,
  .how-hero-panel,
  .bp-hero-panel,
  .fp-hero-panel,
  .fssd-hero-panel,
  .maa-hero-panel {
    width: 100%;
    max-width: 760px;
    justify-self: center;
  }

  .stage-shell {
    min-height: 620px;
  }

  .hero-meta,
  .stat-band,
  .grid-4,
  .grid-3,
  .fsc-route-flow,
  .ri-timeline-grid,
  .grid-2,
  .faq-grid,
  .form-row,
  .badge-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ri-timeline-grid::before {
    display: none;
  }

  .fsc-route-flow::before {
    display: none;
  }

  .fsc-route-card:nth-child(2) {
    margin-top: 0;
  }

  .stat-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .how-prepare-visual-panel {
    padding: 1.05rem;
  }

  .section-header {
    grid-template-columns: 1fr;
  }

  .process-header {
    gap: 1rem;
    align-items: start;
  }

  .process-note {
    justify-self: stretch;
    max-width: none;
  }

  .process-note strong,
  .process-note p,
  .process-intro p {
    max-width: none;
  }

  .home-shell .process-note {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 0.85rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-column {
    justify-items: flex-start;
  }
}

@media (max-width: 760px) {
  body::before {
    display: none;
  }

  body::after {
    opacity: 0.3;
    background:
      linear-gradient(rgba(24, 58, 86, 0.1), rgba(24, 58, 86, 0.1)) left var(--page-gutter-mobile) top 0 / 1px 100% no-repeat,
      linear-gradient(rgba(24, 58, 86, 0.1), rgba(24, 58, 86, 0.1)) right var(--page-gutter-mobile) top 0 / 1px 100% no-repeat;
  }

  .site-header .container {
    flex-wrap: wrap;
  }

  .brand {
    width: 100%;
    justify-content: flex-start;
  }

  .brand-mark {
    width: auto;
    height: auto;
  }

  .brand img {
    width: 50px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.35rem 0 0.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .button {
    width: 100%;
  }

  .site-nav .button {
    margin-right: 0;
  }

  .hero-meta,
  .stat-band,
  .grid-4,
  .grid-3,
  .fsc-route-flow,
  .ri-timeline-grid,
  .grid-2,
  .faq-grid,
  .form-row,
  .badge-grid,
  .feature-layout,
  .steps-home,
  .services-grid,
  .stat-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 1.45rem;
  }

  .ri-timeline-grid {
    gap: 0.85rem;
  }

  .fsc-route-flow {
    gap: 0.85rem;
  }

  .fsc-route-card {
    min-height: auto;
    padding: 1.08rem;
    border-radius: 20px;
  }

  .fsc-route-card h3 {
    max-width: none;
  }

  .fsc-route-card::after {
    width: 4.2rem;
    height: 4.2rem;
    opacity: 0.38;
  }

  .ri-timeline-card {
    min-height: auto;
    padding: 1.05rem;
    border-radius: 20px;
  }

  .trust-showcase .spotlight-layout,
  .section-highlight .spotlight-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .trust-showcase .spotlight-layout > *,
  .section-highlight .spotlight-layout > * {
    width: 100%;
    max-width: none;
  }

  .container {
    width: min(calc(100% - (var(--page-gutter-mobile) * 2)), var(--max));
  }

  .process-shell,
  .faq-shell,
  .home-cta-band {
    padding: 1.5rem;
    border-radius: 32px;
  }

  .home-review-visual {
    min-height: 0;
    padding: 1rem;
  }

  .home-review-visual img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .how-section-banner {
    padding: 1rem 1.02rem;
    border-radius: 28px;
  }

  .how-banner-note {
    border-radius: 22px;
  }

  .fssd-hero-grid,
  .why-hero-grid,
  .quote-hero-grid,
  .how-hero-grid,
  .bp-hero-grid,
  .fp-hero-grid,
  .maa-hero-grid {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .hero-card-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fssd-hero-panel,
  .fssd-route-card,
  .fssd-glance-card,
  .fssd-scope-panel {
    padding: 1.05rem;
    border-radius: 30px;
  }

  .bp-hero-panel,
  .why-proof-card,
  .why-reason-card,
  .why-fit-panel,
  .why-proof-note,
  .how-route-panel,
  .how-prepare-visual-panel,
  .how-prepare-card,
  .quote-method-card,
  .quote-form-panel,
  .quote-aside-panel,
  .quote-note-card,
  .quote-contact-card,
  .quote-response-card,
  .bp-focus-card,
  .bp-related-card,
  .bp-trigger-panel {
    padding: 1.05rem;
    border-radius: 30px;
  }

  .fp-hero-panel,
  .fp-focus-card,
  .fp-related-card,
  .fp-trigger-panel,
  .maa-hero-panel,
  .maa-focus-card,
  .maa-related-card,
  .maa-trigger-panel {
    padding: 1.05rem;
    border-radius: 30px;
  }

  .image-shell-fssd-hero,
  .fssd-route-card .image-shell {
    min-height: 230px;
  }

  .image-shell-bp-hero {
    min-height: 220px;
  }

  .image-shell-fp-hero,
  .image-shell-maa-hero {
    min-height: 220px;
  }

  .fp-support-visual {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

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

  .quote-contact-rail,
  .quote-form-assurance {
    flex-direction: column;
  }

  .quote-contact-rail span,
  .quote-form-assurance span {
    width: 100%;
  }

  .how-banner-rail {
    flex-direction: column;
  }

  .how-banner-rail span {
    width: 100%;
  }

  .how-jump-rail a {
    width: 100%;
  }

  .process-intro-rail {
    gap: 0.6rem;
  }

  .process-intro-rail span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .step-home {
    min-height: 0;
  }

  .how-flow {
    grid-template-columns: 1fr;
  }

  .how-flow-card {
    padding: 1rem;
  }

  .how-flow-card-top {
    flex-wrap: wrap;
  }

  .how-flow-card h3 {
    font-size: clamp(1.58rem, 7vw, 1.96rem);
  }

  .how-flow-note {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .home-shell .section h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .home-shell .services-grid .service-card h3,
  .home-shell .faq-showcase .faq-item h3,
  .home-shell .process-note strong {
    font-size: 1.34rem;
  }

  .home-process-flow .how-flow-card h3 {
    font-size: 1.34rem;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-rail {
    gap: 0.5rem;
  }

  .hero-rail span {
    min-width: calc(50% - 0.5rem);
  }

  .stage-shell {
    min-height: 520px;
    padding: 1rem;
  }

  .stage-brand {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 0.75rem;
    width: fit-content;
  }

  .stage-chip {
    font-size: 0.74rem;
    padding: 0.6rem 0.82rem;
  }

  .stage-scene {
    inset: 6.2rem 0.35rem 4.8rem;
  }

  .stage-scene img {
    width: min(100%, 560px);
  }

  .stage-footer {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  .stage-footer span {
    font-size: 0.72rem;
    padding: 0.58rem 0.72rem;
  }

  .hero-art-panel {
    padding: 0.5rem 0 0;
  }

  .page-shell {
    padding-top: 1.15rem;
  }
}

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

  .hero-art-panel img,
  .floating-note,
  .stage-scene img {
    animation: none;
  }

  .button,
  button.button,
  .skip-link {
    transition: none;
  }
}
