/* === BASE STYLES === */:root {
  --primary: #9ee933;
  --primary-dark: #7bc020;
  --secondary: #5c1e85;
  --accent: #09e41f;
  --accent-purple: #5c1e85;
  --dark: #000000;
  --dark-light: #1a1a1a;
  --text: #FFFFFF;
  --text-muted: #B0B8D4;
  --success: #09e41f;
  --border-purple: #4d1472;
  --gradient-primary: linear-gradient(135deg, #9ee933 0%, #09e41f 100%);
  --gradient-secondary: linear-gradient(135deg, #5c1e85 0%, #4d1472 100%);
  --gradient-dark: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  --shadow-sm: 0 4px 12px rgba(158, 233, 51, 0.15);
  --shadow-md: 0 8px 24px rgba(158, 233, 51, 0.25);
  --shadow-lg: 0 16px 48px rgba(158, 233, 51, 0.35);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #000000;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

.container {
  max-width: 1320px;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: #5c1e85;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  color: var(--text);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: var(--text);
}

p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.btn {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  min-width: 44px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #9ee933;
  color: #000000;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background: #09e41f;
  color: #000000;
}

.btn-success {
  background: #9ee933;
  color: #000000;
  box-shadow: var(--shadow-md);
}

.btn-success:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background: #09e41f;
  color: #000000;
}

.btn-secondary {
  background: #000000;
  color: #9ee933;
  border: 2px solid #4d1472;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background: #9ee933;
  color: #000000;
  border-color: #9ee933;
}

.cta-button {
  background: #9ee933;
  color: #000000;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  min-width: 44px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background: #09e41f;
  color: #000000;
}

.cta-button:hover::before {
  left: 100%;
}

.card {
  background: var(--dark-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #4d1472;
}

.content-image {
  width: 100%;
  margin: 1.5rem 0;
  text-align: center;
}

.content-image img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

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

.content-image.wide img {
  width: 100%;
  height: auto;
  max-height: none;
}

.content-image figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-light);
}

thead {
  background: #5c1e85;
}

thead th {
  padding: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--text);
  white-space: nowrap;
}

tbody td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

tbody tr:hover {
  background: rgba(92, 30, 133, 0.1);
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

/* === LAYOUT STYLES === */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
  max-width: 180px;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu a:hover {
  background: rgba(158, 233, 51, 0.1);
  color: #9ee933;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #9ee933;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

header .cta-button {
  white-space: nowrap;
}

footer {
  background: var(--dark-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
  color: #9ee933;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
  padding: 0;
}

.footer-section ul a {
  color: var(--text-muted);
  transition: color 0.3s ease;
  display: inline-block;
  min-height: 44px;
  min-width: 44px;
  padding: 0.5rem 0;
}

.footer-section ul a:hover {
  color: #9ee933;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 767px) {
  header .container {
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .logo {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  header .cta-button {
    order: 2;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .hamburger {
    display: flex;
    order: 3;
    align-self: flex-end;
  }
  
  nav {
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    margin-top: 1rem;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    background: var(--dark-light);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
}

@media (max-width: 767px) {
  header .container {
    flex-wrap: wrap;
    flex-direction: column;
  }
  
  .logo {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  header .cta-button {
    order: 2;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .hamburger {
    display: flex;
    order: 3;
    align-self: flex-end;
  }
  
  nav {
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    margin-top: 1rem;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    background: var(--dark-light);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
}

@media (max-width: 767px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    padding: 4rem 0 3rem;
  }
  
  .hero-section::before,
  .hero-section::after {
    width: 300px;
    height: 300px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-section p {
    font-size: 1.0625rem;
  }
  
  .hero-section .cta-button {
    font-size: 1.0625rem;
    padding: 16px 40px;
    background: #000000;
    color: #FFFFFF;
    border: 2px solid #4d1472;
  }
  
  .hero-section .cta-button:hover {
    background: #000000;
    color: #FFFFFF;
    border-color: #5c1e85;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .table-of-contents nav ul {
    grid-template-columns: 1fr;
  }
  
  .advantage-block {
    padding: 1.5rem;
  }
  
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-section p {
    font-size: 1.0625rem;
  }
  
  .cta-section .cta-button {
    font-size: 1.0625rem;
    padding: 16px 40px;
  }
}