/* =========================================
   1. VARIABLES & SETUP
   ========================================= */
:root {
  --primary: #6e2bf3;
  --accent: #7b68e2;
  --secondary-accent: #6798dfc7;
  --dark: #0a0a18;
  --darker: #06060f;
  --light: #f5f5f7;
  --gray: #8a8aaa;
  --mobile-menu-bg: #1c102a;
  --mobile-menu-link-hover: #3a2b4d;
  --desktop-dropdown-bg: #15152b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* =========================================
   2. UI COMPONENTS (Buttons, Badges, Loaders)
   ========================================= */
/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--secondary-accent));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 0.8;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 25px rgba(123, 104, 226, 0.5);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
  background: #333;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Loaders & Messages */
.loader {
  display: none;
  width: 25px;
  height: 25px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.error-message {
  color: #ff6b6b;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.success-message {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(0, 255, 149, 0.1);
  border: 1px solid var(--secondary-accent);
  border-radius: 6px;
  color: var(--secondary-accent);
  margin-top: 20px;
}

.error-submission-message {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid #ff6b6b;
  border-radius: 6px;
  color: #ff6b6b;
  margin-top: 20px;
}

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.header.scrolled {
  background-color: rgba(10, 10, 24, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.logo i {
  margin-right: 10px;
  font-size: 28px;
  color: var(--accent);
}

/* Desktop Nav */
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
  display: block;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-links li:hover > a::after {
  width: 100%;
}

/* Desktop Dropdown */
.dropdown-arrow {
  margin-left: 5px;
  font-size: 10px;
  transition: transform 0.2s;
}

.desktop-dropdown-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.desktop-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: var(--desktop-dropdown-bg);
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.4);
  z-index: 1000;
  border-radius: 5px;
  overflow: hidden;
  padding: 10px 0;
  margin-top: 10px;
}

.desktop-dropdown-content a {
  color: var(--light);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
  font-weight: 400;
}

.desktop-dropdown-content a:hover {
  background-color: rgba(123, 104, 226, 0.1);
  color: var(--secondary-accent);
}

.desktop-dropdown-content a::after {
  content: none;
}

.desktop-dropdown-item:hover .desktop-dropdown-content {
  display: block;
}

/* Mobile Nav Elements */
.hamburger {
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  display: none;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background-color: var(--mobile-menu-bg);
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1002;
  padding-top: 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 0 20px 20px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s ease;
}

.mobile-nav-links li:hover {
  background-color: var(--mobile-menu-link-hover);
}

.mobile-nav-links .menu-item-link,
.mobile-nav-links .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  width: 100%;
  background: none;
  border: none;
  color: var(--light);
  text-align: left;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav-links .menu-item-link:hover,
.mobile-nav-links .dropdown-toggle:hover {
  color: var(--accent);
}

.mobile-nav-links .dropdown-toggle.active {
  color: var(--secondary-accent);
}

.mobile-nav-links .dropdown-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
  font-size: 14px;
}

.mobile-nav-links .dropdown-toggle.active .dropdown-icon {
  transform: rotate(180deg);
}

.mobile-dropdown {
  list-style: none;
  padding-left: 0;
  background-color: rgba(0, 0, 0, 0.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.mobile-dropdown a {
  display: block;
  padding: 10px 20px 10px 50px;
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.mobile-dropdown a:hover {
  color: var(--secondary-accent);
  background-color: rgba(123, 104, 226, 0.1);
}

/* =========================================
   4. HOME SECTIONS (Hero, Plans, Features)
   ========================================= */

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--darker), var(--dark));
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 54px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, white, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  margin-bottom: 40px;
}

.hero-feature {
  margin-right: 30px;
  display: flex;
  align-items: center;
}

.hero-feature i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 18px;
}

