:root {
  --ink: #172033;
  --muted: #5d6a7c;
  --line: #dbe4ef;
  --paper: #ffffff;
  --soft: #f7fafc;
  --blue: #2364d2;
  --midnight: #07111f;
  --midnight-2: #101b2c;
  --electric: #4ca3ff;
  --teal: #0f9f8f;
  --coral: #d95d39;
  --gold: #c39122;
  --green: #2b8c56;
  --shadow: 0 18px 60px rgba(37, 50, 76, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 228, 239, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 900;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.35rem);
  color: #26354c;
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 26px rgba(35, 100, 210, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  border-color: rgba(23, 32, 51, 0.18);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
  padding: 0.72rem;
}

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

.hero {
  position: relative;
  min-height: min(88vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 7rem clamp(1rem, 4vw, 2.5rem) 4.5rem;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(250, 253, 255, 0.96) 0%, rgba(250, 253, 255, 0.86) 44%, rgba(250, 253, 255, 0.36) 100%),
    url("assets/hero-ai-actions.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(0deg, #fbfdff 0%, rgba(251, 253, 255, 0) 100%);
}

.hero-inner {
  width: min(780px, 100%);
}

.hero-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.62fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-kicker {
  margin-bottom: 0.7rem;
  color: #26354c;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
}

.hero-route-pills,
.page-route-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.15rem 0 1.35rem;
}

.hero-route-pills a,
.page-route-pills a {
  border: 1px solid rgba(35, 100, 210, 0.18);
  border-radius: 999px;
  padding: 0.5rem 0.7rem;
  background: rgba(255, 255, 255, 0.84);
  color: #26354c;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-route-pills a:hover,
.page-route-pills a:hover {
  border-color: rgba(35, 100, 210, 0.44);
  color: var(--blue);
}

.hero-command {
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.94));
  border: 1px solid rgba(219, 228, 239, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.command-head,
.command-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.command-head {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.command-head strong,
.command-head span,
.command-footer strong,
.command-footer span {
  display: block;
}

.command-head span,
.command-footer span {
  color: var(--muted);
  font-size: 0.84rem;
}

.command-stack {
  display: grid;
  gap: 0.65rem;
  margin: 0.95rem 0;
}

.command-stack a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.82rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: inherit;
  text-decoration: none;
}

.command-stack a:hover {
  border-color: rgba(35, 100, 210, 0.35);
  box-shadow: 0 12px 26px rgba(37, 50, 76, 0.08);
}

.command-stack span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: white;
  background: var(--blue);
  font-weight: 950;
}

.command-stack a:nth-child(2) span { background: var(--teal); }
.command-stack a:nth-child(3) span { background: var(--coral); }
.command-stack a:nth-child(4) span { background: var(--green); }

.command-stack strong,
.command-stack em {
  display: block;
}

.command-stack em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.85rem;
}

.command-footer {
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.hero-trust-rail {
  width: min(var(--max), 100%);
  margin: clamp(1.6rem, 3vw, 2.4rem) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-trust-rail span {
  padding: 0.52rem 0.75rem;
  border: 1px solid rgba(219, 228, 239, 0.96);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: #31435e;
  font-size: 0.82rem;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.94;
  font-weight: 950;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  font-size: 1.15rem;
}

.hero-copy,
.section-heading p,
.split-copy p,
.assessor-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.55vw, 1.08rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.7rem 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 720px;
}

.hero-stats div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 228, 239, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(37, 50, 76, 0.08);
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
}

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

.signal-strip {
  width: min(var(--max), calc(100% - 2rem));
  margin: -2.2rem auto 2rem;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.executive-hero {
  padding: 8.6rem clamp(1rem, 4vw, 2.5rem) 2.2rem;
  background:
    linear-gradient(135deg, rgba(246, 250, 255, 0.92), rgba(255, 255, 255, 0.98) 42%, rgba(239, 251, 248, 0.92)),
    linear-gradient(90deg, rgba(35, 100, 210, 0.08), rgba(15, 159, 143, 0.1));
  border-bottom: 1px solid var(--line);
}

.executive-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.58fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: center;
}

.executive-copy {
  position: relative;
  padding: clamp(1rem, 2vw, 1.4rem) 0;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(15, 159, 143, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--teal);
  font-weight: 950;
}

.executive-copy h1 {
  max-width: 700px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  line-height: 0.96;
}

.executive-lead {
  max-width: 700px;
  color: #44546a;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.7;
}

.executive-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.executive-proof-row span {
  padding: 0.48rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: #31435e;
  font-size: 0.8rem;
  font-weight: 900;
}

.executive-board {
  justify-self: end;
  width: min(100%, 460px);
  padding: 0.78rem;
  background: white;
  border: 1px solid rgba(219, 228, 239, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.72rem;
  border-radius: var(--radius);
  color: white;
  background: #172033;
}

.board-header strong,
.board-header span {
  display: block;
}

.board-header span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
}

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.65rem 0;
}

.board-metrics div {
  padding: 0.62rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.board-metrics strong,
.board-metrics span {
  display: block;
}

.board-metrics strong {
  font-size: 1.12rem;
}

.board-metrics span {
  color: var(--muted);
  font-size: 0.74rem;
}

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

.board-services a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  min-height: 74px;
  padding: 0.62rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: inherit;
  text-decoration: none;
}

.board-services a:hover {
  border-color: rgba(35, 100, 210, 0.32);
  box-shadow: 0 12px 26px rgba(37, 50, 76, 0.08);
}

.board-services span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  color: white;
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
}

.board-services a:nth-child(2) span { background: var(--teal); }
.board-services a:nth-child(3) span { background: var(--coral); }
.board-services a:nth-child(4) span { background: var(--gold); }
.board-services a:nth-child(5) span { background: var(--green); }
.board-services a:nth-child(6) span { background: #6b5bd6; }

.board-services strong,
.board-services em {
  display: block;
}

.board-services strong {
  font-size: 0.9rem;
  line-height: 1.18;
}

.board-services em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.73rem;
}

.executive-image-strip {
  width: min(var(--max), 100%);
  margin: 1.3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.executive-image-strip a {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: white;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(37, 50, 76, 0.07);
}

.executive-image-strip img {
  width: 100%;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
}

.executive-image-strip span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.48rem 0.58rem;
  border-radius: var(--radius);
  background: rgba(23, 32, 51, 0.82);
  font-size: 0.86rem;
  font-weight: 950;
}

.premium-hero {
  position: relative;
  overflow: hidden;
  padding: 8.1rem clamp(1rem, 4vw, 2.5rem) 2.4rem;
  color: white;
  background:
    radial-gradient(circle at 12% 18%, rgba(76, 163, 255, 0.28), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(15, 159, 143, 0.28), transparent 30%),
    linear-gradient(135deg, #06101e 0%, #101b2c 52%, #07111f 100%);
  isolation: isolate;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent 85%);
}

.premium-hero-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.72fr);
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: center;
}

.premium-hero-copy {
  max-width: 760px;
}

