/* OpenLine marketing site */
:root {
  --navy: #0b1b3a;
  --navy-soft: #152447;
  --ink: #1a2448;
  --muted: #5b647a;
  --line: #e6e9f0;
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --orange: #ff6a1a;
  --pink: #ff3b5c;
  --magenta: #e11d63;
  --purple: #6b3af7;
  --green: #0f8a57;
  --green-soft: #e5f6ee;
  --shadow: 0 12px 40px rgba(11, 27, 58, 0.08);
  --shadow-sm: 0 6px 20px rgba(11, 27, 58, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --max: 1360px;
  --page-pad: 24px;
  --header-h: 90px;
  --grad: linear-gradient(100deg, #ff8a00 0%, #ff3b5c 50%, #8b3dff 100%);
  --grad-warm: linear-gradient(100deg, #ff6a1a 0%, #ff3b5c 100%);
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

/* Shared component slots (filled by js/main.js) */
[data-include="components/header.html"] {
  display: block;
  min-height: var(--header-h);
  border-bottom: 1px solid #f0f1f5;
  background: #fff;
}

[data-include="components/footer.html"] {
  display: block;
  min-height: 4.5rem;
}

/* Header — shared chrome (matches home redesign) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid #f0f1f5;
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-desktop {
  display: flex;
  flex: 1;
  justify-content: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  max-width: calc(100% - 56px);
}

.logo img,
.logo svg {
  /* Sized to the wordmark (SVG viewBox is tight to artwork) */
  width: 236px;
  height: auto;
  max-width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-soft);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--magenta);
}

.nav-links a.is-disabled,
.nav-links span.is-disabled {
  color: #9aa3b5;
  cursor: not-allowed;
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-login {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.nav-actions .btn {
  min-height: 38px;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1.5px solid #c5ccd8;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  z-index: 5;
  box-shadow: 0 1px 2px rgba(11, 27, 58, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  background: var(--grad-warm);
  box-shadow: 0 8px 22px rgba(255, 59, 92, 0.28);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: #cfd5e4;
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Typography helpers */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 {
  font-size: clamp(1.85rem, 4.5vw, 3.35rem);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 46ch;
}

.accent {
  color: var(--orange);
  background: none;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .accent {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 0.04em;
  }
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-navy,
.section-soft,
.section-grad {
  overflow-x: clip;
}

.section-navy {
  background: var(--navy);
  color: #fff;
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

.section-grad {
  background: var(--grad);
  color: #fff;
}

main {
  overflow-x: clip;
}

.section-grad h2,
.section-grad p {
  color: #fff;
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

/* Hero — shared structure for Features, Solutions, and other inner pages */
.hero {
  padding: 3.25rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% 40% auto -10%;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 59, 92, 0.12), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  position: relative;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.hero-copy .eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
}

.hero-copy h1 {
  margin-bottom: 0.75rem;
}

.hero-copy .lead {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

.hero-media {
  min-width: 0;
  max-width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
}

.pill-bar {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 0.95rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 14px 36px rgba(11, 27, 58, 0.18);
}

.pill-bar > * {
  padding: 0.35rem 0.75rem;
  position: relative;
}

.pill-bar > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.hero-orbit {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 28%, rgba(255, 190, 210, 0.35) 42%, rgba(255, 255, 255, 0) 70%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(225, 29, 99, 0.18);
}

.hero-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 56px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero-avatar {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  z-index: 2;
}

.hero-avatar.a1 { top: 10%; left: 18%; }
.hero-avatar.a2 { top: 12%; right: 14%; }
.hero-avatar.a3 { bottom: 16%; left: 12%; }
.hero-avatar.a4 { bottom: 14%; right: 16%; }

.hero-chip {
  position: absolute;
  z-index: 3;
  background: #eef0f8;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero-chip.c1 { top: 38%; left: 2%; }
.hero-chip.c2 { top: 30%; right: 2%; }
.hero-chip.c3 { bottom: 36%; right: 6%; }

.hero-bubble {
  position: absolute;
  top: 28%;
  left: 42%;
  z-index: 3;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.orbit {
  width: min(100%, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 28%, rgba(255, 180, 210, 0.25) 45%, transparent 70%);
  position: relative;
  display: grid;
  place-items: center;
}

.orbit-wave {
  width: 72px;
  height: 56px;
}

.orbit-tag {
  position: absolute;
  background: #eef0f8;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.orbit-tag.t1 { top: 12%; left: 4%; }
.orbit-tag.t2 { top: 8%; right: 8%; }
.orbit-tag.t3 { bottom: 28%; left: 0; }
.orbit-tag.t4 { bottom: 18%; right: 2%; }
.orbit-bubble {
  position: absolute;
  top: 22%;
  right: 18%;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.quote-card {
  position: relative;
}

.quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.quote-mark.purple { color: var(--purple); }
.quote-mark.orange { color: var(--orange); }

.quote-card p {
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.45;
}

.quote-card cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Compare */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 1.5rem;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.compare-panel {
  padding: 1.6rem 1.5rem;
}

.compare-panel.bad {
  background: #f1f3f8;
}

.compare-panel.good {
  background: linear-gradient(145deg, #1a2458 0%, #5b2dff 55%, #8b3dff 100%);
  color: #fff;
}

.compare-panel.good h3 {
  color: #fff;
}

.compare-panel ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.compare-panel li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 600;
}

.compare-arrow {
  align-self: center;
  width: 44px;
  height: 44px;
  margin: 0;
  z-index: 2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(11, 27, 58, 0.18);
  border: 1px solid var(--line);
  justify-self: center;
}

/* Feature rows
   Important: never set horizontal margin here — `.container.feature-row`
   must keep `margin-inline: auto` from `.container` or wide viewports
   left-align the whole section. */
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: 2.5rem;
}

.feature-copy,
.feature-media {
  min-width: 0;
  max-width: 100%;
}

.feature-copy h2,
.feature-copy .lead {
  overflow-wrap: break-word;
}

.feature-copy .lead {
  margin-bottom: 0;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-media {
  order: 1;
}

.feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(107, 58, 247, 0.1);
  color: var(--purple);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.feature-num-on-dark {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.lead-on-dark {
  color: rgba(255, 255, 255, 0.82);
}

/* Contained feature panels (centered cards inside the page container) */
.feature-panel {
  border-radius: 28px;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: var(--shadow);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.feature-panel-navy {
  background: var(--navy);
  color: #fff;
}

.feature-panel-navy h2,
.feature-panel-navy h3 {
  color: #fff;
}

.feature-panel-grad {
  background: var(--grad);
  color: #fff;
}

.feature-panel-grad h2,
.feature-panel-grad p {
  color: #fff;
}

.feature-panel-grad .feature-copy,
.feature-panel-grad .feature-intro {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

.feature-panel-grad .lead {
  margin-inline: auto;
  margin-bottom: 1.35rem;
}

.feature-stack {
  display: grid;
  gap: 0.85rem;
}

.feature-stack .card {
  margin: 0;
}

.ui-stack {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.ui-alert {
  margin: 0.85rem 0 0;
  font-weight: 700;
  color: var(--magenta);
}

.ui-card-title {
  display: block;
  margin-bottom: 0.15rem;
}

.ui-card-spaced {
  margin-top: 0.75rem;
}

.ui-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.ui-card.dark {
  background: var(--navy-soft);
  color: #fff;
  border-color: transparent;
}

.ui-card-note {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.ui-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.ui-card.dark .ui-label {
  color: rgba(255, 255, 255, 0.65);
}

.ui-select,
.ui-field {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ui-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -6px;
  background: linear-gradient(135deg, #ffb38a, #c084fc);
  flex-shrink: 0;
}

.avatars span:first-child {
  margin-left: 0;
}

.avatars .more {
  background: #dbe7ff;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.badge-ready {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
}

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

.check-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-weight: 600;
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.xmark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #c5cad6;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Outcomes / icon tiles */
.icon-tile {
  text-align: left;
}

.icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  background: rgba(255, 106, 26, 0.12);
  color: var(--orange);
  font-weight: 800;
}

.icon-bubble svg {
  width: 22px;
  height: 22px;
  display: block;
}

.icon-bubble.purple { background: rgba(107, 58, 247, 0.12); color: var(--purple); }
.icon-bubble.pink { background: rgba(225, 29, 99, 0.12); color: var(--magenta); }
.icon-bubble.green { background: rgba(15, 138, 87, 0.12); color: var(--green); }

.icon-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.audience-stack {
  display: grid;
  gap: 0.85rem;
}

.audience-stack .side-card {
  display: grid;
  gap: 0.65rem;
}

.channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}

.channel-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
}

.frontline-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: stretch;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.frontline-panel .feature-copy {
  padding: 2rem 1.75rem;
  display: grid;
  align-content: center;
}

.frontline-media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.frontline-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.frontline-media .float-pills {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.float-pills .pill {
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.trust-row .trust-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
}

/* Solutions cards */
.solution-card h3 {
  margin-bottom: 0.4rem;
}

.solution-card.ops { border-top: 4px solid var(--orange); }
.solution-card.hr { border-top: 4px solid var(--purple); }
.solution-card.recruit { border-top: 4px solid var(--magenta); }
.solution-card.managers { border-top: 4px solid var(--green); }

.photo-collage {
  display: grid;
  gap: 0.75rem;
}

.photo-collage .wide,
.photo-collage .half {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 150px;
  background: #d8dde8 center/cover no-repeat;
  box-shadow: var(--shadow-sm);
}

.photo-collage .wide {
  min-height: 190px;
}

.photo-collage .pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.photo-tag {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.dot.blue { background: #4aa3ff; }
.dot.purple { background: var(--purple); }

.industry-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}

.industry-row .item {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.9rem;
}

.industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

/* Pricing */
.price-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.price-hero > * {
  min-width: 0;
}

.price-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(255, 59, 92, 0.12), var(--shadow);
  padding: 1.75rem;
  border: 1px solid rgba(255, 106, 26, 0.18);
}

.price-card .label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card .amount {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 0.4rem 0;
}

.price-card .amount small {
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
}

.price-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-examples .card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0.4rem 0;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1.2rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  color: var(--muted);
  margin: 0.75rem 0 0;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 2.75rem 1.75rem;
  text-align: center;
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(96px, 18vw);
  height: 64px;
  transform: translateY(-50%);
  opacity: 0.22;
  background:
    radial-gradient(circle at 10% 50%, #fff 0 3px, transparent 4px),
    radial-gradient(circle at 22% 35%, #fff 0 4px, transparent 5px),
    radial-gradient(circle at 34% 50%, #fff 0 6px, transparent 7px),
    radial-gradient(circle at 46% 30%, #fff 0 5px, transparent 6px),
    radial-gradient(circle at 58% 55%, #fff 0 7px, transparent 8px),
    radial-gradient(circle at 70% 40%, #fff 0 4px, transparent 5px),
    radial-gradient(circle at 82% 50%, #fff 0 3px, transparent 4px);
  pointer-events: none;
}

.cta-band::before { left: 0.75rem; }
.cta-band::after { right: 0.75rem; transform: translateY(-50%) scaleX(-1); }

.cta-band h2,
.cta-band p,
.cta-band .btn-row {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.6rem;
}

.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.92);
}

.cta-band .btn-row {
  justify-content: center;
}

/* Footer — shared chrome (matches home redesign) */
.site-footer {
  padding: 1rem 0 1.4rem;
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-copy {
  display: grid;
  gap: 0.35rem;
}

.footer-tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.64rem;
  max-width: 52ch;
}

.footer-meta {
  margin: 0;
  color: #8a93a8;
  font-size: 0.64rem;
  font-weight: 600;
  text-align: right;
}

/* Flow chips */
.flow-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.flow-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.translate-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.translate-steps .step {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 1rem;
  color: #fff;
}

.translate-steps .step strong {
  display: block;
  margin-bottom: 0.35rem;
}

.nav-panel {
  display: none;
}

/* Mobile */
@media (max-width: 920px) {
  :root {
    --page-pad: 1.75rem;
  }

  .logo {
    max-width: calc(100% - 52px);
  }

  .logo img,
  .logo svg {
    width: 200px;
    max-width: min(200px, calc(100vw - 88px));
  }

  .nav-toggle {
    display: inline-flex !important;
    width: 42px;
    height: 42px;
    margin-left: auto;
  }

  .nav-desktop {
    display: none !important;
  }

  .nav-panel {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 0 1.25rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: none;
    left: 0;
    right: 0;
  }

  .nav-panel.open {
    display: block;
  }

  .nav-panel .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
  }

  .nav-actions.desktop-only {
    display: none;
  }

  .nav-actions.mobile-only {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .hero {
    padding: 2rem 0 1.75rem;
  }

  .hero-grid,
  .feature-row,
  .feature-row.reverse,
  .price-hero,
  .compare,
  .frontline-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-media {
    order: initial;
  }

  .compare {
    border-radius: 18px;
  }

  .compare-arrow {
    transform: rotate(90deg);
    justify-self: center;
    margin: 0;
  }

  .lead {
    max-width: none;
  }

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

  .hero-orbit {
    width: min(100%, 320px);
  }

  .hero-avatar {
    width: 56px;
    height: 56px;
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .pill-bar {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    text-align: left;
    padding: 0.85rem 1rem;
  }

  .pill-bar > * {
    padding: 0.55rem 0;
  }

  .pill-bar > * + *::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .price-examples,
  .industry-row,
  .translate-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 3rem 0;
  }

  .cta-band::before,
  .cta-band::after {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 84px;
    --page-pad: 22px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 1.75rem;
  }

  h1 {
    font-size: 1.6rem;
    line-height: 1.22;
    max-width: 100%;
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero-grid > div:first-child {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .pill-bar,
  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .price-examples,
  .translate-steps,
  .photo-collage .pair,
  .industry-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .btn {
    width: 100%;
  }

  .btn-row {
    width: 100%;
  }

  .btn-row .btn {
    flex: 1 1 100%;
  }

  .ui-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .float-pills {
    left: 0.75rem;
    right: 0.75rem;
  }

  .float-pills .pill {
    font-size: 0.78rem;
    padding: 0.45rem 0.7rem;
  }
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 920px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex;
  }
}
