:root {
  --sr-deep-green: #043f2e;
  --sr-panel-green: #1f8b57;
  --sr-green: #6eb400;
  --sr-light-green: #aae600;
  --sr-black: #282828;
  --sr-dark-grey: #8c8c8c;
  --sr-grey: #dedddc;
  --sr-light-grey: #f3f5f8;
  --sr-white: #ffffff;
  --sr-red: #f4541d;
  --sr-yellow: #ffcd1c;
  --sr-blue: #3394f3;
  --sr-radius: 20px;
  --sr-radius-lg: 26px;
  --sr-pill: 40px;
  --sr-shadow: 0 28px 80px rgba(4, 63, 46, 0.18);
  --sr-shadow-soft: 0 12px 40px rgba(4, 63, 46, 0.1);
  --sr-content-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--sr-black);
  background: var(--sr-deep-green);
  font-family: var(--sr-font-family);
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--sr-heading-font);
}

h1 {
  max-width: 920px;
  margin: 0 auto 0.4em;
  color: var(--sr-white);
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
}
h2 {
  color: var(--sr-black);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.6em;
}
h3 {
  color: var(--sr-black);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.6em;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--sr-content-width), calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  color: var(--sr-white);
}
.brand { grid-column: 2; justify-self: center; }
.brand img { width: 178px; height: auto; }
.nav-links {
  grid-column: 1; grid-row: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem; font-weight: 700;
}
.nav-links a:hover { color: var(--sr-light-green); }
.site-header .btn { grid-column: 3; grid-row: 1; justify-self: end; }

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--sr-pill);
  padding: 0 1.55rem;
  font-size: 1rem; font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-large { min-height: 60px; padding: 0 2rem; font-size: 1.06rem; }
.btn-primary {
  color: var(--sr-white);
  background: linear-gradient(135deg, var(--sr-green), var(--sr-light-green));
  box-shadow: 0 18px 40px rgba(110,180,0,0.24);
}
.btn-outline, .btn-ghost {
  color: var(--sr-white);
  border: 2px solid rgba(255,255,255,0.72);
  background: transparent;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 122px max(20px, calc((100vw - var(--sr-content-width)) / 2)) 64px;
  color: var(--sr-white);
  background-color: var(--sr-deep-green);
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -18% -36% -18%;
  height: 46%;
  background: radial-gradient(circle at 50% 0, rgba(31,139,87,0.55), transparent 66%);
  pointer-events: none;
}
.hero-copy {
  position: relative; z-index: 1;
  width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--sr-light-green);
  font-size: 0.82rem; font-weight: 800;
  text-transform: uppercase;
}
.lead-text {
  max-width: 760px;
  margin: 0 auto 0.9rem;
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 600;
  line-height: 1.5;
}
.lead-text-secondary { color: rgba(255,255,255,0.78); font-weight: 500; }
.lead-text-dark { color: var(--sr-black); font-weight: 600; font-size: 1.1rem; max-width: 820px; margin: 0 auto 0.8rem; }
.trust-line {
  margin: 1.6rem 0 0.7rem;
  color: var(--sr-light-green);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.guarantee-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; padding: 0; margin: 0 0 1.6rem;
  list-style: none;
}
.guarantee-chips li {
  border-radius: var(--sr-pill);
  padding: 0.5rem 0.95rem;
  color: var(--sr-white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(170,230,0,0.36);
  font-size: 0.85rem; font-weight: 700;
}
.actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px; margin: 0.6rem 0 1rem;
}
.cta-confirm {
  max-width: 680px; margin: 0.4rem auto 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem; line-height: 1.5;
}

/* Hero visual */
.hero-visual {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: min(960px, 100%);
  margin: 60px auto 0;
}
.admin-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-radius: var(--sr-radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: left;
}
.admin-panel-label {
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.55);
}
.admin-panel-line {
  font-size: 0.86rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 10px; border-radius: 8px;
  background: rgba(0,0,0,0.18);
}
.admin-panel-line-warn { border-left: 3px solid var(--sr-red); }
.admin-panel-line-ok { border-left: 3px solid var(--sr-light-green); }
.visual-overlay {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--sr-deep-green);
  color: var(--sr-light-green);
  padding: 10px 20px;
  border-radius: var(--sr-pill);
  font-size: 0.92rem; font-weight: 800;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border: 1px solid rgba(170,230,0,0.45);
}