.brand-chip.dark {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.premium-hero .eyebrow {
  color: #85d8ff;
}

.premium-hero h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 4.45vw, 4.7rem);
  line-height: 0.98;
}

.premium-lead {
  max-width: 720px;
  color: rgba(238, 245, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.72;
}

.button.primary.audit {
  background: linear-gradient(135deg, #2364d2, #0f9f8f);
  box-shadow: 0 18px 42px rgba(35, 100, 210, 0.32);
}

.button.secondary.dark {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-trust-line {
  max-width: 680px;
  margin: 0.3rem 0 1rem;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
}

.calm-hero .hero-trust-line {
  max-width: 720px;
  margin: 1rem auto 0;
  color: #52627a;
  font-size: 0.96rem;
  line-height: 1.6;
  font-weight: 760;
}

.premium-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.premium-proof-row span {
  padding: 0.5rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 900;
}

.engine-dashboard {
  display: grid;
  gap: 0.82rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.72);
}

.dashboard-top strong,
.dashboard-top span {
  display: block;
}

.dashboard-top span {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.dashboard-top em {
  flex: 0 0 auto;
  padding: 0.35rem 0.52rem;
  border-radius: 999px;
  color: #c7f5ff;
  background: rgba(76, 163, 255, 0.18);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
}

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

.engine-flow a {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  align-items: flex-start;
  min-height: 68px;
  padding: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  text-decoration: none;
}

.engine-flow a:hover {
  border-color: rgba(133, 216, 255, 0.5);
  background: rgba(255, 255, 255, 0.13);
}

.engine-flow span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2364d2, #0f9f8f);
  font-size: 0.75rem;
  font-weight: 950;
}

.engine-flow strong,
.engine-flow small {
  display: block;
}

.engine-flow strong {
  line-height: 1.18;
}

.engine-flow small {
  margin-top: 0.16rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  line-height: 1.35;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.dashboard-metrics div {
  padding: 0.74rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.58);
}

.dashboard-metrics strong,
.dashboard-metrics span {
  display: block;
}

.dashboard-metrics span {
  margin-top: 0.24rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  line-height: 1.35;
}

.engine-dashboard img {
  width: 100%;
  max-height: 126px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.premium-signal {
  margin-top: -2.4rem;
}

.problem-section,
.packages-section {
  width: 100%;
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
}

.problem-section {
  background: #f4f8fc;
}

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

.problem-grid article {
  min-height: 178px;
  padding: 1.1rem;
  border: 1px solid rgba(219, 228, 239, 0.96);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 34px rgba(37, 50, 76, 0.07);
}

.problem-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 34px;
  margin-bottom: 0.85rem;
  border-radius: var(--radius);
  color: #2364d2;
  background: #edf6ff;
  font-size: 0.8rem;
  font-weight: 950;
}

.problem-grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.operating-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.operating-copy {
  max-width: 600px;
}

.operating-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.workflow-panel {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(35, 100, 210, 0.08), rgba(15, 159, 143, 0.08)),
    white;
  box-shadow: var(--shadow);
}

.workflow-panel span {
  position: relative;
  padding: 0.78rem 0.85rem 0.78rem 2.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: #26354c;
  font-weight: 850;
}

.workflow-panel span::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 0.72rem;
  height: 0.72rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--teal);
}

.premium-packages article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.premium-packages article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #2364d2, #0f9f8f);
}

.premium-packages .recommended {
  border-color: rgba(35, 100, 210, 0.42);
  box-shadow: 0 20px 54px rgba(35, 100, 210, 0.18);
  transform: translateY(-8px);
}

.premium-packages .recommended::after {
  content: "Recommended";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.36rem 0.56rem;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 950;
}

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

.audit-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(35, 100, 210, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(35, 100, 210, 0.09), rgba(15, 159, 143, 0.09)),
    #ffffff;
  box-shadow: var(--shadow);
}

.audit-cta h2 {
  margin-bottom: 0.55rem;
}

.audit-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.signal-strip div {
  background: white;
  padding: 1.35rem;
}

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

.signal-strip span {
  margin-top: 0.4rem;
  color: var(--muted);
  line-height: 1.5;
}

.quick-route-section {
  width: min(var(--max), calc(100% - 2rem));
  margin: -1rem auto 1.5rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  background: #172033;
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-route-section strong,
.quick-route-section span {
  display: block;
}

.quick-route-section span {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.76);
}

.quick-route-section nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.quick-route-section a {
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: white;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 900;
}

.quick-route-section a:hover {
  background: white;
  color: var(--ink);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.8rem, 7vw, 6.5rem) 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 740px;
}

.service-grid,
.product-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.product-card,
.proof-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  box-shadow: 0 12px 34px rgba(37, 50, 76, 0.07);
}

.service-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 100, 210, 0.32);
  box-shadow: 0 18px 42px rgba(37, 50, 76, 0.12);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.8rem;
  border-radius: var(--radius);
  color: white;
  font-size: 0.84rem;
  font-weight: 900;
}

.service-card:nth-child(1) .service-icon { background: var(--blue); }
.service-card:nth-child(2) .service-icon { background: var(--teal); }
.service-card:nth-child(3) .service-icon { background: var(--coral); }
.service-card:nth-child(4) .service-icon { background: var(--gold); }
.service-card:nth-child(5) .service-icon { background: var(--green); }
.service-card:nth-child(6) .service-icon { background: #6b5bd6; }

.service-card p,
.product-card p,
.proof-card p,
.system-card p,
.sector-detail p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.8rem;
  color: var(--blue);
  font-weight: 900;
}

.tag-list span,
.sector-pill,
.mini-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #44546a;
  background: #f8fbff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.4rem 0.6rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
}

.landing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.landing-summary {
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(37, 50, 76, 0.07);
}

.landing-summary h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.65rem);
}

.landing-summary p {
  color: var(--muted);
  line-height: 1.7;
}

.service-detail-grid,
.deliverable-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail-card,
.deliverable-card,
.outcome-card,
.service-cta-panel {
  padding: 1.2rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(37, 50, 76, 0.07);
}

.service-detail-card span,
.deliverable-card span,
.outcome-card span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-detail-card p,
.deliverable-card p,
.outcome-card p,
.service-cta-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.solution-stack {
  display: grid;
  gap: 1.2rem;
}

.solution-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 34px rgba(37, 50, 76, 0.07);
}

.solution-panel > div:first-child {
  max-width: 860px;
}

.solution-panel span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  background: #edf6ff;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.solution-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.solution-panel p,
.solution-detail-grid p {
  color: var(--muted);
  line-height: 1.62;
}

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

.solution-detail-grid section {
  min-height: 156px;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.solution-detail-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.service-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(35, 100, 210, 0.08), rgba(15, 159, 143, 0.08)),
    #fff;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: #2c3d56;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--teal);
}

.intelligence-panel {
  display: grid;
  gap: 0.8rem;
}

.system-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1rem;
  align-items: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.system-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: #edf6ff;
  color: var(--blue);
  font-weight: 900;
}

