:root {
  --emerald-950: #073f34;
  --emerald-900: #094d3e;
  --emerald-800: #0d5f4c;
  --emerald-700: #11745b;
  --emerald-100: #dcece7;
  --emerald-50: #edf6f2;
  --charcoal: #192522;
  --charcoal-soft: #3d4a46;
  --beige: #f3eee4;
  --beige-light: #faf8f3;
  --gold: #b9914f;
  --gold-light: #dbc48d;
  --white: #fff;
  --line: #dcded8;
  --muted: #6c7773;
  --danger: #a83f36;
  --shadow-sm: 0 12px 34px rgba(19, 48, 40, 0.08);
  --shadow-lg: 0 28px 80px rgba(7, 48, 39, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --font-sans: "Segoe UI Variable", "Segoe UI", Inter, Avenir, Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--beige-light);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: 112px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--emerald-900);
  border-radius: 7px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(185, 145, 79, 0.55);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--emerald-800);
  box-shadow: 0 10px 24px rgba(13, 95, 76, 0.2);
}

.button-primary:hover {
  background: var(--emerald-700);
  box-shadow: 0 14px 32px rgba(13, 95, 76, 0.25);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 14px;
}

.button-block {
  width: 100%;
}

.button-secondary {
  color: var(--emerald-800);
  background: var(--white);
  border-color: var(--emerald-800);
}

.button-gold {
  color: var(--charcoal);
  background: var(--gold-light);
  box-shadow: 0 12px 25px rgba(12, 43, 36, 0.22);
}

.button-gold:hover {
  background: #e5cf9d;
}

.button-light {
  color: var(--emerald-950);
  background: var(--white);
}

.button-whatsapp {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.button-whatsapp:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(250, 248, 243, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(13, 95, 76, 0.1);
  box-shadow: 0 8px 24px rgba(17, 45, 38, 0.06);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--emerald-800);
}

.brand-mark svg {
  width: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  color: var(--emerald-950);
  font-size: 17px;
  letter-spacing: 0.12em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.43em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline-start: auto;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: var(--charcoal-soft);
  font-size: 14px;
  font-weight: 650;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding-right: 3px;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: 16px;
}

.language-toggle {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--emerald-900);
  background: transparent;
  border: 1px solid rgba(13, 95, 76, 0.2);
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.language-toggle:hover {
  background: var(--emerald-50);
  border-color: rgba(13, 95, 76, 0.35);
}

.language-toggle svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--emerald-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Unified, high-clarity site navigation */
.minimal-site .nav-wrap {
  min-height: 92px;
  gap: 22px;
}

.minimal-site .brand-mark {
  width: 50px;
  height: 50px;
}

.minimal-site .brand-mark svg {
  width: 46px;
}

.minimal-site .brand-text strong {
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.minimal-site .brand-text small {
  font-size: 10px;
}

.minimal-site .primary-nav {
  gap: 15px;
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

.minimal-site .primary-nav > a:not(.button) {
  font-size: 14px;
  font-weight: 700;
}

.nav-focus-box {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 5px;
  padding: 6px;
  background: var(--white);
  border: 1px solid rgba(13, 95, 76, 0.17);
  border-radius: 13px;
  box-shadow: 0 9px 28px rgba(7, 63, 52, 0.08);
}

.nav-focus-box > a {
  padding: 10px 11px;
  color: var(--emerald-950);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.15;
  white-space: nowrap;
}

.nav-focus-box > a:hover,
.nav-focus-box > a[aria-current="page"] {
  color: var(--emerald-950);
  background: var(--emerald-50);
}

@media (max-width: 1120px) {
  .minimal-site .primary-nav {
    gap: 9px;
  }

  .nav-focus-box > a {
    padding-inline: 8px;
    font-size: 11px;
  }
}

@media (max-width: 850px) {
  .minimal-site .nav-wrap {
    min-height: 78px;
  }

  .minimal-site .primary-nav {
    top: 78px;
    max-height: calc(100vh - 78px);
    padding-top: 18px;
  }

  .minimal-site .primary-nav > a:not(.button) {
    font-size: 16px;
  }

  .nav-focus-box {
    display: grid;
    margin: 14px 0;
    padding: 10px;
    gap: 3px;
  }

  .nav-focus-box > a {
    padding: 13px 12px;
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .minimal-site .brand-mark {
    width: 43px;
    height: 43px;
  }

  .minimal-site .brand-mark svg {
    width: 40px;
  }

  .minimal-site .brand-text strong {
    font-size: 16px;
  }

  .minimal-site .brand-text small {
    font-size: 8px;
  }
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 165px;
  padding-bottom: 0;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(250, 248, 243, 0.98) 0%, rgba(250, 248, 243, 0.9) 54%, rgba(237, 246, 242, 0.82) 100%),
    radial-gradient(circle at 75% 45%, #d7eae3, transparent 50%);
}

.hero::before {
  position: absolute;
  top: 76px;
  right: -80px;
  width: 48%;
  height: calc(100% - 76px);
  background-image: linear-gradient(rgba(13, 95, 76, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 95, 76, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to left, black, transparent);
}

.hero-glow {
  position: absolute;
  border: 1px solid rgba(185, 145, 79, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: 125px;
  right: -120px;
  width: 560px;
  height: 560px;
}

.hero-glow-two {
  top: 190px;
  right: -55px;
  width: 420px;
  height: 420px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--emerald-800);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span:not([data-char-count]) {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-centered {
  justify-content: center;
}

.eyebrow-light {
  color: var(--gold-light);
}

.eyebrow-gold {
  color: var(--gold-light);
}

.hero h1,
.section-heading h2,
.request-intro h2,
.ask-copy h2,
.why-copy h2,
.vendor-copy h2,
.contact-inner h2 {
  margin: 0;
  font-size: clamp(43px, 5.15vw, 73px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 em,
h2 em {
  color: var(--emerald-800);
  font-family: var(--font-display);
  font-weight: 400;
}

.hero h1 {
  max-width: 650px;
}

.hero h1 em {
  display: block;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--charcoal-soft);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.hero-actions .button {
  min-width: 170px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--emerald-900);
  font-weight: 700;
}

.text-link span {
  color: var(--gold);
}

.hero-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  color: var(--charcoal-soft);
  font-size: 12px;
  font-weight: 700;
}

.hero-promise span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 95, 76, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(10, 44, 36, 0.04);
}

.hero-promise svg {
  width: 17px;
  color: var(--emerald-700);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-card-wrap {
  position: relative;
  max-width: 500px;
  margin-left: auto;
}

.hero-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(13, 95, 76, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 18px 23px;
  color: var(--charcoal-soft);
  background: var(--emerald-50);
  border-bottom: 1px solid rgba(13, 95, 76, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #3ba67f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(59, 166, 127, 0.13);
}

.card-step {
  margin-inline-start: auto;
  color: var(--muted);
}

.request-example {
  padding: 29px;
}

.field-label {
  margin: 0 0 9px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}

.example-input {
  display: flex;
  min-height: 76px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 15px;
  color: var(--charcoal-soft);
  background: var(--beige-light);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 14px;
}

.example-input svg {
  flex: 0 0 19px;
  width: 19px;
  color: var(--emerald-700);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.example-meta {
  display: grid;
  margin: 16px 0 21px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.example-meta span {
  padding: 11px 13px;
  color: var(--charcoal-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.example-meta small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-status {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 19px 28px;
  background: var(--emerald-950);
}

.status-icon {
  display: grid;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.status-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.quote-status div {
  display: flex;
  flex-direction: column;
}

.quote-status strong {
  color: var(--white);
  font-size: 13px;
}

.quote-status small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  background: var(--white);
  border: 1px solid rgba(13, 95, 76, 0.09);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
}

.floating-note strong {
  display: block;
  color: var(--emerald-800);
  font-size: 13px;
}

.floating-note-one {
  top: 30%;
  left: -75px;
}

.floating-note-one {
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.floating-note-two {
  right: -42px;
  bottom: 64px;
}

.shield-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--emerald-700);
  border-radius: 50%;
  font-size: 13px;
}

.hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 100px;
  padding-block: 24px;
  color: var(--muted);
  border-top: 1px solid rgba(13, 95, 76, 0.11);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-footer p {
  margin: 0;
}

.hero-footer-line {
  height: 1px;
  flex: 1;
  background: rgba(13, 95, 76, 0.11);
}

.trust-bar {
  color: var(--white);
  background: var(--emerald-950);
}

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

.trust-grid > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 18px;
  padding: 25px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-grid > div > strong {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold-light);
  background: rgba(216, 180, 98, 0.15);
  border: 1px solid rgba(216, 180, 98, 0.2);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.5;
}

.trust-grid b {
  display: block;
  color: var(--white);
  font-size: 13px;
}

.solutions {
  background: var(--white);
}

.section-heading {
  margin-bottom: 55px;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.request-intro h2,
.ask-copy h2,
.why-copy h2,
.vendor-copy h2,
.contact-inner h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 23px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  position: relative;
  display: flex;
  min-height: 500px;
  overflow: hidden;
  flex-direction: column;
  padding: 39px 36px;
  background: var(--beige-light);
  border: 1px solid #e7e4dc;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pillar-card:hover {
  border-color: rgba(13, 95, 76, 0.18);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.pillar-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(185, 145, 79, 0.13);
  border-radius: 50%;
  content: "";
}

.pillar-number {
  position: absolute;
  top: 33px;
  right: 35px;
  color: #b9beb8;
  font-family: var(--font-display);
  font-size: 17px;
}

.pillar-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--emerald-700);
  background: var(--emerald-50);
  border-radius: 50%;
}

.pillar-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card h3 {
  margin: 27px 0 8px;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 500;
}

.pillar-card > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.pillar-card ul {
  margin: 0 0 27px;
  padding: 0;
  color: var(--charcoal-soft);
  font-size: 13px;
  list-style: none;
}

.pillar-card li {
  position: relative;
  margin: 9px 0;
  padding-left: 19px;
}

.pillar-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.pillar-card > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  color: var(--emerald-800);
  border-top: 1px solid #dedfd8;
  font-size: 13px;
  font-weight: 800;
}

.pillar-featured {
  color: var(--white);
  background: var(--emerald-900);
  border-color: var(--emerald-900);
}

.pillar-featured::after {
  border-color: rgba(255, 255, 255, 0.1);
}

.pillar-featured .pillar-number,
.pillar-featured > p {
  color: rgba(255, 255, 255, 0.58);
}

.pillar-featured .pillar-icon {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.09);
}

.pillar-featured h3,
.pillar-featured li,
.pillar-featured > a {
  color: var(--white);
}

.pillar-featured > a {
  border-color: rgba(255, 255, 255, 0.15);
}

.categories-section {
  background: var(--beige);
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
}

.split-heading > p:last-child {
  margin: 0 0 4px;
  font-size: 15px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.category-card {
  display: grid;
  min-height: 132px;
  align-items: center;
  padding: 21px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 95, 76, 0.08);
  border-radius: 12px;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.category-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--emerald-700);
  background: var(--emerald-50);
  border-radius: 9px;
}

.category-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card strong,
.category-card small {
  display: block;
}

.category-card strong {
  color: var(--charcoal);
  font-size: 13px;
  line-height: 1.35;
}

.category-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.category-card > b {
  color: var(--gold);
  font-size: 17px;
}

.category-card-all {
  color: var(--white);
  background: var(--emerald-800);
}

.category-card-all:hover {
  background: var(--emerald-700);
}

.category-card-all .category-icon {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.09);
}

.category-card-all strong {
  color: var(--white);
}

.category-card-all small {
  color: rgba(255, 255, 255, 0.65);
}

.request-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--emerald-950);
}

.request-section::after {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.012);
}

