/* Sections-specific styles */

/* ==================== NAV ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .brand-logo-image {
  display: block;
  height: 34px;
  max-width: min(220px, 55vw);
  object-fit: contain;
  width: auto;
}
.logo-mark {
  width: 26px; height: 26px;
  background: var(--ink);
  border-radius: 50%;
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px 6px 6px auto;
  width: 8px;
  background: var(--copper);
  border-radius: 0 999px 999px 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--copper); }
.nav-links a.btn-primary {
  color: var(--bg);
}
.nav-links a.btn-primary:hover {
  color: var(--bg);
}
.nav-links a.btn-secondary {
  color: var(--ink);
}
.nav-links a.btn-secondary:hover {
  color: var(--bg);
}
@media (max-width: 800px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ==================== HERO ==================== */
.hero {
  padding: 68px 0 92px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  column-gap: 64px;
  row-gap: 24px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--ink-3);
  margin-bottom: 24px;
  background: var(--paper);
}
.hero-tag .dot {
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(184, 91, 42, 0.12);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 22px;
  max-width: 760px;
}
.hero-title-line {
  display: block;
}
.hero h1 em {
  font-style: italic;
  color: var(--copper);
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 0 30px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero-ctas .btn {
  min-height: 58px;
  padding: 17px 30px;
  font-size: 16px;
}
.hero-trust {
  margin-top: 16px;
}
.hero-trust span {
  font-size: var(--fs-sm);
  color: var(--ink-2);
}

/* Hero panel — UI mock */
.hero-panel {
  position: relative;
  align-self: center;
}
.dashboard {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(250,248,244,0.96)),
    var(--paper);
  border: 1px solid rgba(21, 20, 15, 0.1);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 28px 72px -38px rgba(21, 20, 15, 0.34), 0 12px 30px -24px rgba(184, 91, 42, 0.2);
  font-family: var(--font-body);
  position: relative;
}
.monthly-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.monthly-period {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 7px;
}
.monthly-title {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}
.monthly-status {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 7px 11px;
  background: rgba(79, 92, 77, 0.12);
  color: var(--sage);
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.monthly-status .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(79, 92, 77, 0.1);
}
.monthly-progress {
  padding: 2px 0 18px;
  border-bottom: 1px solid rgba(21, 20, 15, 0.08);
}
.progress-value {
  font-family: var(--font-display);
  font-size: clamp(48px, 4.8vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.progress-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(21, 20, 15, 0.08);
  overflow: hidden;
}
.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), color-mix(in srgb, var(--sage) 72%, var(--copper)));
}
.monthly-progress p {
  margin: 11px 0 0;
  color: var(--ink-3);
  font-size: 13px;
}
.monthly-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}
.monthly-stat {
  padding: 13px 14px;
  border: 1px solid rgba(21, 20, 15, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
}
.monthly-stat.warning {
  background: rgba(184, 91, 42, 0.07);
  border-color: rgba(184, 91, 42, 0.16);
}
.monthly-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 0.95;
  font-weight: 400;
  color: var(--ink);
}
.monthly-stat.warning strong {
  color: var(--copper);
}
.monthly-stat span {
  display: block;
  margin-top: 6px;
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.25;
}
.monthly-stat.warning span {
  color: var(--copper);
}
.monthly-checklist {
  list-style: none;
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(21, 20, 15, 0.08);
  display: grid;
  gap: 8px;
}
.monthly-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-2);
  font-size: 13px;
}
.check-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  flex-shrink: 0;
}
.check-dot::after {
  content: "";
  width: 7px;
  height: 4px;
  border-left: 1.5px solid var(--bg);
  border-bottom: 1.5px solid var(--bg);
  transform: rotate(-45deg) translateY(-1px);
}
.monthly-next {
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(184, 91, 42, 0.08);
  border: 1px solid rgba(184, 91, 42, 0.16);
}
.monthly-next span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 5px;
}
.monthly-next strong {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}

/* Floating tag */
.float-tag {
  position: absolute;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px -12px rgba(21, 20, 15, 0.4);
}
.float-tag.tl { top: -16px; left: -20px; }
.float-tag.br {
  bottom: -16px; right: 16px;
  background: var(--copper);
}
@media (max-width: 980px) {
  .float-tag.tl, .float-tag.br { display: none; }
}

@media (max-width: 700px) {
  .hero {
    padding: 32px 0 58px;
  }
  .hero-tag {
    margin-bottom: 18px;
    padding: 7px 11px 7px 9px;
  }
  .hero h1 {
    font-size: clamp(32px, 9vw, 36px);
    line-height: 1.02;
    letter-spacing: -0.014em;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 22px;
  }
  .hero-ctas {
    width: 100%;
    align-items: stretch;
    gap: 12px;
    margin-top: 0;
  }
  .hero-ctas .btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 56px;
  }
  .hero-ctas .btn-ghost {
    justify-content: center;
    padding: 10px 0;
  }
  .hero-trust {
    margin-top: 14px;
    text-align: left;
  }
  .dashboard {
    padding: 15px;
    border-radius: 18px;
  }
  .monthly-head {
    margin-bottom: 14px;
    gap: 12px;
  }
  .monthly-title {
    font-size: 18px;
  }
  .monthly-status {
    padding: 6px 9px;
  }
  .progress-value {
    font-size: clamp(44px, 14vw, 54px);
    margin-bottom: 12px;
  }
  .monthly-progress {
    padding-bottom: 14px;
  }
  .monthly-stats {
    gap: 8px;
    margin: 12px 0;
  }
  .monthly-stat {
    padding: 11px 12px;
  }
  .monthly-stat strong {
    font-size: 30px;
  }
  .monthly-checklist {
    gap: 7px;
    padding-bottom: 12px;
  }
  .monthly-next {
    margin-top: 12px;
    padding: 12px;
  }
}

/* ==================== PROBLEM ==================== */
.problem {
  background: var(--ink);
  color: var(--bg);
  padding: 104px 0 112px;
  border-top: 1px solid var(--line);
}
.problem .section-num,
.problem .mono { color: rgba(250, 248, 244, 0.5); }
.problem .section-kicker { color: var(--copper-soft); }
.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.016em;
  font-weight: 400;
  margin: 0;
  max-width: 18ch;
}
.problem h2 span {
  display: block;
}
.problem-list {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250, 248, 244, 0.1);
}
@media (max-width: 800px) {
  .problem-list { grid-template-columns: 1fr; }
}
.problem-item {
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid rgba(250, 248, 244, 0.1);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}
.problem-item:nth-child(odd) {
  padding-right: 36px;
  border-right: 1px solid rgba(250, 248, 244, 0.1);
}
.problem-item:nth-child(even) {
  padding-left: 36px;
}
@media (max-width: 800px) {
  .problem {
    padding: 72px 0 84px;
  }
  .problem .section-head {
    gap: 22px;
  }
  .problem h2 {
    font-size: clamp(34px, 10vw, 42px);
    max-width: 12ch;
  }
  .problem-list {
    margin-top: 38px;
  }
  .problem-item, .problem-item:nth-child(odd) {
    padding: 24px 0;
    border-right: none;
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }
  .problem-item:nth-child(even) { padding-left: 0; }
}
.problem-item .num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: rgba(250, 248, 244, 0.4);
  letter-spacing: 0.04em;
  padding-top: 6px;
}
.problem-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0 0 8px;
}
.problem-item p {
  margin: 0;
  font-size: var(--fs-sm);
  color: rgba(250, 248, 244, 0.65);
  line-height: 1.5;
}
.problem-close {
  margin: 60px 0 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.1;
  color: var(--copper-soft);
}
@media (max-width: 800px) {
  .problem-close {
    margin-top: 42px;
    font-size: clamp(34px, 10vw, 44px);
  }
}