.system-card.active {
  border-color: rgba(15, 159, 143, 0.42);
  box-shadow: 0 14px 36px rgba(15, 159, 143, 0.12);
}

.sector-section {
  width: 100%;
  background: #eef7f5;
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
}

.sector-shell {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 1rem;
}

.sector-tabs {
  display: grid;
  gap: 0.6rem;
}

.sector-tabs button {
  width: 100%;
  border: 1px solid rgba(15, 159, 143, 0.24);
  background: white;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  text-align: left;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.sector-tabs button[aria-selected="true"] {
  background: var(--teal);
  color: white;
}

.sector-detail {
  min-height: 360px;
  background: white;
  border: 1px solid rgba(15, 159, 143, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sector-visual {
  min-height: 180px;
  background-size: cover;
  background-position: center;
}

.sector-body {
  padding: 1.4rem;
}

.sector-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.sector-body li {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  font-weight: 750;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.product-card::before {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: var(--coral);
}

.product-card:nth-child(2)::before { background: var(--teal); }
.product-card:nth-child(3)::before { background: var(--gold); }
.product-card:nth-child(4)::before { background: var(--blue); }
.product-card:nth-child(5)::before { background: var(--green); }
.product-card:nth-child(6)::before { background: #6b5bd6; }

.assessor-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(1rem, 5vw, 4rem);
  align-items: center;
}

.assessor {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.assessor-progress {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef2f7;
}

.assessor-progress span {
  display: block;
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal));
}

.score-output {
  display: flex;
  align-items: end;
  gap: 0.8rem;
  margin: 1rem 0 1.3rem;
}

.score-output strong {
  font-size: clamp(3rem, 10vw, 5rem);
  line-height: 0.9;
}

.score-output span {
  color: var(--muted);
  font-weight: 850;
}

.range-list {
  display: grid;
  gap: 1rem;
}

.range-list label {
  display: grid;
  gap: 0.5rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdbea;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.9rem;
}

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

.recommendation {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff8ea;
  border: 1px solid #efdca9;
  border-radius: var(--radius);
  color: #553b00;
  font-weight: 750;
  line-height: 1.55;
}

.proof-section {
  padding-top: 2rem;
}

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

.proof-card {
  min-height: 240px;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 1.55rem;
  font-weight: 950;
}

.comparison-section {
  width: 100%;
  background: #f5f3ee;
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
}

.comparison-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 0.55fr 1fr 1.35fr;
}

.comparison-table span {
  padding: 1rem;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.comparison-table .table-head span {
  border-top: 0;
  background: #edf3fb;
  color: #1e304c;
  font-weight: 900;
}

.contact-section {
  padding-bottom: 4rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(1rem, 5vw, 4rem);
  padding: clamp(1.2rem, 4vw, 2rem);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.contact-details a,
.contact-details span {
  padding: 0.85rem;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: #24364f;
  font-weight: 800;
}

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

.brief-form label {
  display: grid;
  gap: 0.4rem;
  color: #26354c;
  font-weight: 850;
}

.brief-form .full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4rem;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.lead-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.consent-label,
.bot-consent {
  display: flex !important;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #33435c;
}

.consent-label input,
.bot-consent input {
  width: auto;
  min-width: 1rem;
  margin-top: 0.16rem;
  accent-color: var(--blue);
}

button:disabled,
.button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
  border-top: 1px solid rgba(226, 232, 240, 0.14);
}

.footer-main,
.footer-bottom {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) repeat(4, minmax(135px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(2rem, 4vw, 3.25rem) 0;
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 1.16rem;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: #cbd5e1;
  line-height: 1.55;
}

.footer-brand span,
.footer-bottom span {
  color: #94a3b8;
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-column h3 {
  margin: 0 0 0.25rem;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer .footer-column a {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer .footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  justify-content: space-between;
  padding: 1.15rem 0 1.45rem;
  border-top: 1px solid rgba(226, 232, 240, 0.14);
}

.cookie-banner {
  position: fixed;
  left: auto;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  align-items: center;
  width: min(calc(100vw - 2rem), 420px);
  margin: 0 auto;
  padding: 0.78rem 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.25rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.cookie-banner a {
  color: var(--blue);
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.cookie-actions button {
  min-height: 38px;
  min-width: 118px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.cookie-actions button[data-cookie-accept] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.legal-content {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.legal-content article {
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-content h2 {
  margin: 0 0 0.45rem;
}

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

.simple-home {
  background: #fbfdff;
}

.simple-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(7rem, 10vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
}

.calm-hero {
  position: relative;
  grid-template-columns: 1fr;
  min-height: min(620px, 78vh);
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.92), rgba(251, 253, 255, 0.99)),
    url("assets/hero-ai-actions.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: min(900px, 100%) auto;
}

.calm-hero .simple-hero-copy,
.calm-hero .simple-lead {
  margin-left: auto;
  margin-right: auto;
}

.calm-hero .hero-actions {
  justify-content: center;
}

.simple-hero-copy {
  max-width: 780px;
}

.simple-hero h1 {
  max-width: 780px;
  margin: 0.65rem 0 1rem;
  font-size: clamp(2.45rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.simple-lead {
  max-width: 700px;
  color: #42536d;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero-system-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(37, 50, 76, 0.11);
}

.hero-system-card img {
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.system-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.system-card-top strong,
.system-card-top span {
  display: block;
}

.system-card-top span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.system-flow span {
  padding: 0.7rem 0.5rem;
  text-align: center;
  background: #f4f8fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #223049;
  font-weight: 900;
  font-size: 0.88rem;
}

.simple-section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.2rem, 6vw, 5rem) 0;
}

.what-section {
  border-top: 1px solid var(--line);
}

.business-flow,
.what-grid,
.simple-service-grid,
.simple-package-grid {
  display: grid;
  gap: 1rem;
}

.business-flow {
  grid-template-columns: auto 38px auto 38px auto 38px auto;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.6rem;
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(37, 50, 76, 0.06);
}

.business-flow span {
  min-width: 124px;
  padding: 0.9rem 1rem;
  text-align: center;
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #23324a;
  font-weight: 920;
}

.business-flow i {
  position: relative;
  width: 38px;
  height: 2px;
  background: #c6d1df;
}

.business-flow i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #98a8ba;
  border-right: 2px solid #98a8ba;
  transform: translateY(-50%) rotate(45deg);
}

.what-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.what-grid article,
.simple-service-card,
.simple-package-card {
  padding: clamp(1rem, 2vw, 1.35rem);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(37, 50, 76, 0.06);
}

.what-grid p,
.simple-service-card p,
.simple-package-card p,
.why-points p,
.simple-final-cta p {
  color: var(--muted);
  line-height: 1.62;
}

.simple-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.simple-service-card {
  display: grid;
  gap: 0.45rem;
  min-height: 188px;
  text-decoration: none;
}

.simple-service-card:hover {
  border-color: rgba(35, 100, 210, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.simple-package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.4rem 0 1.4rem;
}

.simple-package-card {
  min-height: 220px;
}

.simple-package-card span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.36rem 0.6rem;
  background: #f4f8fc;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #44546a;
  font-size: 0.78rem;
  font-weight: 900;
}

.simple-package-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--blue);
}

.simple-package-card.featured {
  border-color: rgba(35, 100, 210, 0.28);
  box-shadow: var(--shadow);
}

.center-button {
  width: fit-content;
  margin: 0 auto;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.audience-list span {
  padding: 0.85rem 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #23324a;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(37, 50, 76, 0.05);
}

.why-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem);
  background: #f4f8fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-points {
  display: grid;
  gap: 0.85rem;
}

.why-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  position: relative;
  margin: 0;
  padding: 0.95rem 1rem 0.95rem 2.35rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #23324a;
  font-weight: 850;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.28rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--teal);
  border-radius: 50%;
}

.trusted-foundations {
  border-top: 1px solid var(--line);
  padding-top: clamp(2.4rem, 5vw, 4rem);
}

.foundation-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.foundation-list li {
  min-height: 104px;
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #23324a;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(37, 50, 76, 0.05);
}

.why-points p {
  margin: 0;
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.simple-final-cta {
  width: min(980px, calc(100% - 2rem));
  margin: clamp(2rem, 5vw, 4rem) auto;
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  background: linear-gradient(135deg, #eef7ff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(37, 50, 76, 0.08);
}

.simple-final-cta h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 8.4rem max(1rem, calc((100% - var(--max)) / 2)) 3.4rem;
  background:
    linear-gradient(90deg, rgba(250, 253, 255, 0.98), rgba(250, 253, 255, 0.83)),
    url("assets/hero-ai-actions.png");
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.35rem, 5.4vw, 5.2rem);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.55vw, 1.08rem);
  line-height: 1.7;
}

.services-hub-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.92)),
    url("assets/business-automation.png");
  background-size: cover;
  background-position: center right;
}

.services-top-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(940px, 100%);
  margin-top: 1.35rem;
}

