:root {
  --ink: #101828;
  --muted: #5f6b7a;
  --line: #d8dee8;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --navy: #16213e;
  --teal: #0f8f8c;
  --teal-dark: #0a6765;
  --amber: #f5a524;
  --red: #cf2e2e;
  --green: #16a36b;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.header-actions,
.hero-actions,
.trust-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  font-size: 14px;
}

.header-actions {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(15, 143, 140, 0.24);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-outline {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.button-whatsapp {
  color: #fff;
  background: #1f9d55;
}

.hero,
.problem-section,
.offer-section,
.benefits-section,
.authority-section,
.comparison-section,
.form-section,
.faq-section,
.final-cta {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.72fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(120deg, rgba(22, 33, 62, 0.9), rgba(22, 33, 62, 0.78)),
    radial-gradient(circle at 78% 20%, rgba(245, 165, 36, 0.28), transparent 28%),
    linear-gradient(135deg, #16213e, #0f8f8c);
  color: #fff;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.trust-list {
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.lead-panel,
.pain-grid article,
.offer-cards article,
.benefit-grid article,
.dashboard,
.authority-list,
.contact-box,
.full-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.lead-panel {
  padding: 28px;
  color: var(--ink);
}

.lead-panel h2 {
  font-size: 28px;
}

.lead-panel p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8d0dc;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 143, 140, 0.16);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.problem-section,
.benefits-section,
.comparison-section,
.faq-section {
  background: var(--soft);
}

.problem-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.section-text {
  max-width: 680px;
}

.section-text p,
.section-heading p,
.pain-grid p,
.offer-cards p,
.benefit-grid p,
.authority-list span,
.faq-list p,
.final-cta p {
  color: var(--muted);
}

.pain-grid,
.benefit-grid,
.offer-cards {
  display: grid;
  gap: 16px;
}

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

.pain-grid article,
.offer-cards article,
.benefit-grid article {
  padding: 22px;
}

.pain-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

.offer-section,
.authority-section,
.form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.offer-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(15, 143, 140, 0.14), transparent 45%),
    #f9fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard {
  width: min(86%, 430px);
  padding: 24px;
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.dashboard-top span {
  width: 12px;
  height: 12px;
  background: #c4cad4;
  border-radius: 50%;
}

.risk-score {
  display: grid;
  gap: 4px;
  padding: 22px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}

.risk-score strong {
  font-size: 54px;
  line-height: 1;
}

.signal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.signal-row:last-child {
  border-bottom: 0;
}

.signal-row p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.signal {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.signal.safe {
  background: var(--green);
}

.signal.warn {
  background: var(--amber);
}

.offer-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0;
}

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

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

.authority-list {
  display: grid;
  gap: 0;
  padding: 10px 24px;
}

.authority-list div {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.authority-list div:last-child {
  border-bottom: 0;
}

.authority-list strong {
  color: var(--navy);
  font-size: 20px;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.table-row > div {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.table-row > div:first-child {
  border-right: 1px solid var(--line);
}

.table-row:last-child > div {
  border-bottom: 0;
}

.table-head {
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.form-section {
  align-items: start;
}

.contact-box {
  display: grid;
  gap: 8px;
  max-width: 430px;
  margin-top: 24px;
  padding: 18px;
}

.contact-box a {
  color: var(--teal-dark);
  font-weight: 900;
}

.full-form {
  grid-template-columns: 1fr 1fr;
  padding: 28px;
}

.wide-field,
.full-form .button,
.full-form .form-note {
  grid-column: 1 / -1;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  color: #fff;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(22, 33, 62, 0.96), rgba(10, 103, 101, 0.92)),
    #16213e;
}

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

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer span {
  color: var(--navy);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero,
  .problem-section,
  .offer-section,
  .authority-section,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .pain-grid,
  .benefit-grid,
  .offer-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .header-actions {
    display: none;
  }

  .hero,
  .problem-section,
  .offer-section,
  .benefits-section,
  .authority-section,
  .comparison-section,
  .form-section,
  .faq-section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions,
  .hero-actions .button,
  .lead-panel .button,
  .full-form .button {
    width: 100%;
  }

  .pain-grid,
  .benefit-grid,
  .offer-cards,
  .full-form,
  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row > div:first-child {
    border-right: 0;
  }

  .table-head > div:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .offer-visual {
    min-height: 330px;
  }

  .site-footer {
    flex-direction: column;
  }
}