/* Content bands */
.content-band {
  padding: 80px max(20px, calc((100vw - var(--sr-content-width)) / 2));
  background: var(--sr-white);
}
.content-band.light-band { background: var(--sr-light-grey); }
.content-band.dark-band {
  background: var(--sr-deep-green);
  color: var(--sr-white);
}
.content-band.dark-band h2 { color: var(--sr-white); }
.content-band.dark-band h3 { color: var(--sr-white); }
.content-band.dark-band p { color: rgba(255,255,255,0.82); }
.section-heading {
  max-width: 820px;
  margin: 0 auto 2.4rem;
  text-align: center;
}
.section-heading p { font-size: 1.04rem; color: var(--sr-dark-grey); }
.content-band.dark-band .section-heading p { color: rgba(255,255,255,0.82); }
.section-closing {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: center;
  font-style: italic;
  color: var(--sr-dark-grey);
  font-size: 1.04rem;
}
.section-closing-light { color: rgba(255,255,255,0.85); }
.cta-row {
  display: flex; justify-content: center;
  margin-top: 2.4rem;
}

/* Problem mirror */
.monologue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: var(--sr-content-width);
  margin: 0 auto;
}
.monologue-card {
  background: var(--sr-white);
  border-radius: var(--sr-radius);
  padding: 28px 26px;
  box-shadow: var(--sr-shadow-soft);
  border-left: 4px solid var(--sr-yellow);
}
.monologue-emoji {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.monologue-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--sr-black);
  font-style: italic;
}

/* Cost table */
.cost-table-wrap {
  max-width: var(--sr-content-width);
  margin: 0 auto 0.75rem;
  overflow-x: auto;
  border-radius: var(--sr-radius);
  box-shadow: var(--sr-shadow-soft);
  background: var(--sr-white);
}
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
  table-layout: fixed;
}
.cost-table th, .cost-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--sr-grey);
  overflow-wrap: anywhere;
}
.cost-table th {
  background: var(--sr-deep-green);
  color: var(--sr-white);
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.cost-table tbody tr:nth-child(even) { background: rgba(110,180,0,0.04); }
.cost-table .summary-row td {
  font-weight: 800;
  background: var(--sr-deep-green);
  color: var(--sr-white);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.cost-table .summary-row:last-child td { border-bottom: none; }
.cost-table td:last-child { color: var(--sr-green); font-weight: 700; }
.cost-table .summary-row td:last-child { color: var(--sr-light-green); }
.table-footnote {
  max-width: var(--sr-content-width);
  margin: 0 auto 1.6rem;
  font-style: italic;
  color: var(--sr-dark-grey);
  font-size: 0.92rem;
  text-align: center;
}
.highlight-box {
  max-width: min(var(--sr-content-width), 1040px);
  margin: 0 auto 2.25rem;
  background: linear-gradient(135deg, var(--sr-green), var(--sr-light-green));
  color: var(--sr-white);
  padding: 22px 28px;
  border-radius: var(--sr-radius);
  font-size: 1.12rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 20px 50px rgba(110,180,0,0.22);
}

/* Calculator */
.calculator {
  max-width: 720px;
  margin: 0 auto;
  background: var(--sr-white);
  border-radius: var(--sr-radius);
  padding: 32px;
  box-shadow: var(--sr-shadow-soft);
  border: 1px solid var(--sr-grey);
}
.calculator h3 { font-size: 1.3rem; text-align: center; }
.calculator-subtitle {
  text-align: center;
  color: var(--sr-dark-grey);
  margin-bottom: 1.4rem;
  font-size: 0.96rem;
}
.calculator-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 20px;
  margin-bottom: 1.6rem;
}
.calculator-field span {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}
.calculator-input-wrap {
  display: flex; align-items: center;
  border: 1px solid var(--sr-grey);
  border-radius: var(--sr-pill);
  padding: 4px 16px;
  background: var(--sr-light-grey);
}
.calculator-input-wrap input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 0;
  outline: none;
  font-family: inherit;
  color: var(--sr-black);
}
.calculator-unit {
  margin-left: 8px;
  color: var(--sr-dark-grey);
  font-weight: 700;
  font-size: 0.92rem;
}
.calculator-result {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  background: var(--sr-deep-green);
  color: var(--sr-white);
  border-radius: var(--sr-radius);
  padding: 18px 22px;
  text-align: center;
}
.calculator-result strong {
  color: var(--sr-light-green);
  font-size: 1.6rem;
  font-weight: 800;
}