/* ==================== SOLUTION ==================== */
#solution {
  padding-top: 96px;
  padding-bottom: 96px;
}
#solution .section-head {
  margin-bottom: 44px;
}
.solution-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .solution-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .flow-visual {
    order: 2;
  }
  .solution-text {
    display: contents;
  }
  .solution-text > p {
    order: 1;
  }
  .solution-pillars {
    order: 3;
  }
}
.solution-title {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.04;
  max-width: 820px;
}
.solution-title span {
  display: block;
}
.solution-text p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
}
.solution-pillars {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 520px;
}
.pillar {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.pillar .icon {
  width: 22px; height: 22px;
  margin-bottom: 10px;
  color: var(--copper);
}
.pillar strong {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}
.pillar span {
  font-size: var(--fs-sm);
  color: var(--ink-3);
  line-height: 1.5;
}
.solution-note {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.12;
  color: var(--copper);
  max-width: 520px;
}

/* Solution visual */
.flow-visual {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: auto;
  overflow: hidden;
}
.flow-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
}
.flow-step {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.flow-step:last-child { border-bottom: none; }
.flow-step .glyph {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
}
.flow-step.active .glyph {
  background: var(--ink);
  color: var(--bg);
}
.flow-step.auto .glyph {
  background: var(--copper);
  color: var(--bg);
}
.flow-step .body strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
.flow-step .body span {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.45;
}
.flow-step .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.flow-step .tag.auto {
  background: rgba(184, 91, 42, 0.1);
  color: var(--copper);
}
.flow-step .tag.human {
  background: rgba(79, 92, 77, 0.12);
  color: var(--sage);
}
@media (max-width: 800px) {
  #solution {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .solution-title {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.05;
  }
  .solution-text p {
    font-size: 15px;
  }
  .flow-visual {
    padding: 20px;
    width: 100%;
  }
  .flow-label {
    gap: 10px;
    margin-bottom: 16px;
  }
  .flow-step {
    grid-template-columns: 32px 1fr;
    gap: 12px;
    padding: 13px 0;
  }
  .flow-step .glyph {
    width: 32px;
    height: 32px;
  }
  .flow-step .tag {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
  }
  .solution-pillars {
    margin-top: 0;
  }
}

/* ==================== HOW IT WORKS ==================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1180px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .step:nth-child(4) { border-left: none; }
}
@media (max-width: 800px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(odd) { border-left: none; }
  .step:nth-child(even) { border-left: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.step {
  padding: 36px 24px 76px;
  border-left: 1px solid var(--line);
  position: relative;
  min-height: 320px;
}
.step:first-child { border-left: none; }
@media (max-width: 600px) {
  .step { border-left: none; border-top: 1px solid var(--line); min-height: auto; }
  .step:nth-child(odd),
  .step:nth-child(even) { border-left: none; }
  .step:first-child { border-top: none; }
}
.step .num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--copper);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1.1;
}
.step p {
  margin: 0;
  font-size: var(--fs-base);
  color: var(--ink-3);
  line-height: 1.55;
}
.step-icon {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: 28px; height: 28px;
  color: var(--ink-3);
}

/* ==================== WHY US ==================== */
#why .section-head {
  margin-bottom: 48px;
}
#why .section-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  max-width: 760px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.why-highlight {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.why-highlight p {
  color: rgba(250, 248, 244, 0.68);
}
.why .icon {
  width: 30px; height: 30px;
  color: var(--copper);
}
.why-highlight .icon {
  color: var(--copper-soft);
}
.why h3 {
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 22px 0 6px;
  line-height: 1.08;
}
.why p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.45;
}
.why-close {
  margin: 46px 0 0;
  padding: 28px 32px;
  border: 1px solid rgba(184, 91, 42, 0.25);
  border-radius: var(--radius-lg);
  background: rgba(184, 91, 42, 0.06);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.14;
  color: var(--copper);
  max-width: 960px;
}
@media (max-width: 600px) {
  #why .section-head {
    margin-bottom: 32px;
  }
  .why {
    min-height: 0;
    padding: 22px;
  }
  .why h3 {
    margin-top: 18px;
  }
  .why-close {
    margin-top: 30px;
    padding: 22px;
    font-size: clamp(30px, 9vw, 40px);
  }
}

/* ==================== COMPARISON TABLE ==================== */
#compare .section-head {
  margin-bottom: 48px;
}
#compare .section-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  max-width: 760px;
}
.compare-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-base);
}
.compare th, .compare td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.compare th {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  background: var(--bg-2);
}
.compare th.us {
  color: var(--bg);
  background: var(--ink);
}
.compare td.feat {
  font-weight: 500;
  width: 40%;
}
.compare td.us {
  background: rgba(184, 91, 42, 0.04);
  border-left: 1px solid rgba(184, 91, 42, 0.15);
  border-right: 1px solid rgba(184, 91, 42, 0.15);
  color: var(--ink);
  font-weight: 500;
}
.compare td.them {
  color: var(--ink-3);
}
.compare tr:last-child td { border-bottom: none; }
.compare tr:last-child td.us { border-bottom: 1px solid rgba(184, 91, 42, 0.15); }
.compare .check { color: var(--copper); font-family: var(--font-mono); font-size: 14px; margin-right: 8px;}
.compare .x { color: var(--ink-4); font-family: var(--font-mono); font-size: 14px; margin-right: 8px; }
.compare-cards {
  display: none;
}
.compare-cta {
  margin: 52px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  padding: 38px 32px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 900px;
}
.compare-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  color: var(--bg);
  max-width: 760px;
}
.compare-cta .btn {
  min-height: 54px;
  padding: 15px 30px;
}
.compare-cta span {
  color: rgba(250, 248, 244, 0.62);
  font-size: var(--fs-sm);
}
@media (max-width: 700px) {
  #compare .section-head {
    margin-bottom: 32px;
  }
  .compare-wrap {
    display: none;
  }
  .compare-cards {
    display: grid;
    gap: 12px;
  }
  .compare-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
  }
  .compare-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1.08;
    font-weight: 400;
  }
  .compare-card p {
    margin: 0;
    color: var(--ink-2);
    font-size: 14px;
    line-height: 1.45;
  }
  .compare-card p + p {
    margin-top: 7px;
    color: var(--ink-4);
  }
  .compare-card .check {
    color: var(--copper);
    margin-right: 8px;
  }
  .compare-card .x {
    color: var(--ink-4);
    margin-right: 8px;
  }
  .compare-cta {
    margin-top: 34px;
    padding: 28px 22px;
  }
  .compare-cta p {
    font-size: clamp(30px, 9vw, 42px);
  }
  .compare-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== PRICING (REDESIGNED) ==================== */

