:root {
  --navy: #071a32;
  --navy-soft: #102c4d;
  --gold: #bd8b3e;
  --gold-light: #d8ad63;
  --ink: #122033;
  --muted: #647085;
  --paper: #f7f3eb;
  --white: #ffffff;
  --line: rgba(7, 26, 50, 0.12);
  --shadow: 0 24px 70px rgba(7, 26, 50, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
  max-width: 100%;
}

.breadcrumb {
  border-bottom: 1px solid rgba(7, 26, 50, 0.08);
  background: #fff;
}

.breadcrumb ol {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 9px;
  color: #a3adbb;
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 760;
}

.article-meta {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.answer-summary {
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 20px;
  color: #33445a;
  font-size: 18px;
  line-height: 1.7;
}

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

.market-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}

.market-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 23px;
}

.market-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.scope-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.scope-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.scope-table th,
.scope-table td {
  border-bottom: 1px solid var(--line);
  padding: 17px 18px;
  text-align: left;
  vertical-align: top;
}

.scope-table th {
  color: var(--navy);
  background: #f5f0e7;
  font-size: 13px;
}

.scope-table tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
}

.faq-list summary {
  color: var(--navy);
  font-weight: 820;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(7, 26, 50, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 860;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(7, 26, 50, 0.14));
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #34435a;
  font-size: 13px;
  font-weight: 740;
}

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

.language-menu {
  position: relative;
}

.language-menu summary {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(7, 26, 50, 0.12);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  list-style: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-menu[open] summary {
  border-color: rgba(189, 139, 62, 0.42);
  color: var(--gold);
}

.language-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 180px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 50, 0.12);
  border-radius: 8px;
  padding: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 26, 50, 0.16);
}

.language-list a {
  border-radius: 6px;
  padding: 10px 11px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
}

.language-list a:hover {
  color: var(--navy);
  background: #f5ead8;
}

.nav-cta {
  border-radius: 8px;
  padding: 11px 15px;
  color: var(--navy) !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(92deg, rgba(7, 26, 50, 0.96) 0%, rgba(7, 26, 50, 0.86) 43%, rgba(7, 26, 50, 0.28) 100%),
    url("hero-sourcing.png");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: -210px;
  right: -190px;
  width: 520px;
  height: 520px;
  border: 26px solid rgba(216, 173, 99, 0.82);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 760px;
  min-height: calc(100svh - 76px);
  align-content: center;
  padding: 80px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--gold);
}

h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.lead {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.72;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 880;
}

.button.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 34px rgba(189, 139, 62, 0.34);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary.dark-text {
  color: var(--navy);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.entry-strip {
  position: relative;
  z-index: 3;
  margin-top: -46px;
  padding-bottom: 34px;
}

.entry-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(216, 173, 99, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(7, 26, 50, 0.16);
}

.entry-grid a {
  min-height: 118px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.entry-grid a:last-child {
  border-right: 0;
}

.entry-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.entry-grid strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
}

.section {
  padding: 82px 0;
  background: var(--paper);
}

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

.section.dark {
  color: var(--white);
  background: var(--navy);
}

.section.soft-band,
.soft-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(247, 243, 235, 0.96)),
    var(--paper);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2,
.split-copy h2,
.quote-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section.dark .section-head h2,
.section.dark .section-head p,
.quote-panel h2 {
  color: var(--white);
}

.section-head p,
.split-copy p,
.quote-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.section.dark .section-head p,
.quote-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.card-grid,
.product-grid,
.process-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.process-card,
.social-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 26, 50, 0.07);
}

.card,
.process-card,
.social-card {
  padding: 28px;
}

.card-label,
.step-num {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.card h3,
.process-card h3,
.product-card h3,
.social-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.24;
}

.card p,
.process-card p,
.product-card p,
.social-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.product-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-card .quote-link {
  align-self: flex-end;
  margin-top: auto;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--navy);
  background: #f1e2c8;
  font-size: 14px;
  font-weight: 900;
}

.product-card .quote-link:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.proof-grid,
.social-feature,
.two-col-hero {
  display: grid;
  gap: 46px;
  align-items: center;
}

.proof-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.social-feature {
  grid-template-columns: 0.85fr 1.15fr;
}

.two-col-hero {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.proof-grid h2,
.social-feature h2,
.cta-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.proof-grid p,
.social-feature p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

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

.metric-grid article,
.solution-card,
.pricing-card {
  border: 1px solid rgba(7, 26, 50, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 26, 50, 0.06);
}

.metric-grid article {
  min-height: 142px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.74);
}

.metric-grid strong {
  display: block;
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.45;
}

.compact.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.compact .social-card {
  min-height: 170px;
}

.compact-hero {
  padding: 72px 0;
}

