/* ===========================
   PLATINUM TROVE - CSS STYLES
   Tech Futuristic Design
   =========================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #E8F4F8;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #E8F4F8;
}

a {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00cccc;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

ul {
  list-style: none;
}

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

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

/* BUTTONS */
.btn-primary,
.btn-secondary,
.cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #00ffff 0%, #0099ff 100%);
  color: #0a0e27;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00cccc 0%, #0077cc 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
  color: #0a0e27;
}

.btn-secondary {
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00cccc;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
  color: #00ffff;
}

.btn-link {
  color: #00ffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-link:hover {
  color: #00cccc;
  gap: 12px;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #00ffff 0%, #0099ff 100%);
  color: #0a0e27;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 2px solid #00ffff;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #E8F4F8;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #00ffff;
  border-left-color: #00ffff;
  background: rgba(0, 255, 255, 0.05);
  padding-left: 24px;
}

/* HEADER */
header {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(10, 14, 39, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 255, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-top {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.contact-info {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-info span {
  color: #95A5A6;
  font-size: 14px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 32px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.tagline {
  font-size: 12px;
  color: #95A5A6;
  font-style: italic;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #E8F4F8;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff 0%, #0099ff 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.cta-button {
  padding: 12px 24px;
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: #95A5A6;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  color: #00ffff;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  font-size: 14px;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 0;
  position: relative;
}

.page-header {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
  border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: #95A5A6;
}

.breadcrumbs span {
  color: #00ffff;
}

.breadcrumbs a::after {
  content: '/';
  margin-left: 8px;
  color: #95A5A6;
}

.subtitle {
  font-size: 18px;
  color: #95A5A6;
  max-width: 600px;
  margin: 0 auto;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.benefits-grid,
.product-grid,
.features-grid,
.testimonial-grid,
.values-grid,
.stats-grid,
.tips-grid,
.methods-grid,
.actions-grid,
.rights-grid,
.cookies-grid,
.bundle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

/* CARDS */
.benefit-card,
.product-card,
.feature,
.testimonial-card,
.value-card,
.stat-card,
.tip-card,
.method-card,
.action-card,
.right-card,
.cookie-type,
.bundle-card {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(10, 14, 39, 0.8) 100%);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.benefit-card::before,
.product-card::before,
.feature::before,
.value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
  transition: all 0.5s ease;
}

.benefit-card:hover,
.product-card:hover,
.feature:hover,
.value-card:hover,
.action-card:hover,
.right-card:hover {
  transform: translateY(-8px);
  border-color: #00ffff;
  box-shadow: 0 8px 40px rgba(0, 255, 255, 0.2);
}

.benefit-card:hover::before,
.product-card:hover::before,
.feature:hover::before,
.value-card:hover::before {
  top: -25%;
  left: -25%;
}

.benefit-card img,
.feature img,
.value-card img,
.method-card img,
.action-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.4));
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #00ffff 0%, #0099ff 100%);
  color: #0a0e27;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #00ffff;
  margin: 20px 0;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.original-price {
  font-size: 18px;
  color: #95A5A6;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.bundle-price {
  font-size: 36px;
  font-weight: 700;
  color: #00ffff;
  margin: 16px 0;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* FEATURES LIST */
.features {
  list-style: none;
  margin: 20px 0;
}

.features li {
  padding: 8px 0;
  color: #E8F4F8;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.features li::before {
  content: '✓';
  color: #00ffff;
  font-weight: 700;
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonial-card {
  background: linear-gradient(135deg, rgba(232, 244, 248, 0.95) 0%, rgba(149, 165, 166, 0.95) 100%);
  color: #0a0e27;
  max-width: 500px;
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.testimonial-card p {
  color: #0a0e27;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.author strong {
  color: #2C3E50;
  font-size: 16px;
}

.author span {
  color: #2C3E50;
  font-size: 14px;
  opacity: 0.8;
}

/* STATS */
.stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat strong {
  font-size: 48px;
  color: #00ffff;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.stat span {
  color: #95A5A6;
  font-size: 14px;
}

/* STEPS */
.steps {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ffff 0%, #0099ff 100%);
  color: #0a0e27;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* PROBLEMS LIST */
.problem-list {
  max-width: 600px;
  margin: 40px auto;
}

.problem-list li {
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(0, 255, 255, 0.05);
  border-left: 3px solid #00ffff;
  border-radius: 8px;
  color: #E8F4F8;
}

.solution-intro {
  text-align: center;
  margin: 40px 0 32px;
  font-size: 24px;
  color: #00ffff;
}

/* GUIDE & TIPS */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 40px auto;
}

.guide-step {
  padding: 24px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.guide-step:hover {
  border-color: #00ffff;
  background: rgba(0, 255, 255, 0.1);
}

.guide-step h3 {
  color: #00ffff;
  margin-bottom: 12px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  padding: 24px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(10, 14, 39, 0.8) 100%);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00ffff;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.faq-item h3 {
  color: #00ffff;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(26, 31, 58, 0.6);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.content-wrapper h2 {
  color: #00ffff;
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper p,
.content-wrapper li {
  color: #E8F4F8;
  line-height: 1.8;
}

.content-wrapper ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-wrapper li {
  list-style: disc;
  margin-bottom: 8px;
}

.last-updated,
.effective-date {
  color: #95A5A6;
  font-size: 14px;
  margin-top: 16px;
}

/* CONTACT FORM */
.form-wrapper {
  max-width: 600px;
  margin: 40px auto;
}

.form-notice {
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid #00ffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.form-notice p {
  color: #E8F4F8;
  line-height: 1.6;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  color: #E8F4F8;
  font-weight: 600;
  font-size: 14px;
}

.field-placeholder {
  background: rgba(26, 31, 58, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #95A5A6;
  font-style: italic;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.required-note,
.privacy-link {
  font-size: 14px;
  color: #95A5A6;
  margin-top: 8px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img {
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.message {
  font-size: 20px;
  margin-bottom: 24px;
}

.email-confirmation {
  color: #95A5A6;
  margin-bottom: 32px;
}

/* CTA SECTIONS */
.cta-section,
.final-cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
  border-top: 2px solid rgba(0, 255, 255, 0.2);
  border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.guarantee {
  margin-top: 32px;
  color: #00ffff;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  border-top: 2px solid rgba(0, 255, 255, 0.2);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  color: #00ffff;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-col p,
.footer-col a {
  color: #95A5A6;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col a:hover {
  color: #00ffff;
  padding-left: 4px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #95A5A6;
  font-size: 14px;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #95A5A6;
  font-size: 14px;
}

.legal-links a:hover {
  color: #00ffff;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid #00ffff;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent.hidden {
  display: none;
}

.cookie-consent-text {
  color: #E8F4F8;
  font-size: 14px;
  flex: 1 1 300px;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00ffff 0%, #0099ff 100%);
  color: #0a0e27;
}

.cookie-btn-reject {
  background: transparent;
  color: #95A5A6;
  border: 1px solid #95A5A6;
}

.cookie-btn-settings {
  background: transparent;
  color: #00ffff;
  border: 1px solid #00ffff;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.95);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.98) 0%, rgba(10, 14, 39, 0.98) 100%);
  border: 2px solid #00ffff;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-category-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-category-info p {
  font-size: 14px;
  color: #95A5A6;
  margin: 0;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #95A5A6;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #00ffff 0%, #0099ff 100%);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-main {
    justify-content: space-between;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  .benefit-card,
  .product-card,
  .feature,
  .value-card,
  .action-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-consent {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .product-card,
  .feature,
  .value-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.benefit-card,
.product-card,
.feature,
.value-card {
  animation: fadeIn 0.6s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* FOCUS STYLES FOR ACCESSIBILITY */
a:focus,
button:focus {
  outline: 2px solid #00ffff;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-consent {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}