/* GM Solution — brand theme (logo colours: navy, yellow, gold) */

:root {
  /* Logo palette */
  --navy: #003366;
  --navy-dark: #002244;
  --navy-mid: #004080;
  --yellow: #ffcc00;
  --yellow-bright: #ffe066;
  --yellow-soft: #fff9e0;
  --gold: #c87a1e;
  --gold-dark: #a86518;
  --gold-soft: #fdf4eb;
  /* Semantic tokens */
  --bg: #fffef8;
  --bg-muted: #fff9ea;
  --bg-subtle: #ffffff;
  --surface: #ffffff;
  --text: #0d2847;
  --text-muted: #3d5a73;
  --text-soft: #5a758c;
  --accent: var(--navy);
  --accent-hover: var(--navy-dark);
  --accent-soft: #e6eef5;
  --accent-line: var(--gold);
  --accent-muted: var(--gold);
  --steel: var(--navy-mid);
  --steel-dark: var(--navy-dark);
  --border: #c5d6e6;
  --shadow: 0 2px 12px rgba(0, 51, 102, 0.08);
  --shadow-lg: 0 20px 48px rgba(0, 51, 102, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1180px;
  --narrow: 760px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --grid-line: rgba(0, 51, 102, 0.06);
  --grid-size: 52px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(255, 204, 0, 0.12), transparent 55%),
    linear-gradient(180deg, #fffef8 0%, #fff8e7 100%);
  background-size: var(--grid-size) var(--grid-size), var(--grid-size) var(--grid-size), 100% 100%, 100% 100%;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 1.5rem, 640px);
  margin-inline: auto;
}

.narrow {
  max-width: var(--narrow);
  margin-inline: auto;
  text-align: center;
}

/* —— Header —— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(255, 254, 248, 0.97) 0%, rgba(255, 249, 224, 0.95) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
  box-shadow: 0 2px 0 rgba(0, 51, 102, 0.06);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: 4.75rem;
  padding: 0.45rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  border-radius: 12px;
  box-shadow:
    0 2px 16px rgba(0, 51, 102, 0.18),
    0 0 0 2px #fff,
    0 0 0 3px var(--yellow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo:hover {
  transform: scale(1.03);
  box-shadow:
    0 4px 22px rgba(0, 51, 102, 0.2),
    0 0 0 2px #fff,
    0 0 0 3px var(--gold);
}

.logo:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.logo-img {
  display: block;
  height: clamp(48px, 11vw, 60px);
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
  border-radius: 10px;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle-label:hover {
  background: var(--bg-muted);
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 1.35rem;
  background: var(--navy);
  border-radius: 1px;
  margin: 0 auto;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-main a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-mid);
  text-decoration: none;
}

.nav-main a:hover {
  color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 880px) {
  .nav-toggle-label {
    display: flex;
  }

  .nav-main,
  .header-cta {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid var(--border);
  }

  .nav-main a {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--bg-muted);
  }

  .nav-main a:last-child {
    border-bottom: none;
  }

  .header-cta {
    border-top: none;
    padding-top: 0;
    flex-direction: column;
  }

  .header-cta .btn {
    width: 100%;
  }

  #nav-toggle:checked ~ .nav-main,
  #nav-toggle:checked ~ .header-cta {
    display: flex;
  }

  #nav-toggle:focus-visible ~ .nav-toggle-label {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
}

/* —— Buttons —— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.2;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--yellow-soft);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.btn-on-dark {
  background: var(--yellow);
  color: var(--navy-dark);
  border-color: var(--yellow-bright);
}

.btn-on-dark:hover {
  background: var(--yellow-bright);
  border-color: var(--yellow);
  color: var(--navy-dark);
}

.btn-block {
  width: 100%;
}

/* —— Hero —— */

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 70% 20%, rgba(255, 204, 0, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(0, 51, 102, 0.06), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--yellow-soft) 100%);
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 14px,
      rgba(0, 51, 102, 0.035) 14px,
      rgba(0, 51, 102, 0.035) 15px
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 35%, var(--yellow) 35%, var(--yellow) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  margin: 0 0 1.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero-line {
  display: block;
  font-size: clamp(2.15rem, 5.5vw, 3.35rem);
  color: var(--navy);
}