.services-top-board div {
  padding: 0.82rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(37, 50, 76, 0.08);
}

.services-top-board strong,
.services-top-board span {
  display: block;
}

.services-top-board span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.gateway-grid,
.process-grid,
.package-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gateway-card,
.process-grid article,
.package-grid article,
.audience-grid article {
  display: block;
  min-height: 184px;
  padding: 1.05rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(37, 50, 76, 0.07);
}

.gateway-card span,
.process-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 36px;
  margin-bottom: 1rem;
  padding: 0 0.65rem;
  border-radius: var(--radius);
  background: #edf6ff;
  color: var(--blue);
  font-weight: 950;
}

.gateway-card p,
.process-grid p,
.package-grid p,
.audience-grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gateway-card:hover {
  border-color: rgba(35, 100, 210, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.command-preview {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.preview-top span,
.preview-metrics span {
  color: var(--muted);
}

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

.preview-metrics div {
  padding: 1rem;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.preview-metrics strong,
.preview-metrics span {
  display: block;
}

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

.preview-flow span {
  padding: 0.75rem;
  text-align: center;
  color: white;
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 850;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.process-section,
.packages-section {
  padding-top: 2rem;
}

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

.package-grid strong {
  display: block;
  margin-top: 1rem;
  color: var(--teal);
}

.package-grid em {
  display: block;
  margin-top: 0.65rem;
  color: #31435e;
  font-style: normal;
  font-weight: 900;
}

.package-meta {
  display: inline-flex;
  margin-bottom: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.6rem;
  background: #f8fbff;
  color: #44546a;
  font-size: 0.78rem;
  font-weight: 850;
}

.route-section {
  padding-top: 2rem;
}

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

.trust-card,
.comparison-card,
.faq-card {
  min-height: 166px;
  padding: 1.05rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(37, 50, 76, 0.07);
}

.trust-card span,
.comparison-card span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  border-radius: var(--radius);
  padding: 0.38rem 0.56rem;
  background: #edf6ff;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
}

.trust-card p,
.comparison-card p,
.faq-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.evidence-section {
  width: 100%;
  padding-left: max(1rem, calc((100% - var(--max)) / 2));
  padding-right: max(1rem, calc((100% - var(--max)) / 2));
  background: #f4f8fc;
}

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

.evidence-card {
  min-height: 288px;
  padding: 1.05rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(37, 50, 76, 0.07);
}

.evidence-card > span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.36rem 0.55rem;
  border-radius: 999px;
  background: #edf6ff;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
}

.evidence-card p,
.evidence-card li {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.mini-dashboard {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: #172033;
  color: white;
}

.mini-dashboard strong {
  font-size: 0.78rem;
}

.mini-dashboard div {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mini-dashboard i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.portal-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  margin: 1rem 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.portal-list b {
  color: #26354c;
  font-size: 0.84rem;
}

.audit-sample ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.05rem;
}

.automation-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  margin: 1rem 0;
}

.automation-flow em {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(35, 100, 210, 0.12), rgba(15, 159, 143, 0.12));
  color: #26354c;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 950;
}

.comparison-card.highlight {
  background: #172033;
  color: white;
  border-color: #172033;
}

.comparison-card.highlight span {
  background: rgba(255, 255, 255, 0.13);
  color: white;
}

.comparison-card.highlight p {
  color: rgba(255, 255, 255, 0.82);
}

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

.faq-card {
  min-height: 140px;
}

.faq-card h3 {
  margin-top: 0;
}

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

.software-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.software-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.form-nav-section {
  padding-bottom: 0;
}

.form-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-nav a {
  padding: 0.75rem 1rem;
  color: #25354d;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 0.55fr 1fr 1.35fr;
}

.comparison-table > div > span {
  padding: 1rem;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.comparison-table > div:first-child > span {
  border-top: 0;
  background: #edf3fb;
  color: #1e304c;
  font-weight: 900;
}

.ai-bot {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  font-family: inherit;
}

.bot-launcher {
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: var(--radius);
  color: white;
  background: var(--teal);
  font-weight: 950;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.bot-window {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: min(380px, calc(100vw - 2rem));
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.bot-header strong,
.bot-header span {
  display: block;
}

.bot-header span {
  font-size: 0.82rem;
  opacity: 0.9;
}

.bot-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  color: white;
  background: transparent;
  cursor: pointer;
}

.bot-messages {
  display: grid;
  gap: 0.65rem;
  max-height: 320px;
  overflow: auto;
  padding: 1rem;
  background: #f8fbff;
}

.bot-message {
  width: fit-content;
  max-width: 92%;
  padding: 0.72rem 0.85rem;
  border-radius: var(--radius);
  line-height: 1.45;
}

.bot-message.bot {
  background: white;
  border: 1px solid var(--line);
}

.bot-message.user {
  justify-self: end;
  color: white;
  background: var(--blue);
}

.bot-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
  background: #f8fbff;
}

.bot-options button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  background: white;
  color: #26354c;
  font-weight: 800;
  cursor: pointer;
}

.bot-form {
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
}

.bot-form input,
.bot-form textarea {
  padding: 0.65rem 0.75rem;
}

.bot-form button {
  width: 100%;
}

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

  .page-hero h1 {
    font-size: clamp(2.1rem, 6.5vw, 3.35rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.8rem, 5.2vw, 2.65rem);
    line-height: 1.04;
  }

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

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

  .site-nav.open {
    display: grid;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .signal-strip,
  .premium-hero-grid,
  .simple-hero,
  .problem-grid,
  .operating-section,
  .build-process,
  .audit-cta,
  .executive-layout,
  .executive-image-strip,
  .services-top-board,
  .hero-shell,
  .quick-route-section,
  .service-grid,
  .product-grid,
  .proof-grid,
  .split-section,
  .landing-intro,
  .service-detail-grid,
  .deliverable-grid,
  .outcome-grid,
  .solution-detail-grid,
  .evidence-grid,
  .service-cta-panel,
  .trust-grid,
  .comparison-grid,
  .faq-grid,
  .assessor-section,
  .contact-panel,
  .gateway-grid,
  .process-grid,
  .package-grid,
  .audience-grid,
  .simple-service-grid,
  .simple-package-grid,
  .what-grid,
  .foundation-list,
  .why-band {
    grid-template-columns: 1fr;
  }

  .proof-card.image-card {
    min-height: 260px;
  }

  .sector-shell {
    grid-template-columns: 1fr;
  }

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

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

  .cookie-actions {
    justify-content: flex-start;
  }

  .executive-board {
    order: 2;
  }

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

  .quick-route-section nav {
    justify-content: flex-start;
  }

  .premium-hero {
    padding-top: 7.4rem;
  }

  .premium-hero h1 {
    font-size: clamp(2.45rem, 6.7vw, 3.85rem);
  }

  .simple-hero {
    padding-top: 7.2rem;
  }

  .calm-hero {
    min-height: min(580px, 78vh);
  }

  .simple-hero h1 {
    font-size: clamp(2.45rem, 7vw, 4rem);
  }

  .engine-dashboard {
    max-width: 680px;
  }

  .premium-packages .recommended {
    transform: none;
  }

  .audit-cta {
    padding: 1.4rem;
  }
}

@media (max-width: 680px) {
  .site-header,
  .page-hero,
  .section,
  .signal-strip,
  .quick-route-section {
    max-width: 100%;
  }

  .section {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .executive-hero {
    padding: 6.7rem 1rem 1.3rem;
  }

  .premium-hero {
    padding: 6.35rem 1rem 1.35rem;
  }

  .premium-hero h1 {
    font-size: clamp(1.95rem, 8.1vw, 2.45rem);
    line-height: 1.05;
  }

  .simple-hero {
    width: calc(100% - 2rem);
    gap: 1.2rem;
    padding: 6.25rem 0 2.4rem;
  }

  .calm-hero {
    min-height: auto;
    padding-bottom: 12rem;
  }

  .simple-hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.85rem);
    line-height: 1.04;
  }

  .simple-lead {
    font-size: 1rem;
  }

  .simple-section {
    width: calc(100% - 2rem);
    padding: 2.65rem 0;
  }

  .hero-system-card img {
    min-height: 180px;
  }

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

  .business-flow {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.7rem;
  }

  .business-flow span {
    width: 100%;
    min-width: 0;
  }

  .business-flow i {
    justify-self: center;
    width: 2px;
    height: 24px;
  }

  .business-flow i::after {
    top: auto;
    right: 50%;
    bottom: 0;
    transform: translateX(50%) rotate(135deg);
  }

  .simple-service-card,
  .simple-package-card,
  .what-grid article {
    min-height: auto;
  }

  .audience-list span {
    width: 100%;
  }

  .simple-final-cta {
    width: calc(100% - 2rem);
  }

  .premium-lead,
  .hero-trust-line {
    font-size: 0.98rem;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

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

  .engine-dashboard {
    padding: 0.68rem;
  }

  .engine-flow a {
    grid-template-columns: 1fr;
    min-height: 86px;
    gap: 0.35rem;
    align-items: start;
  }

  .engine-dashboard img {
    display: none;
  }

  .executive-copy h1 {
    font-size: clamp(2.15rem, 9.5vw, 2.85rem);
    line-height: 1.02;
  }

  .executive-layout,
  .premium-proof-row,
  .board-services,
  .board-metrics,
  .executive-image-strip {
    grid-template-columns: 1fr;
  }

  .executive-proof-row span {
    flex: 1 1 160px;
    text-align: center;
  }

  .executive-image-strip a,
  .executive-image-strip img {
    min-height: 112px;
  }

  .page-hero *,
  .section *,
  .executive-hero *,
  .premium-hero *,
  .service-card *,
  .faq-card *,
  .cookie-banner * {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .page-hero h1,
  .section-heading h2 {
    word-break: break-word;
  }

  .hero {
    min-height: auto;
    padding-top: 6.4rem;
  }

  .hero-media {
    transform: none;
  }

  .hero-shell {
    gap: 1rem;
  }

  .hero-command {
    padding: 0.9rem;
  }

  .hero-route-pills a,
  .page-route-pills a,
  .quick-route-section a {
    flex: 1 1 auto;
    text-align: center;
  }

  .quick-route-section {
    width: calc(100% - 2rem);
    margin-top: -0.75rem;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 3.05rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    line-height: 1.04;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 7vw, 2.15rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .page-hero p:not(.eyebrow) {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-stats,
  .sector-body ul,
  .brief-form,
  .comparison-table [role="row"],
  .comparison-table > div,
  .preview-metrics,
  .preview-flow {
    grid-template-columns: 1fr;
  }

  .comparison-table .table-head {
    display: none;
  }

  .comparison-table span {
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .bot-window {
    right: -0.2rem;
    bottom: 62px;
  }

  .sector-tabs {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .footer-brand p {
    max-width: 420px;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    bottom: 0.55rem;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 1.5rem);
    overflow: auto;
    padding: 0.55rem;
  }

  .cookie-banner strong {
    margin-bottom: 0.1rem;
    font-size: 0.82rem;
  }

  .cookie-banner p {
    font-size: 0.72rem;
    line-height: 1.32;
  }

  .cookie-actions {
    display: flex;
    gap: 0.45rem;
    width: 100%;
  }

  .cookie-actions button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 34px;
    padding: 0.5rem;
    font-size: 0.76rem;
  }

  .service-card,
  .simple-service-card,
  .simple-package-card,
  .product-card,
  .proof-card,
  .gateway-card,
  .process-grid article,
  .package-grid article,
  .audience-grid article,
  .trust-card,
  .comparison-card,
  .faq-card,
  .evidence-card,
  .deliverable-card,
  .service-detail-card,
  .outcome-card {
    min-width: 0;
    width: 100%;
  }
}

@media (min-width: 900px) {
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: flex;
    justify-content: flex-start;
    width: auto;
  }

  .cookie-actions button {
    width: auto;
  }
}

@media (min-width: 681px) {
  body .cookie-banner {
    left: auto !important;
    right: 1rem !important;
    width: min(420px, calc(100vw - 2rem)) !important;
    max-width: none !important;
    transform: none !important;
    grid-template-columns: 1fr !important;
  }

  body .cookie-actions {
    display: flex !important;
    grid-template-columns: none !important;
    justify-content: flex-start !important;
    width: auto !important;
  }

  body .cookie-actions button {
    width: auto !important;
    min-width: 118px;
  }
}

@media (max-width: 680px) {
  body .cookie-banner {
    left: 50% !important;
    right: auto !important;
    width: calc(100vw - 1rem) !important;
    transform: translateX(-50%) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Enterprise AiActions design system */
.enterprise-site {
  --enterprise-bg: #ffffff;
  --enterprise-soft-bg: #f8fafc;
  --enterprise-section-bg: #f1f5f9;
  --enterprise-panel: #ffffff;
  --enterprise-panel-2: #f8fafc;
  --enterprise-line: #e2e8f0;
  --enterprise-text: #0f172a;
  --enterprise-muted: #475569;
  --enterprise-soft: #64748b;
  --enterprise-blue: #1d4ed8;
  --enterprise-emerald: #10b981;
  --enterprise-sky: #0ea5e9;
  color: var(--enterprise-text);
  background: var(--enterprise-bg);
}

.enterprise-site .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: #e2e8f0;
  backdrop-filter: blur(14px);
}

.enterprise-site .brand strong,
.enterprise-site .site-nav a {
  color: #0f172a;
}

.enterprise-site .brand small,
.enterprise-site .site-nav {
  color: #475569;
}

.enterprise-site .brand-mark {
  background: #ffffff;
  border: 1px solid #bfdbfe;
}

.enterprise-site .site-nav a {
  opacity: 0.86;
}

.enterprise-site .site-nav a:hover,
.enterprise-site .site-nav a[aria-current="page"] {
  color: #1d4ed8;
  opacity: 1;
}

.enterprise-site .header-cta,
.enterprise-site .button.primary {
  color: #ffffff;
  background: #1d4ed8;
  box-shadow: 0 8px 18px rgba(29, 78, 216, 0.16);
}

.enterprise-site .button.secondary {
  color: #0f172a;
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: none;
}

.enterprise-main {
  background: #ffffff;
}

.enterprise-section,
.enterprise-hero,
.enterprise-final {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

.enterprise-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(2.4rem, 6vw, 5.4rem);
  align-items: center;
  min-height: 660px;
  padding: clamp(7.25rem, 9vw, 8.5rem) 0 clamp(4rem, 6vw, 5.5rem);
}

.enterprise-kicker,
.enterprise-section .eyebrow,
.enterprise-final .eyebrow {
  color: var(--enterprise-blue);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enterprise-hero h1,
.enterprise-section h2,
.enterprise-final h2,
.enterprise-page-hero h1 {
  color: #0f172a;
  letter-spacing: 0;
  font-weight: 760;
}

.enterprise-hero h1 {
  max-width: 720px;
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.25rem, 3.25vw, 2.875rem);
  line-height: 1.08;
}

.enterprise-lead,
.enterprise-copy,
.enterprise-card p,
.enterprise-model p,
.enterprise-process p,
.enterprise-page-hero p,
.enterprise-final p {
  color: var(--enterprise-muted);
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  line-height: 1.66;
}

.enterprise-lead {
  max-width: 620px;
  font-size: clamp(1rem, 1.12vw, 1.125rem);
  line-height: 1.58;
}

.enterprise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.enterprise-dashboard {
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.9rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
}

.dashboard-top strong {
  display: block;
  color: #0f172a;
}

.enterprise-dashboard .dashboard-top span {
  color: #64748b;
}

.dashboard-grid {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: #f1f5f9;
  border-radius: var(--radius);
}

.dashboard-layer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.92rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
}

.dashboard-layer span {
  color: #0f172a;
  font-weight: 720;
}

.dashboard-layer small {
  color: #475569;
  font-weight: 620;
}

.dashboard-layer i {
  display: block;
  width: 78px;
  height: 8px;
  background: var(--enterprise-blue);
  border-radius: 999px;
}

.dashboard-layer:nth-child(3n) i {
  background: var(--enterprise-sky);
}

.dashboard-layer:nth-child(4n) i {
  background: var(--enterprise-emerald);
}

.enterprise-section {
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  border-top: 1px solid #e2e8f0;
}

.enterprise-hero,
.enterprise-main > .enterprise-section:nth-of-type(3),
.enterprise-main > .enterprise-section:nth-of-type(5),
.enterprise-final {
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
}

.enterprise-hero {
  margin-top: 1.4rem;
}

.enterprise-heading {
  display: grid;
  gap: 0.7rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

.enterprise-heading h2 {
  margin: 0;
  font-size: clamp(1.875rem, 2.35vw, 2rem);
  line-height: 1.08;
}

.enterprise-grid,
.enterprise-solutions,
.enterprise-industries,
.enterprise-proof,
.enterprise-process-grid {
  display: grid;
  gap: 1.15rem;
}

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

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

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

.enterprise-card,
.enterprise-model,
.enterprise-process,
.architecture-card,
.industry-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.enterprise-card,
.enterprise-model,
.industry-card {
  padding: clamp(1.15rem, 2vw, 1.45rem);
}

.enterprise-card h3,
.enterprise-model h3,
.enterprise-process h3,
.industry-card h3 {
  color: #0f172a;
  margin-top: 0;
  font-size: clamp(1.125rem, 1.25vw, 1.25rem);
  line-height: 1.2;
  font-weight: 740;
}

.enterprise-card .card-code,
.enterprise-model span,
.enterprise-process span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0;
  color: var(--enterprise-blue);
  background: transparent;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.architecture-card {
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: stretch;
}

.architecture-flow span {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 0.85rem;
  color: #0f172a;
  text-align: center;
  font-weight: 720;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  background: #f8fafc;
}

.architecture-note {
  margin-top: 1rem;
  color: var(--enterprise-muted);
  line-height: 1.65;
}

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

.enterprise-model {
  min-height: 250px;
}

.enterprise-model strong {
  display: block;
  margin-top: 1rem;
  color: var(--enterprise-blue);
}

.governance-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.governance-list li {
  padding: 0.9rem 1rem;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
}

.enterprise-proof .enterprise-card {
  min-height: 170px;
}

.proof-note {
  margin-top: 1rem;
  color: var(--enterprise-muted);
  line-height: 1.65;
}

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

.enterprise-process {
  min-height: 190px;
  padding: 1rem;
}

.enterprise-final {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: clamp(2.2rem, 5vw, 4rem);
  text-align: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: none;
}

.enterprise-final h2 {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.875rem, 2.35vw, 2rem);
  line-height: 1.08;
}

.enterprise-final .enterprise-actions {
  justify-content: center;
}

.enterprise-page-hero {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(8rem, 10vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
}

.enterprise-page-hero h1 {
  max-width: 920px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.enterprise-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
}

.enterprise-form label {
  display: grid;
  gap: 0.4rem;
  color: #0f172a;
  font-weight: 800;
}

.enterprise-form input,
.enterprise-form select,
.enterprise-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.72rem 0.8rem;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  font: inherit;
}

.enterprise-form .full {
  grid-column: 1 / -1;
}

.enterprise-form .consent-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #475569;
  line-height: 1.5;
}

.enterprise-form .consent-label input {
  width: auto;
  min-height: auto;
  margin-top: 0.22rem;
}

@media (max-width: 1120px) {
  .enterprise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 980px) {
  .enterprise-site .site-nav.open {
    background: #ffffff;
    border-color: #e2e8f0;
  }

  .enterprise-hero,
  .enterprise-grid,
  .enterprise-solutions,
  .enterprise-proof,
  .engagement-grid,
  .governance-list {
    grid-template-columns: 1fr;
  }

  .enterprise-hero {
    min-height: auto;
    padding-top: 7.5rem;
  }
}

@media (max-width: 680px) {
  .enterprise-section,
  .enterprise-hero,
  .enterprise-final,
  .enterprise-page-hero {
    width: calc(100% - 2rem);
  }

  .enterprise-hero h1,
  .enterprise-page-hero h1 {
    font-size: clamp(2rem, 8.2vw, 2.25rem);
    line-height: 1.08;
  }

  .enterprise-heading h2,
  .enterprise-final h2 {
    font-size: clamp(1.625rem, 7vw, 1.75rem);
    line-height: 1.12;
  }

  .enterprise-lead,
  .enterprise-copy,
  .enterprise-card p,
  .enterprise-model p,
  .enterprise-page-hero p,
  .enterprise-final p {
    font-size: 1rem;
  }

  .enterprise-card h3,
  .enterprise-model h3 {
    font-size: clamp(1.1rem, 5.2vw, 1.25rem);
  }

  .architecture-flow,
  .enterprise-industries,
  .enterprise-process-grid,
  .enterprise-form {
    grid-template-columns: 1fr;
  }

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


/* AiActions corporate rebuild v7 start */
.corporate-site {
  --corp-bg: #ffffff;
  --corp-soft: #f8fafc;
  --corp-section: #f1f5f9;
  --corp-text: #0f172a;
  --corp-muted: #475569;
  --corp-subtle: #64748b;
  --corp-blue: #1d4ed8;
  --corp-navy: #0f172a;
  --corp-sky: #0ea5e9;
  --corp-green: #10b981;
  --corp-border: #e2e8f0;
  color: var(--corp-text);
  background: var(--corp-bg);
}

.corporate-site,
.corporate-site input,
.corporate-site select,
.corporate-site textarea,
.corporate-site button {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.corporate-site .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--corp-border);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.corporate-site .brand strong,
.corporate-site .site-nav a {
  color: var(--corp-text);
}

.corporate-site .brand small,
.corporate-site .site-nav {
  color: var(--corp-muted);
}

.corporate-site .site-nav a {
  font-size: 0.9375rem;
  font-weight: 700;
  opacity: 0.9;
}

.corporate-site .site-nav a:hover,
.corporate-site .site-nav a[aria-current="page"] {
  color: var(--corp-blue);
  opacity: 1;
}

.corporate-site .header-cta,
.corporate-site .button.primary {
  color: #ffffff;
  background: var(--corp-blue);
  border: 1px solid var(--corp-blue);
  box-shadow: 0 8px 18px rgba(29, 78, 216, 0.16);
}

.corporate-site .button.secondary {
  color: var(--corp-text);
  background: #ffffff;
  border: 1px solid #cbd5e1;
  box-shadow: none;
}

.corporate-site .button {
  min-height: 44px;
  padding: 0.78rem 1.05rem;
  border-radius: 7px;
  font-size: 0.95rem;
  font-weight: 760;
}

.corp-main {
  background: #ffffff;
}

.corp-main h1,
.corp-main h2,
.corp-main h3 {
  color: var(--corp-text);
  letter-spacing: 0;
}

.corp-main p,
.corp-main li,
.corp-main td,
.corp-main th {
  color: var(--corp-muted);
}

.corp-hero,
.corp-page-hero,
.corp-section,
.corp-detail-stack,
.corp-final {
  width: min(1180px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.corp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(7rem, 9vw, 8.25rem) clamp(1rem, 3vw, 2.4rem) clamp(4rem, 6vw, 5.5rem);
  margin-top: 1.4rem;
  background: #f8fafc;
  border: 1px solid var(--corp-border);
  border-radius: 8px;
}

.corp-hero h1 {
  max-width: 720px;
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.625rem, 3.2vw, 2.875rem);
  line-height: 1.06;
  font-weight: 760;
}

.corp-lead {
  max-width: 680px;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.58;
}

.corp-trust-line {
  max-width: 680px;
  margin: 1rem 0 0;
  font-size: 0.98rem;
  font-weight: 680;
  color: var(--corp-text);
}

.corp-kicker {
  margin: 0;
  color: var(--corp-blue);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.corp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.corp-dashboard {
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
}

.corp-dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1rem;
  background: var(--corp-soft);
  border: 1px solid var(--corp-border);
  border-radius: 7px;
}

.corp-dashboard-top strong,
.corp-dashboard-panels strong {
  display: block;
  color: var(--corp-text);
  font-size: 0.98rem;
}

.corp-dashboard-top span,
.corp-dashboard-panels span {
  display: block;
  color: var(--corp-subtle);
  font-size: 0.82rem;
}

.corp-status {
  padding: 0.35rem 0.55rem;
  color: #047857 !important;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  font-weight: 760;
}

.corp-dashboard-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1rem 0;
}

.corp-dashboard-flow span {
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 0.65rem;
  color: var(--corp-text);
  font-weight: 740;
  text-align: center;
  background: var(--corp-soft);
  border: 1px solid var(--corp-border);
  border-radius: 7px;
}

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

.corp-dashboard-panels div {
  padding: 0.95rem;
  background: #ffffff;
  border: 1px solid var(--corp-border);
  border-radius: 7px;
}

.corp-section,
.corp-detail-stack {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.corp-section + .corp-section,
.corp-detail-stack + .corp-final {
  border-top: 1px solid var(--corp-border);
}

.corp-section-soft {
  max-width: none;
  width: 100%;
  padding-left: max(1rem, calc((100% - 1180px) / 2));
  padding-right: max(1rem, calc((100% - 1180px) / 2));
  background: var(--corp-section);
}

.corp-section-head {
  max-width: 820px;
  margin-bottom: 2rem;
}

.corp-section-head h2,
.corp-final h2 {
  margin: 0.55rem 0 0.75rem;
  font-size: clamp(1.875rem, 2.25vw, 2rem);
  line-height: 1.12;
  font-weight: 750;
}

.corp-section-head p,
.corp-final p,
.corp-page-hero p,
.corp-detail-copy p,
.corp-detail-panel p,
.corp-contact-copy p,
.corp-two-col p {
  font-size: clamp(0.98rem, 1vw, 1.03rem);
  line-height: 1.68;
}

.corp-card-grid,
.corp-solution-grid,
.corp-value-grid,
.corp-outcome-grid,
.corp-pricing-grid {
  display: grid;
  gap: 1rem;
}

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

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

.corp-value-grid,
.corp-outcome-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.corp-card,
.corp-price-card,
.corp-panel,
.corp-detail,
.corp-form-card {
  background: #ffffff;
  border: 1px solid var(--corp-border);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.corp-card,
.corp-price-card,
.corp-panel {
  padding: clamp(1.15rem, 2vw, 1.45rem);
}

.corp-card h3,
.corp-price-card h2,
.corp-price-card h3,
.corp-panel h3,
.corp-detail h2,
.corp-detail h3,
.corp-contact-copy h2 {
  margin-top: 0;
  color: var(--corp-text);
}

.corp-card h3,
.corp-panel h3 {
  font-size: clamp(1.125rem, 1.2vw, 1.25rem);
  line-height: 1.22;
}

.corp-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

.corp-card-code {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--corp-blue);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.corp-text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--corp-blue);
  font-weight: 760;
  text-decoration: none;
}

.corp-text-link:hover {
  text-decoration: underline;
}

.corp-system-diagram {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 1.1rem;
  background: #ffffff;
  border: 1px solid var(--corp-border);
  border-radius: 8px;
}

.corp-system-diagram span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 0.75rem;
  color: var(--corp-text);
  text-align: center;
  font-weight: 740;
  background: var(--corp-soft);
  border: 1px solid #bfdbfe;
  border-radius: 7px;
}

.corp-page-hero {
  padding: clamp(8rem, 10vw, 9.5rem) 0 clamp(3.25rem, 6vw, 5rem);
}

.corp-page-hero h1 {
  max-width: 920px;
  margin: 0.75rem 0 1rem;
  font-size: clamp(2.375rem, 3.2vw, 2.625rem);
  line-height: 1.08;
  font-weight: 760;
}

.corp-page-hero p {
  max-width: 820px;
}

.corp-detail-stack {
  display: grid;
  gap: 1.25rem;
}

.corp-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.35rem, 3vw, 2.1rem);
}

