:root {
  --bg: #f6f2ec;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --ink: #16110f;
  --muted: #665e58;
  --line: rgba(22, 17, 15, 0.1);
  --deep: #3f190f;
  --brand: #ff5a1f;
  --brand-strong: #ff4d18;
  --brand-soft: #f1b51d;
  --brand-deep: #c8471f;
  --violet: #ff7a1a;
  --violet-deep: #ff5a1f;
  --sky: #ffd8ad;
  --sun: #f1b51d;
  --shadow-soft: 0 16px 50px rgba(77, 31, 10, 0.08);
  --shadow-strong: 0 26px 80px rgba(49, 21, 8, 0.14);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(241, 181, 29, 0.18), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(255, 90, 31, 0.12), transparent 20%),
    radial-gradient(circle at 18% 76%, rgba(255, 216, 173, 0.2), transparent 16%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

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

.ambient {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.6;
}

.ambient-a {
  top: -70px;
  left: -50px;
  width: 280px;
  height: 280px;
  background: rgba(241, 181, 29, 0.18);
}

.ambient-b {
  top: 120px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: rgba(255, 90, 31, 0.14);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding-bottom: 88px;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(95, 40, 14, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 90, 31, 0.12);
  box-shadow: 0 12px 30px rgba(255, 90, 31, 0.12);
  overflow: hidden;
}

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

.brand strong,
.hero h1,
.section-heading h2,
.difference-card h2,
.cta-card h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand div {
  display: grid;
  gap: 2px;
}

.brand div span {
  color: var(--muted);
  font-size: 0.88rem;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.topnav a:not(.button) {
  position: relative;
}

.topnav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--sun));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.topnav a:not(.button):hover::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  padding: 34px 0 14px;
}

.hero-copy {
  padding: 34px 0 26px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--violet-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
}

.hero-text,
.section-heading p,
.glass-card p,
.feature-card p,
.timeline-step p,
.stats-grid p,
.difference-card p,
.faq-item p,
.cta-card p,
.metric-card p,
.signal-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 57ch;
  font-size: 1.08rem;
}

.hero-proof {
  margin-top: 20px;
  max-width: 43rem;
  padding: 18px 20px;
  border-left: 4px solid var(--violet);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.hero-proof strong {
  display: block;
  line-height: 1.6;
  font-size: 0.98rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand-strong), var(--sun));
  color: #fff;
  box-shadow: 0 14px 32px rgba(255, 90, 31, 0.24);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
  color: var(--deep);
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(255, 90, 31, 0.1);
}

.hero-points,
.difference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.hero-points li,
.difference-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: #533225;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-mini-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.hero-mini-proof div {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hero-mini-proof div:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.18);
  box-shadow: 0 18px 36px rgba(255, 90, 31, 0.1);
}

.hero-mini-proof strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.hero-mini-proof span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.anchor-hero {
  padding-top: 28px;
}

.anchor-panel {
  min-height: auto;
  padding: 22px;
  background:
    radial-gradient(circle at 12% 12%, rgba(241, 181, 29, 0.28), transparent 0 18%),
    radial-gradient(circle at 88% 86%, rgba(255, 236, 214, 0.22), transparent 0 16%),
    linear-gradient(155deg, #ff6f24 0%, #ff5a1f 46%, #d94b1b 100%);
}

.anchor-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.anchor-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 4px;
}

.anchor-topline span,
.anchor-topline strong {
  color: #fff3e6;
}

.anchor-topline span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.anchor-topline strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
}

.anchor-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 244, 235, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(111, 37, 11, 0.1)),
    rgba(110, 39, 12, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.anchor-card span {
  display: block;
  margin-bottom: 8px;
  color: #fff0c9;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.anchor-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.anchor-card p {
  margin: 0;
  color: #fff0ea;
  line-height: 1.62;
}

.anchor-price-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 243, 230, 0.14);
  border: 1px solid rgba(255, 243, 230, 0.18);
  color: #fff8f0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.anchor-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.anchor-highlights span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 244, 235, 0.14);
  color: #fff4eb;
  font-size: 0.84rem;
  font-weight: 700;
}

.dashboard-section {
  padding-top: 76px;
}

.ops-dashboard {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 88%, rgba(62, 255, 161, 0.14), transparent 18%),
    radial-gradient(circle at 78% 16%, rgba(255, 166, 76, 0.12), transparent 18%),
    linear-gradient(180deg, #11181c 0%, #161d21 100%);
  box-shadow: 0 30px 80px rgba(18, 24, 28, 0.28);
  color: #eff6f9;
}