/* Dev dependency */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: var(--sr-content-width);
  margin: 0 auto 2.4rem;
}
.compare-card {
  border-radius: var(--sr-radius);
  padding: 28px 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.compare-card-bad { border-left: 4px solid var(--sr-red); }
.compare-card-good { border-left: 4px solid var(--sr-light-green); }
.compare-card h3 { color: var(--sr-white); margin-bottom: 1rem; }
.compare-card ul {
  list-style: none;
  padding: 0; margin: 0;
}
.compare-card li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: rgba(255,255,255,0.88);
  font-size: 0.96rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-card li:last-child { border-bottom: none; }
.compare-card-bad li::before {
  content: "✕";
  position: absolute; left: 0;
  color: var(--sr-red);
  font-weight: 800;
}
.compare-card-good li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--sr-light-green);
  font-weight: 800;
}

.essay-stack {
  display: grid;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.essay {
  background: rgba(255,255,255,0.04);
  border-radius: var(--sr-radius);
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,0.08);
}
.essay p { margin-bottom: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.65; }
.essay p:last-child { margin-bottom: 0; }
.essay-intro {
  color: var(--sr-light-green) !important;
  font-weight: 700;
  font-size: 1.04rem !important;
  margin-bottom: 1.1rem !important;
}

/* Migration timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.4rem;
  max-width: 880px;
  display: grid;
  gap: 16px;
}
.timeline-step {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  background: var(--sr-white);
  border-radius: var(--sr-radius);
  padding: 22px 26px;
  box-shadow: var(--sr-shadow-soft);
  border-left: 4px solid var(--sr-green);
}
.timeline-day {
  font-weight: 800;
  color: var(--sr-deep-green);
  font-size: 1.08rem;
  align-self: start;
}
.timeline-body h3 { margin-bottom: 0.4rem; }
.timeline-body p { margin: 0; color: var(--sr-dark-grey); font-size: 0.96rem; line-height: 1.55; }

.migration-table th { background: var(--sr-panel-green); }
.migration-table td:last-child { color: var(--sr-dark-grey); font-weight: 500; }

.guarantee-block {
  max-width: 760px;
  margin: 2.4rem auto 0;
  background: var(--sr-deep-green);
  color: var(--sr-white);
  border-radius: var(--sr-radius);
  padding: 28px 32px;
}
.guarantee-block h3 { color: var(--sr-white); }
.guarantee-list { list-style: none; padding: 0; margin: 0; }
.guarantee-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  font-weight: 600;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.guarantee-list li:last-child { border-bottom: none; }
.guarantee-check {
  color: var(--sr-light-green);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Multi proof */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: var(--sr-content-width);
  margin: 0 auto 2.4rem;
}
.case-card {
  background: var(--sr-white);
  border-radius: var(--sr-radius);
  padding: 28px 26px;
  box-shadow: var(--sr-shadow-soft);
  border-top: 4px solid var(--sr-green);
}
.case-card h3 { font-size: 1.04rem; color: var(--sr-deep-green); }
.case-card blockquote { margin: 0 0 1rem; padding: 0; }
.case-card blockquote p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sr-black);
  font-style: italic;
  margin-bottom: 0.6rem;
}
.case-card blockquote cite {
  font-style: normal;
  font-size: 0.86rem;
  color: var(--sr-dark-grey);
  font-weight: 700;
}
.before-after {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.8rem;
  table-layout: fixed;
}
.before-after th {
  background: var(--sr-light-grey);
  padding: 8px 10px;
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--sr-dark-grey);
}
.before-after td {
  padding: 8px 10px;
  border-top: 1px solid var(--sr-grey);
  color: var(--sr-black);
  overflow-wrap: anywhere;
}
.before-after td:last-child { color: var(--sr-green); font-weight: 700; }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  max-width: var(--sr-content-width);
  margin: 0 auto;
  padding: 22px 28px;
  background: var(--sr-deep-green);
  color: var(--sr-white);
  border-radius: var(--sr-radius);
  font-size: 0.9rem;
  font-weight: 700;
}
.trust-bar span {
  display: inline-flex;
  align-items: center;
}