.hero-line.accent {
  color: var(--gold);
}

.hero-line.sub {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--navy-mid);
  margin-top: 0.35rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1.25rem;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
}

@media (min-width: 960px) {
  .hero-panel {
    align-items: flex-end;
    margin-inline: 0 0;
    margin-left: auto;
  }
}

.hero-media {
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  aspect-ratio: 1 / 1;
  max-height: min(420px, 52vh);
  width: 100%;
  position: relative;
  background: #fff;
}

.hero-media::after {
  content: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 34, 68, 0.45) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.hero-panel-inner {
  width: 100%;
  padding: 1.75rem 1.75rem 1.5rem;
  background: linear-gradient(145deg, #ffffff 0%, var(--yellow-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-top: 3px solid var(--yellow);
}

.hero-panel-label {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

.hero-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.hero-flow li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
}

.hero-flow-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.hero-flow-link:hover {
  color: var(--navy-dark);
  border-bottom-color: var(--gold);
}

.hero-flow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 0.8125rem;
  font-weight: 800;
}

.hero-panel-foot {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-soft);
}

/* —— Stat strip —— */

.stat-strip {
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow) 55%, #f5c400 100%);
  border-bottom: 2px solid var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .stat-row {
    grid-template-columns: repeat(4, 1fr);
    padding: 2.25rem 0;
  }
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(0, 34, 68, 0.82);
  line-height: 1.4;
  font-weight: 500;
}

/* —— Sections —— */

.section {
  padding: clamp(3.25rem, 7vw, 5rem) 0;
}

.section-muted {
  background:
    linear-gradient(rgba(0, 51, 102, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 51, 102, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #e8f0f7 0%, #dce8f2 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
}

.section-surface {
  background: linear-gradient(180deg, #ffffff 0%, var(--yellow-soft) 100%);
}

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.75rem;
}

.section-head-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 40rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--navy);
}

.section-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Trust */

.section.trust {
  background: linear-gradient(180deg, #ffffff 0%, #f0f6fb 100%);
  border-block: 1px solid var(--border);
}

.trust-head {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--navy);
}

.trust-text {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Feature grid */

.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--yellow-soft), var(--yellow-bright));
  margin-bottom: 1rem;
  border: 1px solid rgba(200, 122, 30, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.feature-card p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.text-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-mid);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  color: var(--gold);
}

/* Journey */

.journey-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.journey-step {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .journey-step {
    grid-template-columns: auto 1fr minmax(200px, 260px);
    align-items: start;
    gap: 1.5rem;
  }
}

.journey-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.25rem;
  border: 2px solid var(--yellow);
  box-shadow: 0 2px 12px rgba(0, 51, 102, 0.25);
}

.journey-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.journey-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.journey-aside {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 900px) {
  .journey-aside {
    border-left: 1px solid var(--border);
    padding-left: 1.5rem;
  }
}

.journey-stat {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.65rem 0.85rem;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(200, 122, 30, 0.2);
}

.journey-stat strong {
  display: block;
  color: var(--navy);
  font-size: 0.9375rem;
  margin-bottom: 0.15rem;
}

/* Seller flow (consignment / associate model) */

