@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --brand-primary: #0a1a3a;
  --brand-secondary: #1a3a6a;
  --brand-accent: #2ecc71;
  --brand-bg: #0c1e42;
  --brand-text: #ffffff;
  --brand-header-bg: #0a1535;
  --brand-btn-bg: #2ecc71;
  --brand-btn-text: #ffffff;
  --brand-btn-radius: 24px;
  --brand-head-font: 'Montserrat', sans-serif;
  --brand-body-font: 'Open Sans', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size: 14px;
  --brand-card-bg: #112244;
  --brand-border: #1a3a6a;
  --brand-muted: #8899bb;
  --brand-gradient: linear-gradient(135deg, #0a1535 0%, #0c1e42 40%, #1a3a6a 100%);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  color: var(--brand-text);
  background-color: var(--brand-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: #27ae60;
}

a:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  line-height: 1.25;
  color: var(--brand-text);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 14px;
  margin-top: 40px;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 10px;
  margin-top: 28px;
}

h4 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 8px;
  margin-top: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 10px;
  background: var(--brand-accent);
  color: var(--brand-btn-text);
  padding: 10px 20px;
  z-index: 100000;
  border-radius: var(--brand-btn-radius);
  font-weight: 700;
}

.skip-link:focus {
  top: 10px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--brand-header-bg);
  z-index: 10000;
  border-bottom: 1px solid var(--brand-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav ul li a {
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 4px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav ul li a:hover {
  color: var(--brand-accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
  white-space: nowrap;
  min-width: 44px;
  min-height: 44px;
  line-height: 1;
}

.btn:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.45);
  color: var(--brand-btn-text);
}

.btn-outline {
  background: transparent;
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
}

.btn-outline:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
  transform: translateY(-2px);
}

.btn-hero {
  padding: 16px 40px;
  font-size: 18px;
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  box-shadow: 0 6px 30px rgba(46, 204, 113, 0.4);
  border-radius: var(--brand-btn-radius);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(46, 204, 113, 0.55);
  color: var(--brand-btn-text);
}

.btn-cta {
  padding: 14px 32px;
  font-size: 16px;
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
  border-radius: var(--brand-btn-radius);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.5);
  color: var(--brand-btn-text);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  background: var(--brand-gradient);
  overflow: hidden;
  margin-top: 64px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(26, 58, 106, 0.5) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 20%, rgba(46, 204, 113, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.15);
  color: var(--brand-accent);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

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

.hero-subtitle {
  font-size: 18px;
  color: var(--brand-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-bonus {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: 12px;
  padding: 20px 30px;
  margin-bottom: 32px;
  display: inline-block;
}

.hero-bonus-amount {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--brand-accent);
  line-height: 1.1;
}

.hero-bonus-text {
  font-size: 14px;
  color: var(--brand-muted);
  margin-top: 4px;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--brand-head-font);
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  color: var(--brand-btn-text);
}

.floating-cta:focus {
  outline: 2px solid var(--brand-text);
  outline-offset: 2px;
}

.floating-cta-icon {
  font-size: 18px;
}

.content-section {
  padding: 60px 0;
}

.content-section:nth-child(even) {
  background: rgba(10, 21, 53, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header p {
  color: var(--brand-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.card {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  color: var(--brand-muted);
  font-size: 14px;
}

.info-block {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 28px;
}

.info-block h3 {
  margin-top: 0;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.details-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--brand-border);
  font-size: 14px;
}

.details-table td:first-child {
  color: var(--brand-muted);
  width: 40%;
  font-weight: 600;
}

.details-table tr:last-child td {
  border-bottom: none;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(26, 58, 106, 0.3) 100%);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 32px 0;
  text-align: center;
}

.highlight-box p {
  color: var(--brand-muted);
  margin-bottom: 20px;
}

.highlight-box .btn {
  margin-top: 8px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.pros, .cons {
  background: var(--brand-card-bg);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 24px;
}

.pros h3, .cons h3 {
  margin-top: 0;
  font-size: 16px;
}

.pros ul, .cons ul {
  margin-top: 12px;
}

.pros ul li, .cons ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--brand-muted);
  padding-left: 24px;
  position: relative;
}

.pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-accent);
  font-weight: 700;
}

.cons ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: 700;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.pill {
  display: inline-block;
  background: rgba(26, 58, 106, 0.6);
  border: 1px solid var(--brand-border);
  color: var(--brand-text);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  background: var(--brand-header-bg);
  border-top: 1px solid var(--brand-border);
  padding: 40px 0 20px;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 28px;
}

.footer-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 58, 106, 0.4);
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 10px 16px;
  min-height: 44px;
  min-width: 44px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-muted);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--brand-muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
  padding: 4px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.footer-disclaimer {
  text-align: center;
  color: var(--brand-muted);
  font-size: 12px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 0 20px;
}

.footer-copyright {
  text-align: center;
  color: var(--brand-muted);
  font-size: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--brand-border);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--brand-border);
  color: var(--brand-text);
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: rgba(26, 58, 106, 0.5);
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

.legal-page {
  padding: 100px 0 60px;
  min-height: 80vh;
}

.legal-page h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--brand-accent);
}

.legal-page h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-page p, .legal-page li {
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-page ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}

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

.legal-content {
  max-width: 800px;
}

.last-reviewed {
  font-size: 12px;
  color: var(--brand-muted);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--brand-border);
}

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--brand-border);
    gap: 0;
    z-index: 9999;
  }

  .mobile-nav-active ul li {
    width: 100%;
  }

  .mobile-nav-active ul li a {
    display: block;
    padding: 14px 8px;
    border-bottom: 1px solid var(--brand-border);
  }

  .header-cta .btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .hero {
    min-height: 65vh;
    padding: 100px 20px 50px;
  }

  .hero-bonus-amount {
    font-size: 2rem;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 90px 16px 40px;
  }

  .btn-hero {
    padding: 14px 32px;
    font-size: 16px;
  }

  .content-section {
    padding: 40px 0;
  }

  .info-block {
    padding: 20px;
  }

  .footer-logos {
    gap: 12px;
  }

  .footer-logo-item {
    padding: 8px 12px;
    font-size: 11px;
  }

  .floating-cta {
    bottom: 20px;
    right: 16px;
    padding: 12px 22px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 8px 12px;
  }

  .site-logo-img {
    height: 36px;
  }

  .hero {
    min-height: 55vh;
    padding: 80px 12px 36px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-bonus {
    padding: 16px 20px;
  }

  .details-table td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .details-table td:first-child {
    width: 45%;
  }

  .footer-links {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 320px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 12px;
  }

  .floating-cta {
    bottom: 14px;
    right: 10px;
    padding: 10px 18px;
    font-size: 13px;
  }
}