:root {
  --wine: #51232a;
  --wine-2: #7a3436;
  --wine-deep: #2b1417;
  --ink: #111116;
  --soft-ink: #1b1b22;
  --muted: #55525a;
  --line: rgba(75, 30, 47, 0.14);
  --paper: #fbfaf8;
  --white: #ffffff;
  --copper: #b97642;
  --gold: #f2c16d;
  --gold-soft: #f7db9c;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(17, 17, 22, 0.12);
  color-scheme: light;
}

body.dark {
  --ink: #f8f4ef;
  --soft-ink: #f0ebe5;
  --muted: #b9b0ad;
  --line: rgba(215, 182, 121, 0.18);
  --paper: #101014;
  --white: #17161c;
  --glass: rgba(23, 22, 28, 0.76);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199, 149, 95, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--paper), #f4f1ee 55%, var(--paper));
  color: var(--ink);
  overflow-x: hidden;
}

body.dark {
  background:
    radial-gradient(circle at top left, rgba(111, 44, 66, 0.42), transparent 28rem),
    linear-gradient(180deg, #101014, #161019 55%, #101014);
}

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

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

a,
button,
.service-card,
.advantage,
.training-card,
.blog-card,
.industry-tab {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(215, 182, 121, 0.7);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: 0 10px 35px rgba(17, 17, 22, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.brand-copy,
.nav-links,
.hero-actions,
.stats-grid,
.panel-head,
.footer-grid {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  min-width: 58px;
  min-height: 46px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  color: #fff8ef;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(215, 182, 121, 0.3), 0 14px 25px rgba(75, 30, 47, 0.22);
}

.brand-logo-wrap {
  width: 168px;
  height: 56px;
  overflow: hidden;
  background: #51232a;
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 51%;
  transform: none;
}

.header-logo-wrap {
  display: grid;
  width: 244px;
  height: 88px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(242, 193, 109, 0.3);
  border-radius: 8px;
  background: #51232a;
  background-image: url("./Logo 2BS.png");
  background-position: center 51%;
  background-repeat: no-repeat;
  background-size: 116%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 14px 26px rgba(75, 30, 47, 0.2);
}

.header-logo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.brand-wordmark {
  display: grid;
  min-width: 176px;
  min-height: 56px;
  align-content: center;
  padding: 7px 16px 8px;
  border: 1px solid rgba(242, 193, 109, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 22%, rgba(247, 219, 156, 0.15), transparent 36%),
    linear-gradient(135deg, #6f3435, var(--wine-deep));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 14px 25px rgba(75, 30, 47, 0.22);
  line-height: 1;
}

.brand-wordmark strong {
  display: block;
  color: var(--gold-soft);
  font-size: 2.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(91, 45, 23, 0.3), 0 12px 22px rgba(0, 0, 0, 0.22);
}

.brand-wordmark small {
  display: block;
  margin-top: 5px;
  color: #f1bf6a;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy {
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--wine-2);
}

.header-cta,
.btn {
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 750;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--wine), #6b2940);
  color: #fffaf3;
  box-shadow: 0 18px 35px rgba(75, 30, 47, 0.24);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

body.dark .btn-ghost {
  background: rgba(255, 255, 255, 0.05);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(75, 30, 47, 0.3);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: 92px 0 70px;
}

.hero-bg {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  overflow: hidden;
  background:
    linear-gradient(rgba(75, 30, 47, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 30, 47, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 65%, transparent);
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(199, 149, 95, 0.18), transparent 48%);
  animation: scan 7s linear infinite;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-subtitle,
.section-heading p,
.ai-copy p,
.meeting-layout p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.credibility-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.credibility-row span {
  border: 1px solid rgba(199, 149, 95, 0.26);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

body.dark .credibility-row span {
  background: rgba(255, 255, 255, 0.05);
}

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

.stats-grid article,
.service-card,
.advantage,
.training-card,
.blog-card,
.dashboard-grid article,
blockquote {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: 0 16px 44px rgba(17, 17, 22, 0.06);
  backdrop-filter: blur(14px);
}

.stats-grid article {
  align-items: flex-start;
  flex-direction: column;
  padding: 18px;
}

.stats-grid strong {
  color: var(--wine-2);
  font-size: 2rem;
}

.stats-grid strong::before {
  content: "+";
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.orbit-card {
  position: absolute;
  inset: 34px 0 80px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(75, 30, 47, 0.22), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.2));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-tech-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  filter: saturate(0.9) contrast(1.02) brightness(1.08);
}

.orbit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(242, 193, 109, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(43, 20, 23, 0.08), rgba(43, 20, 23, 0.3));
  pointer-events: none;
}

body.dark .orbit-card {
  background:
    radial-gradient(circle at center, rgba(199, 149, 95, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.security-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--wine), var(--wine-deep));
  color: #fffaf3;
  box-shadow: 0 0 0 18px rgba(75, 30, 47, 0.08), 0 30px 70px rgba(75, 30, 47, 0.38);
}

.security-core span {
  font-size: 2.7rem;
  font-weight: 900;
}

.security-core small {
  color: #e5c99b;
}

.orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(199, 149, 95, 0.42);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.orbit-one {
  width: 310px;
  height: 310px;
}

.orbit-two {
  width: 430px;
  height: 230px;
  transform: rotate(-22deg);
  animation-duration: 24s;
}

.node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(215, 182, 121, 0.42);
  border-radius: 50%;
  background: rgba(75, 30, 47, 0.9);
  color: #fffaf3;
  font-weight: 850;
  box-shadow: 0 18px 35px rgba(75, 30, 47, 0.28);
}

.node-a { left: 14%; top: 26%; }
.node-b { right: 16%; top: 18%; }
.node-c { left: 20%; bottom: 20%; }
.node-d { right: 18%; bottom: 24%; }

.glass {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.risk-panel {
  position: absolute;
  z-index: 4;
  left: 24px;
  bottom: 22px;
  width: min(268px, 78%);
  padding: 16px;
}

.panel-head {
  justify-content: space-between;
}

.panel-head strong {
  color: var(--wine-2);
  font-size: 1.75rem;
}

.bars {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.bars span,
.dashboard-grid i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wine), var(--copper));
  width: var(--w);
}

section:not(.hero) {
  padding: 84px 0;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.trust-items span,
.path-selector a,
.industry-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  color: var(--soft-ink);
  box-shadow: 0 12px 30px rgba(17, 17, 22, 0.06);
}

.trust-items span {
  padding: 9px 13px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.industry-section {
  padding-top: 72px;
}

.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.industry-tab {
  padding: 12px 16px;
  color: var(--muted);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.industry-tab.active,
.industry-tab:hover {
  border-color: rgba(199, 149, 95, 0.55);
  background: linear-gradient(135deg, var(--wine), #6b2940);
  color: #fffaf3;
  box-shadow: 0 18px 38px rgba(75, 30, 47, 0.22);
}

.industry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.64fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.panel-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--copper);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.industry-panel h3 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
}

.industry-panel p,
.industry-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.industry-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-panel li {
  position: relative;
  padding-left: 24px;
}

.industry-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 5px rgba(199, 149, 95, 0.16);
}

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

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

.service-card,
.advantage,
.training-card,
.blog-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(43, 20, 23, 0) 0 42%, rgba(43, 20, 23, 0.03) 76%, rgba(43, 20, 23, 0.06)),
    radial-gradient(circle at 12% 8%, rgba(242, 193, 109, 0.1), transparent 10rem);
  opacity: 0.65;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card a {
  position: relative;
  z-index: 1;
}