/* Closing CTA */
.closing-band {
  padding: 90px max(20px, calc((100vw - var(--sr-content-width)) / 2));
  background: var(--sr-deep-green);
  color: var(--sr-white);
  text-align: center;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
}
.closing-copy {
  max-width: 840px;
  margin: 0 auto;
}
.closing-band h2 { color: var(--sr-white); margin-bottom: 1rem; }
.closing-band p {
  max-width: 760px;
  margin: 0 auto 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.04rem;
  line-height: 1.6;
}
.closing-line {
  font-weight: 700;
  color: var(--sr-light-green) !important;
  margin-top: 1.4rem !important;
}
.registration-form {
  max-width: 940px;
  margin: 36px auto 0;
  padding: 28px;
  border: 1px solid rgba(170,230,0,0.32);
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  color: var(--sr-black);
  text-align: left;
}
.registration-link-card {
  max-width: 720px;
  margin: 36px auto 0;
  padding: 28px;
  border: 1px solid rgba(170,230,0,0.32);
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  color: var(--sr-black);
  text-align: center;
}
.registration-form h3 {
  margin: 0 0 0.45rem;
  color: var(--sr-deep-green);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
}
.registration-link-card h3 {
  margin: 0 0 0.7rem;
  color: var(--sr-deep-green);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
}
.registration-form .registration-form-intro,
.registration-form .registration-form-note,
.registration-link-card .registration-form-intro,
.registration-link-card .registration-form-note {
  max-width: none;
  margin: 0 0 1.25rem;
  color: var(--sr-dark-grey);
  font-size: 0.96rem;
  line-height: 1.55;
}
.registration-link-card .btn {
  width: 100%;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.5rem;
}
.registration-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.registration-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--sr-deep-green);
  font-size: 0.9rem;
  font-weight: 800;
}
.registration-field-wide { grid-column: 1 / -1; }
.registration-field input {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--sr-grey);
  border-radius: 14px;
  background: var(--sr-white);
  color: var(--sr-black);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}
.registration-field input:focus {
  border-color: var(--sr-green);
  box-shadow: 0 0 0 4px rgba(170,230,0,0.22);
}
.registration-field small {
  color: var(--sr-dark-grey);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}