/* Hero of the pricing section */
.pricing-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
}
.pricing-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0 0 20px;
}
.pricing-hero h2 em { font-style: italic; color: var(--copper); }
.pricing-hero p {
  font-size: var(--fs-md);
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 56ch;
}

/* Card row */
.pricing-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 980px) {
  .pricing-cards-row { grid-template-columns: 1fr; }
}

.price-card {
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  position: relative;
  background: var(--paper);
  transition: background .25s ease;
}
.price-card:first-child { border-left: none; }
@media (max-width: 980px) {
  .price-card { border-left: none; border-top: 1px solid var(--line); }
  .price-card:first-child { border-top: none; }
}

.price-card.featured {
  background: var(--ink);
  color: var(--bg);
  margin: -1px 0;
  border-left-color: var(--ink);
  z-index: 2;
}
.price-card.featured + .price-card { border-left-color: var(--ink); }

.price-card .ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--copper);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-name {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.price-card.featured .price-name { color: rgba(250, 248, 244, 0.55); }

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 8px;
  flex-wrap: nowrap;
}
.price-tag .amount {
  font-size: clamp(40px, 3.6vw, 56px);
  line-height: 0.95;
  white-space: nowrap;
}
.price-tag .currency {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-left: 2px;
  white-space: nowrap;
}
.price-card.featured .price-tag .currency { color: rgba(250, 248, 244, 0.5); }

.price-desc {
  font-size: var(--fs-sm);
  color: var(--ink-3);
  margin: 0 0 20px;
  min-height: 34px;
  max-width: 32ch;
}
.price-card.featured .price-desc { color: rgba(250, 248, 244, 0.65); }

.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 24px;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 500;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  margin-bottom: 24px;
  transition: all .2s ease;
}
.price-cta:hover { background: var(--copper); border-color: var(--copper); }
.price-card.featured .price-cta,
.price-cta-primary {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--bg);
  box-shadow: 0 14px 30px rgba(184, 91, 42, 0.28);
}
.price-card.featured .price-cta:hover,
.price-cta-primary:hover {
  background: var(--copper-soft);
  border-color: var(--copper-soft);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.price-card.featured .price-features {
  color: rgba(250, 248, 244, 0.85);
  border-top-color: rgba(250, 248, 244, 0.15);
}
.price-features li {
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.42;
}
.price-features li .pf-tick {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--copper);
}
.price-card.featured .price-features li .pf-tick { color: var(--copper-soft); }
.price-features li.heading {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 12px;
  padding-bottom: 4px;
}
.price-card.featured .price-features li.heading { color: rgba(250, 248, 244, 0.45); }
.price-features li.heading .pf-tick { display: none; }

.pricing-included {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 34px;
  padding: 36px 38px;
  background: color-mix(in srgb, var(--copper) 6%, var(--paper));
  border: 1px solid rgba(184, 91, 42, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(18, 17, 14, 0.05);
}
.pricing-included h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 400;
}
.pricing-included ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}
.pricing-included li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.45;
  font-weight: 500;
}
.pricing-included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
}
.pricing-note {
  margin: 26px auto 0;
  max-width: 680px;
  text-align: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(18, 17, 14, 0.04);
}
.pricing-fit {
  margin: 0;
  color: var(--ink-3);
  font-size: var(--fs-base);
  line-height: 1.45;
}
.pricing-binding {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}
@media (max-width: 800px) {
  .pricing-hero h2 {
    font-size: clamp(36px, 11vw, 48px);
  }
  .price-card {
    padding: 26px 22px 24px;
  }
  .price-tag .amount {
    font-size: clamp(38px, 13vw, 48px);
  }
  .price-desc {
    min-height: 0;
    margin-bottom: 18px;
  }
  .price-cta {
    width: 100%;
    min-height: 50px;
    margin-bottom: 20px;
  }
  .price-features {
    font-size: 14px;
  }
  .pricing-included {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .pricing-included ul { grid-template-columns: 1fr; }
  .pricing-note {
    border-radius: var(--radius-lg);
    padding: 18px;
  }
}

/* Footnote / extras line */
.pricing-foot {
  text-align: center;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 32px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pricing-foot .extra {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pricing-foot .extra strong {
  color: var(--ink);
  font-weight: 500;
}

/* Comparison whisper line */
.pricing-whisper {
  text-align: center;
  margin: 56px auto 0;
  max-width: 640px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.pricing-whisper em { color: var(--copper); font-style: italic; }

/* "Så funkar det" mini-section embedded under pricing */
.howmini {
  margin-top: 80px;
  padding: 48px 0 0;
  border-top: 1px solid var(--line);
}
.howmini-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: end;
}
@media (max-width: 800px) {
  .howmini-head { grid-template-columns: 1fr; gap: 16px; }
}
.howmini-head .kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}
.howmini-head h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 8px 0 0;
  font-weight: 400;
}
.howmini-head h3 em { font-style: italic; color: var(--copper); }
.howmini-head .lede {
  font-size: var(--fs-base);
  color: var(--ink-2);
  max-width: 44ch;
  line-height: 1.55;
}
.howmini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) {
  .howmini-grid { grid-template-columns: 1fr; }
}
.howmini-step {
  padding: 32px 28px 36px;
  border-left: 1px solid var(--line);
  position: relative;
}
.howmini-step:first-child { border-left: none; }
@media (max-width: 800px) {
  .howmini-step { border-left: none; border-top: 1px solid var(--line); }
  .howmini-step:first-child { border-top: none; }
}
.howmini-step .num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-style: italic;
  color: var(--copper);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.howmini-step h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 10px;
}
.howmini-step p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--ink-3);
  line-height: 1.55;
}

/* Pricing-FAQ (compact) */
.pricing-faq {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.pricing-faq-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .pricing-faq-head { grid-template-columns: 1fr; gap: 16px; }
}
.pricing-faq-head .kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}
.pricing-faq-head h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 8px 0 0;
  font-weight: 400;
  max-width: 14ch;
}
.pricing-faq-head .lede {
  font-size: var(--fs-base);
  color: var(--ink-2);
  max-width: 44ch;
  line-height: 1.55;
}
.pricing-faq-head .lede a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }

/* Calculator */
.calc {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.calc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.calc-head .title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.calc-row {
  margin-bottom: 24px;
}
.calc-row label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.calc-row .lbl {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.calc-row .val {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.calc-row input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--bg-3);
  border-radius: 4px;
  outline: none;
}
.calc-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  border: 4px solid var(--bg-2);
  box-shadow: 0 0 0 1px var(--ink);
  transition: transform .15s;
}
.calc-row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
.calc-row input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  border: 4px solid var(--bg-2);
  box-shadow: 0 0 0 1px var(--ink);
}