.seller-flow-section {
  background: linear-gradient(180deg, #fffef8 0%, var(--yellow-soft) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.seller-flow-section .section-head .eyebrow {
  margin: 0 auto 0.65rem;
}

.seller-flow-intro {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.seller-flow-model-title {
  margin: 0 auto 1.25rem;
  text-align: center;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.seller-flow-model-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2.75rem;
}

@media (min-width: 720px) {
  .seller-flow-model-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.seller-flow-model-card {
  margin: 0;
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--navy);
  box-shadow: var(--shadow);
}

.seller-flow-model-card-title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.seller-flow-model-card-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.seller-flow-steps-head {
  margin: 0 auto 1.35rem;
  text-align: center;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.seller-flow-grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .seller-flow-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.seller-flow-primary,
.seller-flow-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: var(--shadow);
}

.seller-flow-card-title {
  margin: 0 0 1.15rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.seller-flow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sellerflow;
}

.seller-flow-steps li {
  counter-increment: sellerflow;
  position: relative;
  padding-left: 2.65rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.seller-flow-steps li:last-child {
  margin-bottom: 0;
}

.seller-flow-steps li::before {
  content: counter(sellerflow);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.85rem;
  height: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 0.8125rem;
  font-weight: 800;
}

.seller-flow-step-title {
  display: block;
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.seller-flow-step-text {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.seller-flow-benefits {
  margin: 0 0 1.5rem;
  padding: 0 0 0 1.15rem;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.seller-flow-benefits li {
  margin-bottom: 0.55rem;
}

.seller-flow-benefits li:last-child {
  margin-bottom: 0;
}

.seller-flow-quote {
  margin: 0 0 1.5rem;
  padding: 0;
  border-left: 4px solid var(--gold);
  padding-left: 1.1rem;
}

.seller-flow-quote blockquote {
  margin: 0;
  padding: 0;
}

.seller-flow-quote p {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
}

.seller-flow-cta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* GST assistance */

.gst-section {
  background:
    radial-gradient(ellipse 80% 55% at 20% 10%, rgba(255, 204, 0, 0.16), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-bottom: 1px solid var(--border);
}

.gst-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .gst-grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 1.5rem;
  }
}

.gst-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: var(--shadow);
}

.gst-card--steps {
  border-top: 3px solid var(--gold);
}

.gst-card-title {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.gst-card-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.gst-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: gststeps;
  display: grid;
  gap: 0.85rem;
}

.gst-steps li {
  counter-increment: gststeps;
  position: relative;
  padding-left: 2.55rem;
}

.gst-steps li::before {
  content: counter(gststeps);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 0.8125rem;
  font-weight: 800;
}

.gst-step-title {
  display: block;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.15rem;
  letter-spacing: -0.02em;
}

.gst-step-text {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.gst-cta {
  margin: 1.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Seller support (accordion services) */

.support-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-bottom: 1px solid var(--border);
}

.support-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 980px) {
  .support-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
  }
}

.support-aside {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
  position: sticky;
  top: 5.75rem;
}

@media (max-width: 979px) {
  .support-aside {
    position: static;
  }
}

.support-aside-title {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.support-bullets {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.support-bullets li {
  margin-bottom: 0.5rem;
}

.support-bullets li:last-child {
  margin-bottom: 0;
}

.support-aside-cta {
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.support-item summary {
  font-weight: 700;
}

.support-sublist {
  margin: 0.75rem 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.support-sublist li {
  margin-bottom: 0.45rem;
}

.support-sublist li:last-child {
  margin-bottom: 0;
}

/* Channels */

.channel-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.channel-pill {
  padding: 0.55rem 1.1rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--yellow-soft) 100%);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Split platform */

.split-block {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split-block {
    grid-template-columns: 1fr 0.9fr;
    gap: 3.5rem;
  }
}

.split-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--navy);
}

.split-lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.split-panel {
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .split-panel {
    justify-content: flex-end;
  }
}

.split-card {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 204, 0, 0.2) 0%, transparent 42%),
    linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 40%, var(--navy-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 204, 0, 0.35);
}

.split-card-title {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.split-card-stat {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--yellow-bright);
}

.split-card-note {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.92;
}

/* Quotes */

.quote-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-card {
  margin: 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
}

.quote-card footer {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
}

/* KPI strip */

.kpi-strip {
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 22px,
      rgba(255, 204, 0, 0.06) 22px,
      rgba(255, 204, 0, 0.06) 23px
    ),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  border-block: 3px solid var(--yellow);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.kpi-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  text-align: center;
}

@media (min-width: 700px) {
  .kpi-row {
    grid-template-columns: repeat(3, 1fr);
    padding: 2.75rem 0;
  }
}

.kpi-value {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  color: var(--yellow);
}

.kpi-label {
  font-size: 0.9375rem;
  opacity: 0.85;
  line-height: 1.45;
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 1rem;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 1rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--navy);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  padding-top: 0.15rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Dark CTA */

.cta-dark {
  background:
    linear-gradient(90deg, rgba(255, 204, 0, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, var(--navy-dark) 0%, #001a33 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  border-block: 1px solid rgba(255, 204, 0, 0.25);
}

.cta-dark-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cta-dark-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cta-dark-copy h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.cta-dark-copy p {
  margin: 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  opacity: 0.88;
  line-height: 1.6;
}

/* Contact */

.contact-section {
  background:
    linear-gradient(rgba(0, 51, 102, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 51, 102, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, var(--yellow-soft) 0%, #fff4d6 100%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
  border-top: 2px solid var(--navy);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr minmax(0, min(100%, 480px));
    gap: 3rem;
    align-items: stretch;
  }
}

.contact-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-intro h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.contact-intro p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 28rem;
}

.contact-note {
  font-size: 0.9375rem !important;
  color: var(--text-soft) !important;
}

.contact-direct {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
  max-width: 28rem;
}

.contact-direct-title {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-direct-line {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.contact-direct-line:last-child {
  margin-bottom: 0;
}

.contact-direct-link {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.contact-direct-link:hover {
  color: var(--navy-dark);
  border-bottom-color: var(--gold);
}

.contact-direct-meta {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
}

.contact-form {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(0, 51, 102, 0.1);
  border-top: 3px solid var(--gold);
  border-radius: 20px;
  padding: clamp(1.35rem, 4vw, 1.85rem) clamp(1.15rem, 4vw, 1.75rem) clamp(1.35rem, 4vw, 1.75rem);
  box-shadow:
    0 1px 2px rgba(0, 51, 102, 0.05),
    0 16px 48px rgba(0, 51, 102, 0.1);
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 880px) {
  .contact-form {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}

.contact-form-header {
  margin: 0 0 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}

.contact-form-title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.contact-form-sub {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.contact-form-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 520px) {
  .contact-form-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
    align-items: start;
  }

  .contact-field-full {
    grid-column: 1 / -1;
  }
}

.contact-form .field {
  margin-bottom: 1rem;
}

.contact-form .field label {
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
}

.contact-label {
  font-weight: 600;
  color: var(--navy);
}

.contact-field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-soft);
  line-height: 1.35;
}

.contact-form .field input,
.contact-form .field textarea {
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: #fafbfd;
  border: 1.5px solid rgba(0, 51, 102, 0.14);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-form .field textarea {
  min-height: 132px;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.contact-form .field input:hover,
.contact-form .field textarea:hover {
  border-color: rgba(0, 51, 102, 0.24);
  background: #fff;
}

.contact-form .field input:focus,
.contact-form .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.contact-form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-form-actions .btn {
  font-size: 1rem;
  font-weight: 700;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 12px;
}

@media (min-width: 420px) {
  .contact-form-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .contact-form-submit {
    flex: 1.2;
    min-width: 9rem;
  }

  .contact-form-wa {
    flex: 1;
    min-width: 8rem;
    justify-content: center;
  }
}

.contact-form-foot {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-soft);
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a8a29e;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.9;
}

.form-alert {
  margin-bottom: 1.25rem;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 1.55;
  font-weight: 600;
}

@media (min-width: 480px) {
  .form-alert {
    font-size: 1rem;
  }
}

.form-alert--success {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #6ee7b7;
  color: #065f46;
  box-shadow: 0 1px 0 rgba(6, 95, 70, 0.06);
}

.form-alert--error {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
  color: #991b1b;
  box-shadow: 0 1px 0 rgba(153, 27, 27, 0.06);
}

.btn--loading .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--loading .btn-text::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contact-spin 0.65s linear infinite;
}

@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer */

.site-footer {
  background: linear-gradient(180deg, var(--navy-dark) 0%, #000d1a 100%);
  color: #c5d3e3;
  padding: 3.25rem 0 1.75rem;
  border-top: 4px solid var(--yellow);
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-col-contact {
    grid-column: 1 / -1;
    max-width: 28rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1.05fr;
    align-items: start;
  }

  .footer-col-contact {
    grid-column: auto;
    max-width: none;
  }
}

.footer-contact-list li {
  margin-bottom: 0.4rem;
}

.footer-contact-list a {
  font-weight: 600;
}

.footer-contact-note {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #9eb0c4;
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 18rem;
  color: #d1dbe8;
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow-bright);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: #b8cad9;
  text-decoration: none;
  font-size: 1.0625rem;
  line-height: 1.45;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 204, 0, 0.2);
  text-align: center;
  font-size: 1rem;
  color: #a8bac9;
}

.footer-bottom p {
  margin: 0;
}

/* Floating WhatsApp */

.wa-float {
  position: fixed;
  bottom: 1.35rem;
  right: 1.35rem;
  z-index: 85;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wa-float:hover {
  background: #20bd5a;
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55), 0 2px 10px rgba(0, 0, 0, 0.22);
}

.wa-float:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.wa-float-icon {
  display: block;
  width: 1.85rem;
  height: 1.85rem;
}

@media (min-width: 768px) {
  .wa-float {
    width: 3.75rem;
    height: 3.75rem;
    bottom: 1.75rem;
    right: 1.75rem;
  }

  .wa-float-icon {
    width: 2rem;
    height: 2rem;
  }
}

/* —— About page —— */

.page-hero {
  position: relative;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(255, 204, 0, 0.2), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--yellow-soft) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 30%, var(--yellow) 30%, var(--yellow) 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.page-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--navy);
}

.page-hero-lead {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-intro {
  max-width: 44rem;
}

.about-intro-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.about-intro p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about-intro p:last-child {
  margin-bottom: 0;
}

.presence-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .presence-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.presence-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.presence-card:hover {
  border-color: rgba(200, 122, 30, 0.4);
  box-shadow: var(--shadow-lg);
}

.presence-card--featured {
  border-top: 4px solid var(--navy);
}

.presence-card--featured .presence-badge--live {
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.presence-card--soon {
  border-style: dashed;
  border-color: rgba(0, 51, 102, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, var(--gold-soft) 100%);
}

.presence-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.presence-badge--live {
  background: var(--gold-soft);
  color: var(--gold-dark);
  border: 1px solid rgba(200, 122, 30, 0.35);
}

.presence-badge--new {
  background: var(--yellow-soft);
  color: var(--navy-dark);
  border: 1px solid var(--yellow);
}

.presence-badge--soon {
  background: var(--accent-soft);
  color: var(--navy);
  border: 1px solid var(--border);
}

.presence-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.presence-role {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-soft);
}

.presence-card > p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.presence-points {
  margin: 0;
  padding: 0 0 0 1.2rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
}

.presence-points li {
  margin-bottom: 0.4rem;
}

.presence-points li::marker {
  color: var(--gold);
}

.about-values {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-value {
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow);
}

.about-value h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.about-value p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* —— Privacy / legal page —— */

.legal-content {
  max-width: 44rem;
  margin: 0 auto;
}

.legal-content h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-content a {
  color: var(--navy-mid);
  font-weight: 600;
}

.legal-content a:hover {
  color: var(--gold);
}

.legal-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-list li {
  margin-bottom: 0.5rem;
}

.legal-list li::marker {
  color: var(--gold);
}

.legal-note {
  margin-top: 2rem !important;
  padding: 1rem 1.15rem;
  background: var(--gold-soft);
  border: 1px solid rgba(200, 122, 30, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.875rem !important;
  color: var(--text) !important;
}

/* —— Team page —— */

.team-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.team-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--yellow-soft), var(--yellow-bright));
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 800;
  border: 1px solid rgba(200, 122, 30, 0.25);
}