.corp-detail h2 {
  font-size: clamp(1.65rem, 2.1vw, 2rem);
  line-height: 1.14;
}

.corp-detail h3 {
  margin: 1.1rem 0 0.35rem;
  font-size: clamp(1.05rem, 1.1vw, 1.18rem);
}

.corp-detail-panel {
  padding: 1.1rem;
  background: var(--corp-soft);
  border: 1px solid var(--corp-border);
  border-radius: 8px;
}

.corp-detail-panel ul,
.corp-panel ul,
.corp-price-card ul,
.corp-contact-copy ul {
  display: grid;
  gap: 0.52rem;
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}

.corp-pricing-grid-large {
  align-items: stretch;
}

.corp-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.corp-price-card h2 {
  font-size: clamp(1.45rem, 1.8vw, 1.75rem);
  line-height: 1.15;
}

.corp-price-card > strong {
  display: block;
  margin: 1rem 0;
  padding: 0.8rem 0;
  color: var(--corp-blue);
  font-size: 1.15rem;
  border-top: 1px solid var(--corp-border);
  border-bottom: 1px solid var(--corp-border);
}

.corp-note {
  margin-top: 1.1rem;
  color: var(--corp-subtle);
  font-size: 0.95rem;
}

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

.corp-comparison {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

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

.corp-comparison th {
  color: var(--corp-text);
  background: var(--corp-soft);
  font-size: 0.95rem;
}

.corp-comparison tr:last-child td {
  border-bottom: 0;
}

.corp-two-col,
.corp-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.corp-contact-copy h2 {
  font-size: clamp(1.875rem, 2.25vw, 2rem);
}

.corp-form-card {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.055);
}

