:root {
  --bg-dark: #05040a;
  --bg-dark-soft: #0c0a16;
  --bg-card: #151322;
  --accent: #e91e63;
  --accent-soft: rgba(233, 30, 99, 0.18);
  --accent-strong: #ff4b92;
  --text-main: #f5f5f7;
  --text-muted: #9a96b3;
  --border-subtle: #262338;
  --error: #ff5c5c;
  --success: #4caf50;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a1630 0, #05040a 55%);
  color: var(--text-main);
}

body {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to right, rgba(5, 4, 10, 0.92), rgba(10, 6, 21, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 18px;
}

.logo span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 18px;
  font-size: 14px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.2s ease-out;
}

.main-nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 32px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: start;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.side-image {
  width: 100%;
  max-width: 400px;
  border-radius: 14px;
  object-fit: cover;
}

.badge-image {
  height: 90px;
  max-width: 260px;
  object-fit: contain;
}

.bubble-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-feature-bubbles {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.feature-bubble {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), rgba(5, 4, 10, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.feature-bubble-image {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(5, 4, 10, 0.95));
}

.bubble-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
}

.bubble-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.bubble-slide.is-active {
  opacity: 1;
}

.feature-bubble-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.feature-bubble-text strong {
  font-size: 13px;
}

.feature-bubble-text span {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: clamp(26px, 3vw, 32px);
    margin: 0 0 10px;
  }

  .hero-lead {
    margin: 0 0 20px;
    color: var(--text-muted);
    font-size: 15px;
  }

  .hero-highlights {
    position: relative;
    margin-bottom: 32px;
    min-height: 20px;
    font-size: 13px;
    color: var(--text-main);
  }

  .hero-highlight-item {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    position: absolute;
    left: 0;
    right: 0;
  }

  .hero-highlight-item.is-active {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-card {
  background: radial-gradient(circle at top left, rgba(233, 30, 99, 0.14), transparent 55%),
    var(--bg-card);
  border-radius: 14px;
  padding: 20px 18px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  margin-top: 24px;
}

.form-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.form-subtitle {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-muted);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

label {
  font-size: 13px;
  color: var(--text-muted);
}

input[type="text"],
input[type="email"],
input[type="password"],
input:not([type]) {
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: #0d0b18;
  color: var(--text-main);
  padding: 9px 11px;
  font-size: 14px;
  outline: none;
}

input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(233, 30, 99, 0.4);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.checkbox input[type="checkbox"] {
  margin-top: 3px;
}

button[type="submit"] {
  margin-top: 4px;
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 26px rgba(233, 30, 99, 0.5);
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, opacity 0.1s;
}

button[type="submit"]:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(233, 30, 99, 0.6);
}

button[type="submit"]:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.5);
}

button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: default;
  box-shadow: none;
}

.form-status {
  min-height: 18px;
  font-size: 13px;
  margin: 6px 2px 0;
}

.form-status.info {
  color: var(--text-muted);
}

.form-status.error {
  color: var(--error);
}

.form-status.success {
  color: var(--success);
}

.section {
  padding: 32px 0 40px;
}

.section-alt {
  background: radial-gradient(circle at top right, rgba(233, 30, 99, 0.06), transparent 60%),
    #070613;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: flex-start;
}

.steps-list,
.bullet-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.steps-list li + li,
.bullet-list li + li {
  margin-top: 6px;
}

.side-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.image-placeholder {
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), rgba(5, 4, 10, 0.9));
}

.image-placeholder.big {
  height: 100%;
}

.image-placeholder.medium {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
}

.image-placeholder.small {
  height: 90px;
  max-width: 260px;
}

.image-placeholder span {
  font-size: 14px;
}

.placeholder-note {
  margin: 0;
  font-size: 11px;
  color: var(--text-muted);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #05040a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 18px;
  gap: 12px;
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .hero-grid,
  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 24px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: row;
  }

  .main-nav {
    display: none;
  }

  .form-card {
    padding: 18px 14px 16px;
  }

  .image-placeholder.big {
    height: 100%;
  }

  .hero-slider {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Navigation Buttons */
.nav-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  color: var(--text-main);
}

.nav-btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #fff !important;
  border-radius: 999px;
}

.nav-btn-primary:hover {
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
  transform: translateY(-1px);
}