.dashboard-card {
  grid-column: span 4;
  min-height: 220px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(202, 219, 225, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(13, 18, 21, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-width: 0;
}

.dashboard-card-wide {
  grid-column: span 12;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.dashboard-head strong {
  flex: 1 1 180px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.dashboard-title-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.title-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at bottom center, rgba(83, 255, 182, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(202, 219, 225, 0.12);
  color: #a9f6cf;
}

.title-icon svg {
  width: 18px;
  height: 18px;
}

.dashboard-head span {
  flex: 0 1 auto;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(202, 219, 225, 0.12);
  color: #9ab0b8;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: normal;
  line-height: 1.35;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}

.coverage-column,
.coverage-gain {
  min-width: 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(202, 219, 225, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.coverage-column.emphasis {
  box-shadow: inset 0 -3px 0 rgba(255, 120, 47, 0.9);
}

.coverage-label {
  display: block;
  margin-bottom: 8px;
  color: #94aab2;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coverage-column strong,
.coverage-gain strong,
.kpi-stack strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.coverage-column p,
.coverage-gain p,
.dashboard-note,
.kpi-stack p,
.automation-list li,
.flow-checks li {
  color: #b4c3c9;
  line-height: 1.65;
}

.coverage-column p,
.coverage-gain p,
.dashboard-note,
.kpi-stack p {
  margin: 10px 0 0;
}

.coverage-gain {
  background:
    radial-gradient(circle at bottom left, rgba(62, 255, 161, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.04);
}

.coverage-gain span {
  display: block;
  margin-bottom: 8px;
  color: #8ed9b7;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coverage-gain strong {
  color: #5dffb8;
}

.kpi-stack {
  display: grid;
  align-content: center;
  height: calc(100% - 44px);
}

.range-stack {
  display: grid;
  align-content: center;
  height: calc(100% - 44px);
}

.range-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.range-badges span {
  min-width: 70px;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at bottom center, rgba(62, 255, 161, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(202, 219, 225, 0.12);
  color: #f7fbfd;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

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

.automation-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
}

.automation-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background:
    radial-gradient(circle at bottom center, rgba(83, 255, 182, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(202, 219, 225, 0.12);
  color: #8ff7c4;
}

.automation-icon svg {
  width: 18px;
  height: 18px;
}

.flow-checks {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-checks li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
}

.flow-check-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(83, 255, 182, 0.12);
  color: #5dffb8;
  box-shadow: 0 0 0 1px rgba(83, 255, 182, 0.12);
}

.flow-check-icon svg {
  width: 16px;
  height: 16px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.08), transparent 0 28%),
    linear-gradient(145deg, #ff6a22 0%, #ff5a1f 42%, #c8471f 100%);
  box-shadow: var(--shadow-strong);
  color: #fff;
  min-height: 620px;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero-panel::before {
  width: 220px;
  height: 220px;
  top: -40px;
  left: -30px;
  background: rgba(241, 181, 29, 0.92);
}

.hero-panel::after {
  width: 110px;
  height: 110px;
  right: 26px;
  bottom: 80px;
  background: rgba(255, 220, 173, 0.9);
}

.brand-glyph {
  position: absolute;
  top: 30px;
  right: 22px;
  width: 280px;
  height: 250px;
  z-index: 0;
  opacity: 0.1;
}

.brand-glyph-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--brand-strong), var(--brand));
  border-radius: 36% 44% 42% 40% / 34% 36% 44% 40%;
  transform: rotate(14deg);
}

.brand-glyph-dots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.brand-glyph-dots span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
}

.signal-card-main {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(111, 37, 11, 0.1)),
    rgba(107, 31, 8, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.signal-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff0c9;
}

.signal-card strong {
  display: block;
  font-size: 1.52rem;
  line-height: 1.18;
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.metric-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 244, 235, 0.16);
  background: rgba(110, 39, 12, 0.12);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  backdrop-filter: blur(8px);
}

.metric-card:hover {
  transform: translateY(-4px);
  background: rgba(126, 46, 13, 0.2);
  border-color: rgba(255, 244, 235, 0.28);
  box-shadow: 0 20px 30px rgba(96, 33, 8, 0.18);
}

.metric-card span {
  display: block;
  margin-bottom: 10px;
  color: #ffd8bf;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.metric-card p {
  margin: 0;
  color: #fff0ea;
  font-size: 0.94rem;
  line-height: 1.55;
}

.metric-card.accent {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(241, 181, 29, 0.22), rgba(255, 255, 255, 0.06));
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.trust-bar div {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-bar div:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 31, 0.18);
  box-shadow: 0 14px 28px rgba(255, 90, 31, 0.1);
}

.section {
  padding-top: 90px;
}

.section-checklist {
  padding-top: 82px;
}

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

.section-heading.narrow {
  max-width: 660px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 16px 0 0;
}

.problem-grid,
.solution-grid,
.stats-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

.problem-grid,
.solution-grid,
.stats-grid {
  grid-template-columns: repeat(2, 1fr);
}

.pain-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-bottom: 16px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.profit-sim-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.compare-pricing,
.compare-capacity,
.timeline-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.compare-pricing h3,
.compare-capacity h3,
.timeline-card h3 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.salary-sim {
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 90, 31, 0.12);
  background: linear-gradient(145deg, rgba(255, 247, 241, 0.92), rgba(255, 255, 255, 0.88));
}

.salary-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.salary-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 90, 31, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.salary-input-wrap span {
  color: var(--brand-strong);
  font-weight: 800;
}

.salary-input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.salary-helper {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.profit-kpis {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.profit-kpi {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.profit-kpi span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.profit-kpi strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.profit-table .timeline-row span:first-child {
  font-weight: 800;
}

.compare-price-row {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.compare-price-row:first-of-type {
  padding-top: 0;
}

.compare-price-row span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.compare-price-row strong {
  font-size: 1.7rem;
  line-height: 1;
}

.compare-price-row small {
  color: var(--muted);
  font-size: 0.9rem;
}

.compare-price-row.emphasis strong {
  color: var(--ink);
}

.compare-price-row.ai-row strong {
  color: var(--brand-strong);
}

.compare-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.timeline-card {
  margin-top: 16px;
}

.teaser-section {
  padding-top: 74px;
}

.teaser-card {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 90, 31, 0.14);
  background:
    radial-gradient(circle at top right, rgba(241, 181, 29, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 241, 0.92));
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.teaser-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.22);
  box-shadow: 0 22px 42px rgba(255, 90, 31, 0.1);
}

.teaser-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.teaser-card p:last-of-type {
  max-width: 42ch;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.teaser-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-strong), var(--sun));
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(255, 90, 31, 0.22);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.timeline-header p:last-child {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.timeline-table {
  display: grid;
  gap: 10px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.timeline-head {
  background: rgba(255, 90, 31, 0.08);
  font-weight: 800;
}

.timeline-highlight {
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.1), rgba(241, 181, 29, 0.14));
  border-color: rgba(255, 90, 31, 0.16);
  font-weight: 800;
}

.pain-copy,
.pain-impact {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.pain-copy h3,
.pain-impact strong {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.pain-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.pain-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.7;
}

.pain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-strong), var(--sun));
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.08);
}

