:root {
  --color-bg: #000;
  --color-surface: #111;
  --color-text: #fff;
  --color-text-dim: rgba(255,255,255,0.85);
  --color-accent: #7fe3a1;
  --color-accent-2: #2a8f88;
  --color-accent-dark: #1f7a6d;
  --color-ink: #181f1b;
  --radius-pill: 40px;
  --radius-card: 18px;
  --radius-console: 24px;
  --surface-glass: linear-gradient(160deg, rgba(20,26,34,0.82), rgba(10,14,20,0.9));
  --border-accent: 1px solid rgba(127,227,161,0.26);
  --elevation-soft: inset 0 0 24px rgba(127,227,161,0.06), 0 20px 46px rgba(0,0,0,0.45);
  --glow-soft: 0 0 12px rgba(127,227,161,0.45), 0 0 5px rgba(42,143,136,0.4);
  --glow-strong: 0 0 18px rgba(127,227,161,0.55), 0 0 8px rgba(42,143,136,0.46);
  color: rgba(232,240,248,0.92);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}

.cta-button:focus-visible,
.share-hero-btn-top:focus-visible,
.language-select:focus-visible,
.footer-link:focus-visible,
.gdpr-badge:focus-visible,
.modal-content button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.25);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 44px 20px 34px;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.96;
  filter: saturate(1.16) contrast(1.08) brightness(0.96);
  transition: filter 320ms ease, opacity 320ms ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.62));
  z-index: 2;
  transition: background 320ms ease;
}

.hero.video-day .bg-video {
  opacity: 0.92;
  filter: saturate(1.04) contrast(1.02) brightness(0.9);
}

.hero.video-day .overlay {
  background: radial-gradient(circle at center, rgba(0,0,0,0.28), rgba(0,0,0,0.72));
}

.hero.video-day::before {
  opacity: 0.14;
}

.hero.video-night .bg-video {
  opacity: 0.97;
  filter: saturate(1.2) contrast(1.1) brightness(0.98);
}

.hero.video-night .overlay {
  background: radial-gradient(circle at center, rgba(0,0,0,0.16), rgba(0,0,0,0.58));
}

.hero.video-night::before {
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 900px);
}

.hero-console {
  position: relative;
  padding: 22px 24px 24px;
  border-radius: var(--radius-console);
  border: var(--border-accent);
  background: linear-gradient(160deg, rgba(20,26,34,0.52), rgba(10,14,20,0.58));
  box-shadow: inset 0 0 20px rgba(180, 196, 214, 0.08), 0 18px 38px rgba(0,0,0,0.36);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.hero-console::before {
  content: '';
  position: absolute;
  top: -8%;
  left: -24%;
  width: 38%;
  height: 126%;
  background: linear-gradient(90deg, rgba(148, 168, 196, 0), rgba(148, 168, 196, 0.06), rgba(148, 168, 196, 0));
  transform: skewX(-18deg);
  animation: none;
  pointer-events: none;
}

.hero-console-head,
.hero-console-body,
.hero-console-actions {
  position: relative;
  z-index: 1;
}

.hero-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(57,255,20,0.2);
}

.logo-top-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-top-left .logo-text {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.45px;
}

.hero-console-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.language-select {
  height: 36px;
  min-width: 160px;
  padding: 7px 14px;
  background: rgba(148,168,196,0.08);
  border: 1px solid rgba(148,168,196,0.22);
  color: rgba(232,240,248,0.9);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.language-select:focus,
.language-select:hover {
  border-color: rgba(200,214,230,0.92);
  color: var(--color-ink);
  background: linear-gradient(90deg, rgba(200,214,230,0.92), rgba(134,154,182,0.9));
  box-shadow: 0 0 12px rgba(148,168,196,0.22);
}

.language-select:active {
  box-shadow: 0 0 16px rgba(148,168,196,0.26);
  background: linear-gradient(90deg, rgba(134,154,182,0.94), rgba(200,214,230,0.92));
  color: var(--color-ink);
}

.live-ticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(57,255,20,0.25);
  background: rgba(14,18,26,0.68);
  font-size: 12px;
  font-weight: 600;
  color: rgba(226,255,236,0.95);
  letter-spacing: 0.2px;
  text-align: center;
}