.request-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.request-intro {
  position: sticky;
  top: 130px;
}

.request-intro h2 em,
.contact-inner h2 em {
  color: var(--gold-light);
}

.request-intro > p:nth-of-type(2) {
  max-width: 430px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.61);
}

.request-benefits {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.request-benefits li {
  display: flex;
  gap: 17px;
  margin: 23px 0;
}

.request-benefits li > span {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(219, 196, 141, 0.4);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 13px;
}

.request-benefits div,
.request-benefits strong,
.request-benefits small {
  display: block;
}

.request-benefits strong {
  font-size: 14px;
}

.request-benefits small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.privacy-note {
  display: flex;
  max-width: 410px;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  line-height: 1.6;
}

.privacy-note svg {
  flex: 0 0 22px;
  width: 22px;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-note strong {
  display: block;
  color: var(--white);
}

.form-card,
.vendor-form-card {
  position: relative;
  padding: 44px;
  color: var(--charcoal);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.form-card-heading {
  margin-bottom: 31px;
}

.form-step {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.form-card-heading h3 {
  margin: 7px 0 3px;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}

.form-card-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-card-heading p span,
.field label > span,
.category-options legend > span {
  color: var(--danger);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 7px;
  color: #33423e;
  font-size: 12px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea,
.helper-form textarea {
  width: 100%;
  color: var(--charcoal);
  background: #fbfcfa;
  border: 1px solid #d9ddd8;
  border-radius: 8px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6b7773 50%), linear-gradient(135deg, #6b7773 50%, transparent 50%);
  background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.helper-form textarea:focus {
  background: var(--white);
  border-color: var(--emerald-700);
  box-shadow: 0 0 0 3px rgba(13, 95, 76, 0.1);
}

.field input::placeholder,
.field textarea::placeholder,
.helper-form textarea::placeholder {
  color: #9ca4a1;
}

.field [aria-invalid="true"],
.category-options.invalid {
  border-color: var(--danger);
}

.field-error {
  display: block;
  min-height: 17px;
  margin-top: 4px;
  color: var(--danger);
  font-size: 10px;
  line-height: 1.4;
}

.field-help {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.field-help > small:last-child {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.phone-field {
  display: flex;
  align-items: center;
  background: #fbfcfa;
  border: 1px solid #d9ddd8;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-field:focus-within {
  border-color: var(--emerald-700);
  box-shadow: 0 0 0 3px rgba(13, 95, 76, 0.1);
}

.phone-field > span {
  padding: 0 12px;
  color: var(--emerald-800);
  border-right: 1px solid #d9ddd8;
  font-size: 12px;
  font-weight: 800;
}

.phone-field input {
  border: 0;
  box-shadow: none !important;
}

.phone-field:has(input[aria-invalid="true"]) {
  border-color: var(--danger);
}

.checkbox-field {
  display: grid;
  align-items: start;
  margin-top: 2px;
  grid-template-columns: auto 1fr;
  gap: 9px;
}

.checkbox-field input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--emerald-700);
}

.checkbox-field label {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.checkbox-field label a {
  color: var(--emerald-800);
  text-decoration: underline;
}

.checkbox-field .field-error {
  grid-column: 2;
  margin-top: -6px;
}

.submit-button {
  margin-top: 25px;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-footnote {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.success-panel {
  display: flex;
  min-height: 530px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.success-panel[hidden] {
  display: none;
}

.success-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--white);
  background: var(--emerald-700);
  border-radius: 50%;
  box-shadow: 0 0 0 10px var(--emerald-50);
}

.success-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-panel .eyebrow {
  margin-bottom: 7px;
}

.success-panel h3 {
  margin: 0;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 500;
}

.success-panel > p:not(.eyebrow) {
  max-width: 440px;
  margin: 13px 0 22px;
  color: var(--muted);
}

.reference-box {
  min-width: 220px;
  margin-bottom: 25px;
  padding: 12px 20px;
  background: var(--beige-light);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reference-box span,
.reference-box strong {
  display: block;
}

.reference-box span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-box strong {
  color: var(--emerald-800);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.ask-section {
  background: var(--white);
}

.ask-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.ask-copy > p:nth-of-type(2) {
  margin: 22px 0;
  color: var(--muted);
}

.helper-note {
  display: flex;
  gap: 10px;
  font-size: 11px;
}

.helper-note > span {
  display: grid;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--emerald-800);
  background: var(--emerald-50);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
}

.ask-panel {
  overflow: hidden;
  background: var(--beige-light);
  border: 1px solid #e3e4de;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.ask-panel-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 21px;
  background: var(--white);
  border-bottom: 1px solid #e3e4de;
}

.assistant-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold-light);
  background: var(--emerald-900);
  border-radius: 50%;
  font-family: var(--font-display);
}

.ask-panel-top div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.ask-panel-top strong {
  color: var(--emerald-950);
  font-size: 12px;
}

.ask-panel-top small {
  color: var(--muted);
  font-size: 9px;
}

.ask-panel-top small span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  background: #42a47f;
  border-radius: 50%;
}

.demo-label {
  margin-inline-start: auto;
  padding: 4px 7px;
  color: var(--muted);
  background: var(--beige);
  border-radius: 4px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.ask-conversation {
  min-height: 235px;
  padding: 24px;
}

.assistant-message {
  max-width: 80%;
  padding: 13px 15px;
  color: var(--charcoal-soft);
  background: var(--white);
  border: 1px solid #e6e6e0;
  border-radius: 3px 13px 13px 13px;
  font-size: 12px;
}

.suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.suggestion-chips button {
  padding: 7px 10px;
  color: var(--emerald-800);
  background: transparent;
  border: 1px solid rgba(13, 95, 76, 0.22);
  border-radius: 20px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.suggestion-chips button:hover {
  background: var(--emerald-50);
}

.helper-result {
  margin-block-start: 14px;
  margin-inline-start: auto;
  padding: 14px 15px;
  color: var(--white);
  background: var(--emerald-800);
  border-radius: 13px 3px 13px 13px;
  font-size: 11px;
}

.helper-result strong,
.helper-result span {
  display: block;
}

.helper-result strong {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.helper-result button {
  margin-top: 10px;
  padding: 7px 11px;
  color: var(--emerald-950);
  background: var(--white);
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.helper-form {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border-top: 1px solid #e3e4de;
}

.helper-form textarea {
  min-height: 50px;
  max-height: 110px;
  flex: 1;
  padding: 12px 13px;
  resize: vertical;
  font-size: 12px;
}

.helper-form button {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--emerald-800);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.helper-form button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-section {
  background: var(--beige);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-grid::before {
  position: absolute;
  top: 48px;
  right: 17%;
  left: 17%;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(13, 95, 76, 0.25) 0 5px, transparent 5px 11px);
  content: "";
}

.process-card {
  position: relative;
  padding: 30px;
  text-align: center;
}

.process-number {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
}

.process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 95px;
  height: 95px;
  margin: 0 auto;
  place-items: center;
  color: var(--emerald-800);
  background: var(--white);
  border: 1px solid rgba(13, 95, 76, 0.11);
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(13, 95, 76, 0.08);
}

.process-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card h3 {
  margin: 24px 0 8px;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.process-card p {
  max-width: 280px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 35px;
  color: var(--muted);
  font-size: 13px;
}

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 90px;
}

.why-visual {
  padding: 20px;
  background: var(--beige);
  border-radius: 0 90px 0 0;
}

.why-visual-inner {
  position: relative;
  min-height: 485px;
  overflow: hidden;
  padding: 55px 45px;
  color: var(--white);
  background: var(--emerald-900);
  border-radius: 0 72px 0 0;
}

.why-visual-inner::before,
.why-visual-inner::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.why-visual-inner::before {
  right: -140px;
  bottom: -120px;
  width: 430px;
  height: 430px;
}

.why-visual-inner::after {
  right: -60px;
  bottom: -40px;
  width: 270px;
  height: 270px;
}

.why-small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.21em;
}

.why-visual-inner > strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 25px;
  font-family: var(--font-display);
  font-size: 39px;
  font-weight: 400;
  line-height: 1.22;
}

.doha-lines {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  height: 190px;
  opacity: 0.25;
}

.doha-lines span {
  width: 35px;
  border: 1px solid var(--gold-light);
  border-bottom: 0;
}

.doha-lines span:nth-child(1) { height: 60px; }
.doha-lines span:nth-child(2) { height: 105px; border-radius: 16px 16px 0 0; }
.doha-lines span:nth-child(3) { height: 165px; border-radius: 50% 50% 0 0; }
.doha-lines span:nth-child(4) { height: 125px; }
.doha-lines span:nth-child(5) { height: 85px; border-radius: 20px 20px 0 0; }

.why-stamp {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 35px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  padding: 12px;
  color: var(--gold-light);
  background: var(--emerald-950);
  border: 1px solid rgba(219, 196, 141, 0.5);
  border-radius: 50%;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.why-stamp b {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}

.why-copy > p:nth-of-type(2) {
  margin: 24px 0 31px;
  color: var(--muted);
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}

.why-list > div {
  display: flex;
  gap: 12px;
}

.why-list > div > span {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: var(--emerald-700);
  border-radius: 50%;
  font-size: 11px;
}

.why-list p,
.why-list strong,
.why-list small {
  display: block;
  margin: 0;
}

.why-list strong {
  color: var(--emerald-950);
  font-size: 13px;
}

.why-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.vendor-section {
  color: var(--white);
  background: #142c27;
}

.vendor-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.vendor-copy {
  position: sticky;
  top: 125px;
}

.vendor-copy h2 em {
  color: var(--gold-light);
}

.vendor-copy > p:nth-of-type(2) {
  max-width: 430px;
  margin: 24px 0 38px;
  color: rgba(255, 255, 255, 0.59);
}

.vendor-points > div {
  display: flex;
  gap: 17px;
  margin: 20px 0;
}

.vendor-points > div > span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 16px;
}

.vendor-points p,
.vendor-points strong,
.vendor-points small {
  display: block;
  margin: 0;
}

.vendor-points strong {
  font-size: 13px;
}

.vendor-points small {
  color: rgba(255, 255, 255, 0.47);
  font-size: 10px;
}

.vendor-form-card {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.27);
}

.category-options {
  margin: 0;
  padding: 0;
  border: 0;
}

.category-options.invalid {
  padding: 9px;
  border: 1px solid var(--danger);
  border-radius: 8px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.check-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px;
  background: #fbfcfa;
  border: 1px solid #d9ddd8;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 550;
}

.check-grid input {
  width: 15px;
  height: 15px;
  accent-color: var(--emerald-700);
}

.check-grid label:has(input:checked) {
  color: var(--emerald-800);
  background: var(--emerald-50);
  border-color: rgba(13, 95, 76, 0.3);
}

[data-group-error] {
  display: none;
}

.category-options.invalid [data-group-error] {
  display: block;
}

.vendor-success {
  min-height: 680px;
}

.contact-section {
  padding-block: 74px;
  color: var(--white);
  background: var(--emerald-800);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.contact-inner > div:first-child {
  max-width: 640px;
}

.contact-actions {
  display: grid;
  min-width: 230px;
  gap: 9px;
}

.contact-actions small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  text-align: center;
}

.site-footer {
  padding-top: 70px;
  color: rgba(255, 255, 255, 0.63);
  background: #071d19;
}

.footer-grid {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
  gap: 55px;
}

.brand-light .brand-mark,
.brand-light .brand-text strong {
  color: var(--white);
}

.footer-brand > p {
  margin: 21px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.footer-brand > span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 13px;
}

.footer-links,
.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  font-size: 11px;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 12px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  margin: 0;
}

.footer-contact a {
  color: var(--gold-light);
}

.footer-contact-card {
  padding: 19px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
}

.footer-contact-row {
  display: grid;
  width: 100%;
  gap: 1px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-row:last-child {
  border-bottom: 0;
}

.footer-contact-row span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact-row b {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.primary-nav a[aria-current="page"] {
  color: var(--emerald-800);
}

.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1) !important;
}

.inner-page main {
  min-height: 70vh;
}

.inner-page main > section:first-child .reveal {
  opacity: 1;
  transform: none;
}

.page-hero {
  position: relative;
  padding: 165px 0 100px;
  overflow: hidden;
  background: var(--beige-light);
}

.page-hero::after {
  position: absolute;
  top: 75px;
  right: -80px;
  width: 48%;
  height: 100%;
  background-image: linear-gradient(rgba(13, 95, 76, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 95, 76, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to left, black, transparent);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  gap: 75px;
}

.page-hero-copy h1,
.ask-page-heading h1,
.vendor-page-heading h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.page-hero-copy h1 em,
.ask-page-heading h1 em,
.vendor-page-heading h1 em {
  color: var(--emerald-800);
  font-family: var(--font-display);
  font-weight: 400;
}

.page-hero-copy > p:last-of-type {
  max-width: 640px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.categories-hero-art {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background-image: linear-gradient(180deg, transparent 45%, rgba(7, 63, 52, 0.88)), url("assets/category-scenes.webp");
  background-position: center;
  background-size: cover;
  border: 12px solid var(--white);
  border-radius: 90px 12px 12px;
  box-shadow: var(--shadow-lg);
}

.categories-hero-art::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 63, 52, 0.05), transparent 55%);
  content: "";
}

.categories-hero-art > span {
  position: absolute;
  bottom: 28px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
}

.categories-hero-art > span:nth-child(1) { left: 28px; }
.categories-hero-art > span:nth-child(2) { left: 50%; transform: translateX(-50%); }
.categories-hero-art > span:nth-child(3) { right: 28px; }

.category-directory {
  position: sticky;
  z-index: 80;
  top: 76px;
  background: rgba(255, 255, 255, 0.95);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.category-directory-inner {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
  padding-block: 12px;
  scrollbar-width: none;
}

.category-directory-inner::-webkit-scrollbar {
  display: none;
}

.category-directory a {
  flex: 0 0 auto;
  padding: 8px 13px;
  color: var(--charcoal-soft);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.category-directory a:hover {
  color: var(--emerald-800);
  background: var(--emerald-50);
}

.category-detail {
  scroll-margin-top: 130px;
  background: var(--white);
}

.category-detail-tinted {
  background: var(--beige);
}

.category-detail-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 85px;
}

.category-detail-reverse .category-photo {
  order: 2;
}

.category-photo,
.vendor-hero-photo {
  min-height: 470px;
  background-image: url("assets/category-scenes.webp");
  background-repeat: no-repeat;
  background-size: 400% 200%;
  border-radius: 70px 12px 12px;
  box-shadow: var(--shadow-lg);
}

.photo-business-setup { background-position: 0 0; }
.photo-interiors { background-position: 33.333% 0; }
.photo-technology { background-position: 66.667% 0; }
.photo-accounting { background-position: 100% 0; }
.photo-marketing { background-position: 0 100%; }
.photo-supplies { background-position: 33.333% 100%; }
.photo-maintenance { background-position: 66.667% 100%; }
.photo-business-services,
.vendor-hero-photo { background-position: 100% 100%; }

.category-kicker {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.category-detail-copy h2 {
  margin: 0;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 53px);
  font-weight: 500;
  line-height: 1.08;
}

.category-detail-copy > p:nth-of-type(2) {
  margin: 22px 0 26px;
  color: var(--muted);
  font-size: 15px;
}

.category-detail-copy h3 {
  margin: 0 0 12px;
  color: var(--charcoal-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-item-grid {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  list-style: none;
}

.service-item-grid li {
  position: relative;
  padding: 11px 12px 11px 30px;
  color: var(--charcoal-soft);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 650;
}

.service-item-grid li::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.inner-cta {
  padding-block: 75px;
  color: var(--white);
  background: var(--emerald-800);
}

.inner-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.inner-cta-content > div:first-child {
  max-width: 700px;
}

.inner-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 51px);
  font-weight: 500;
  line-height: 1.1;
}

.inner-cta p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.inner-cta-content > div:last-child {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.ask-page-hero {
  position: relative;
  padding: 155px 0 105px;
  overflow: hidden;
  color: var(--white);
  background: var(--emerald-950);
}

.ask-page-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.ask-orb {
  position: absolute;
  border: 1px solid rgba(219, 196, 141, 0.15);
  border-radius: 50%;
}

.ask-orb-one { top: -220px; right: -160px; width: 650px; height: 650px; }
.ask-orb-two { bottom: -280px; left: -150px; width: 520px; height: 520px; }

.ask-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 23px;
  padding: 7px 11px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(219, 196, 141, 0.25);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-badge > span {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(219, 196, 141, 0.1);
}

.ask-page-heading h1 em,
.vendor-page-heading h1 em {
  color: var(--gold-light);
}

.ask-page-heading > p:nth-of-type(2),
.vendor-page-heading > p:nth-of-type(2) {
  max-width: 600px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
}

.ai-human-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.ai-human-note > span {
  display: grid;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--emerald-950);
  background: var(--gold-light);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 14px;
}

.ai-human-note p,
.ai-human-note strong,
.ai-human-note small {
  display: block;
  margin: 0;
}

.ai-human-note strong { color: var(--white); font-size: 12px; }
.ai-human-note small { color: rgba(255, 255, 255, 0.47); font-size: 10px; }

.ask-panel-large {
  color: var(--charcoal);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.ask-panel-large .ask-conversation {
  min-height: 310px;
  padding: 30px;
}

.ask-panel-large .assistant-message {
  font-size: 14px;
}

.ask-panel-large .suggestion-chips button {
  padding: 9px 12px;
  font-size: 10px;
}

.ask-privacy {
  margin: 0;
  padding: 9px 15px 14px;
  color: var(--muted);
  background: var(--white);
  font-size: 9px;
  text-align: center;
}

.ask-capabilities {
  background: var(--beige-light);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-card {
  min-height: 260px;
  padding: 35px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.capability-card > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 19px;
}

.capability-card h3 {
  margin: 55px 0 10px;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.human-led-section {
  background: var(--white);
}

.human-led-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.human-led-visual {
  display: grid;
  min-height: 440px;
  place-items: center;
  background: var(--beige);
  border-radius: 50% 50% 8px 8px;
}

.human-led-ring {
  display: grid;
  width: 235px;
  height: 235px;
  place-items: center;
  color: var(--white);
  background: var(--emerald-900);
  border: 1px solid var(--emerald-800);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(13, 95, 76, 0.08), 0 0 0 56px rgba(13, 95, 76, 0.04);
}

.human-led-ring span {
  font-family: var(--font-display);
  font-size: 25px;
}

.human-led-ring b {
  color: var(--gold-light);
  font-size: 21px;
}

.human-led-copy h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(37px, 4vw, 55px);
  letter-spacing: -0.04em;
  line-height: 1.07;
}

.human-led-copy h2 em {
  color: var(--emerald-800);
  font-family: var(--font-display);
  font-weight: 400;
}

.human-led-copy > p:nth-of-type(2) {
  margin: 24px 0;
  color: var(--muted);
}

.check-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 10px 0;
  color: var(--charcoal-soft);
  font-size: 13px;
  font-weight: 650;
}

.check-list span {
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-inline-end: 9px;
  place-items: center;
  color: var(--white);
  background: var(--emerald-700);
  border-radius: 50%;
  font-size: 9px;
}

.vendor-page-hero {
  position: relative;
  padding: 155px 0 105px;
  overflow: hidden;
  color: var(--white);
  background: #142c27;
}

.vendor-page-hero::after {
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(219, 196, 141, 0.11);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 85px rgba(219, 196, 141, 0.025), 0 0 0 170px rgba(219, 196, 141, 0.015);
}

.vendor-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.85fr;
  gap: 90px;
}

.vendor-page-heading .hero-actions {
  margin-top: 34px;
}

.vendor-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.vendor-text-link span { color: var(--gold-light); }

.vendor-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.vendor-hero-visual {
  position: relative;
  padding: 13px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 85px 12px 12px;
}

.vendor-hero-photo {
  min-height: 470px;
  border-radius: 72px 8px 8px;
  box-shadow: none;
}

.vendor-opportunity-card {
  position: absolute;
  right: -35px;
  bottom: 35px;
  min-width: 240px;
  padding: 17px 20px;
  color: var(--charcoal);
  background: var(--white);
  border-radius: 9px;
  box-shadow: var(--shadow-lg);
}

.vendor-opportunity-card small,
.vendor-opportunity-card strong,
.vendor-opportunity-card span {
  display: block;
}

.vendor-opportunity-card small { color: var(--gold); font-size: 8px; font-weight: 800; letter-spacing: 0.12em; }
.vendor-opportunity-card strong { margin: 5px 0; color: var(--emerald-950); font-size: 14px; }
.vendor-opportunity-card span { color: var(--muted); font-size: 9px; }

.vendor-value-strip {
  color: var(--white);
  background: var(--emerald-800);
}

.vendor-value-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.vendor-value-strip .container > div {
  padding: 26px 30px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}

.vendor-value-strip .container > div:last-child { border-inline-end: 1px solid rgba(255, 255, 255, 0.12); }
.vendor-value-strip strong,
.vendor-value-strip span { display: block; }
.vendor-value-strip strong { font-family: var(--font-display); font-size: 19px; font-weight: 500; }
.vendor-value-strip span { color: rgba(255, 255, 255, 0.58); font-size: 9px; }

.vendor-process-section {
  background: var(--white);
}

.vendor-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.vendor-process-grid article {
  min-height: 250px;
  padding: 29px;
  background: var(--beige-light);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.vendor-process-grid article > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 17px;
}

.vendor-process-grid h3 {
  margin: 48px 0 9px;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
}

.vendor-process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.vendor-registration-page {
  color: var(--white);
  background: #142c27;
}

.vendor-registration-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.vendor-registration-intro {
  position: sticky;
  top: 125px;
}

.vendor-registration-intro h2 {
  margin: 0;
  font-size: clamp(37px, 4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.vendor-registration-intro h2 em {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 400;
}

.vendor-registration-intro > p:nth-of-type(2) {
  margin: 23px 0 35px;
  color: rgba(255, 255, 255, 0.58);
}

.application-checklist {
  display: flex;
  max-width: 370px;
  flex-direction: column;
  gap: 9px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.application-checklist strong {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-checklist span {
  position: relative;
  padding-inline-start: 17px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.application-checklist span::before {
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold-light);
  content: "✓";
}

html[dir="rtl"] .service-item-grid li {
  padding-right: 30px;
  padding-left: 12px;
}

html[dir="rtl"] .service-item-grid li::before {
  right: 12px;
  left: auto;
}

html[dir="rtl"] .categories-hero-art > span:nth-child(1) { right: 28px; left: auto; }
html[dir="rtl"] .categories-hero-art > span:nth-child(3) { right: auto; left: 28px; }

html[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .phone-field,
html[dir="rtl"] .reference-box {
  direction: ltr;
}

html[dir="rtl"] .hero h1,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .request-intro h2,
html[dir="rtl"] .ask-copy h2,
html[dir="rtl"] .why-copy h2,
html[dir="rtl"] .vendor-copy h2,
html[dir="rtl"] .contact-inner h2 {
  letter-spacing: -0.025em;
}

html[dir="rtl"] .submit-button svg,
html[dir="rtl"] .hero-actions .button svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .pillar-card li {
  padding-right: 19px;
  padding-left: 0;
}

html[dir="rtl"] .pillar-card li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .primary-nav > a:not(.button)::after {
  transform-origin: left;
}

html[dir="rtl"] .primary-nav > a:not(.button):hover::after {
  transform-origin: right;
}

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

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

.reveal-delay {
  transition-delay: 0.15s;
}

.reveal-delay-short {
  transition-delay: 0.08s;
}

.reveal-delay-long {
  transition-delay: 0.16s;
}

@media (max-width: 1050px) {
  .primary-nav {
    gap: 13px;
  }

  .primary-nav > a:not(.button) {
    font-size: 11px;
  }

  .header-controls {
    margin-inline-start: 9px;
  }

  .language-toggle {
    padding-inline: 8px;
  }

  .page-hero-grid,
  .ask-page-hero-grid,
  .vendor-page-hero-grid,
  .category-detail-grid,
  .vendor-registration-grid {
    gap: 48px;
  }

  .vendor-process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vendor-opportunity-card {
    right: -15px;
  }

  .hero-grid {
    gap: 45px;
  }

  .floating-note-one {
    left: -30px;
  }

  .floating-note-two {
    right: -20px;
  }

  .trust-grid > div {
    padding-inline: 18px;
  }

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

  .request-layout,
  .vendor-layout {
    gap: 45px;
  }

  .form-card,
  .vendor-form-card {
    padding: 34px;
  }

  .ask-grid,
  .why-grid {
    gap: 50px;
  }
}

@media (max-width: 850px) {
  .section-pad {
    padding-block: 85px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 76px);
    align-items: stretch;
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
    padding: 24px 20px 32px;
    background: var(--beige-light);
    border-top: 1px solid var(--line);
    box-shadow: 0 25px 50px rgba(7, 48, 39, 0.13);
    margin-inline-start: 0;
  }

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

  .primary-nav > a:not(.button) {
    padding: 15px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .primary-nav .button {
    margin-top: 20px;
  }

  .hero {
    padding-top: 135px;
  }

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

  .page-hero-grid,
  .ask-page-hero-grid,
  .vendor-page-hero-grid,
  .category-detail-grid,
  .vendor-registration-grid,
  .human-led-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .ask-page-hero,
  .vendor-page-hero {
    padding-top: 135px;
  }

  .categories-hero-art,
  .vendor-hero-visual {
    width: 100%;
    max-width: 650px;
  }

  .category-detail-reverse .category-photo {
    order: 0;
  }

  .category-photo {
    min-height: 420px;
  }

  .ask-page-heading,
  .vendor-page-heading {
    max-width: 680px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
  }

  .capability-card h3 {
    margin-top: 28px;
  }

  .human-led-visual {
    max-width: 600px;
  }

  .vendor-registration-intro {
    position: static;
  }

  .vendor-value-strip .container {
    grid-template-columns: 1fr 1fr;
  }

  .inner-cta-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-card-wrap {
    width: calc(100% - 40px);
    max-width: 570px;
    margin: 15px auto 0;
  }

  .hero-footer {
    margin-top: 80px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:last-child {
    min-height: 100px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .request-layout,
  .vendor-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .request-intro,
  .vendor-copy {
    position: static;
  }

  .request-intro > p:nth-of-type(2),
  .vendor-copy > p:nth-of-type(2) {
    max-width: 650px;
  }

  .request-benefits,
  .vendor-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .request-benefits li,
  .vendor-points > div {
    margin: 14px 0;
  }

  .ask-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .ask-copy {
    max-width: 680px;
  }

  .why-visual {
    max-width: 600px;
  }

  .process-grid {
    gap: 0;
  }

  .process-grid::before {
    display: none;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }

  .contact-actions {
    width: 100%;
    max-width: 390px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-pad {
    padding-block: 68px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark svg {
    width: 35px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text small {
    font-size: 7px;
  }

  .hero {
    min-height: 0;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .page-hero-copy h1,
  .ask-page-heading h1,
  .vendor-page-heading h1 {
    font-size: 42px;
  }

  .page-hero,
  .ask-page-hero,
  .vendor-page-hero {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .categories-hero-art,
  .vendor-hero-photo {
    min-height: 330px;
  }

  .categories-hero-art {
    border-width: 7px;
    border-radius: 55px 9px 9px;
  }

  .category-directory {
    top: 76px;
  }

  .category-photo {
    min-height: 330px;
    border-radius: 48px 9px 9px;
  }

  .service-item-grid {
    grid-template-columns: 1fr;
  }

  .inner-cta-content > div:last-child {
    width: 100%;
    flex-direction: column;
  }

  .ask-panel-large .ask-conversation {
    min-height: 280px;
    padding: 20px;
  }

  .human-led-visual {
    min-height: 340px;
  }

  .human-led-ring {
    width: 180px;
    height: 180px;
  }

  .vendor-page-heading .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .vendor-hero-points {
    display: grid;
  }

  .vendor-opportunity-card {
    right: 12px;
    bottom: 18px;
    min-width: 220px;
  }

  .vendor-value-strip .container,
  .vendor-process-grid {
    grid-template-columns: 1fr;
  }

  .vendor-value-strip .container > div {
    border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-promise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
  }

  .hero-card-wrap {
    width: 100%;
  }

  .hero-card {
    border-radius: 18px;
  }

  .request-example {
    padding: 22px;
  }

  .floating-note {
    display: none;
  }

  .hero-footer {
    margin-top: 60px;
    gap: 12px;
    font-size: 8px;
  }

  .hero-footer p:last-child {
    text-align: right;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    min-height: 85px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .request-intro h2,
  .ask-copy h2,
  .why-copy h2,
  .vendor-copy h2,
  .contact-inner h2 {
    font-size: 37px;
  }

  .pillar-card {
    padding: 31px 27px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 105px;
  }

  .request-benefits,
  .vendor-points {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card,
  .vendor-form-card {
    padding: 27px 20px;
    border-radius: 13px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .field-full {
    grid-column: auto;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .success-panel,
  .vendor-success {
    min-height: 520px;
  }

  .ask-conversation {
    padding: 18px;
  }

  .assistant-message {
    max-width: 95%;
  }

  .why-visual {
    padding: 10px;
    border-radius: 0 55px 0 0;
  }

  .why-visual-inner {
    min-height: 400px;
    padding: 42px 29px;
    border-radius: 0 45px 0 0;
  }

  .why-visual-inner > strong {
    font-size: 32px;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

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

  .process-card {
    padding-block: 22px;
  }

  .process-cta {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}

.button-alt {
  background: var(--charcoal);
  box-shadow: 0 10px 24px rgba(25, 37, 34, 0.16);
}

.button-alt:hover {
  background: #22312d;
}

.button-ghost {
  color: var(--emerald-900);
  background: transparent;
  border-color: rgba(13, 95, 76, 0.2);
}

.button-ghost:hover {
  background: var(--emerald-50);
}

.button-whatsapp-dark {
  color: var(--charcoal);
  border-color: rgba(25, 37, 34, 0.16);
}

.button-whatsapp-dark:hover {
  background: rgba(25, 37, 34, 0.04);
}

.hero-support-line {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--emerald-900);
  font-size: 15px;
  font-weight: 700;
}

.hero-cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-cta-grid .button {
  min-width: 172px;
}

.hero-ai-card {
  overflow: visible;
}

.hero-ai-content {
  padding: 28px;
}

.hero-ai-title {
  margin-bottom: 14px;
}

.hero-ai-form {
  display: grid;
  gap: 14px;
}

.hero-ai-form textarea {
  width: 100%;
  min-height: 122px;
  padding: 15px 16px;
  color: var(--charcoal);
  background: var(--beige-light);
  border: 1px solid var(--line);
  border-radius: 10px;
  resize: vertical;
}

.hero-ai-form textarea:focus {
  outline: 0;
  border-color: var(--emerald-700);
  box-shadow: 0 0 0 3px rgba(13, 95, 76, 0.1);
}

.hero-example-grid {
  display: grid;
  margin-top: 16px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-example-grid button,
.prompt-card {
  width: 100%;
  padding: 12px 13px;
  color: var(--charcoal-soft);
  background: var(--white);
  border: 1px solid rgba(13, 95, 76, 0.14);
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-example-grid button:hover,
.prompt-card:hover {
  border-color: rgba(13, 95, 76, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.mart-section {
  background: linear-gradient(180deg, rgba(250, 248, 243, 0.44) 0%, rgba(255, 255, 255, 1) 26%);
}

.mart-quick-cues {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -8px 0 28px;
}

.mart-quick-cues div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--charcoal-soft);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e7e1d3;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(10, 44, 36, 0.04);
  font-size: 12px;
  font-weight: 800;
}

.mart-quick-cues svg,
.mart-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mart-quick-cues svg {
  color: var(--emerald-800);
}

.mart-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mart-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 22px;
  background: linear-gradient(180deg, rgba(250, 248, 243, 0.88) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid #e8e4d9;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(10, 44, 36, 0.05);
}

.mart-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--emerald-800);
  background: rgba(13, 95, 76, 0.08);
  border-radius: 14px;
}

.mart-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  color: var(--emerald-800);
  background: var(--emerald-50);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mart-card h3 {
  margin: 18px 0 8px;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.mart-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.mart-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.mart-actions .button {
  width: 100%;
}

.ask-grid-wide {
  grid-template-columns: 0.8fr 1.2fr;
}

.prompt-card-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.prompt-card-grid-tight {
  margin-top: 18px;
}

.ai-intent-banner {
  margin-top: 16px;
  padding: 11px 14px;
  color: var(--emerald-900);
  background: var(--emerald-50);
  border: 1px solid rgba(13, 95, 76, 0.12);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
}

.ai-followup {
  margin-top: 18px;
}

.ai-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.ai-pill {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--white);
  background: var(--emerald-800);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.ai-pill-soft {
  color: var(--emerald-900);
  background: var(--beige);
}

.ai-followup h3 {
  margin: 0 0 6px;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
}

.ai-followup p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.ai-followup-form {
  display: grid;
  gap: 12px;
}

.ai-question-row label {
  display: block;
  margin-bottom: 6px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
}

.ai-question-row input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  background: var(--white);
  border: 1px solid #d9ddd8;
  border-radius: 8px;
}

.ai-question-row input:focus {
  outline: 0;
  border-color: var(--emerald-700);
  box-shadow: 0 0 0 3px rgba(13, 95, 76, 0.1);
}

.ai-question-row input[aria-invalid="true"] {
  border-color: var(--danger);
}

.ai-question-error {
  display: block;
  min-height: 16px;
  color: var(--danger);
  font-size: 10px;
}

.ai-draft-card {
  margin-top: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid #e4e2dc;
  border-radius: 14px;
}

.ai-draft-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ai-draft-top strong {
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
}

.ai-draft-top span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-draft-card p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.ai-draft-card textarea {
  width: 100%;
  min-height: 190px;
  padding: 14px;
  color: var(--charcoal);
  background: var(--beige-light);
  border: 1px solid var(--line);
  border-radius: 10px;
  resize: vertical;
}

.ai-draft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.ai-inline-note {
  display: block;
  margin-top: 10px;
  color: var(--emerald-800);
  font-size: 11px;
  font-weight: 700;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.journey-card {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(13, 95, 76, 0.08);
  border-radius: 16px;
}

.journey-card h3 {
  margin: 45px 0 8px;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

/* Launch business page */
.launch-hero {
  position: relative;
  padding: 154px 0 92px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--beige-light) 0%, #f2eadc 100%);
}

.launch-hero::before {
  position: absolute;
  top: 76px;
  right: -8%;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(rgba(13, 95, 76, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 95, 76, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(to left, black, transparent);
}

.launch-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 82px;
}

.launch-hero-copy h1 {
  max-width: 650px;
  margin: 0;
  color: var(--emerald-950);
  font-size: clamp(50px, 6vw, 76px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.01;
}

.launch-hero-copy h1 em {
  display: block;
  color: var(--emerald-800);
  font-family: var(--font-display);
  font-weight: 400;
}

.launch-hero-copy > p:nth-of-type(2) {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--charcoal-soft);
  font-size: 18px;
}

.launch-business-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.launch-business-types span {
  padding: 7px 11px;
  color: var(--emerald-900);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 95, 76, 0.14);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.launch-hero-visual {
  position: relative;
  min-height: 515px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(7, 63, 52, 0.02) 45%, rgba(7, 63, 52, 0.68)), url("assets/category-scenes.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 400% 200%;
  border: 11px solid rgba(255, 255, 255, 0.8);
  border-radius: 95px 18px 18px;
  box-shadow: var(--shadow-lg);
}

.launch-visual-card {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: min(330px, calc(100% - 50px));
  padding: 23px;
  color: var(--white);
  background: rgba(7, 63, 52, 0.9);
  border: 1px solid rgba(219, 196, 141, 0.32);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.launch-visual-icon,
.launch-stage-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  color: var(--gold-light);
  background: rgba(219, 196, 141, 0.12);
  border-radius: 13px;
}

.launch-visual-icon svg,
.launch-stage-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.launch-visual-card small {
  display: block;
  margin-top: 16px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.launch-visual-card strong {
  display: block;
  margin: 3px 0 13px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}

.launch-visual-card > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.launch-visual-card > div:last-child span {
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 9px;
}

.launch-snapshot {
  color: var(--white);
  background: var(--emerald-950);
}

.launch-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.launch-snapshot-grid > div {
  position: relative;
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
}

.launch-snapshot-grid > div:last-child {
  border-inline-end: 0;
}

.launch-snapshot-grid strong {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--gold-light);
  background: rgba(219, 196, 141, 0.1);
  border: 1px solid rgba(219, 196, 141, 0.28);
  border-radius: 13px;
}

.launch-snapshot-grid strong svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.launch-snapshot-grid span {
  font-size: 14px;
  font-weight: 800;
}

.launch-snapshot-grid i {
  position: absolute;
  right: -9px;
  z-index: 2;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--emerald-950);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
}

.compact-heading {
  max-width: 790px;
  margin-inline: auto;
}

.launch-support-section,
.launch-packages-section {
  background: var(--beige-light);
}

.launch-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.launch-stage-card {
  position: relative;
  min-height: 355px;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 95, 76, 0.09);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(8, 52, 42, 0.055);
}

.launch-stage-photo {
  height: 156px;
  margin: -28px -28px 0;
  background-image: linear-gradient(180deg, transparent 62%, rgba(7, 63, 52, 0.28)), url("assets/launch-services-grid.webp");
  background-repeat: no-repeat;
  background-size: 300% 200%;
}

.launch-photo-plan { background-position: 0 0; }
.launch-photo-build { background-position: 50% 0; }
.launch-photo-operations { background-position: 100% 0; }
.launch-photo-supplies { background-position: 0 100%; }
.launch-photo-marketing { background-position: 50% 100%; }
.launch-photo-maintenance { background-position: 100% 100%; }

.launch-stage-card::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 84px;
  height: 84px;
  background: var(--emerald-50);
  border-radius: 50%;
  content: "";
}

.launch-stage-number {
  position: absolute;
  top: 24px;
  right: 25px;
  padding: 5px 7px;
  color: var(--white);
  background: rgba(7, 63, 52, 0.8);
  border-radius: 999px;
  backdrop-filter: blur(7px);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.launch-stage-icon {
  position: relative;
  z-index: 2;
  width: 55px;
  height: 55px;
  margin-top: -25px;
  color: var(--emerald-800);
  background: var(--emerald-50);
  border: 4px solid var(--white);
  box-shadow: 0 8px 18px rgba(7, 63, 52, 0.1);
}

.launch-stage-card h3 {
  margin: 15px 0 7px;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
}

.launch-stage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.launch-stage-tags span {
  padding: 5px 8px;
  color: var(--emerald-900);
  background: var(--emerald-50);
  border: 1px solid rgba(13, 95, 76, 0.08);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
}

.launch-process-section {
  color: var(--white);
  background: var(--emerald-950);
}

.launch-process-section .section-heading h2 {
  color: var(--white);
}

.launch-process-section .section-heading h2 em {
  color: var(--gold-light);
}

.launch-process-section .section-heading > p,
.launch-process-section .split-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.launch-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.launch-process-grid article {
  position: relative;
  display: flex;
  min-height: 210px;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.launch-process-grid article > strong {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
}

.launch-process-icon {
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  color: var(--gold-light);
  background: rgba(219, 196, 141, 0.1);
  border: 1px solid rgba(219, 196, 141, 0.22);
  border-radius: 15px;
}

.launch-process-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.launch-process-grid h3 {
  margin: 3px 0 6px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
}

.launch-process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.launch-package-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.launch-package-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid #e5e0d4;
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
}

.launch-package-featured {
  color: var(--white);
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  box-shadow: 0 24px 55px rgba(7, 63, 52, 0.2);
  transform: translateY(-8px);
}

.package-label {
  align-self: flex-start;
  padding: 6px 9px;
  color: var(--gold);
  background: rgba(185, 145, 79, 0.1);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.launch-package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.launch-package-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--emerald-800);
  background: var(--emerald-50);
  border-radius: 15px;
}

.launch-package-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.launch-package-featured .launch-package-icon {
  color: var(--emerald-950);
  background: var(--gold-light);
}

.launch-package-featured .package-label {
  color: var(--emerald-950);
  background: var(--gold-light);
}

.launch-package-card h3 {
  margin: 26px 0 5px;
  color: var(--emerald-950);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
}

.package-best-for {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 3px;
}

.package-best-for small {
  padding: 4px 7px;
  color: var(--gold);
  background: rgba(185, 145, 79, 0.1);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.package-best-for span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.launch-package-card ul {
  display: grid;
  gap: 13px;
  margin: 27px 0 30px;
  padding: 0;
  list-style: none;
}

.launch-package-card li {
  position: relative;
  padding-inline-start: 20px;
  color: var(--charcoal-soft);
  font-size: 12px;
}

.launch-package-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.launch-package-card .button {
  width: 100%;
  margin-top: auto;
}

.launch-package-featured h3,
.launch-package-featured li {
  color: var(--white);
}

.launch-package-featured .package-best-for span {
  color: rgba(255, 255, 255, 0.72);
}

.launch-package-featured .package-best-for small {
  color: var(--emerald-950);
  background: rgba(219, 196, 141, 0.92);
}

.launch-why-section {
  background: var(--white);
}

.launch-why-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
}

.launch-why-copy h2,
.launch-request-intro h2 {
  margin: 0;
  color: var(--emerald-950);
  font-size: clamp(40px, 5vw, 59px);
  line-height: 1.07;
}

.launch-why-copy h2 em,
.launch-request-intro h2 em {
  color: var(--emerald-800);
  font-family: var(--font-display);
  font-weight: 400;
}

.launch-why-copy > p:nth-of-type(2),
.launch-request-intro > p:nth-of-type(2) {
  margin: 22px 0 27px;
  color: var(--muted);
}

.launch-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.launch-benefit-grid article {
  display: flex;
  min-height: 135px;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--beige-light);
  border: 1px solid #ebe5d9;
  border-radius: 15px;
}

.launch-benefit-grid article > span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--emerald-800);
  border-radius: 50%;
  font-size: 12px;
}

.launch-benefit-grid article > span svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.launch-benefit-grid h3 {
  margin: 2px 0 4px;
  color: var(--emerald-950);
  font-size: 13px;
}

.launch-benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.launch-request-section {
  color: var(--white);
  background: #142c27;
}

.launch-request-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 75px;
}

.launch-request-intro {
  position: sticky;
  top: 120px;
}

.launch-request-intro h2 {
  color: var(--white);
}

.launch-request-intro h2 em {
  color: var(--gold-light);
}

.launch-request-intro > p:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.62);
}

.launch-request-points {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.launch-request-points > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.launch-request-points strong,
.launch-request-points small {
  display: block;
}

.launch-request-points strong {
  font-size: 12px;
}

.launch-request-points small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.launch-form-card {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

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

.launch-service-grid label {
  min-height: 66px;
  align-items: center;
  padding: 11px 12px;
}

.launch-service-grid label > svg {
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  padding: 5px;
  color: var(--emerald-800);
  background: var(--emerald-50);
  border-radius: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.launch-service-grid label:has(input:checked) > svg {
  color: var(--white);
  background: var(--emerald-800);
}

.launch-service-grid label > span {
  font-size: 11px;
}

.launch-success {
  min-height: 760px;
}

.launch-whatsapp-cta {
  padding-block: 68px;
  color: var(--white);
  background: var(--emerald-800);
}

.launch-whatsapp-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.launch-whatsapp-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
}

.launch-whatsapp-inner > div > p:last-child {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.launch-whatsapp-inner .button {
  flex: 0 0 auto;
}

@media (max-width: 1200px) {
  .mart-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .launch-hero-grid {
    gap: 48px;
  }

  .launch-request-grid,
  .launch-why-grid {
    gap: 50px;
  }
}

@media (max-width: 850px) {
  .hero-cta-grid {
    gap: 12px;
  }

  .mart-quick-cues,
  .hero-example-grid,
  .prompt-card-grid {
    grid-template-columns: 1fr;
  }

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

  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }

  .launch-hero-grid,
  .launch-request-grid,
  .launch-why-grid {
    grid-template-columns: 1fr;
  }

  .launch-hero {
    padding-top: 130px;
  }

  .launch-hero-copy {
    max-width: 700px;
  }

  .launch-hero-visual {
    width: 100%;
    max-width: 700px;
  }

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

  .launch-package-featured {
    transform: none;
  }

  .launch-package-card:last-child {
    grid-column: 1 / -1;
  }

  .launch-request-intro {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .hero-cta-grid {
    flex-direction: column;
  }

  .hero-cta-grid .button {
    width: 100%;
    min-width: 0;
  }

  .hero-ai-content {
    padding: 22px;
  }

  .mart-quick-cues,
  .mart-catalog,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .mart-card,
  .journey-card {
    min-height: 0;
  }

  .ai-draft-actions {
    flex-direction: column;
  }

  .ai-draft-actions .button {
    width: 100%;
  }

  .launch-hero {
    padding: 116px 0 66px;
  }

  .launch-hero-copy h1 {
    font-size: 45px;
  }

  .launch-hero-copy > p:nth-of-type(2) {
    font-size: 15px;
  }

  .launch-hero-visual {
    min-height: 370px;
    border-width: 7px;
    border-radius: 58px 12px 12px;
  }

  .launch-visual-card {
    right: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
    padding: 19px;
  }

  .launch-snapshot-grid,
  .launch-stage-grid,
  .launch-process-grid,
  .launch-package-grid,
  .launch-benefit-grid {
    grid-template-columns: 1fr;
  }

  .launch-snapshot-grid > div {
    min-height: 72px;
    justify-content: flex-start;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .launch-snapshot-grid i {
    right: 22px;
    bottom: -10px;
    transform: rotate(90deg);
  }

  .launch-snapshot-grid > div:last-child {
    border-bottom: 0;
  }

  .launch-stage-card {
    min-height: 205px;
  }

  .launch-package-card,
  .launch-package-card:last-child {
    min-height: 0;
    grid-column: auto;
  }

  .launch-why-grid,
  .launch-request-grid {
    gap: 42px;
  }

  .launch-whatsapp-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .launch-whatsapp-inner .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* Keep the unified header authoritative after legacy responsive rules. */
.minimal-site .nav-wrap {
  min-height: 92px;
}

.minimal-site .primary-nav {
  gap: 15px;
}

.minimal-site .primary-nav > a:not(.button) {
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1120px) and (min-width: 851px) {
  .minimal-site .primary-nav {
    gap: 9px;
  }

  .minimal-site .primary-nav > a:not(.button) {
    font-size: 12px;
  }
}

@media (max-width: 850px) {
  .minimal-site .nav-wrap {
    min-height: 78px;
  }

  .minimal-site .primary-nav {
    top: 78px;
    max-height: calc(100vh - 78px);
    gap: 0;
  }

  .minimal-site .primary-nav > a:not(.button) {
    font-size: 16px;
  }
}

/* Minimal public experience */
.minimal-site {
  background: var(--beige-light);
}

.minimal-site .section-pad {
  padding-block: 88px;
}

.minimal-site .site-header {
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(10px);
}

.minimal-site .button {
  min-height: 48px;
  border-radius: 7px;
  box-shadow: none;
}

.minimal-site a[href*="wa.me/97400000000"] {
  display: none !important;
}

.minimal-site :is(
  .mart-card,
  .pillar-card,
  .category-card,
  .journey-card,
  .launch-stage-card,
  .launch-package-card,
  .launch-benefit-grid article,
  .capability-card,
  .vendor-process-grid article
) {
  box-shadow: none;
}

.minimal-home .hero {
  min-height: 0;
  padding: 145px 0 92px;
}

.minimal-home .hero-glow,
.minimal-home .floating-note,
.minimal-home .hero-footer,
.minimal-home .trust-bar,
.minimal-home .quote-status,
.minimal-home .hero-promise {
  display: none;
}

.minimal-home .hero h1 {
  max-width: 620px;
  font-size: clamp(52px, 6vw, 76px);
  line-height: 1.01;
}

.minimal-home .hero-lead {
  margin-top: 22px;
}

.minimal-home .hero-support-line {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.minimal-home .hero-cta-grid {
  align-items: center;
  gap: 11px;
  margin-top: 28px;
}

.minimal-home .hero-cta-grid .button {
  min-width: 150px;
}

.minimal-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 7px;
  color: var(--emerald-800);
  font-size: 13px;
  font-weight: 800;
}

.minimal-text-link span {
  color: var(--gold);
}

.minimal-home .hero-card {
  border: 1px solid rgba(13, 95, 76, 0.12);
  box-shadow: 0 18px 45px rgba(7, 48, 39, 0.09);
}

.minimal-home .hero-ai-content {
  padding: 25px;
}

.minimal-home .hero-ai-form textarea {
  min-height: 92px;
}

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

.minimal-home .hero-example-grid button {
  padding: 9px;
  font-size: 10px;
  text-align: center;
}

.minimal-home .section-heading {
  margin-bottom: 34px;
}

.minimal-home .section-heading h2 {
  font-size: clamp(38px, 4vw, 52px);
}

.minimal-home .mart-quick-cues,
.minimal-home .mart-card:nth-child(n + 5),
.minimal-home .mart-card p,
.minimal-home .mart-card .button-ghost {
  display: none;
}

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

.minimal-home .mart-card {
  min-height: 250px;
  padding: 23px;
  background: var(--white);
}

.minimal-home .mart-card h3 {
  margin-top: 24px;
  font-size: 23px;
}

.minimal-home .mart-actions {
  padding-top: 20px;
}

.minimal-home .mart-actions .button {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 12px;
}

.minimal-home .solutions {
  background: var(--white);
}

.minimal-home .solutions .section-heading > p:last-child,
.minimal-home .pillar-card ul {
  display: none;
}

.minimal-home .pillar-card,
.minimal-home .pillar-card.pillar-featured {
  min-height: 310px;
  padding: 29px;
  color: var(--charcoal);
  background: var(--beige-light);
  border: 1px solid #e7e2d7;
}

.minimal-home .pillar-card.pillar-featured {
  border-color: rgba(13, 95, 76, 0.3);
}

.minimal-home .pillar-card :is(h3, p, a),
.minimal-home .pillar-card.pillar-featured :is(h3, p, a) {
  color: inherit;
}

.minimal-home .pillar-card h3 {
  color: var(--emerald-950);
}

.minimal-home .pillar-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 12px;
}

.minimal-home .categories-section .split-heading > p,
.minimal-home .category-card:nth-child(n + 5),
.minimal-home .category-card small {
  display: none;
}

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

.minimal-home .category-card {
  min-height: 112px;
  padding: 18px;
  background: var(--white);
}

.minimal-home .ask-section {
  background: var(--white);
}

.minimal-home .helper-note,
.minimal-home .prompt-card-grid {
  display: none;
}

.minimal-home .ask-copy > p:nth-of-type(2) {
  max-width: 520px;
}

.minimal-home .journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.minimal-home .journey-card {
  min-height: 190px;
  padding: 25px;
  background: var(--white);
}

.minimal-home .journey-card h3 {
  margin: 38px 0 8px;
}

.minimal-home .why-section,
.minimal-home .vendor-form-card,
.minimal-home .vendor-points,
.minimal-home .contact-actions .button-whatsapp,
.minimal-home .contact-actions small {
  display: none;
}

.minimal-home .vendor-section {
  padding-block: 76px;
}

.minimal-home .vendor-layout {
  display: block;
}

.minimal-home .vendor-copy {
  position: static;
  max-width: 690px;
}

.minimal-home .vendor-copy h2 {
  max-width: 650px;
}

.minimal-home .vendor-copy > p:nth-of-type(2) {
  margin-bottom: 28px;
}

.minimal-vendor-cta {
  display: inline-flex;
}

.minimal-home .contact-section {
  padding-block: 62px;
}

.minimal-home .contact-inner h2 {
  max-width: 690px;
}

.minimal-site .site-footer {
  padding-top: 52px;
}

.minimal-site .footer-grid {
  padding-bottom: 42px;
}

.launch-page.minimal-site .launch-why-section,
.launch-page.minimal-site .launch-whatsapp-cta {
  display: none;
}

.launch-page.minimal-site .launch-stage-card,
.launch-page.minimal-site .launch-package-card {
  border-color: #e6e1d7;
}

.launch-page.minimal-site .launch-process-section .split-heading > p {
  max-width: 430px;
}

.inner-page.minimal-site :is(.page-hero, .ask-page-hero, .vendor-page-hero) {
  padding-bottom: 82px;
}

@media (max-width: 850px) {
  .minimal-home .mart-catalog,
  .minimal-home .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 600px) {
  .minimal-site .section-pad {
    padding-block: 62px;
  }

  .minimal-home .hero {
    padding: 116px 0 68px;
  }

  .minimal-home .hero h1 {
    font-size: 44px;
  }

  .minimal-home .hero-cta-grid {
    align-items: stretch;
  }

  .minimal-home .minimal-text-link {
    justify-content: center;
  }

  .minimal-home .hero-example-grid {
    grid-template-columns: 1fr;
  }

  .minimal-home .mart-catalog,
  .minimal-home .category-grid,
  .minimal-home .journey-grid {
    grid-template-columns: 1fr;
  }

  .minimal-home .mart-card,
  .minimal-home .pillar-card,
  .minimal-home .journey-card {
    min-height: 0;
  }

  .minimal-home .contact-inner {
    gap: 20px;
  }
}