.service-media {
  display: block;
  width: calc(100% + 48px);
  height: 186px;
  margin: -24px -24px 22px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.9) contrast(1.02) brightness(1.04);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.service-card:hover .service-media {
  transform: scale(1.035);
  filter: saturate(0.98) contrast(1.05) brightness(1.08);
}

.service-card:hover,
.advantage:hover,
.training-card:hover,
.blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(199, 149, 95, 0.54);
  box-shadow: 0 24px 60px rgba(75, 30, 47, 0.14);
}

.service-card p,
.advantage p,
.training-card p,
.blog-card p,
blockquote {
  color: var(--muted);
  line-height: 1.7;
}

.service-card a {
  margin-top: auto;
  padding-top: 12px;
  color: var(--wine-2);
  font-weight: 800;
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: -46px 0 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(75, 30, 47, 0.96), rgba(17, 17, 22, 0.92));
  color: #fffaf3;
  font-weight: 900;
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 34px rgba(17, 17, 22, 0.18);
}

.featured {
  background: linear-gradient(145deg, rgba(81, 35, 42, 0.97), rgba(43, 20, 23, 0.95));
  color: #fffaf3;
}

.featured .service-media {
  border-bottom-color: rgba(215, 182, 121, 0.22);
  opacity: 0.9;
}