/* Section Common */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.section-subtitle {
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Plans */
.plans {
  padding: 100px 0;
  background: var(--darker);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.plan-card {
  background: linear-gradient(145deg, #0d0d1f, #0f0f20);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(110, 43, 243, 0.2);
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent);
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.plan-name {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
}

.plan-price {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.plan-price sup {
  font-size: 20px;
  position: relative;
  top: -15px;
}

.plan-price span {
  font-size: 16px;
  font-weight: normal;
  color: var(--gray);
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  margin-bottom: 12px;
  color: var(--gray);
}

.plan-features li i {
  color: var(--accent);
  margin-right: 8px;
}

.plan-card.popular {
  transform: scale(1.05);
  border-color: var(--accent);
  animation: pulse-border 4s infinite ease-in-out;
}

.popular-tag {
  position: absolute;
  top: 15px;
  right: -30px;
  background: linear-gradient(90deg, var(--accent), var(--secondary-accent));
  color: var(--dark);
  padding: 5px 40px;
  font-size: 14px;
  font-weight: 600;
  transform: rotate(45deg);
}

/* Features */
.features {
  padding: 100px 0;
  background: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  padding: 30px;
  text-align: center;
  background: linear-gradient(145deg, #0d0d1f, #0f0f20);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 36px;
  background: linear-gradient(135deg, var(--darker), var(--dark));
  color: var(--accent);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary-accent));
  z-index: -1;
  opacity: 0.7;
  animation: pulse 2s infinite;
}

.feature-title {
  margin-bottom: 15px;
  color: white;
}

.feature-description {
  color: var(--gray);
  font-size: 14px;
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--darker);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: linear-gradient(145deg, #0d0d1f, #0f0f20);
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid rgba(110, 43, 243, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(123, 104, 226, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--light);
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background: rgba(110, 43, 243, 0.1);
}

.accordion-header i {
  color: var(--accent);
  transition: transform 0.3s ease;
  font-size: 16px;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: var(--gray);
  font-size: 16px;
}

.accordion-content p {
  padding-bottom: 20px;
  padding-top: 10px;
}

/* Contact */
.contact {
  padding: 100px 0;
  background: var(--darker);
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(145deg, #0d0d1f, #0f0f20);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(110, 43, 243, 0.2);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  color: var(--light);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 240, 240, 0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-box {
  margin-top: 30px;
  padding: 20px;
  background: rgba(110, 43, 243, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

/* =========================================
   5. SPECIFIC PAGES (Legal, 404, Maintenance)
   ========================================= */

/* Legal Pages */
.legal-page {
  padding-top: 140px;
  padding-bottom: 100px;
}

.legal-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(110, 43, 243, 0.15);
  border-radius: 12px;
  padding: 45px;
  color: var(--gray);
  max-width: 1000px;
  margin: 0 auto;
  font-size: 13px;
  text-align: justify;
}

.legal-container h1 {
  color: var(--light);
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: left;
}

.legal-container h2 {
  color: var(--primary);
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-container p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.legal-container strong {
  color: var(--light);
}

.date-badge {
  font-size: 11px;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 2px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
}

.caps-section {
  text-transform: uppercase;
  font-weight: 500;
}

/* 404 & Maintenance Shared Styles */
.error-section,
.maintenance-section {
  padding: 160px 0 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

.error-container,
.maintenance-container {
  position: relative;
  z-index: 2;
}

/* 404 Specific */
.error-code {
  font-size: clamp(100px, 20vw, 180px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 30px rgba(110, 43, 243, 0.3));
}

.error-title,
.maintenance-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--light);
}

.error-message,
.maintenance-message {
  color: var(--gray);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.vortex-bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60vh;
  color: var(--primary);
  opacity: 0.03;
  z-index: 1;
  animation: rotateVortex 25s linear infinite;
}

/* Maintenance Specific */
.maintenance-icon {
  font-size: 80px;
  color: var(--primary);
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(110, 43, 243, 0.1);
  border: 1px solid var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

/* =========================================
   6. FOOTER
   ========================================= */
.footer {
  background: var(--darker);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h4 {
  color: var(--secondary-accent);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 15px;
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.footer-links a::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: bold;
}

.footer-links a:hover {
  color: var(--secondary-accent);
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  margin-right: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--accent);
  color: var(--darker);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--gray);
  font-size: 15px;
}

/* =========================================
   7. COOKIES & OVERLAYS
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--mobile-menu-bg);
  border-top: 2px solid var(--accent);
  padding: 20px 0;
  z-index: 2000;
  transition: bottom 0.5s ease-in-out;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  color: var(--light);
}

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

.btn-cookie-accept {
  background: var(--primary);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
}

.btn-cookie-reject {
  background: transparent;
  border: 1px solid var(--gray);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--light);
}

/* =========================================
   8. ANIMATIONS & PARTICLES
   ========================================= */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.particle {
  position: absolute;
  background-color: var(--accent);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.5; border-radius: 0; }
  25% { opacity: 0.7; }
  50% { transform: translateY(-100px) rotate(180deg); opacity: 0.2; border-radius: 50%; }
  75% { opacity: 0.7; }
  100% { transform: translateY(0) rotate(360deg); opacity: 0.5; border-radius: 0; }
}

@keyframes pulse-border {
  0% { border-color: rgba(123, 104, 226, 0.5); box-shadow: 0 0 10px rgba(123, 104, 226, 0.3); }
  50% { border-color: var(--accent); box-shadow: 0 0 20px var(--accent); }
  100% { border-color: rgba(123, 104, 226, 0.5); box-shadow: 0 0 10px rgba(123, 104, 226, 0.3); }
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  70% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes spin {
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateVortex {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* =========================================
   9. MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .plan-card.popular { transform: scale(1); animation: none; }
}

@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-overlay { display: none !important; }
  .nav-links { display: flex; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 36px; }
  .hero-features { flex-direction: column; }
  .hero-feature { margin-bottom: 15px; }
  .section-title { font-size: 30px; }
  .section-subtitle { font-size: 16px; }
  .cookie-container { text-align: center; justify-content: center; }
  .legal-container { padding: 20px; margin: 0 15px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 24px; }
  .plan-price { font-size: 34px; }
  .contact-wrapper { padding: 30px 20px; }
}
.cookie-banner { display: none; } 
  .cookie-banner.show { display: block; position: fixed; bottom: 0; width: 100%; background: #1a1a1a; z-index: 9999; }