.calc-toggle {
  display: flex;
  background: var(--bg-3);
  padding: 4px;
  border-radius: 999px;
  gap: 4px;
}
.calc-toggle button {
  flex: 1;
  padding: 8px 14px;
  border: none;
  background: transparent;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
  transition: all .2s;
}
.calc-toggle button.active {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.calc-result {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.calc-result .label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.calc-result .price {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.calc-result .price .currency {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.calc-result .price em {
  font-style: italic;
  color: var(--copper);
}
.calc-result .recommendation {
  margin-top: 16px;
  font-size: var(--fs-sm);
  color: var(--ink-3);
}
.calc-result .recommendation strong { color: var(--ink); font-weight: 500; }
.calc-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* ==================== USE CASES ==================== */
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) {
  .use-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .use-grid { grid-template-columns: 1fr; }
}
.use {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.use:hover {
  border-color: rgba(184, 91, 42, 0.28);
  box-shadow: 0 18px 44px rgba(18, 17, 14, 0.05);
  transform: translateY(-2px);
}
.use-body {
  padding: 26px;
}
.use-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--copper) 9%, var(--bg-2));
  color: var(--copper);
  margin-bottom: 22px;
}
.use-icon svg {
  width: 21px;
  height: 21px;
}
.use-body .num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--copper);
  margin-bottom: 10px;
}
.use-body h3 {
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0 0 8px;
}
.use-body p {
  margin: 0 0 14px;
  font-size: var(--fs-sm);
  color: var(--ink-3);
  line-height: 1.5;
}
.use-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.use-tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 8px;
  background: var(--bg-2);
  color: var(--ink-3);
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.use-fit-note {
  margin-top: 36px;
  padding: 30px 34px;
  border: 1px solid rgba(184, 91, 42, 0.24);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--copper) 6%, var(--paper));
  max-width: 980px;
  box-shadow: 0 18px 44px rgba(18, 17, 14, 0.05);
}
.use-fit-note h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--ink);
}
.use-fit-note p {
  margin: 0;
  color: var(--ink-3);
  font-size: var(--fs-base);
  line-height: 1.6;
  max-width: 70ch;
}
@media (max-width: 700px) {
  .use-body { padding: 22px; }
  .use-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
  }
  .use-fit-note { padding: 24px; }
}

/* ==================== TRUST ==================== */
.trust-layout {
  max-width: 980px;
  margin: 0 auto;
}
.trust h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 18px;
  max-width: 760px;
}
.trust p {
  font-size: var(--fs-md);
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 30px;
  max-width: 480px;
}
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  overflow: hidden;
}
.trust-list li {
  padding: 24px;
  border-top: 0;
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.trust-list li:nth-child(odd) { border-left: 0; }
.trust-list li:nth-child(n + 3) { border-top: 1px solid var(--line); }
.trust-list .icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--copper) 9%, var(--bg-2));
  color: var(--copper);
}
.trust-list strong {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: var(--fs-base);
}
.trust-list span {
  font-size: var(--fs-sm);
  color: var(--ink-3);
  line-height: 1.45;
}
@media (max-width: 760px) {
  .trust h2 {
    font-size: clamp(34px, 10vw, 44px);
  }
  .trust p {
    font-size: var(--fs-base);
    margin-bottom: 22px;
  }
  .trust-list {
    grid-template-columns: 1fr;
  }
  .trust-list li,
  .trust-list li:nth-child(odd) {
    border-left: 0;
  }
  .trust-list li:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }
}

/* ==================== FAQ ==================== */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
@media (max-width: 980px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-q .toggle {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: all .2s;
}
.faq-q .toggle::before, .faq-q .toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .25s ease;
}
.faq-q .toggle::before {
  inset: 11px 6px;
  height: 1px;
}
.faq-q .toggle::after {
  inset: 6px 11px;
  width: 1px;
}
.faq-item.open .faq-q .toggle {
  background: var(--ink);
  border-color: var(--ink);
}
.faq-item.open .faq-q .toggle::before { background: var(--bg); }
.faq-item.open .faq-q .toggle::after { transform: scaleY(0); background: var(--bg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding-top: 16px;
  font-size: var(--fs-base);
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 70ch;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
  padding: 140px 0;
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "REDOVISNING";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(180px, 28vw, 380px);
  letter-spacing: -0.04em;
  font-style: italic;
  color: rgba(250, 248, 244, 0.04);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.final-inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0 0 32px;
}
.final-cta h2 em { font-style: italic; color: var(--copper-soft); }
.final-cta p {
  font-size: var(--fs-md);
  color: rgba(250, 248, 244, 0.7);
  margin: 0 0 40px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.final-cta .btn-primary {
  background: var(--copper);
  color: var(--bg);
}
.final-cta .btn-primary:hover { background: var(--copper-soft); }
.final-cta .btn-secondary {
  border-color: rgba(250, 248, 244, 0.3);
  color: var(--bg);
}
.final-cta .btn-secondary:hover { background: var(--bg); color: var(--ink); }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--ink);
  color: rgba(250, 248, 244, 0.7);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(250, 248, 244, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer .logo { color: var(--bg); }
.footer h4 {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 4px 0; font-size: var(--fs-sm); }
.footer ul li a { transition: color .2s; }
.footer ul li a:hover { color: var(--copper-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 248, 244, 0.1);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(250, 248, 244, 0.4);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 12px; }
}
.footer-tag {
  font-size: var(--fs-sm);
  color: rgba(250, 248, 244, 0.6);
  margin-top: 16px;
  max-width: 320px;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.55;
}

/* ==================== LANDING POLISH PASS ==================== */
.nav-inner {
  gap: 18px;
  min-width: 0;
  padding: 14px 0;
}
.logo {
  min-width: 0;
  flex-shrink: 1;
}
.nav-links {
  gap: 22px;
  min-width: 0;
  flex-shrink: 0;
}
.nav-links .btn {
  padding: 12px 18px;
}

.hero {
  padding: 56px 0 76px;
}
.hero-grid {
  column-gap: 54px;
}
.hero h1 {
  font-size: clamp(44px, 5.2vw, 70px);
  max-width: 690px;
}
.hero-sub {
  max-width: 560px;
}
.dashboard {
  padding: 20px;
  border-radius: 20px;
}
.monthly-head {
  margin-bottom: 14px;
}
.monthly-title {
  font-size: 20px;
}
.monthly-progress {
  padding-bottom: 14px;
}
.progress-value {
  font-size: clamp(44px, 4vw, 58px);
  margin-bottom: 12px;
}
.monthly-stats {
  margin: 12px 0;
}
.monthly-stat {
  padding: 11px 12px;
}
.monthly-stat strong {
  font-size: 30px;
}
.monthly-checklist {
  gap: 6px;
  padding-bottom: 11px;
}
.monthly-next {
  margin-top: 11px;
  padding: 11px 12px;
}

.problem {
  padding: 78px 0 84px;
}
.problem h2 {
  font-size: clamp(36px, 3.8vw, 52px);
}
.problem-list {
  margin-top: 42px;
}
.problem-item {
  padding-top: 24px;
  padding-bottom: 24px;
}
.problem-close {
  margin-top: 46px;
  font-size: clamp(34px, 3.8vw, 50px);
}

#solution {
  padding-top: 76px;
  padding-bottom: 76px;
}
#solution .section-head {
  margin-bottom: 34px;
}
.solution-content {
  gap: 44px;
}
.solution-title {
  font-size: clamp(34px, 3.5vw, 46px);
}
.solution-pillars {
  margin-top: 24px;
}
.pillar {
  padding: 16px 0;
}
.flow-visual {
  padding: 24px;
}
.flow-label {
  margin-bottom: 16px;
}
.flow-step {
  padding: 12px 0;
}

