:root {
  --primary: #E50914;
  --primary-dark: #B20710;
  --secondary: #564D4D;
  --dark: #141414;
  --light: #FFFFFF;
  --bg: #F5F5F5;
  --text: #333333;
  --text-light: #666666;
  --border: #E0E0E0;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-dark: rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* Header - improved contrast */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--light);
  z-index: 100;
  padding: 12px 0;
  box-shadow: 0 2px 10px var(--shadow-dark);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 20px var(--shadow-dark);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 22px;
}

.logo img {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav > a {
  color: var(--dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
  padding: 8px 4px;
}

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

.lang-switch {
  display: flex;
  gap: 6px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 2px solid var(--border);
}

.lang-switch a {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  border: 1px solid var(--border);
}

.lang-switch a.active {
  background: var(--primary);
  color: var(--light);
  border-color: var(--primary);
}

.lang-switch a:hover:not(.active) {
  background: var(--border);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--light) 0%, var(--bg) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
  color: var(--dark);
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary {
  background: var(--dark);
  color: white;
}

.btn-secondary:hover {
  background: #2a2a2a;
}

.hero-trial {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

.hero-video {
  position: relative;
}

.video-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  cursor: pointer;
}

.video-container img {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(229, 9, 20, 0.5);
  border: 4px solid rgba(255,255,255,0.3);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(229, 9, 20, 0.6);
}

.play-button svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

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

.features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--dark);
}

.features-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 60px;
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 12px;
  background: var(--light);
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(229, 9, 20, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: var(--light);
}

.pricing h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--dark);
}

.pricing-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 60px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px;
  border-radius: 16px;
  background: var(--light);
  border: 2px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--primary);
}

.pricing-card.popular {
  border-color: var(--primary);
  position: relative;
  box-shadow: 0 8px 32px rgba(229, 9, 20, 0.15);
}

.pricing-card.popular::before {
  content: attr(data-label);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--dark);
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.pricing-card .price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card .price-note {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: rgba(229, 9, 20, 0.1);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E50914' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Payment Methods & Trust Badges */
.payment-section {
  padding: 60px 0;
  background: var(--bg);
  text-align: center;
}

.payment-section h3 {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 500;
}

.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.payment-methods svg {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.payment-methods svg:hover {
  opacity: 1;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

/* Footer */
footer {
  background: var(--dark);
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  color: var(--light);
}

.footer-brand .logo img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--light);
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

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

.footer-company {
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-copyright {
  font-size: 12px;
  opacity: 0.6;
}

/* Modal / Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal {
  background: var(--light);
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--border);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
}

.modal h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--dark);
}

.modal p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.modal .form-group {
  margin-bottom: 16px;
}

.modal .form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.modal .form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 15px;
  transition: border-color 0.2s;
}

.modal .form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.modal .btn {
  width: 100%;
  margin-top: 8px;
}

.modal-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
}

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

/* Cookie Banner - Enhanced */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--light);
  padding: 24px;
  z-index: 1000;
  box-shadow: 0 -4px 30px var(--shadow-dark);
  display: none;
  border-top: 1px solid var(--border);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
}

.cookie-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.cookie-accept {
  background: var(--primary);
  color: white;
  border: none;
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-settings {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}

.cookie-settings:hover {
  border-color: var(--text);
}

.cookie-reject {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-light);
}

.cookie-reject:hover {
  border-color: var(--text);
  color: var(--text);
}

/* Cookie Settings Modal */
.cookie-modal {
  max-width: 600px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option-info h4 {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 4px;
}

.cookie-option-info p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border);
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .slider {
  background: var(--primary);
}

.cookie-toggle input:checked + .slider:before {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + .slider {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  background: var(--light);
}

.legal-page h1 {
  font-size: 36px;
  margin-bottom: 32px;
  color: var(--dark);
}

.legal-page h2 {
  font-size: 22px;
  margin: 40px 0 16px;
  color: var(--dark);
}

.legal-page h3 {
  font-size: 18px;
  margin: 24px 0 12px;
  color: var(--dark);
}

.legal-page p, .legal-page li {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 24px;
}

.legal-page .last-updated {
  font-size: 14px;
  color: var(--text-light);
  opacity: 0.7;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Contact Page */
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-form {
  max-width: 100%;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-video {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }

  nav > a:not(.lang-switch a) {
    display: none;
  }

  .lang-switch {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  .hero-content h1 {
    font-size: 32px;
  }

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

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .modal {
    padding: 24px;
  }

  .payment-methods {
    gap: 16px;
  }

  .trust-badges {
    gap: 20px;
  }
}
