/* === BASE STYLES === */:root {
  --accent: #dc143c;
  --accent-bright: #ff1f4e;
  --accent-glow: rgba(220, 20, 60, 0.4);
  --accent-subtle: rgba(220, 20, 60, 0.12);
  --bg-deep: #0a0a0f;
  --bg-surface: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --bg-elevated: #1e1e2a;
  --border-subtle: rgba(255,255,255,0.07);
  --border-accent: rgba(220, 20, 60, 0.3);
  --gold: #f0c040;
  --gold-subtle: rgba(240, 192, 64, 0.15);
  --text-primary: #f0f0f8;
  --text-secondary: #9090a8;
  --text-muted: #5a5a72;
  --surface: #16161f;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-accent: 0 8px 40px rgba(220, 20, 60, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
}

h2 {
  color: var(--text-primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
}

h2::after {
  background: linear-gradient(90deg, var(--accent), transparent);
  bottom: -8px;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 60px;
}

h3 {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--accent-bright);
  text-decoration: none;
  transition: color var(--transition);
}

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

ul, ol {
  padding-left: 1.5rem;
}

li {
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.btn {
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.6rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #a00020);
  border: none;
  box-shadow: 0 4px 20px var(--accent-glow);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  box-shadow: 0 6px 30px var(--accent-glow);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c8960a);
  border: none;
  box-shadow: 0 4px 20px rgba(240, 192, 64, 0.35);
  color: #0a0a0f;
}

.btn-gold:hover {
  box-shadow: 0 6px 30px rgba(240, 192, 64, 0.5);
  color: #0a0a0f;
  transform: translateY(-2px);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: all var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), 0 0 20px var(--accent-subtle);
  transform: translateY(-3px);
}

.section-pad {
  padding: 5rem 0;
}

.section-pad-sm {
  padding: 3.5rem 0;
}

figure.content-image {
  border-radius: var(--radius-md);
  margin: 0 0 2rem 0;
  overflow: hidden;
}

figure.content-image img {
  border-radius: var(--radius-md);
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

figure.content-image.portrait {
  text-align: center;
}

figure.content-image.portrait img {
  height: auto;
  max-height: 480px;
  max-width: 100%;
  width: auto;
}

figure.content-image.wide img {
  width: 100%;
}

.table-responsive {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.feature-table {
  background: var(--bg-card);
  border-collapse: collapse;
  color: var(--text-secondary);
  width: 100%;
}

.feature-table thead tr {
  background: linear-gradient(90deg, rgba(220,20,60,0.2), rgba(220,20,60,0.05));
  border-bottom: 1px solid var(--border-accent);
}

.feature-table th {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 1rem 1.2rem;
  text-align: left;
  text-transform: uppercase;
}

.feature-table td {
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.9rem 1.2rem;
}

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

.feature-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

/* === LAYOUT STYLES === */
header {
  align-items: center;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  align-items: center;
  display: flex;
  flex-shrink: 0;
}

.hamburger {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  padding: 0.5rem;
  width: 44px;
}

.hamburger span {
  background: var(--text-primary);
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: all var(--transition);
  width: 22px;
}

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

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

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

header nav {
  align-items: center;
  display: flex;
}

header nav .nav-list {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav .nav-list li a {
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  transition: color var(--transition);
}

header nav .nav-list li a:hover {
  color: var(--text-primary);
}

.cta-button {
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  max-width: 200px;
  overflow: hidden;
  padding: 0.6rem 1.3rem;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 2rem 0;
}

.footer-inner {
  text-align: center;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

.footer-copy a {
  color: var(--text-secondary);
}

.footer-copy a:hover {
  color: var(--accent-bright);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.footer-legal a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--accent-bright);
}

@media (max-width: 767px) {
  header {
    flex-wrap: wrap;
    padding: 0.8rem 1rem;
  }

  .hamburger {
    display: flex;
  }

  header nav {
    display: none;
    flex-basis: 100%;
    order: 3;
  }

  header nav.is-open {
    display: flex;
  }

  header nav .nav-list {
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    width: 100%;
  }

  header nav .nav-list li {
    width: 100%;
  }

  header nav .nav-list li a {
    display: block;
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .cta-button {
    flex-basis: 100%;
    max-width: 100%;
    order: 4;
    text-align: center;
  }
}

@media (max-width: 767px) {
  header {
    flex-wrap: wrap;
    padding: 0.8rem 1rem;
  }

  .hamburger {
    display: flex;
  }

  header nav {
    display: none;
    flex-basis: 100%;
    order: 3;
  }

  header nav.is-open {
    display: flex;
  }

  header nav .nav-list {
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    width: 100%;
  }

  header nav .nav-list li {
    width: 100%;
  }

  header nav .nav-list li a {
    display: block;
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .cta-button {
    flex-basis: 100%;
    max-width: 100%;
    order: 4;
    text-align: center;
  }
}