.hero-console-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding-top: 16px;
}

.hero-content h1 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: clamp(2.05rem, 5vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: 0.3px;
  text-wrap: balance;
}

.subtitle {
  font-size: clamp(1rem, 2.3vw, 1.3rem);
  opacity: 0.92;
  max-width: 780px;
  text-wrap: balance;
}

.subtitle strong {
  font-weight: 800;
}

.premium-line {
  font-size: clamp(0.95rem, 1.7vw, 1.12rem);
  opacity: 0.84;
  letter-spacing: 0.2px;
  max-width: 760px;
  margin-bottom: 6px;
  text-wrap: balance;
}

.hero-console-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.cta-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 28px;
  border-radius: 999px;
  border: var(--border-accent);
  text-decoration: none;
  color: #dfffe7;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(95deg, rgba(57,255,20,0.22), rgba(36,150,133,0.42));
  box-shadow: inset 0 0 20px rgba(57,255,20,0.13), 0 6px 24px rgba(0,0,0,0.35);
  transition: 0.3s;
}

.cta-button:hover {
  background: linear-gradient(95deg, rgba(57,255,20,0.82), rgba(36,150,133,0.9));
  color: var(--color-ink);
  box-shadow: var(--glow-soft);
  transform: translateY(-1px);
}

.cta-button:active::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  background: rgba(36,150,133,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.5s linear;
  pointer-events: none;
  z-index: 2;
}

#ctaButton {
  padding-right: 48px;
  animation: heroCtaPulse 4.8s ease-in-out infinite;
}

#ctaButton::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  border: 1px solid rgba(223,255,231,0.16);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#ctaButton::after {
  content: '→';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-52%);
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#ctaButton:hover::before {
  opacity: 1;
}

#ctaButton:hover::after {
  transform: translate(4px, -52%);
}

.share-hero-btn-top {
  position: relative;
  min-height: 40px;
  padding: 10px 20px;
  background: rgba(148,168,196,0.08);
  border: var(--border-accent);
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  animation: floatGlow 4.4s ease-in-out infinite;
}

.share-hero-btn-top:hover {
  border-color: var(--color-accent);
  color: var(--color-ink);
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
  box-shadow: var(--glow-soft);
}

.share-hero-btn-top:active {
  box-shadow: var(--glow-strong);
  background: linear-gradient(90deg, var(--color-accent-2) 0%, var(--color-accent) 100%);
  color: var(--color-ink);
}

.small-text {
  font-size: 0.88rem;
  opacity: 0.82;
  letter-spacing: 0.2px;
}

/* GDPR badge lighting effect */
.gdpr-badge {
  transition: box-shadow 0.2s, background 0.2s;
}

.gdpr-badge:hover {
  box-shadow: var(--glow-soft);
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
  color: var(--color-ink);
}

.gdpr-badge:active {
  box-shadow: var(--glow-strong);
  background: linear-gradient(90deg, var(--color-accent-2) 0%, var(--color-accent) 100%);
  color: var(--color-ink);
}

/* PARTICLES */
#particles {
  display: none;
}

.particle {
  position: absolute;
  bottom: -10px;
  width: 5px;
  height: 5px;
  background: rgba(42,143,136,0.58);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(42,143,136,0.58);
  animation: rise linear infinite;
}

@keyframes rise {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(-105vh);
    opacity: 0;
  }
}

@keyframes ripple {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0.7; }
  80% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes floatGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(255,255,255,0.04); }
  50% { box-shadow: 0 0 16px rgba(57,255,20,0.24); }
}

@keyframes heroCtaPulse {
  0%, 100% {
    box-shadow: inset 0 0 20px rgba(57,255,20,0.13), 0 6px 24px rgba(0,0,0,0.35);
  }
  50% {
    box-shadow: inset 0 0 24px rgba(57,255,20,0.18), 0 8px 26px rgba(0,0,0,0.38), 0 0 0 5px rgba(127,227,161,0.08);
  }
}