.team-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.team-card-role {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.team-card p:last-child {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* —— Get started form —— */

.container-form-wide {
  width: min(100% - 1.5rem, 720px);
  margin-inline: auto;
}

.get-started-form {
  padding: 2rem 1.75rem 2.25rem;
}

.lead-form {
  border-radius: 20px;
  border: 1px solid rgba(0, 51, 102, 0.1);
  box-shadow:
    0 1px 2px rgba(0, 51, 102, 0.05),
    0 18px 50px rgba(0, 51, 102, 0.09);
}

.lead-form-card-head {
  margin: 0 0 1.25rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.lead-form-card-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.lead-form-card-sub {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.lead-form-card-sub .req {
  color: var(--gold);
  font-weight: 700;
}

.lead-form .form-alert {
  margin-top: 0;
}

.lead-form-actions .lead-submit-btn {
  min-height: 52px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
}

.lead-form-actions .lead-submit-btn:disabled {
  cursor: wait;
  opacity: 0.92;
}

@media (max-width: 480px) {
  .get-started-form.lead-form {
    padding: 1.5rem 1.15rem 1.75rem;
  }

  .container-form-wide {
    width: min(100% - 1rem, 720px);
  }
}

.form-intro {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.req {
  color: var(--gold);
  font-weight: 700;
}

.form-section {
  margin: 0 0 1.75rem;
  padding: 0 0 1.75rem;
  border: none;
  border-bottom: 1px solid var(--border);
  min-width: 0;
}

.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.form-section-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  background: var(--navy);
  color: var(--yellow);
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
}

.label-block {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.field-hint {
  margin: 0.35rem 0 0.65rem;
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.checkbox-grid {
  display: grid;
  gap: 0.5rem 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkbox-grid--services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 560px) {
  .checkbox-grid--services {
    grid-template-columns: repeat(3, 1fr);
  }
}

.check-label,
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 500;
}

.check-label input,
.radio-label input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--navy);
  flex-shrink: 0;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 540px) {
  .radio-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
}

.field-half-wrap {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .field-half-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.field-half {
  margin-bottom: 0 !important;
}

.field-conditional {
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.form-error {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b91c1c;
}

.form-actions {
  margin-top: 1.5rem;
  margin-bottom: 0 !important;
}

.form-footer-note {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-soft);
}

.form-footer-note a {
  color: var(--navy-mid);
  font-weight: 600;
}

.form-footer-note a:hover {
  color: var(--gold);
}

.form-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-select--multi {
  min-height: 10.5rem;
  padding: 0.5rem 0.65rem;
  line-height: 1.45;
}

.form-select--multi option {
  padding: 0.35rem 0.5rem;
}

.field-hint kbd {
  display: inline-block;
  padding: 0.1rem 0.35rem;
  font-size: 0.75rem;
  font-family: inherit;
  font-weight: 600;
  background: var(--yellow-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--navy);
}

/* Multi-select dropdown (custom) */

.ms-dropdown {
  position: relative;
  z-index: 1;
}

.ms-dropdown--open {
  z-index: 30;
}

.ms-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  text-align: left;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.ms-dropdown--has-value .ms-dropdown-toggle {
  color: var(--text);
}

.ms-dropdown-toggle:hover {
  border-color: #94a3b8;
}

.ms-dropdown-toggle:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.ms-dropdown-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ms-dropdown-chevron {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--navy-mid);
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.ms-dropdown--open .ms-dropdown-chevron {
  transform: rotate(180deg);
}

.ms-dropdown-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: 220px;
  overflow-y: auto;
  padding: 0.35rem 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.ms-dropdown-panel--tall {
  max-height: min(52vh, 340px);
  z-index: 30;
}

.ms-dropdown--states {
  position: relative;
  z-index: 5;
}

.lead-coverage-notes {
  margin-top: 1rem;
  margin-bottom: 0;
}

.ms-dropdown-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0.5rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
}

.ms-dropdown-option:hover {
  background: var(--yellow-soft);
}

.ms-dropdown-option input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--navy);
  flex-shrink: 0;
  cursor: pointer;
}

.ms-dropdown-option span {
  flex: 1;
  user-select: none;
}