.steps-grid {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  padding: 28px 22px 58px;
  min-height: 250px;
}
.step .num {
  margin-bottom: 18px;
}
.step h3 {
  font-size: 26px;
}
.step-icon {
  bottom: 24px;
  left: 24px;
}

#why .section-head,
#compare .section-head {
  margin-bottom: 36px;
}
#why .section-title,
#compare .section-title {
  font-size: clamp(34px, 3.6vw, 48px);
}
.why {
  min-height: 138px;
  padding: 22px;
}
.why h3 {
  font-size: 23px;
  margin-top: 16px;
}
.why-close {
  margin-top: 34px;
  padding: 24px 28px;
  font-size: clamp(28px, 3vw, 40px);
}

.compare th,
.compare td {
  padding: 15px 20px;
}
.compare-cta {
  margin-top: 38px;
  padding: 30px 28px;
  gap: 14px;
}
.compare-cta p {
  font-size: clamp(30px, 3.4vw, 46px);
}

.pricing-hero {
  margin-bottom: 30px;
}
.pricing-hero h2 {
  font-size: clamp(36px, 4.4vw, 62px);
}
.pricing-cards-row {
  margin-top: 0;
}
.price-card {
  padding: 26px 24px 24px;
}
.price-desc {
  margin-bottom: 16px;
}
.price-cta {
  min-height: 50px;
  margin-bottom: 18px;
}
.price-features {
  padding-top: 13px;
}
.price-features li {
  padding: 5px 0;
}
.pricing-included {
  margin-top: 30px;
  padding: 30px 32px;
}
.pricing-note {
  margin-top: 22px;
}
.pricing-binding {
  font-weight: 600;
}

.use-grid {
  gap: 12px;
}
.use-body {
  padding: 22px;
}
.use-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
}
.use-body h3 {
  font-size: 23px;
}
.use-fit-note {
  margin-top: 28px;
  padding: 26px 28px;
}

.trust h2 {
  font-size: clamp(34px, 4vw, 50px);
}
.trust p {
  margin-bottom: 24px;
}
.trust-list li {
  padding: 20px;
}

.faq-layout {
  gap: 58px;
}
.faq-item {
  padding: 20px 0;
}

.final-cta {
  padding: 96px 0;
}
.final-cta h2 {
  font-size: clamp(42px, 5.8vw, 76px);
  margin-bottom: 24px;
}
.final-cta p {
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }
  .nav-inner {
    padding: 10px 0;
  }
  .logo .brand-logo-image {
    height: 28px;
    max-width: min(180px, 44vw);
  }
  .nav-links {
    gap: 8px;
  }
  .nav-links .btn {
    min-height: 42px;
    padding: 10px 13px;
    font-size: 12px;
  }
  .nav-links a:not(.btn) {
    display: none;
  }

  .hero {
    padding: 22px 0 38px;
  }
  .hero-grid {
    gap: 18px;
  }
  .hero-tag {
    margin-bottom: 14px;
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(31px, 8.2vw, 38px);
    line-height: 1.03;
    margin-bottom: 13px;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .hero-ctas {
    gap: 12px;
  }
  .hero .hero-ctas {
    align-items: center;
  }
  .hero-ctas .btn {
    min-height: 52px;
  }
  .hero .hero-ctas .btn-primary {
    width: auto;
    min-width: 144px;
  }
  .hero .hero-ctas .btn-ghost {
    padding: 10px 0;
  }
  .hero-trust {
    margin-top: 10px;
  }
  .hero-panel {
    width: 100%;
  }
  .dashboard {
    width: 100%;
    padding: 12px;
    border-radius: 16px;
  }
  .monthly-period {
    margin-bottom: 5px;
  }
  .monthly-title {
    font-size: 16px;
  }
  .monthly-progress {
    padding-bottom: 10px;
  }
  .monthly-progress p {
    font-size: 12px;
    margin-top: 6px;
  }
  .progress-value {
    font-size: clamp(34px, 10.5vw, 42px);
    margin-bottom: 7px;
  }
  .progress-bar {
    height: 6px;
  }
  .monthly-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 9px 0;
  }
  .monthly-stat {
    padding: 8px;
    border-radius: 11px;
  }
  .monthly-stat strong {
    font-size: 24px;
  }
  .monthly-stat span {
    font-size: 10px;
    line-height: 1.2;
  }
  .monthly-checklist {
    gap: 5px;
    padding-bottom: 9px;
  }
  .monthly-checklist li {
    font-size: 12px;
  }
  .check-dot {
    height: 14px;
    width: 14px;
  }
  .monthly-next {
    margin-top: 9px;
    padding: 10px;
    border-radius: 11px;
  }

  .problem {
    padding: 54px 0 60px;
  }
  .problem h2 {
    font-size: clamp(30px, 8vw, 38px);
    max-width: 16ch;
  }
  .problem-list {
    margin-top: 28px;
  }
  .problem-item,
  .problem-item:nth-child(odd) {
    padding: 18px 0;
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }
  .problem-item h3 {
    font-size: 21px;
    margin-bottom: 5px;
  }
  .problem-item p {
    line-height: 1.42;
  }
  .problem-close {
    margin-top: 28px;
    font-size: clamp(28px, 8vw, 38px);
  }

  #solution {
    padding-top: 46px;
    padding-bottom: 46px;
  }
  #solution .section-head {
    margin-bottom: 24px;
  }
  .solution-content {
    gap: 22px;
  }
  .solution-title {
    font-size: clamp(27px, 7.3vw, 34px);
    max-width: 100%;
    overflow-wrap: normal;
  }
  .solution-text p {
    max-width: none;
  }
  .flow-visual {
    padding: 16px;
    border-radius: 8px;
  }
  .flow-step {
    padding: 10px 0;
  }
  .flow-step .body strong {
    font-size: 14px;
  }
  .flow-step .body span {
    font-size: 12px;
  }
  .pillar {
    padding: 14px 0;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
  }
  .step,
  .step:nth-child(odd),
  .step:nth-child(even) {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 0;
    padding: 15px 16px;
  }
  .step:first-child {
    border-top: 0;
  }
  .step .num {
    display: block;
    position: static;
    margin: 0 0 5px;
  }
  .step h3 {
    font-size: 21px;
    margin-bottom: 6px;
  }
  .step p {
    font-size: 14px;
    line-height: 1.45;
  }
  .step-icon {
    display: none;
  }

  #why .section-head,
  #compare .section-head {
    margin-bottom: 24px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .why {
    min-height: 0;
    padding: 14px;
  }
  .why .icon {
    width: 24px;
    height: 24px;
  }
  .why h3 {
    font-size: 20px;
    margin: 10px 0 3px;
  }
  .why p {
    font-size: 13px;
  }
  .why-close {
    margin-top: 22px;
    padding: 18px;
    font-size: clamp(24px, 7vw, 32px);
  }

  .compare-cards {
    gap: 7px;
  }
  .compare-card {
    padding: 11px 12px;
  }
  .compare-card h3 {
    font-size: 19px;
    margin-bottom: 6px;
  }
  .compare-card p {
    font-size: 12px;
    line-height: 1.35;
  }
  .compare-card p + p {
    margin-top: 5px;
  }
  .compare-cta {
    margin-top: 22px;
    padding: 22px 18px;
    gap: 12px;
  }
  .compare-cta p {
    font-size: clamp(25px, 7.5vw, 34px);
  }

  .pricing-hero {
    margin-bottom: 22px;
  }
  .pricing-hero h2 {
    font-size: clamp(31px, 9vw, 40px);
    margin-bottom: 14px;
  }
  .pricing-hero p {
    font-size: 15px;
  }
  .price-card {
    padding: 18px 16px;
  }
  .price-card .ribbon {
    top: 18px;
    right: 18px;
    left: auto;
    transform: none;
  }
  .price-name {
    margin-bottom: 10px;
  }
  .price-tag .amount {
    font-size: clamp(34px, 10vw, 44px);
  }
  .price-desc {
    margin-bottom: 10px;
  }
  .price-cta {
    min-height: 46px;
    margin-bottom: 14px;
  }
  .price-features {
    padding-top: 10px;
  }
  .price-features li {
    padding: 4px 0;
  }
  .pricing-included {
    margin-top: 22px;
    padding: 22px 18px;
    gap: 18px;
  }
  .pricing-included h3 {
    font-size: clamp(26px, 7.5vw, 34px);
  }
  .pricing-note {
    padding: 16px;
  }

  .use-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .use-body {
    padding: 18px;
  }
  .use-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
  }
  .use-body .num {
    margin-bottom: 6px;
  }
  .use-body h3 {
    font-size: 22px;
  }
  .use-body p {
    margin-bottom: 10px;
  }
  .use-tags {
    margin-top: 10px;
  }
  .use-fit-note {
    margin-top: 18px;
    padding: 18px;
  }
  .use-fit-note h3 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .trust h2 {
    font-size: clamp(30px, 8.5vw, 40px);
  }
  .trust p {
    margin-bottom: 18px;
  }
  .trust-list li {
    padding: 16px;
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }
  .trust-list .icon {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .faq-layout {
    gap: 20px;
  }
  .faq-item {
    padding: 16px 0;
  }
  .faq-q {
    font-size: 20px;
    gap: 14px;
  }
  .faq-a-inner {
    padding-top: 10px;
    font-size: 14px;
  }

  .final-cta {
    padding: 52px 0;
  }
  .final-cta h2 {
    font-size: clamp(34px, 10vw, 48px);
    margin-bottom: 18px;
  }
  .final-cta p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .final-cta .hero-ctas {
    align-items: stretch;
  }
  .final-cta .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .footer {
    padding: 50px 0 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }
}