.signal-panel {
  border: 1px solid rgba(216, 173, 99, 0.34);
  border-radius: 8px;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.signal-panel strong,
.signal-panel span {
  display: block;
}

.signal-panel strong {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-panel span {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 760;
}

.solution-grid,
.pricing-grid,
.detail-grid,
.resource-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card,
.pricing-card,
.detail-card,
.resource-card,
.faq-card {
  padding: 28px;
}

.solution-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.solution-card h3,
.pricing-card h3 {
  margin: 18px 0 12px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.14;
}

.solution-card p,
.pricing-card p {
  color: var(--muted);
  line-height: 1.62;
}

.solution-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
}

.detail-card,
.resource-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 26, 50, 0.07);
}

.detail-card h3,
.resource-card h3,
.faq-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.detail-card p,
.resource-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.detail-card ul,
.resource-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.detail-card li,
.resource-card li {
  color: var(--navy);
  font-weight: 760;
  line-height: 1.45;
}

.detail-card li::before,
.resource-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.category-list a,
.category-list span {
  border: 1px solid rgba(7, 26, 50, 0.1);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--navy);
  background: #fbf7ef;
  font-size: 13px;
  font-weight: 820;
}

.category-list a:hover {
  border-color: rgba(189, 139, 62, 0.5);
  background: #f1e2c8;
}

.mini-cta {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 900;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-row article {
  border: 1px solid rgba(216, 173, 99, 0.28);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--gold-light);
  font-size: 24px;
}

.trust-row span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.article-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 26, 50, 0.07);
}

.article-body h2 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.article-callout {
  margin: 26px 0;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 20px 22px;
  color: var(--navy);
  background: #fbf7ef;
  font-weight: 780;
  line-height: 1.62;
}

.article-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.sidebar-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 26, 50, 0.06);
}

.sidebar-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.sidebar-card a,
.sidebar-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.sidebar-card a {
  color: var(--gold);
  font-weight: 900;
}

.check-panel {
  display: grid;
  gap: 12px;
}

.check-panel span,
.quote-list span {
  display: block;
  border: 1px solid rgba(7, 26, 50, 0.1);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline article {
  display: grid;
  grid-template-columns: 86px 0.5fr 1fr;
  gap: 28px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
}

.timeline span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 940;
}

.timeline h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

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

.cta-row h2 {
  color: var(--white);
}

.cta-row p {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-card.featured {
  border-color: rgba(189, 139, 62, 0.5);
  background: linear-gradient(180deg, #fffaf0, #ffffff);
}

.pricing-card ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 780;
}

.note-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
}

.note-band strong {
  margin-right: 8px;
  color: var(--navy);
}

.note-band span {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--white);
  font-size: 13px;
  font-weight: 820;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 52px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.image-panel.contain {
  background: var(--white);
}

.image-panel.contain img {
  aspect-ratio: auto;
  object-fit: contain;
}

.points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.points span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 820;
}

.points span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(7, 26, 50, 0.96), rgba(7, 26, 50, 0.76)),
    url("hero-sourcing.png");
  background-position: center;
  background-size: cover;
}

.page-hero .shell {
  padding: 92px 0 88px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.quote-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 42px;
  align-items: start;
}

.quote-panel {
  padding: 32px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 26, 50, 0.95), rgba(16, 44, 77, 0.92)),
    url("hero-sourcing.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.quote-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.quote-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 780;
}

.quote-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 26, 50, 0.1);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(7, 26, 50, 0.18);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfcfe;
  font: inherit;
  outline: none;
}

.field textarea {
  min-height: 156px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 173, 99, 0.18);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.submit-button {
  justify-self: start;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 0 26px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #2d5f45;
  font-size: 14px;
  font-weight: 700;
}

.form-status.error {
  color: #a12b2b;
}

.social-card {
  display: block;
}

.social-card span {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 860;
}

.site-footer {
  padding: 56px 0;
  color: rgba(255, 255, 255, 0.74);
  background: #061426;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 16px;
  color: var(--white);
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.54;
}

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

.wa-widget {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 60;
  font-family: inherit;
}

.wa-panel {
  position: absolute;
  right: 0;
  bottom: 86px;
  width: min(390px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 18px;
  background: #f4efe7;
  box-shadow: 0 24px 62px rgba(7, 26, 50, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transform-origin: right bottom;
  transition: opacity 180ms ease, transform 180ms ease;
}

.wa-widget.open .wa-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.wa-head {
  display: grid;
  grid-template-columns: 58px 1fr 34px;
  gap: 16px;
  align-items: center;
  padding: 22px;
  color: var(--white);
  background: #0b6b5a;
}

.wa-head img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
}

.wa-head strong {
  display: block;
  font-size: 20px;
}

.wa-head span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.35;
}

.wa-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.wa-body {
  padding: 22px;
  background:
    radial-gradient(circle at 18% 28%, rgba(7, 26, 50, 0.05) 0 8px, transparent 9px),
    radial-gradient(circle at 72% 58%, rgba(189, 139, 62, 0.08) 0 9px, transparent 10px),
    #eee7dd;
}

