:root {
  --bg: #0a2530;
  --bg-deep: #051a23;
  --panel: #0e2f3a;
  --panel-strong: #13544a;
  --panel-soft: #123940;
  --border: #3fc0a8;
  --border-soft: rgba(63, 192, 168, 0.35);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --accent: #ffd84a;
  --accent-strong: #ff7a1a;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius: 12px;
  --radius-large: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-frame {
  width: min(1200px, 100%);
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 42px;
  background: transparent;
  z-index: 0;
}

.site-header::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
}

.site-header::before {
  background: var(--bg-deep);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.site-nav a.is-active,
.footer-nav a.is-active {
  color: var(--accent);
}

.main-shell {
  background: var(--bg);
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 72px 42px;
  background: var(--bg);
}

.section-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-copy h1,
.content-section h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 48px);
  line-height: 1;
  font-weight: 800;
}

.hero-subtitle,
.lead {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: var(--muted);
  font-weight: 500;
}

.offer-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offer-card {
  display: grid;
  grid-template-columns: 255px 100px minmax(220px, 1fr) 278px;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.offer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius-large);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-logo:hover,
.button-primary:hover,
.compliance-logos a:hover {
  transform: translateY(-2px);
}

.offer-logo img {
  max-height: 112px;
  object-fit: contain;
}

.offer-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.offer-score strong {
  font-size: 48px;
  line-height: 1.2;
}

.offer-score span {
  font-size: 18px;
  line-height: 1.4;
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 18px;
}

.offer-copy p {
  margin: 0;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.offer-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.payments-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px;
  background: var(--bg);
  border-radius: 6px;
}

.payment-pill img {
  max-height: 20px;
  width: auto;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 206px;
  padding: 14px 28px;
  border: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #2a1500;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.28);
}

.button-wide {
  width: 100%;
}

.info-block,
.text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-block h2,
.text-block h2,
.text-block h3 {
  margin: 0;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.info-block p,
.text-block p,
.text-block li,
.content-section p,
.legal-entry p,
.legal-entry li {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: var(--muted);
  font-weight: 500;
}

.info-block a,
.text-block a,
.legal-entry a {
  color: var(--accent);
}

.text-block ul,
.legal-entry ul {
  margin: 0;
  padding-left: 22px;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 42px 72px;
}

.content-section-tight {
  padding-top: 48px;
}

.content-section h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1;
  font-weight: 800;
}

.content-page {
  min-height: 860px;
  background: var(--bg);
}

.legal-page {
  gap: 20px;
}

.legal-entry {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-entry h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: rgba(63, 160, 165, 0.35);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.form-status {
  display: none;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--accent);
}

.form-status.is-visible {
  display: block;
}

.site-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 42px;
  background: transparent;
  z-index: 0;
}

.site-footer::before {
  background: var(--bg-deep);
}

.footer-line {
  width: 100%;
  border-top: 1px solid #1f2535;
}

.compliance-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.compliance-logos img {
  max-height: 48px;
  width: auto;
}

.compliance-logos a {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.copyright {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 56px 34px;
  background: rgba(0, 0, 0, 0.24);
}

.cookie-modal.is-hidden {
  display: none;
}

.cookie-card {
  width: min(100%, 1004px);
  padding: 28px 20px 20px;
  background: #052530;
  border-radius: 12px;
}

.cookie-kicker {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.64);
}

.cookie-card h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1;
  font-weight: 800;
}

.cookie-card p {
  margin: 0 0 12px;
  max-width: 930px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
}

.button-cookie {
  margin-top: 8px;
  min-width: 209px;
}

@media (max-width: 1120px) {
  .offer-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .offer-logo,
  .offer-actions,
  .offer-copy,
  .offer-score {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .site-frame {
    width: 100%;
    margin: 0 auto;
  }

  .site-header,
  .hero-section,
  .content-section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .site-nav,
  .footer-nav {
    gap: 14px 18px;
  }

  .site-nav a,
  .footer-nav a {
    font-size: 18px;
  }

  .info-block p,
  .text-block p,
  .text-block li,
  .content-section p,
  .legal-entry p,
  .legal-entry li,
  .hero-subtitle,
  .lead {
    font-size: 18px;
  }

  .compliance-logos {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  body {
    background: var(--bg);
  }

  .site-frame {
    width: 100%;
    margin: 0;
  }

  .brand {
    font-size: 20px;
  }

  .offer-card {
    padding: 18px;
  }

  .offer-logo {
    height: auto;
    min-height: 140px;
  }

  .button-primary {
    width: 100%;
    min-width: 0;
  }

  .cookie-modal {
    padding: 20px 12px;
    align-items: flex-end;
  }

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

  .cookie-card p {
    font-size: 16px;
  }
}