@media (max-width: 430px) {
  .nav-links .btn-secondary {
    display: inline-flex;
  }
  .nav-links {
    gap: 6px;
  }
  .nav-links .btn {
    font-size: 11px;
    min-height: 38px;
    padding: 8px 9px;
  }
  .nav-links .btn-primary {
    padding-inline: 10px;
  }
  .nav-links .btn .arr {
    display: none;
  }
  .logo .brand-logo-image {
    max-width: min(142px, 42vw);
  }
}

/* Mobile QA hardening: prevent clipping and horizontal overflow on public landing. */
@media (max-width: 768px) {
  body,
  .grain,
  .nav,
  .hero,
  .section,
  .problem,
  .final-cta,
  .footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .nav-inner,
  .nav-links,
  .hero-grid,
  .hero-grid > *,
  .hero-tag,
  .hero-panel,
  .dashboard,
  .monthly-head,
  .monthly-progress,
  .monthly-stats,
  .monthly-checklist,
  .section-head,
  .section-head > *,
  .solution-content,
  .solution-content > *,
  .flow-visual,
  .flow-step,
  .flow-step > *,
  .steps-grid,
  .step,
  .why-grid,
  .why,
  .compare-wrap,
  .compare-cards,
  .compare-card,
  .compare-cta,
  .pricing-cards-row,
  .price-card,
  .pricing-included,
  .pricing-note,
  .use-grid,
  .use,
  .use-fit-note,
  .trust-layout,
  .trust-list,
  .trust-list li,
  .faq-layout,
  .final-inner,
  .footer-grid {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .nav {
    width: 100%;
  }

  .nav-links {
    justify-content: flex-end;
    width: auto;
    max-width: max-content;
    flex: 0 1 auto;
  }

  .section-head {
    overflow: visible;
  }

  .section-title,
  .problem h2,
  .solution-title,
  #why .section-title,
  #compare .section-title,
  .pricing-hero h2,
  .trust h2,
  .final-cta h2 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-panel,
  .dashboard {
    overflow: visible;
  }

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

  .dashboard {
    box-shadow: 0 18px 48px -32px rgba(21, 20, 15, 0.34);
  }

  .monthly-head {
    align-items: flex-start;
  }

  .monthly-status {
    font-size: 9px;
    padding: 6px 8px;
  }

  .monthly-stat,
  .monthly-next,
  .price-card,
  .pricing-included,
  .use,
  .why,
  .compare-card,
  .trust-list li {
    overflow-wrap: break-word;
  }

  .solution-title {
    font-size: clamp(28px, 7.6vw, 36px);
    line-height: 1.08;
  }

  .solution-title span {
    display: block;
  }

  .flow-step {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .flow-step .tag {
    max-width: 100%;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
  }

  .step,
  .step:nth-child(odd),
  .step:nth-child(even) {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 0;
    padding: 16px;
    position: relative;
  }

  .step:first-child {
    border-top: 0;
  }

  .step .num {
    display: block;
    position: static;
    margin: 0 0 6px;
  }

  .step h3,
  .step p {
    max-width: 100%;
  }

  .pricing-cards-row {
    background: transparent;
    border: 0;
    border-radius: 0;
    display: grid;
    gap: 12px;
    overflow: visible;
  }

  .price-card,
  .price-card:first-child,
  .price-card.featured,
  .price-card.featured + .price-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    margin: 0;
    overflow: visible;
  }

  .price-card.featured {
    border-color: var(--ink);
  }

  .price-card .ribbon {
    align-self: flex-start;
    left: auto;
    margin: 0 0 12px;
    position: static;
    right: auto;
    top: auto;
    transform: none;
  }

  .price-tag,
  .price-features li {
    min-width: 0;
  }

  .price-tag {
    flex-wrap: wrap;
  }

  .pricing-included ul {
    min-width: 0;
  }

  .compare-cta,
  .final-cta {
    overflow: hidden;
  }

  .final-cta::before {
    display: none;
  }

  .final-cta .hero-ctas,
  .final-cta .hero-ctas .btn,
  .footer,
  .footer-grid,
  .footer-bottom {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-tag {
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .hero h1 {
    font-size: clamp(30px, 8.5vw, 35px);
  }

  .hero-ctas {
    gap: 10px;
  }

  .monthly-head {
    gap: 10px;
  }

  .monthly-title {
    font-size: 16px;
  }

  .monthly-status {
    padding: 5px 7px;
  }

  .monthly-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .progress-value {
    font-size: clamp(34px, 10.5vw, 42px);
  }

  .solution-title {
    font-size: clamp(28px, 8vw, 34px);
  }

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

  .pricing-hero h2 {
    font-size: clamp(30px, 8vw, 36px);
  }

  .price-card {
    padding: 18px 16px;
  }

  .final-cta h2 {
    font-size: clamp(31px, 9vw, 42px);
  }
}

@media (max-width: 390px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .dashboard {
    padding: 10px;
  }

  .monthly-checklist {
    gap: 5px;
  }

  .monthly-next strong {
    font-size: 12px;
  }

  .hero-sub,
  .solution-text p,
  .section-sub {
    font-size: 14px;
  }

  .step {
    padding: 14px;
  }
}

/* Final conversion polish: tighter sections and compact mobile cards. */
.section {
  padding-top: min(var(--section-y), 78px);
  padding-bottom: min(var(--section-y), 78px);
}

.hero {
  padding: 48px 0 64px;
}

.dashboard {
  padding: 18px;
}

.monthly-title {
  font-size: 19px;
}

.progress-value {
  font-size: clamp(38px, 3.6vw, 52px);
}

.step {
  padding: 24px 20px 48px;
  min-height: 220px;
}

.step .num {
  margin-bottom: 13px;
}

.why {
  min-height: 132px;
  padding: 20px;
}

.why-highlight {
  box-shadow: inset 0 0 0 1px rgba(217, 133, 74, 0.26), 0 16px 34px rgba(21, 20, 15, 0.08);
}

.why h3 {
  margin-top: 14px;
}

.compare-card {
  padding: 14px;
}

.compare-cards {
  gap: 9px;
}

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

.price-desc {
  margin-bottom: 12px;
}

.price-cta {
  margin-bottom: 12px;
}

.final-cta h2 {
  font-size: clamp(38px, 5.2vw, 70px);
}

@media (max-width: 800px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .hero {
    padding: 18px 0 32px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero h1 {
    margin-bottom: 11px;
  }

  .hero-sub {
    margin-bottom: 12px;
  }

  .dashboard {
    padding: 10px;
  }

  .monthly-head {
    margin-bottom: 8px;
  }

  .monthly-period {
    font-size: 10px;
    margin-bottom: 3px;
  }

  .monthly-title {
    font-size: 15px;
  }

  .monthly-status {
    font-size: 8px;
    padding: 5px 7px;
  }

  .monthly-progress {
    padding-bottom: 8px;
  }

  .progress-value {
    font-size: clamp(29px, 8.2vw, 36px);
    margin-bottom: 6px;
  }

  .monthly-progress p {
    font-size: 11px;
    margin-top: 5px;
  }

  .monthly-stats {
    gap: 6px;
    margin: 7px 0;
  }

  .monthly-stat {
    padding: 7px;
  }

  .monthly-stat strong {
    font-size: 22px;
  }

  .monthly-stat span {
    font-size: 10px;
  }

  .monthly-checklist {
    gap: 4px;
    padding-bottom: 8px;
  }

  .monthly-checklist li {
    font-size: 11px;
  }

  .monthly-next {
    margin-top: 8px;
    padding: 8px;
  }

  .monthly-next strong {
    font-size: 12px;
  }

  #solution,
  .problem {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .steps-grid {
    border-radius: 8px;
  }

  .step,
  .step:nth-child(odd),
  .step:nth-child(even) {
    padding: 12px 14px;
  }

  .step .num {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .step h3 {
    font-size: 19px;
    margin-bottom: 4px;
  }

  .step p {
    font-size: 13px;
    line-height: 1.38;
  }

  .why-grid {
    gap: 7px;
  }

  .why {
    padding: 12px;
  }

  .why .icon {
    width: 22px;
    height: 22px;
  }

  .why h3 {
    font-size: 19px;
    margin: 9px 0 3px;
  }

  .why p {
    font-size: 12px;
  }

  .compare-cards {
    gap: 6px;
  }

  .compare-card {
    padding: 10px 11px;
  }

  .compare-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .compare-card p {
    font-size: 12px;
    line-height: 1.32;
  }

  .price-card {
    padding: 16px 15px;
  }

  .price-desc {
    margin-bottom: 8px;
  }

  .price-cta {
    min-height: 44px;
    margin-bottom: 10px;
  }

  .price-features {
    padding-top: 8px;
  }

  .price-features li {
    padding: 3px 0;
  }

  .final-cta {
    padding: 44px 0;
  }

  .final-cta h2 {
    font-size: clamp(32px, 9vw, 44px);
  }
}

/* Mobile-only hero simplification. Desktop hero styles above stay untouched. */
@media (max-width: 800px) {
  .hero .hero-tag,
  .hero .hero-sub,
  .hero .hero-trust,
  .hero .monthly-next {
    display: none;
  }

  .hero h1 {
    line-height: 0.93;
    margin-bottom: 12px;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero .hero-ctas {
    margin-top: 0;
  }

  .hero .hero-ctas .btn-ghost {
    display: none;
  }

  .hero .hero-ctas .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .dashboard {
    padding: 10px;
  }

  .monthly-head {
    margin-bottom: 7px;
  }

  .monthly-progress {
    padding-bottom: 8px;
  }

  .progress-value {
    margin-bottom: 6px;
  }

  .monthly-stats {
    margin-top: 8px;
  }
}

/* Hero viewport ownership: keep the next section below the first screen. */
@media (min-width: 801px) {
  .hero {
    min-height: calc(100vh - 63px);
    min-height: calc(100svh - 63px);
    display: flex;
    align-items: center;
    padding-top: clamp(36px, 4vh, 56px);
    padding-bottom: clamp(36px, 4vh, 64px);
  }

  .hero > .container {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .hero {
    min-height: calc(100vh - 49px);
    min-height: calc(100svh - 49px);
    display: flex;
    align-items: flex-start;
    padding-top: clamp(68px, 12svh, 112px);
    padding-bottom: 16px;
  }

  .hero > .container {
    width: 100%;
  }

  .hero-grid {
    align-content: start;
    gap: 12px;
  }

  .monthly-stats {
    margin-bottom: 0;
  }
}

/* Dedicated mobile hero composition. Desktop remains unchanged. */
@media (max-width: 800px) {
  .hero {
    min-height: calc(100vh - 49px);
    min-height: calc(100svh - 49px);
    align-items: flex-start;
    padding-top: clamp(28px, 5svh, 36px);
    padding-bottom: 14px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-content: start;
  }

  .hero .hero-tag {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 7px 11px 7px 9px;
    max-width: 100%;
  }

  .hero .hero-tag span:last-child {
    font-size: 0;
  }

  .hero .hero-tag span:last-child::after {
    content: "Fast pris · Fortnox";
    font-size: 11px;
  }

  .hero h1 {
    max-width: 100%;
    margin: 0 0 8px;
    font-size: clamp(38px, 10.7vw, 48px);
    line-height: 0.91;
    letter-spacing: -0.018em;
  }

  .hero h1 em {
    font-size: 0;
  }

  .hero h1 em::after {
    content: "till fast pris";
    font-size: clamp(38px, 10.7vw, 48px);
  }

  .hero .hero-sub {
    display: none;
    max-width: 100%;
    margin: 0 0 13px;
    font-size: 0;
    line-height: 0;
  }

  .hero .hero-sub::after {
    content: "Vi sköter bokföringen i Fortnox. Avvikelser fångas upp innan något bokförs.";
    display: block;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.42;
  }

  .hero .hero-ctas {
    width: 100%;
    margin: 0;
    gap: 0;
  }

  .hero .hero-ctas .btn-primary {
    width: 100%;
    min-height: 52px;
    padding: 15px 22px;
    justify-content: center;
  }

  .hero .hero-ctas .btn-ghost {
    display: none;
  }

  .hero .hero-trust {
    display: none;
    margin: 6px 0 0;
    text-align: center;
  }

  .hero .hero-trust span {
    font-size: 0;
  }

  .hero .hero-trust span::after {
    content: "För tjänstebolag · Ingen bindningstid · Fortnox";
    color: var(--ink-3);
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-panel {
    width: 100%;
    margin-top: -10px;
    position: relative;
    z-index: 1;
  }

  .dashboard {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 24px 58px -34px rgba(21, 20, 15, 0.52), 0 14px 28px -20px rgba(184, 91, 42, 0.24);
  }

  .monthly-head {
    margin-bottom: 10px;
  }

  .monthly-period {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .monthly-title {
    font-size: 0;
    line-height: 1.15;
  }

  .monthly-title::after {
    content: "Din bokföring är nästan klar";
    font-size: 17px;
  }

  .monthly-progress {
    padding: 0 0 11px;
  }

  .progress-value {
    margin-bottom: 8px;
    font-size: 0;
    line-height: 0.95;
  }

  .progress-value::after {
    content: "99% klart";
    font-size: clamp(40px, 11vw, 48px);
  }

  .progress-bar {
    height: 7px;
  }

  .monthly-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 10px 0 0;
  }

  .monthly-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
    padding: 11px 10px;
    border-radius: 13px;
  }

  .monthly-stat strong {
    display: inline;
    flex-shrink: 0;
    font-size: 28px;
  }

  .monthly-stat span {
    display: inline;
    margin: 0;
    font-size: 0;
    line-height: 1.1;
  }

  .monthly-stat:first-child span::after {
    content: "hanterade";
    font-size: 11px;
  }

  .monthly-stat.warning span::after {
    content: "kräver input";
    font-size: 11px;
  }

  .monthly-next {
    display: none;
  }

  .hero-panel::after {
    content: none;
  }
}

@media (max-width: 390px) {
  .hero h1,
  .hero h1 em::after {
    font-size: clamp(35px, 10.2vw, 40px);
  }

  .hero .hero-sub::after {
    font-size: 14px;
  }

  .hero-panel {
    margin-top: -8px;
  }

  .dashboard {
    padding: 14px;
  }
}

/* Mobile hero rebuild: substantial first-screen composition, desktop untouched. */
@media (max-width: 800px) {
  .hero {
    min-height: calc(100vh - 49px);
    min-height: calc(100svh - 49px);
    align-items: flex-start;
    padding-top: clamp(26px, 4.8svh, 38px);
    padding-bottom: 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
  }

  .hero .hero-tag {
    display: inline-flex;
    margin: 0 0 16px;
    padding: 8px 13px 8px 10px;
  }

  .hero .hero-tag span:last-child {
    font-size: 0;
  }

  .hero .hero-tag span:last-child::after {
    content: "Fast pris · Fortnox";
    font-size: 12px;
  }

  .hero h1 {
    margin: 0 0 14px;
    max-width: 100%;
    font-size: clamp(42px, 11.6vw, 50px);
    line-height: 0.96;
    letter-spacing: -0.018em;
  }

  .hero h1 em {
    font-size: 0;
  }

  .hero h1 em::after {
    content: "till fast pris";
    font-size: clamp(42px, 11.6vw, 50px);
  }

  .hero .hero-sub {
    display: block;
    max-width: 100%;
    margin: 0 0 18px;
    font-size: 0;
    line-height: 0;
  }

  .hero .hero-sub::after {
    content: "Vi sköter bokföringen i Fortnox. Avvikelser fångas upp innan något bokförs.";
    display: block;
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.42;
  }

  .hero .hero-ctas {
    width: 100%;
    margin: 0;
  }

  .hero .hero-ctas .btn-primary {
    width: 100%;
    min-height: 56px;
    padding: 17px 24px;
    justify-content: center;
    font-size: 16px;
  }

  .hero .hero-ctas .btn-ghost,
  .hero .hero-trust {
    display: none;
  }

  .hero-panel {
    width: 100%;
    margin-top: 24px;
  }

  .hero-panel::after {
    content: none;
  }

  .dashboard {
    width: 100%;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 28px 70px -34px rgba(21, 20, 15, 0.54), 0 16px 34px -22px rgba(184, 91, 42, 0.26);
  }

  .monthly-head {
    margin-bottom: 16px;
  }

  .monthly-period {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .monthly-title {
    font-size: 20px;
    line-height: 1.15;
  }

  .monthly-title::after {
    content: none;
  }

  .monthly-progress {
    padding: 0 0 16px;
  }

  .progress-value {
    margin-bottom: 12px;
    font-size: clamp(42px, 11vw, 54px);
    line-height: 0.95;
  }

  .progress-value::after {
    content: none;
  }

  .progress-bar {
    height: 8px;
  }

  .monthly-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 0;
  }

  .monthly-stat {
    display: block;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .monthly-stat strong {
    display: block;
    font-size: 34px;
  }

  .monthly-stat span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.18;
  }

  .monthly-stat span::after {
    content: none !important;
  }

  .monthly-stat.warning span {
    font-size: 0;
  }

  .monthly-stat.warning span::after {
    content: "kräver input" !important;
    font-size: 12px;
  }

  .monthly-next,
  .monthly-checklist {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero {
    padding-top: 24px;
  }

  .hero h1,
  .hero h1 em::after {
    font-size: clamp(39px, 11vw, 44px);
  }

  .hero .hero-sub::after {
    font-size: 15px;
  }

  .hero-panel {
    margin-top: 20px;
  }

  .dashboard {
    padding: 20px;
  }
}