/* SECTION */
.section {
  padding: 80px 20px; /* overall section padding reduced for tighter layout */
  text-align: center;
  box-shadow: inset 0 0 36px rgba(170, 180, 196, 0.05), 0 0 24px rgba(0,0,0,0.26);
}



/* specific adjustments */
.cta-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 22%, rgba(127,227,161,0.14), rgba(0,0,0,0) 42%),
    radial-gradient(circle at 14% 80%, rgba(120,136,160,0.12), rgba(0,0,0,0) 34%),
    #000;
  padding: 26px 20px 34px;
}

.cta-panel {
  position: relative;
  width: min(100%, 640px);
  margin: 0 auto;
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(127,227,161,0.24);
  background: linear-gradient(160deg, rgba(18,24,32,0.92), rgba(10,14,20,0.96));
  box-shadow: inset 0 0 28px rgba(127,227,161,0.05), 0 18px 42px rgba(0,0,0,0.42);
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 10%, rgba(127,227,161,0.14), rgba(0,0,0,0) 28%);
  pointer-events: none;
}

.cta-panel-head,
.cta-panel-note,
.cta-button-mid {
  position: relative;
  z-index: 1;
}

.cta-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cta-panel-signal {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7fe3a1;
  box-shadow: 0 0 0 6px rgba(127,227,161,0.14), 0 0 18px rgba(127,227,161,0.28);
}

.cta-panel-signal::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(127,227,161,0.16);
}

.cta-panel-rail {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(127,227,161,0.4), rgba(127,227,161,0.04));
}

.cta-button-mid {
  min-height: 58px;
  min-width: min(100%, 320px);
  padding: 15px 34px;
  font-size: 1.04rem;
  letter-spacing: 0.35px;
  box-shadow: inset 0 0 24px rgba(127,227,161,0.12), 0 12px 30px rgba(0,0,0,0.36);
}

.cta-button-mid::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(223,255,231,0.92);
  box-shadow: 0 0 12px rgba(127,227,161,0.38);
}

.cta-button-mid::after {
  content: '›';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-52%);
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.9;
}

.cta-panel-note {
  margin: 14px auto 0;
  max-width: 430px;
  font-size: 0.9rem;
  line-height: 1.45;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.82);
}

.premium {
  padding-top: 40px; /* reduce top gap before conversion section */
}

.section.premium {
  background: var(--color-surface);
}

.section.dark {
  background:
    radial-gradient(circle at 10% 10%, rgba(135, 150, 170, 0.12), rgba(0,0,0,0) 34%),
    #000;
  padding-top: 60px;
}

.section.explanation {
  position: relative;
  background:
    radial-gradient(circle at 15% 15%, rgba(148, 168, 196, 0.07), rgba(0,0,0,0) 35%),
    radial-gradient(circle at 88% 80%, rgba(120, 136, 160, 0.1), rgba(0,0,0,0) 38%),
    var(--color-surface);
  padding-top: 34px;
  padding-bottom: 56px;
}

.section.explanation h2,
.section.explanation p,
.section.explanation ul {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section.explanation h2 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  letter-spacing: 0.35px;
  text-wrap: balance;
}

.section.explanation p {
  color: rgba(236,255,243,0.92);
}

.section.explanation ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px auto;
}

.section.explanation li {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(57,255,20,0.22);
  background: linear-gradient(135deg, rgba(128,146,172,0.09), rgba(70,84,108,0.12));
  box-shadow: inset 0 0 14px rgba(148,168,196,0.08);
  font-weight: 600;
}

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.faq-list details {
  margin-bottom: 10px;
  border: 1px solid rgba(57,255,20,0.22);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(128,146,172,0.09), rgba(70,84,108,0.12));
  box-shadow: inset 0 0 14px rgba(148,168,196,0.08);
  overflow: hidden;
}