.corporate-site .enterprise-form {
  gap: 0.9rem;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
}

.corporate-site .enterprise-form label {
  color: var(--corp-text);
  font-size: 0.94rem;
  font-weight: 740;
}

.corporate-site .enterprise-form label > span {
  display: block;
  color: var(--corp-text);
  line-height: 1.35;
}

.corporate-site .enterprise-form input,
.corporate-site .enterprise-form select,
.corporate-site .enterprise-form textarea {
  min-height: 46px;
  color: var(--corp-text);
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
}

.corporate-site .enterprise-form textarea {
  resize: vertical;
}

.corporate-site .enterprise-form .consent-label span {
  color: var(--corp-muted);
  font-weight: 560;
}

.corporate-site .corp-form-card {
  row-gap: 1rem;
}

.corp-final {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
  background: var(--corp-soft);
  border: 1px solid var(--corp-border);
  border-radius: 8px;
}

.corp-final .corp-actions {
  justify-content: center;
}

.corporate-site .site-footer {
  background: var(--corp-navy);
}

.corporate-site .footer-main {
  border-bottom-color: rgba(226, 232, 240, 0.14);
}

@media (max-width: 1120px) {
  .corp-card-grid,
  .corp-solution-grid,
  .corp-pricing-grid,
  .corp-value-grid,
  .corp-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .corporate-site .site-nav.open {
    background: #ffffff;
    border-color: var(--corp-border);
  }

  .corp-hero,
  .corp-detail,
  .corp-two-col,
  .corp-contact-grid {
    grid-template-columns: 1fr;
  }

  .corp-hero {
    padding-top: 7.4rem;
  }
}