.nav-btn-primary::after {
  display: none;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 4, 10, 0.9);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay.is-active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-content h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.modal-subtitle {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.modal-switch {
  margin: 16px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.modal-switch a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.modal-switch a:hover {
  text-decoration: underline;
}

/* Radar Section */
.radar-section {
  position: relative;
  background: linear-gradient(180deg, rgba(5, 4, 10, 0.85) 0%, rgba(20, 15, 40, 0.8) 50%, rgba(5, 4, 10, 0.9) 100%);
  padding: 80px 0;
  overflow: hidden;
}

.radar-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%25" height="100%25" fill="%23111"/><rect width="100%25" height="100%25" fill="url(%23grid)"/><circle cx="200" cy="150" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="350" cy="200" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="500" cy="120" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="150" cy="350" r="2" fill="rgba(255,255,255,0.06)"/><circle cx="600" cy="300" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="450" cy="400" r="2" fill="rgba(255,255,255,0.07)"/><circle cx="300" cy="450" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="700" cy="180" r="2" fill="rgba(255,255,255,0.06)"/><path d="M100,100 Q200,150 300,120 T500,180 T700,140" stroke="rgba(255,255,255,0.04)" fill="none" stroke-width="2"/><path d="M50,300 Q150,280 250,320 T450,290 T650,350" stroke="rgba(255,255,255,0.03)" fill="none" stroke-width="2"/><path d="M100,450 Q250,420 400,480 T700,430" stroke="rgba(255,255,255,0.03)" fill="none" stroke-width="2"/></svg>');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: blur(1px);
}

.radar-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.radar-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: -60px;
}

.radar-circle {
  position: relative;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(180, 100, 200, 0.35) 0%, 
    rgba(150, 80, 180, 0.25) 30%, 
    rgba(120, 60, 150, 0.15) 50%, 
    rgba(80, 40, 120, 0.08) 70%, 
    transparent 100%);
  box-shadow: 
    0 0 80px rgba(200, 100, 220, 0.25), 
    inset 0 0 80px rgba(180, 80, 200, 0.15);
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(200, 120, 220, 0.25);
}

.ring-1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-color: rgba(200, 120, 220, 0.3);
}

.ring-2 {
  width: 66%;
  height: 66%;
  top: 17%;
  left: 17%;
  border-color: rgba(220, 100, 200, 0.35);
}

.ring-3 {
  width: 33%;
  height: 33%;
  top: 33.5%;
  left: 33.5%;
  border-color: rgba(233, 80, 180, 0.4);
  background: radial-gradient(circle, rgba(233, 30, 99, 0.15), transparent);
}

.radar-sweep {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  left: 50%;
  transform-origin: bottom left;
  background: linear-gradient(90deg, transparent, rgba(233, 100, 180, 0.4), rgba(200, 80, 160, 0.15));
  animation: radarSweep 4s linear infinite;
  border-radius: 0 100% 0 0;
}

@keyframes radarSweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.radar-dot {
  position: absolute;
  transition: transform 0.3s ease;
}

.radar-dot:hover {
  transform: scale(1.2);
  z-index: 10;
}

.radar-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(233, 100, 180, 0.6);
  box-shadow: 0 0 25px rgba(233, 80, 160, 0.4);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.radar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radar-dot:hover .radar-avatar {
  border-color: rgba(233, 30, 99, 0.9);
  box-shadow: 0 0 35px rgba(233, 30, 99, 0.6);
}

.radar-avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9c27b0, var(--accent));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* 5 avatar - orantılı dağılım: merkez, yakın, orta, uzak */
.dot-1 { top: 38%; left: 38%; } /* Merkez - en yakın */
.dot-2 { top: 18%; left: 28%; } /* Orta halka - sol üst */
.dot-3 { top: 55%; left: 62%; } /* Orta halka - sağ alt */
.dot-4 { top: 8%; left: 52%; }  /* Dış halka - üst */
.dot-5 { top: 72%; left: 22%; } /* Dış halka - sol alt */

.radar-content h2 {
  font-size: 28px;
  margin: 0 0 20px;
  line-height: 1.3;
}

.accent-text {
  color: var(--accent);
}

.radar-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.radar-text .highlight {
  color: var(--accent);
  font-weight: 500;
}

.radar-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 32px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.radar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(233, 30, 99, 0.5);
}

/* Chat Preview Section */
.chat-preview-section {
  background: var(--bg-dark);
  padding: 60px 0;
}

.chat-preview-title {
  text-align: center;
  font-size: 24px;
  margin: 0 0 40px;
}

.chat-messages {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.chat-left {
  justify-content: flex-start;
}

.chat-right {
  justify-content: flex-end;
}

.chat-avatar {
  flex-shrink: 0;
}

.chat-avatar .avatar-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(233, 100, 180, 0.4);
  display: block;
}