.faq-list summary {
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-list summary::after {
  content: '+';
  font-size: 1.3em;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  content: '\2212';
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  padding: 0 18px 16px;
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}


.section h2 {
  font-size: clamp(1.45rem, 4vw, 2rem);
  margin-bottom: 40px;
}

.section p {
  font-size: clamp(0.95rem, 2.2vw, 1.125rem);
  margin-bottom: 20px;
  opacity: 0.9;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.section li {
  font-size: 18px;
  margin-bottom: 10px;
  opacity: 0.9;
}

/* CONVERSION GRID */
.conversion-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.premium-card {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 18px;
  width: min(100%, 320px);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.premium-card-polished {
  position: relative;
  background: radial-gradient(circle at 18% 14%, rgba(128,146,172,0.12), rgba(255,255,255,0.05) 48%);
  border: var(--border-accent);
  box-shadow: inset 0 0 22px rgba(148,168,196,0.09), 0 14px 34px rgba(0,0,0,0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.premium-card-polished:hover {
  transform: translateY(-2px);
  border-color: rgba(57,255,20,0.42);
  box-shadow: inset 0 0 24px rgba(148,168,196,0.13), 0 18px 38px rgba(0,0,0,0.42);
}

.premium-card-polished .icon-lock,
.premium-card-polished .icon-lightning,
.premium-card-polished .icon-globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(128,146,172,0.14);
  border: 1px solid rgba(57,255,20,0.32);
  box-shadow: 0 0 15px rgba(128,146,172,0.24);
  margin-bottom: 14px;
}

.premium-card-global .icon-globe {
  animation: globeBadgeGlow 1.2s infinite cubic-bezier(.4,0,.2,1);
}

@keyframes globeBadgeGlow {
  0%, 100% {
    box-shadow: 0 0 18px rgba(57,255,20,0.22);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(57,255,20,0.36), 0 0 12px rgba(36,150,133,0.35);
    transform: scale(1.04);
  }
}

.card-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #baffad;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(128,146,172,0.14);
  border: 1px solid rgba(57,255,20,0.35);
}

.card-content {
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  width: 100%;
  gap: 12px;
}

.card-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #e7fff0;
  background: linear-gradient(90deg, rgba(128,146,172,0.2), rgba(70,84,108,0.24));
  border: 1px solid rgba(127,227,161,0.3);
  box-shadow: inset 0 0 9px rgba(148,168,196,0.1), 0 0 10px rgba(96,112,138,0.16);
}

.premium-card-secure .card-chip {
  animation: secureChipGlow 1.8s infinite cubic-bezier(.4, 0, .2, 1);
}

@keyframes secureChipGlow {
  0%, 100% {
    box-shadow: inset 0 0 14px rgba(57,255,20,0.12), 0 0 16px rgba(36,150,133,0.2);
  }
  50% {
    box-shadow: inset 0 0 18px rgba(57,255,20,0.24), 0 0 30px rgba(57,255,20,0.35), 0 0 12px rgba(36,150,133,0.35);
  }
}

.card-copy {
  margin: 0;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  text-wrap: balance;
}

.premium-card-results {
  background: radial-gradient(circle at 15% 18%, rgba(128,146,172,0.12), rgba(255,255,255,0.05) 52%);
}

.premium-card-secure {
  background: radial-gradient(circle at 18% 14%, rgba(120,136,160,0.14), rgba(255,255,255,0.05) 48%);
}

.premium-card-global {
  background: radial-gradient(circle at 20% 16%, rgba(96,112,138,0.18), rgba(255,255,255,0.05) 50%);
}

/* TESTIMONIALS */
.testimonial-wrapper {
  overflow: hidden;
  max-width: 860px;
  margin: auto;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(57,255,20,0.24);
  background: linear-gradient(160deg, rgba(20,26,34,0.58), rgba(10,14,20,0.66));
  box-shadow: inset 0 0 22px rgba(148,168,196,0.08), 0 14px 36px rgba(0,0,0,0.38);
}

.testimonial-track {
  display: flex;
  transition: 0.6s ease;
}

.testimonial {
  min-width: 100%;
  padding: 34px 30px;
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.94;
}

blockquote.testimonial {
  margin: 0;
}

.testimonial cite {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-style: normal;
  opacity: 0.78;
}

/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  background: #000;
  color: white;
  line-height: 1.4;
}

.trust-console-footer {
  position: relative;
  padding: 42px 20px 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(128,146,172,0.08), rgba(0,0,0,0) 42%),
    radial-gradient(circle at 85% 100%, rgba(96,112,138,0.16), rgba(0,0,0,0) 38%),
    #05070b;
}

