:root {
  --bg: #2A0E05;
  --surface: #3A1408;
  --text: #FFF7ED;
  --muted: #FDBA74;
  --primary: #F97316;
  --secondary: #FB7185;
  --accent: #FACC15;
  --border: rgba(255,247,237,0.14);
  --max-w: 1200px;
  --font-ui: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --nav-left: #3A1408;
  --nav-right: #2A0E05;
  --kw-finance: finance;
  --kw-banking: banking;
  --kw-trust: trust;
  --kw-secure: secure;
  --kw-stable: stable;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-ui);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 12% -8%, rgba(249, 115, 22, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 90% 8%, rgba(251, 113, 133, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, var(--surface) 45%, var(--bg) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(250, 204, 21, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(249, 115, 22, 0.08) 0%, transparent 40%);
  opacity: 0.95;
}

body.finance.banking.trust.secure.stable {
  position: relative;
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary);
}

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

#offers .logo-placeholder img,
#offers .offer-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.disclosure-banner {
  width: calc(100% - 32px);
  max-width: 900px;
  margin: 8px auto;
  background: #FFF7ED;
  color: #2A0E05;
  font-size: 12px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  line-height: 1.5;
  position: relative;
  z-index: 20;
}

.disclosure-banner p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nav-half-left {
  background: var(--nav-left);
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  height: 60px;
}

.nav-half-right {
  background: var(--nav-right);
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  height: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-half-left .nav-half-inner {
  width: 100%;
  max-width: 600px;
  padding: 0 20px 0 24px;
  display: flex;
  align-items: center;
  height: 60px;
}

.nav-half-right .nav-half-inner {
  width: 100%;
  max-width: 600px;
  padding: 0 24px 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  height: 60px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.brand-lockup:hover {
  color: var(--primary);
}

.brand-lockup img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 14px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
}

.burger-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 140;
}

.nav-overlay.open {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 86vw);
  height: 100%;
  background: var(--bg);
  z-index: 150;
  padding: 64px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.4);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--text);
  padding: 12px 10px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.mobile-nav a:hover {
  color: var(--primary);
  background: rgba(255, 247, 237, 0.06);
}

.mobile-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(58, 20, 8, 0.9) 18%, var(--surface) 100%);
  padding: 48px 24px 32px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
  filter: blur(40px);
  pointer-events: none;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 650;
  width: fit-content;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-requisites {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.uk-disclosure {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 900px;
  opacity: 0.92;
}

.age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 8, 4, 0.86);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-overlay.active {
  display: flex;
}

.age-dialog {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.age-dialog h2 {
  font-size: 1.35rem;
  font-weight: 650;
  margin-bottom: 10px;
}

.age-dialog p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-confirm,
.btn-decline,
.cookie-actions button,
.contact-submit {
  font-family: var(--font-ui);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.9375rem;
}

.btn-confirm {
  background: var(--primary);
  color: var(--bg);
  font-weight: 650;
}

.btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.age-blocked {
  display: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.age-blocked.visible {
  display: block;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 250;
  width: min(640px, calc(100% - 24px));
  background: rgba(58, 20, 8, 0.97);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.cookie-banner.active {
  display: block;
}

.cookie-banner p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .accept {
  background: var(--primary);
  color: var(--bg);
  font-weight: 650;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 24px 48px;
}

.page-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
  font-weight: 650;
}

.page-content h2 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
  color: var(--primary);
  font-weight: 650;
}

.page-content p,
.page-content li {
  color: var(--muted);
  margin-bottom: 12px;
}

.page-content ul,
.page-content ol {
  padding-left: 1.25rem;
  margin-bottom: 14px;
}

.page-content li {
  margin-bottom: 6px;
}

.page-content strong {
  color: var(--text);
}

.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(58, 20, 8, 0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-ui);
  background: rgba(42, 14, 5, 0.85);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.95rem;
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: var(--secondary);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.email-error {
  display: none;
  color: var(--secondary);
  font-size: 0.8125rem;
}

.email-error.visible {
  display: block;
}

.contact-submit {
  background: var(--primary);
  color: var(--bg);
  font-weight: 650;
  align-self: flex-start;
}

.form-success {
  display: none;
  margin-top: 24px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.35);
  color: var(--text);
}

.form-success.visible {
  display: block;
}

.error-page {
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}

.error-page h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

.error-page a {
  display: inline-flex;
  padding: 12px 22px;
  background: var(--primary);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 650;
}

.error-page a:hover {
  color: var(--bg);
  background: var(--accent);
}

.go-page {
  text-align: center;
  padding: 72px 24px;
  max-width: 520px;
  margin: 0 auto;
}

.go-page h1 {
  font-size: 1.5rem;
  margin: 20px 0 10px;
}

.go-page p {
  color: var(--muted);
}

#AD {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.go-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border: 3px solid rgba(255, 247, 237, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-notes {
  margin-top: 28px;
  font-size: 0.8125rem;
}

.go-notes a {
  color: var(--accent);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
}

.decor-wrap {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

.decor-wrap img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
    background: var(--bg);
  }

  .nav-half-left,
  .nav-half-right {
    background: var(--bg);
    border-left: none;
  }

  .nav-half-left {
    flex: 1;
    justify-content: flex-start;
  }

  .nav-half-right {
    flex: 0 0 auto;
  }

  .nav-half-left .nav-half-inner,
  .nav-half-right .nav-half-inner {
    max-width: none;
  }

  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .decor-wrap {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .decor-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .disclosure-banner {
    width: calc(100% - 24px);
    padding: 10px 14px;
  }

  .footer-badges img {
    max-width: 100%;
  }
}