.registration-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  color: var(--sr-black);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}
.registration-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--sr-green);
  flex: 0 0 auto;
}
.registration-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.registration-form .btn {
  width: 100%;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.5rem;
  border: 0;
}
.registration-form .registration-form-note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
}
.registration-link-card .registration-form-note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: var(--sr-white);
  border-radius: var(--sr-radius);
  padding: 18px 22px;
  box-shadow: var(--sr-shadow-soft);
  border: 1px solid var(--sr-grey);
}
.content-band.light-band .faq-list details { background: var(--sr-white); }
.faq-list summary {
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
  color: var(--sr-deep-green);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--sr-green);
  font-weight: 800;
  font-size: 1.3rem;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--sr-black);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  z-index: 30;
  left: 16px;
  right: auto;
  bottom: 16px;
  width: min(760px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 32px;
  align-items: center;
  gap: 16px;
  background: var(--sr-deep-green);
  color: var(--sr-white);
  padding: 14px 18px;
  border-radius: var(--sr-radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.32);
  border: 1px solid rgba(170,230,0,0.36);
}
.sticky-cta[hidden] {
  display: none;
}
.sticky-cta-label {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  max-width: 680px;
}
.sticky-cta .btn {
  min-height: 44px;
  padding: 0 1.4rem;
  font-size: 0.92rem;
  justify-self: center;
}
.sticky-cta-close {
  background: transparent;
  border: 0;
  color: var(--sr-white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.6;
}
.sticky-cta-close:hover { opacity: 1; }

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px max(20px, calc((100vw - var(--sr-content-width)) / 2));
  background: var(--sr-black);
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.site-footer a:hover { color: var(--sr-light-green); }
.privacy-preferences {
  appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.privacy-preferences:hover { color: var(--sr-light-green); }

.klaro {
  --green1: var(--sr-green);
  --green2: var(--sr-light-green);
  --dark1: var(--sr-deep-green);
  --light1: var(--sr-white);
  --font-family: var(--sr-font-family);
}

.klaro .cookie-notice.cookie-notice:not(.cookie-modal-notice),
.klaro .cookie-modal .cm-modal.cm-modal {
  overflow: hidden;
  border: 1px solid rgba(4, 63, 46, 0.12);
  border-radius: var(--sr-radius) !important;
  background: var(--sr-white) !important;
  box-shadow: var(--sr-shadow) !important;
  color: var(--sr-black) !important;
  font-family: var(--sr-font-family);
}

.klaro .cookie-notice.cookie-notice:not(.cookie-modal-notice) {
  border-top: 5px solid var(--sr-green);
}

.klaro .cookie-notice .cn-body,
.klaro .cookie-modal .cm-header,
.klaro .cookie-modal .cm-body,
.klaro .cookie-modal .cm-footer,
.klaro .cm-services,
.klaro .cm-service,
.klaro .cm-purpose,
.klaro .cm-toggle-all {
  background: var(--sr-white) !important;
  color: var(--sr-black) !important;
}

.klaro .cookie-modal .cm-header {
  border-bottom: 1px solid var(--sr-grey);
}

.klaro .cookie-modal .cm-footer {
  border-top: 1px solid var(--sr-grey);
}

.klaro .cookie-title,
.klaro .cm-modal .title,
.klaro .cm-modal .cm-title,
.klaro .cm-purpose .cm-list-title,
.klaro .cm-list-title,
.klaro .cm-list-label {
  color: var(--sr-deep-green) !important;
  font-family: var(--sr-heading-font);
  font-weight: 800;
  letter-spacing: 0;
}

.klaro p,
.klaro .cm-list-description,
.klaro .cm-service p,
.klaro .cm-purpose p {
  color: var(--sr-black) !important;
}

.klaro .cm-link,
.klaro a {
  color: var(--sr-green) !important;
  font-weight: 700;
}

.klaro .cm-btn.cm-btn {
  min-height: 46px;
  min-width: 112px;
  border: 0;
  border-radius: var(--sr-pill) !important;
  padding: 0.86rem 1.55rem !important;
  font-family: var(--sr-font-family);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.klaro .cm-btn.cm-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.klaro .cm-btn-success,
.klaro .cm-btn-accept,
.klaro .cm-btn-accept-all {
  background: linear-gradient(135deg, var(--sr-green), var(--sr-light-green)) !important;
  box-shadow: 0 14px 32px rgba(110, 180, 0, 0.22) !important;
  color: var(--sr-white) !important;
}

.klaro .cm-btn-info,
.klaro .cm-btn-accept-selected {
  background: var(--sr-deep-green) !important;
  color: var(--sr-white) !important;
}

.klaro .cm-btn-danger,
.klaro .cm-btn-decline {
  background: var(--sr-grey) !important;
  color: var(--sr-black) !important;
}

.klaro .cm-btn-close {
  color: var(--sr-black);
}

.klaro .cm-list-input:checked + .cm-list-label .slider,
.klaro .cm-switch input:checked + .slider {
  background: linear-gradient(135deg, var(--sr-green), var(--sr-light-green));
}

.klaro .cm-list-input:focus + .cm-list-label .slider,
.klaro .cm-switch input:focus + .slider {
  box-shadow: 0 0 0 3px rgba(110, 180, 0, 0.18);
}

/* Mobile */
@media (max-width: 720px) {
  .site-header { grid-template-columns: 1fr 1fr; padding: 0 16px; }
  .brand { grid-column: 1; justify-self: start; }
  .nav-links { display: none; }
  .site-header .btn { grid-column: 2; }
  .hero { padding-top: 110px; }
  .hero-visual { grid-template-columns: 1fr; gap: 12px; }
  .visual-overlay { position: static; transform: none; display: block; margin: 4px auto 0; text-align: center; }
  .timeline-step { grid-template-columns: 1fr; gap: 8px; }
  .sticky-cta {
    display: flex;
    flex-wrap: wrap;
    width: calc(100vw - 32px);
  }
  .sticky-cta-label { max-width: 100%; }
  .content-band, .closing-band { padding-left: 16px; padding-right: 16px; padding-top: 56px; padding-bottom: 56px; }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(1.85rem, 10vw, 2.35rem);
  }

  h2 {
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .site-header {
    width: calc(100% - 24px);
    min-height: 84px;
    gap: 10px;
  }

  .brand img {
    width: 142px;
  }

  .site-header .btn {
    min-height: 40px;
    padding: 0 0.9rem;
    font-size: 0.78rem;
    text-align: center;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .hero-visual {
    margin-top: 36px;
  }

  .admin-panel,
  .monologue-card,
  .compare-card,
  .essay,
  .case-card,
  .calculator,
  .registration-form,
  .registration-link-card,
  .guarantee-block,
  .faq-list details {
    border-radius: 16px;
    padding: 20px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 1rem;
    text-align: center;
  }

  .guarantee-chips {
    align-items: stretch;
  }

  .guarantee-chips li {
    width: 100%;
    text-align: center;
  }

  .calculator {
    padding: 22px 18px;
  }

  .calculator-input-wrap {
    border-radius: 18px;
  }

  .cost-table-wrap {
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .cost-table,
  .cost-table thead,
  .cost-table tbody,
  .cost-table tr,
  .cost-table th,
  .cost-table td,
  .before-after,
  .before-after thead,
  .before-after tbody,
  .before-after tr,
  .before-after th,
  .before-after td {
    display: block;
    width: 100%;
  }

  .cost-table thead,
  .before-after thead {
    display: none;
  }

  .cost-table tr,
  .before-after tr {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--sr-grey);
    border-radius: 16px;
    background: var(--sr-white);
    box-shadow: var(--sr-shadow-soft);
  }

  .cost-table .summary-row {
    border-color: rgba(170,230,0,0.4);
    background: var(--sr-deep-green);
  }

  .cost-table tbody tr:nth-child(even) {
    background: var(--sr-white);
  }

  .cost-table tbody tr.summary-row {
    background: var(--sr-deep-green);
  }

  .cost-table th,
  .cost-table td,
  .before-after th,
  .before-after td {
    border-bottom: 1px solid var(--sr-grey);
    padding: 12px 14px;
    text-align: left;
  }

  .cost-table td::before,
  .before-after td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--sr-dark-grey);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .cost-table td:last-child,
  .before-after td:last-child {
    border-bottom: none;
  }

  .cost-table .summary-row td {
    background: transparent;
    border-bottom-color: rgba(255,255,255,0.18);
    color: var(--sr-white);
  }

  .cost-table .summary-row td::before {
    color: rgba(255,255,255,0.68);
  }

  .cost-table .summary-row td:first-child {
    padding-bottom: 8px;
    border-bottom: none;
    color: rgba(255,255,255,0.78);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .cost-table .summary-row td:first-child::before {
    display: none;
  }

  .cost-table .summary-row td:last-child {
    padding-top: 8px;
    color: var(--sr-light-green);
    font-size: 1.18rem;
    line-height: 1.25;
  }

  .cost-table .summary-row td:last-child::before {
    color: rgba(170,230,0,0.78);
  }

  .migration-table td:last-child {
    color: var(--sr-black);
    font-weight: 600;
  }

  .trust-bar {
    align-items: stretch;
    border-radius: 16px;
    padding: 18px;
  }

  .trust-bar span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .sticky-cta {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: 10px;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .sticky-cta-label {
    flex-basis: 100%;
    font-size: 0.84rem;
  }

  .sticky-cta .btn {
    flex: 1 1 auto;
    width: auto;
    min-height: 42px;
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
  }

  .sticky-cta-close {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .registration-form-grid {
    grid-template-columns: 1fr;
  }

  .registration-field-wide {
    grid-column: auto;
  }
}