.chat-avatar .avatar-placeholder {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

.chat-avatar .avatar-placeholder.female {
  background: linear-gradient(135deg, #e91e63, #ff4b92);
  color: #fff;
}

.chat-avatar .avatar-placeholder.male {
  background: linear-gradient(135deg, #3f51b5, #7986cb);
  color: #fff;
}

.chat-bubble {
  padding: 14px 20px;
  border-radius: 20px;
  max-width: 450px;
  font-size: 14px;
  line-height: 1.5;
}

.chat-bubble.female {
  background: linear-gradient(90deg, #9c27b0, #e91e63);
  color: #fff;
  border-bottom-left-radius: 6px;
}

.chat-bubble.male {
  background: linear-gradient(90deg, #512da8, #7c4dff);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.chat-highlight {
  color: #4fc3f7;
  font-weight: 500;
}

/* Responsive Radar & Chat */
@media (max-width: 900px) {
  .radar-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .radar-container {
    margin-left: 0;
    justify-content: center;
  }

  .radar-circle {
    width: 350px;
    height: 350px;
  }

  .radar-avatar {
    width: 50px;
    height: 50px;
  }

  .radar-content {
    text-align: center;
  }

  .radar-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .radar-container {
    margin-left: 0;
  }

  .radar-circle {
    width: 300px;
    height: 300px;
  }

  .radar-avatar {
    width: 42px;
    height: 42px;
  }

  .chat-bubble {
    max-width: 280px;
    font-size: 13px;
  }

  .chat-avatar .avatar-placeholder {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Floating Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 15s infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Online Indicator */
.online-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px #4caf50;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.online-text {
  font-size: 13px;
  color: #4caf50;
  font-weight: 500;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(20, 15, 40, 0.5) 100%);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(21, 19, 34, 0.98), rgba(10, 8, 20, 0.99));
  border-top: 1px solid var(--border-subtle);
  padding: 20px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cookie-icon {
  font-size: 32px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(233, 30, 99, 0.4);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.cookie-btn-settings:hover {
  color: var(--text-main);
  border-color: var(--text-muted);
}

/* Cookie Policy Modal */
.modal-large {
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-policy-content {
  margin-bottom: 24px;
}

.cookie-policy-content h3 {
  font-size: 16px;
  margin: 20px 0 10px;
  color: var(--text-main);
}

.cookie-policy-content h3:first-child {
  margin-top: 0;
}

.cookie-policy-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 12px;
}

.cookie-policy-content ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.cookie-settings-panel {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-subtle);
}

.cookie-settings-panel h3 {
  margin: 0 0 16px;
  font-size: 16px;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-subtle);
  border-radius: 26px;
  transition: background 0.3s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.cookie-toggle input:checked + .toggle-slider {
  background: var(--accent);
}

.cookie-toggle input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-option-text strong {
  font-size: 14px;
}

.cookie-option-text span {
  font-size: 12px;
  color: var(--text-muted);
}

.cookie-save-btn {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-save-btn:hover {
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Glow effect on form focus */
.form-card:focus-within {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(233, 30, 99, 0.15);
}

/* Hover animations for feature bubbles */
.feature-bubble {
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Text gradient animation */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-content h1 {
  background: linear-gradient(90deg, var(--text-main), var(--accent), var(--text-main));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

/* Button shine effect */
button[type="submit"]::before,
.radar-cta::before,
.cookie-btn-accept::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

button[type="submit"],
.radar-cta,
.cookie-btn-accept {
  position: relative;
  overflow: hidden;
}

button[type="submit"]:hover::before,
.radar-cta:hover::before,
.cookie-btn-accept:hover::before {
  left: 100%;
}

/* Responsive cookie banner */
@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* Language Selector */
.lang-selector {
  position: relative;
  margin-left: 16px;
  display: flex;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-main);
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.lang-text {
  font-weight: 500;
}

.lang-arrow {
  transition: transform 0.2s;
}

.lang-selector:hover .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 6px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.lang-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.2s;
}

.lang-option:hover {
  background: rgba(233, 30, 99, 0.1);
  color: var(--text-main);
}

.lang-option.active {
  background: rgba(233, 30, 99, 0.15);
  color: var(--accent);
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 80;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(233, 30, 99, 0.5);
}

.scroll-top-btn:active {
  transform: translateY(0);
}

.scroll-top-btn svg {
  transition: transform 0.2s;
}

.scroll-top-btn:hover svg {
  transform: translateY(-2px);
}