@media (max-width: 680px) {
  .corp-hero,
  .corp-page-hero,
  .corp-section,
  .corp-detail-stack,
  .corp-final {
    width: calc(100% - 2rem);
  }

  .corp-section-soft {
    width: 100%;
  }

  .corp-hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.25rem);
  }

  .corp-page-hero h1 {
    font-size: clamp(1.875rem, 8vw, 2.125rem);
  }

  .corp-section-head h2,
  .corp-final h2,
  .corp-contact-copy h2 {
    font-size: clamp(1.625rem, 7vw, 1.75rem);
  }

  .corp-lead,
  .corp-section-head p,
  .corp-final p,
  .corp-page-hero p,
  .corp-detail-copy p,
  .corp-detail-panel p,
  .corp-contact-copy p,
  .corp-two-col p,
  .corp-card p {
    font-size: 0.98rem;
  }

  .corp-card-grid,
  .corp-solution-grid,
  .corp-pricing-grid,
  .corp-value-grid,
  .corp-outcome-grid,
  .corp-dashboard-panels,
  .corp-system-diagram,
  .corp-dashboard-flow,
  .corporate-site .enterprise-form {
    grid-template-columns: 1fr;
  }

  .corp-actions .button {
    width: 100%;
  }
}
/* AiActions corporate rebuild v7 end */