.trust-console {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 26px 20px;
  border-radius: 20px;
  border: 1px solid rgba(57,255,20,0.28);
  background: linear-gradient(160deg, rgba(20,26,34,0.8), rgba(10,14,20,0.88));
  box-shadow: inset 0 0 32px rgba(148,168,196,0.09), 0 16px 40px rgba(0,0,0,0.45);
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-console,
  .premium-card,
  .trust-console,
  .language-select,
  .share-hero-btn-top {
    backdrop-filter: none;
  }

  .hero-console::before,
  .trust-console::before {
    opacity: 0.03;
  }

  .section {
    padding: 50px 16px;
  }

  .section h2 {
    margin-bottom: 28px;
  }

  .conversion-grid {
    gap: 20px;
  }

  .premium-card {
    padding: 28px 20px;
    min-height: 280px;
    width: min(100%, 400px);
  }
}

.trust-console::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -25%;
  width: 40%;
  height: 130%;
  background: linear-gradient(90deg, rgba(148,168,196,0), rgba(148,168,196,0.1), rgba(148,168,196,0));
  transform: skewX(-18deg);
  animation: none;
  pointer-events: none;
}

@keyframes trustScan {
  0% { left: -25%; }
  100% { left: 125%; }
}

.trust-console-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.trust-console-icon {
  font-size: 1.25rem;
  filter: drop-shadow(0 0 8px rgba(57,255,20,0.45));
}

.footer-links {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.82;
}

.trust-console-links {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  opacity: 1;
}


.privacy-gdpr {
  margin-top: 14px;
  font-size: 14px;
  color: #b6f2d6;
  opacity: 0.85;
}