.featured .icon {
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: #221218;
}

.featured p,
.featured a {
  color: #ead6b4;
}

.ai-section {
  background:
    linear-gradient(135deg, rgba(75, 30, 47, 0.96), rgba(17, 17, 22, 0.96)),
    radial-gradient(circle at 75% 20%, rgba(215, 182, 121, 0.22), transparent 24rem);
  color: #fffaf3;
}

.ai-layout,
.tools-layout,
.meeting-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.ai-copy p,
.ai-section .eyebrow {
  color: #e5c99b;
}

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

.check-grid span {
  padding: 12px 14px;
  border: 1px solid rgba(215, 182, 121, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.ai-dashboard {
  display: grid;
  gap: 22px;
  padding: 28px;
  color: #fffaf3;
  background: rgba(255, 255, 255, 0.08);
}

.ai-visual-stack {
  display: grid;
  gap: 16px;
}

.ai-readiness-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(215, 182, 121, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  filter: saturate(0.96) contrast(1.02) brightness(1.06);
}

.score-ring {
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--gold) calc(var(--score) * 1%), rgba(255,255,255,0.13) 0);
  position: relative;
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #341622;
}

.score-ring strong,
.score-ring span {
  position: relative;
  z-index: 1;
}

.score-ring strong {
  font-size: 3.4rem;
}

.score-ring span {
  color: #e5c99b;
}

.metric-list {
  display: grid;
  gap: 10px;
}

.metric-list p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

.advantage strong {
  color: var(--copper);
  font-size: 1.5rem;
}

.executive-section {
  padding: 84px 0;
  background:
    linear-gradient(135deg, rgba(81, 35, 42, 0.06), rgba(242, 193, 109, 0.12)),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.32));
}

.executive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.executive-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--wine);
}

.executive-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02) brightness(1.04);
}

.executive-copy {
  padding: 10px 0;
}

.executive-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.executive-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.executive-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: var(--glass);
  color: var(--wine-2);
  font-weight: 800;
  font-size: 0.88rem;
}

.interactive-panel {
  padding: 28px;
}

.assessment-form {
  display: grid;
  gap: 18px;
}

.assessment-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

input[type="range"] {
  accent-color: var(--wine);
}

.result-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(75, 30, 47, 0.12), rgba(199, 149, 95, 0.1));
}

.result-box strong {
  display: block;
  color: var(--wine-2);
  font-size: 3rem;
}

.demo-dashboard {
  padding: 28px;
  border-radius: 8px;
  background: #17161c;
  color: #fffaf3;
  box-shadow: var(--shadow);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.dashboard-header h2 {
  margin-bottom: 0;
  font-size: 1.65rem;
}

.dashboard-header span {
  height: max-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(215, 182, 121, 0.14);
  color: #e5c99b;
  font-size: 0.8rem;
}

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

.dashboard-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.dashboard-grid span {
  display: block;
  color: #cfc3bd;
  font-size: 0.84rem;
}

.dashboard-grid strong {
  display: block;
  margin: 7px 0 12px;
  font-size: 1.8rem;
}

.training-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
}

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

.logo-cloud span {
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--glass);
  font-weight: 800;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

blockquote {
  margin: 0;
  padding: 24px;
}

cite {
  display: block;
  margin-top: 14px;
  color: var(--wine-2);
  font-style: normal;
  font-weight: 800;
}

.blog-card span {
  color: var(--copper);
  font-weight: 850;
  font-size: 0.82rem;
}

.meeting-section {
  background: linear-gradient(135deg, rgba(75, 30, 47, 0.08), rgba(199, 149, 95, 0.12));
}

.path-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.path-selector a {
  padding: 11px 14px;
  color: var(--wine-2);
  font-weight: 800;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.path-selector a:hover {
  border-color: rgba(199, 149, 95, 0.58);
  background: rgba(199, 149, 95, 0.12);
  transform: translateY(-2px);
}

.contact-form,
.quick-form {
  display: grid;
  gap: 12px;
}

.contact-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.quick-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--wine-2);
  font-weight: 750;
}

.site-footer {
  padding: 50px min(40px, 5vw) 26px;
  background: #111116;
  color: #fffaf3;
}