.pain-impact {
  display: grid;
  align-content: start;
  gap: 14px;
  background: linear-gradient(145deg, #ff6a22 0%, #ff5a1f 50%, #c8471f 100%);
  color: #fff;
}

.pain-impact p {
  margin: 0;
  color: #dfd4ce;
  line-height: 1.72;
}

.impact-pill {
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.glass-card,
.feature-card,
.difference-card,
.cta-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.glass-card:hover,
.feature-card:hover,
.stats-grid article:hover,
.timeline-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.16);
  box-shadow: 0 18px 36px rgba(255, 90, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.glass-card h3,
.feature-card h3,
.timeline-step h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.feature-index {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.1);
  color: var(--brand-strong);
  font-weight: 800;
}

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

.timeline-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.timeline-step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-strong), var(--sun));
  color: #fff;
  font-weight: 800;
  font-size: 1.12rem;
}

.timeline-step p,
.stats-grid p,
.glass-card p,
.feature-card p,
.faq-item p {
  margin: 0;
}

.stats-grid article {
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.difference-card,
.cta-card {
  background: linear-gradient(145deg, #ff6a22 0%, #ff5a1f 48%, #c8471f 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.difference-card p,
.cta-card p {
  color: #dfd4ce;
}

.difference-card .button-secondary,
.cta-card .button-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--deep);
}

.difference-card .button-primary,
.cta-card .button-primary {
  background: linear-gradient(135deg, #b93812, #8f2509);
  border-color: rgba(255, 244, 235, 0.16);
  color: #fff;
  box-shadow: 0 16px 30px rgba(91, 21, 6, 0.24);
}

.difference-card .button-primary:hover,
.cta-card .button-primary:hover {
  background: linear-gradient(135deg, #c74216, #9d2e0c);
}

.difference-card .button-secondary:hover,
.cta-card .button-secondary:hover {
  background: #fff;
  color: var(--deep);
}

.faq-list {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.faq-item {
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.16);
  box-shadow: 0 18px 36px rgba(255, 90, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.faq-item summary {
  position: relative;
  padding: 24px 54px 18px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.4;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 22px;
  color: var(--brand-strong);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
}

.cta-card {
  text-align: center;
  padding: 44px;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-top: 72px;
  padding: 34px 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-brand-head {
  display: block;
}

.footer-copy {
  max-width: 40ch;
}

.footer-company {
  margin-top: 18px;
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.08);
  border: 1px solid rgba(255, 90, 31, 0.12);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-title {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links,
.footer-legal {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-legal a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--brand-strong);
  transform: translateX(2px);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 20px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-shell {
  padding-bottom: 48px;
}

.legal-topbar {
  margin-bottom: 18px;
}

.legal-page {
  max-width: 860px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.legal-page h1,
.legal-page h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.legal-page h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.legal-page h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.28rem;
}

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

.legal-note {
  margin-top: 28px;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.32);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 49;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-strong);
  border: 1px solid rgba(255, 90, 31, 0.14);
  box-shadow: 0 18px 36px rgba(255, 90, 31, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease,
    box-shadow 0.22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  box-shadow: 0 22px 42px rgba(255, 90, 31, 0.22);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.4);
}

@media (max-width: 1080px) {
  .hero,
  .pain-card,
  .compare-grid,
  .profit-sim-grid,
  .anchor-split,
  .trust-bar,
  .problem-grid,
  .solution-grid,
  .stats-grid,
  .faq-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

  .dashboard-card-wide {
    grid-column: span 2;
  }

  .dashboard-card {
    grid-column: span 1;
  }

  .topnav {
    flex-wrap: wrap;
    width: 100%;
  }

  .timeline-header {
    display: grid;
  }

  .teaser-card {
    display: grid;
    align-items: start;
  }

  .anchor-topline {
    display: grid;
  }
}

@media (max-width: 860px) {
  .ops-dashboard,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card,
  .dashboard-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 1280px) {
  .dashboard-head {
    display: grid;
    justify-content: flex-start;
    gap: 10px;
  }

  .dashboard-head strong,
  .dashboard-head span {
    flex: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .topbar {
    position: static;
    gap: 18px;
    padding: 14px;
  }

  .topnav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .topnav .button {
    grid-column: 1 / -1;
  }

  .topnav a:not(.button) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
  }

  .hero {
    gap: 20px;
    padding-top: 20px;
  }

  .hero-copy {
    padding: 12px 0 6px;
  }

  .hero h1,
  .section-heading h2,
  .difference-card h2,
  .cta-card h2 {
    word-break: break-word;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-points {
    gap: 8px;
  }

  .hero-mini-proof {
    grid-template-columns: 1fr;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .dashboard-card,
  .coverage-column,
  .coverage-gain {
    padding: 18px;
  }

  .teaser-card {
    padding: 24px 22px;
  }

  .teaser-link {
    width: 100%;
  }

  .hero-panel {
    min-height: auto;
    padding: 18px;
  }

  .brand-glyph {
    width: 180px;
    height: 160px;
    top: 18px;
    right: 14px;
  }

  .hero-panel::before {
    width: 150px;
    height: 150px;
    top: -28px;
    left: -22px;
  }

  .hero-panel::after {
    width: 74px;
    height: 74px;
    right: 18px;
    bottom: 74px;
  }

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

  .metric-card.accent {
    grid-column: span 1;
  }

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

  .glass-card,
  .feature-card,
  .faq-item,
  .difference-card,
  .cta-card,
  .pain-copy,
  .pain-impact,
  .stats-grid article,
  .timeline-step {
    padding: 22px;
  }

  .cta-card {
    padding: 30px 20px;
  }

  .legal-page {
    padding: 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 14px;
    gap: 8px;
  }

  .back-to-top {
    right: 14px;
    bottom: 78px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float span {
    display: none;
  }

  .faq-item summary {
    padding: 20px 50px 16px 20px;
    font-size: 1rem;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

  .footer-brand-head,
  .footer-bottom {
    display: grid;
    justify-content: flex-start;
  }

  .site-footer {
    padding: 24px 20px 20px;
  }
}