.trust-console-status {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(57,255,20,0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(210,255,224,0.95);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39ff14;
  box-shadow: 0 0 8px #39ff14;
  flex: 0 0 auto;
}

.footer-main-text {
  font-size: 1.25em;
  font-weight: 700;
}

.footer-links-strong {
  font-size: 1.18em;
  font-weight: 700;
}

.privacy-note-text {
  font-size: 1.18em;
  font-weight: 700;
  color: rgba(226,255,236,0.95);
}

.footer-copyright {
  display: block;
  width: 100%;
  text-align: center;
  color: rgba(255,255,255,0.82);
  margin-top: 8px;
  font-size: 1.02em;
  font-weight: 600;
}

.gdpr-badge {
  display: inline-block;
  background: var(--color-accent-2);
  color: var(--color-text);
  border: none;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  line-height: inherit;
  border-radius: 6px;
  padding: 2px 10px;
  margin-right: 8px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.footer-link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(57,255,20,0.28);
  background: rgba(57,255,20,0.06);
  text-decoration: none;
  color: rgba(232,240,248,0.92);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-link-pill:hover {
  color: #181f1b;
  background: linear-gradient(90deg, rgba(127,227,161,0.85), rgba(42,143,136,0.86));
  box-shadow: 0 0 12px rgba(127,227,161,0.28);
  transform: translateY(-1px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(120deg, #3b4658 0%, #242d3b 50%, #000 100%);
  opacity: 0.03;
  animation: none;
}

@keyframes heroGradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.icon-lightning svg {
  margin-bottom: -4px;
}
.bolt {
  filter: drop-shadow(0 0 6px #39ff14);
  animation: boltFlash 1.2s infinite cubic-bezier(.4,0,.2,1);
}
@keyframes boltFlash {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 6px #39ff14); }
  20% { opacity: 0.7; filter: drop-shadow(0 0 18px #39ff14); }
  40% { opacity: 1; filter: drop-shadow(0 0 8px #39ff14); }
  60% { opacity: 0.8; filter: drop-shadow(0 0 20px #39ff14); }
  80% { opacity: 1; filter: drop-shadow(0 0 6px #39ff14); }
}

.icon-lock svg {
  margin-bottom: -4px;
}
.lock-dot {
  animation: lockPulse 1.6s infinite cubic-bezier(.4,0,.2,1);
}
@keyframes lockPulse {
  0%, 100% { opacity: 1; r: 1.2; }
  50% { opacity: 0.5; r: 2; }
}

.footer-link {
  color: #b6f2d6;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #39ff14;
}
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}

.is-hidden {
  display: none !important;
}

.modal-content {
  position: fixed;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #181f1b;
  color: #fff;
  padding: 32px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(96,112,138,0.24);
  z-index: 1001;
  min-width: 320px;
  max-width: 90vw;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  text-align: left;
}

#modal-content {
  top: 24px;
  bottom: 24px;
  left: 50%;
  width: min(720px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  min-width: 320px;
  max-height: none;
  padding: 18px 20px 18px 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
}

#modal-content .info-modal-header {
  flex: 0 0 auto;
}

#modal-content .info-modal-body {
  flex: 1 1 auto;
}
.modal-content h2 {
  margin-top: 0;
  color: #39ff14;
}
.info-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 10px 12px 0;
  margin-bottom: 4px;
  background: #181f1b;
}

.info-modal-header h2 {
  margin: 0;
  padding-top: 6px;
  padding-right: 8px;
}

.info-modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
  font-size: 0.92rem;
}

.info-modal-body p {
  margin: 0 0 12px;
}

.info-modal-body p:last-child {
  margin-bottom: 0;
}

.info-modal-body p:first-child {
  margin-top: 0;
}

.modal-content p {
  line-height: 1.6;
}
.modal-content button {
  display: block;
  margin: 24px 0 0 auto;
  background: #249685;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

#agreement-modal-content button {
  display: inline-block;
  margin: 24px 12px 0 0;
}

.modal-content .modal-close-button {
  position: sticky;
  top: 6px;
  flex: 0 0 auto;
  margin: 0;
  white-space: nowrap;
  z-index: 3;
}
.modal-content button:hover {
  background: #39ff14;
  color: #181f1b;
}

/* Performance fallback for older phones */
body.low-spec .hero-console,
body.low-spec .trust-console,
body.low-spec .premium-card {
  backdrop-filter: none;
}

body.low-spec .hero-console::before,
body.low-spec .trust-console::before {
  animation: none;
  opacity: 0.05;
}

body.low-spec .share-hero-btn-top,
body.low-spec .premium-card-secure .card-chip,
body.low-spec .premium-card-global .icon-globe,
body.low-spec .bolt,
body.low-spec .lock-dot,
body.low-spec #ctaButton {
  animation: none !important;
}

body.low-spec .particle {
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  html, body {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
    padding: 18px 10px 18px;
  }

  .section {
    padding: 36px 12px;
  }

  .section h2 {
    margin-bottom: 22px;
  }

  .conversion-grid {
    gap: 14px;
  }

  .premium-card {
    padding: 22px 16px;
    min-height: 0;
  }

  .modal-content {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    top: 44%;
    max-height: calc(100vh - 32px);
    padding: 18px 16px 16px;
    border-radius: 12px;
  }

  .cta-section {
    padding: 20px 12px 28px;
  }

  .cta-panel {
    padding: 14px 12px 14px;
    border-radius: 18px;
  }

  .cta-panel-head {
    gap: 10px;
    margin-bottom: 14px;
  }

  .cta-button-mid {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 14px 42px 14px 38px;
  }

  .cta-panel-note {
    font-size: 0.84rem;
    max-width: 100%;
  }

  #modal-content {
    top: 12px;
    bottom: 12px;
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    min-width: 0;
    padding: 14px 12px 14px 14px;
    transform: translateX(-50%);
  }

  .info-modal-header {
    gap: 12px;
    padding: 2px 6px 10px 0;
  }

  .info-modal-body {
    padding-right: 2px;
  }

  .modal-content button {
    width: 100%;
    margin-top: 16px;
  }

  #agreement-modal-content button {
    width: auto;
    margin: 16px 12px 0 0;
  }

  .modal-content .modal-close-button {
    position: sticky;
    top: 4px;
    width: auto;
    margin: 0;
    align-self: flex-start;
  }

  .hero-content {
    width: 100%;
  }

  .hero-console {
    padding: 14px 12px 14px;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(20,26,34,0.44), rgba(10,14,20,0.5));
  }

  .hero-console-head {
    gap: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-console-controls {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .logo-top-left {
    justify-content: center;
  }

  .logo-top-left svg {
    width: 32px;
    height: 32px;
  }

  .logo-top-left .logo-text {
    font-size: 0.92rem;
    letter-spacing: 0.2px;
  }

  .language-select {
    height: 44px;
    padding: 8px 12px;
    min-width: 138px;
    font-size: 0.72rem;
    border-radius: 999px;
  }

  .live-ticker {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .hero-content h1 {
    font-size: 1.72rem;
    line-height: 1.14;
  }

  .subtitle {
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .section.explanation {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .section.explanation ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section.explanation li {
    font-size: 0.92rem;
    padding: 10px 12px;
  }

  .testimonial-wrapper {
    padding: 8px;
    border-radius: 14px;
  }

  .testimonial {
    padding: 24px 18px;
    font-size: 0.98rem;
  }

  .premium-line {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .cta-button {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 0.88rem;
  }

  #ctaButton {
    padding-right: 42px;
  }

  #ctaButton::after {
    right: 16px;
  }

  .small-text {
    margin-top: 0;
    font-size: 0.76rem;
    line-height: 1.4;
    opacity: 0.8;
  }

  .hero-console-actions {
    gap: 8px;
    width: 100%;
  }

  .share-hero-btn-top {
    width: 100%;
    min-height: 34px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    animation-duration: 5.2s;
  }

  .trust-console-footer {
    padding: 28px 12px 22px;
  }

  .trust-console {
    padding: 18px 14px 14px;
    border-radius: 16px;
  }

  .trust-console-head {
    gap: 8px;
    margin-bottom: 10px;
  }

  .trust-console-icon {
    font-size: 1.05rem;
  }

  .footer-main-text {
    font-size: 1.02rem;
    line-height: 1.35;
  }

  .trust-console-links {
    gap: 8px;
    margin-top: 4px;
  }

  .footer-link-pill {
    padding: 5px 10px;
    font-size: 0.88rem;
  }

  .trust-console-status {
    margin-top: 12px;
    padding-top: 10px;
    gap: 8px;
  }

  .privacy-note-text {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .gdpr-badge {
    font-size: 0.8rem;
    padding: 2px 8px;
    margin-right: 0;
  }

  .footer-copyright {
    margin-top: 6px;
    font-size: 0.86rem;
  }
}

/* RTL SUPPORT (Arabic) */
[dir="rtl"] .hero-console-head {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-console-controls {
  flex-direction: row-reverse;
}

[dir="rtl"] .logo-top-left {
  flex-direction: row-reverse;
}

[dir="rtl"] #ctaButton {
  padding-right: 28px;
  padding-left: 48px;
}

[dir="rtl"] #ctaButton::after {
  right: auto;
  left: 18px;
  content: '\2190';
}

[dir="rtl"] #ctaButton:hover::after {
  transform: translate(-4px, -52%);
}

[dir="rtl"] .cta-button-mid::before {
  left: auto;
  right: 16px;
}

[dir="rtl"] .cta-button-mid::after {
  right: auto;
  left: 16px;
}

[dir="rtl"] .cta-panel-rail {
  background: linear-gradient(270deg, rgba(127,227,161,0.4), rgba(127,227,161,0.04));
}

[dir="rtl"] .testimonial {
  text-align: right;
}

[dir="rtl"] .section.explanation li {
  text-align: right;
}

[dir="rtl"] .trust-console-head {
  flex-direction: row-reverse;
}

[dir="rtl"] .card-stamp {
  right: auto;
  left: 14px;
}

[dir="rtl"] .faq-list {
  text-align: right;
}

[dir="rtl"] .faq-list summary {
  flex-direction: row-reverse;
}