.wa-message {
  border-radius: 14px;
  padding: 18px;
  color: #111827;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 26, 50, 0.08);
}

.wa-message strong {
  display: block;
  margin-bottom: 8px;
  color: #9aa0aa;
}

.wa-message p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
}

.wa-message ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  line-height: 1.45;
}

.wa-foot {
  padding: 20px 22px 22px;
  text-align: center;
  background: var(--white);
}

.wa-start {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  color: var(--white);
  background: #46c63f;
  font-size: 18px;
  font-weight: 900;
}

.wa-start img {
  width: 27px;
  height: 27px;
}

.wa-powered {
  display: block;
  margin-top: 12px;
  color: #9aa0aa;
  font-size: 12px;
}

.wa-float {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #46c63f;
  box-shadow: 0 14px 34px rgba(7, 26, 50, 0.28);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(7, 26, 50, 0.32);
}

.wa-float img {
  width: 42px;
  height: 42px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .language-menu {
    order: 20;
  }

  .language-list {
    right: auto;
    left: 0;
  }

  .nav-cta {
    padding: 10px 14px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 78px 0;
  }

  .card-grid,
  .entry-grid,
  .product-grid,
  .process-grid,
  .social-grid,
  .solution-grid,
  .pricing-grid,
  .detail-grid,
  .resource-grid,
  .faq-grid,
  .trust-row,
  .proof-grid,
  .metric-grid,
  .social-feature,
  .two-col-hero,
  .split,
  .quote-wrap,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .entry-strip {
    margin-top: 0;
    padding-top: 18px;
  }

  .entry-grid a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .entry-grid a:last-child {
    border-bottom: 0;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .cta-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .brand small {
    display: none;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .card,
  .process-card,
  .product-card div,
  .social-card,
  .solution-card,
  .pricing-card,
  .metric-grid article,
  .quote-panel,
  .quote-form {
    padding: 22px;
  }

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

  .wa-widget {
    right: 16px;
    bottom: 16px;
  }

  .wa-panel {
    bottom: 78px;
  }

  .wa-head {
    grid-template-columns: 50px 1fr 32px;
    padding: 18px;
  }

  .wa-head img {
    width: 50px;
    height: 50px;
  }
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
}

.legal-links a,
.legal-links button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 13px;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.legal-page {
  max-width: 820px;
}

.legal-page h2 {
  margin-top: 38px;
}

.legal-page li {
  margin-bottom: 8px;
}

.consent-panel {
  position: fixed;
  z-index: 70;
  right: 104px;
  bottom: 16px;
  left: 16px;
  display: none;
  max-width: 920px;
  border: 1px solid rgba(189, 139, 62, 0.35);
  border-radius: 8px;
  padding: 16px 18px;
  color: #0b203a;
  background: #fff;
  box-shadow: 0 14px 40px rgba(7, 26, 50, 0.2);
}

.consent-panel.visible {
  display: block;
}

.consent-summary,
.consent-preferences {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.consent-summary:not([hidden]),
.consent-preferences:not([hidden]) {
  display: flex;
}

.consent-panel strong {
  display: block;
  margin-bottom: 4px;
}

.consent-panel p {
  max-width: 610px;
  margin: 0;
  color: #53647b;
  font-size: 14px;
  line-height: 1.5;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.consent-actions button {
  min-height: 42px;
  border-radius: 6px;
  padding: 9px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.consent-link {
  border: 0;
  color: #163354;
  background: transparent;
}

.consent-reject {
  border: 1px solid #aeb8c4;
  color: #163354;
  background: #fff;
}

.consent-accept {
  border: 1px solid #bd8b3e;
  color: #071a32;
  background: #d7aa58;
}

.consent-toggle {
  display: flex;
  min-width: 180px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-left: 1px solid #d9dee5;
  padding-left: 18px;
}

.consent-toggle small {
  display: block;
  color: #6b7789;
}

.consent-toggle input {
  width: 22px;
  height: 22px;
  accent-color: #bd8b3e;
}

@media (max-width: 760px) {
  .market-grid {
    grid-template-columns: 1fr;
  }

  .breadcrumb ol {
    overflow-x: auto;
    white-space: nowrap;
  }

  .consent-panel {
    right: 12px;
    bottom: 94px;
    left: 12px;
    max-height: 58vh;
    overflow-y: auto;
    padding: 15px;
  }

  .consent-summary,
  .consent-preferences {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

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

  .consent-actions .consent-link {
    grid-column: auto;
  }

  .consent-actions button {
    padding: 8px 6px;
  }

  .consent-preferences .consent-actions {
    grid-template-columns: 1fr 2fr;
  }

  .consent-toggle {
    border-top: 1px solid #d9dee5;
    border-left: 0;
    padding-top: 12px;
    padding-left: 0;
  }
}