.footer-logo-wrap {
  display: grid;
  width: 270px;
  height: 108px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(242, 193, 109, 0.26);
  border-radius: 8px;
  background: #51232a;
  background-image: url("./Logo 2BS.png");
  background-position: center 51%;
  background-repeat: no-repeat;
  background-size: 116%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.footer-logo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-grid > * {
  flex: 1;
}

.footer-grid p {
  color: #cfc3bd;
  line-height: 1.7;
}

.mini-map {
  display: grid;
  min-height: 90px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  color: #e5c99b;
}

.quick-form button {
  border: 0;
  border-radius: 8px;
  padding: 12px;
  background: var(--copper);
  color: #1a1115;
  font-weight: 850;
}

.copyright {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  color: #9e9490;
  font-size: 0.9rem;
}

.theme-toggle,
.whatsapp-float {
  position: fixed;
  z-index: 80;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  cursor: pointer;
}

.theme-toggle {
  right: 22px;
  bottom: 92px;
  width: 48px;
  height: 48px;
  background: var(--white);
  color: var(--ink);
}

.whatsapp-float {
  right: 22px;
  bottom: 28px;
  width: 72px;
  height: 52px;
  background: #1f9d61;
  color: white;
  font-weight: 850;
}

.ai-chat {
  position: fixed;
  right: 110px;
  bottom: 28px;
  z-index: 70;
  width: 260px;
  padding: 16px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-float:hover + .ai-chat,
.ai-chat:hover {
  opacity: 1;
  transform: translateY(0);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scan {
  from { transform: translateX(-40%); }
  to { transform: translateX(50%); }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .site-header.open .nav-links,
  .site-header.open .header-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.open .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header.open .header-cta {
    justify-content: center;
  }

  .hero,
  .ai-layout,
  .tools-layout,
  .meeting-layout,
  .executive-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 470px;
  }

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

  .service-card {
    min-height: 410px;
  }

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

  .trust-strip,
  .industry-panel {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-items {
    justify-content: flex-start;
  }
}

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

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand-copy {
    display: none;
  }

  .brand-logo-wrap {
    width: 132px;
    height: 48px;
  }

  .header-logo-wrap {
    width: 172px;
    height: 66px;
  }

  .brand-wordmark {
    min-width: 132px;
    min-height: 46px;
    padding: 7px 10px;
  }

  .brand-wordmark strong {
    font-size: 1.55rem;
  }

  .brand-wordmark small {
    font-size: 0.42rem;
    letter-spacing: 0.24em;
  }

  .stats-grid,
  .service-grid,
  .advantage-grid,
  .blog-grid,
  .dashboard-grid,
  .testimonials,
  .check-grid,
  .logo-cloud {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-media {
    height: 210px;
  }

  .service-card h3 {
    font-size: 1.18rem;
  }

  .industry-tabs,
  .path-selector,
  .executive-points {
    flex-direction: column;
  }

  .industry-tab,
  .path-selector a,
  .executive-points span {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 390px;
  }

  .orbit-card {
    inset: 8px 0 60px;
  }

  .risk-panel {
    left: 14px;
    right: auto;
    bottom: 10px;
    width: calc(100% - 28px);
  }

  .orbit-two {
    width: 330px;
  }

  .node {
    width: 56px;
    height: 56px;
    font-size: 0.82rem;
  }

  .footer-grid {
    flex-direction: column;
  }

  .ai-chat {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.campaign-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 92px 0 70px;
}

.campaign-copy h1 {
  max-width: 880px;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
}

.campaign-copy p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.campaign-score {
  padding: 28px;
}

.campaign-score span {
  color: var(--copper);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.campaign-score strong {
  display: block;
  margin: 8px 0 12px;
  color: var(--wine-2);
  font-size: 4rem;
}

.campaign-score p {
  color: var(--muted);
  line-height: 1.7;
}

.score-bars {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.score-bars i {
  display: block;
  width: var(--w);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
}

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

.campaign-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--glass);
  box-shadow: var(--shadow);
}

.campaign-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.campaign-card p {
  color: var(--muted);
  line-height: 1.7;
}

.campaign-card.accent {
  background: linear-gradient(145deg, rgba(81, 35, 42, 0.97), rgba(43, 20, 23, 0.95));
  color: #fffaf3;
}

.campaign-card.accent p {
  color: #ead6b4;
}

@media (max-width: 1040px) {
  .campaign-hero,
  .campaign-grid {
    grid-template-columns: 1fr;
  }
}
