:root {
  --primary: #667eea;
  --primary-dark: #764ba2;
  --secondary: #f093fb;
  --secondary-dark: #f5576c;
  --bg-primary: #0a0a1a;
  --bg-secondary: #14141e;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-primary: #ffffff;
  --text-secondary: #c7d2fe;
  --text-muted: #888;
  --accent: #ffd700;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  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-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
      ellipse at top,
      rgba(102, 126, 234, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom,
      rgba(118, 75, 162, 0.15) 0%,
      transparent 50%
    );
}

.planets {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.planet {
  position: absolute;
  width: 120px;
  height: auto;
  opacity: 0.25;
  animation: floatPlanet 60s infinite ease-in-out;
  filter: drop-shadow(0 0 25px rgba(102, 126, 234, 0.4));
  transition: all 0.3s ease;
}

.planet:hover {
  opacity: 0.5;
  filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.6));
  transform: scale(1.15);
}

.planet-1 {
  top: 8%;
  left: 3%;
  width: 180px;
  animation-duration: 85s;
  animation-delay: 0s;
}

.planet-2 {
  top: 15%;
  right: 5%;
  width: 160px;
  animation-duration: 95s;
  animation-delay: -25s;
}

.planet-3 {
  top: 55%;
  left: 10%;
  width: 140px;
  animation-duration: 90s;
  animation-delay: -45s;
}

.planet-4 {
  bottom: 10%;
  right: 12%;
  width: 200px;
  animation-duration: 100s;
  animation-delay: -60s;
}

.planet-5 {
  top: 35%;
  left: 30%;
  width: 150px;
  animation-duration: 88s;
  animation-delay: -35s;
}

@keyframes floatPlanet {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(0, -60px) rotate(180deg);
  }
  75% {
    transform: translate(-30px, -30px) rotate(270deg);
  }
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

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

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

header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 40px);
  max-width: 1200px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 26, 0.85);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

nav:hover {
  background: rgba(10, 10, 26, 0.95);
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.logo:active {
  transform: scale(0.98);
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.language-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-buttons-group {
  display: flex;
  align-items: center;
  gap: 6px;
}


.lang-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(10, 10, 26, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 1000;
  overflow: hidden;
}

.lang-dropdown.active {
  display: flex;
}

.lang-option {
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

.lang-option:hover {
  background: rgba(102, 126, 234, 0.2);
}

.lang-option:first-child {
  border-radius: 12px 12px 0 0;
}

.lang-option:last-child {
  border-radius: 0 0 12px 12px;
}

.mobile-menu-btn {
  display: none;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  padding: 0;
  position: relative;
}

.mobile-menu-btn.is-active {
  gap: 0;
}

.mobile-menu-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
  display: block;
}

/* Hamburger butonu X'e dönüşür - aynı yerde, renkler korunur */
.mobile-menu-btn.is-active {
  gap: 0;
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  margin: 0;
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  margin: 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-mockups {
  margin-top: 60px;
  position: relative;
}

.mockup-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  perspective: 1000px;
}

.mockup {
  width: 200px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  filter: drop-shadow(0 10px 20px rgba(102, 126, 234, 0.2));
}

.mockup-1 {
  transform: rotateY(-15deg) rotateX(5deg);
  z-index: 1;
}

.mockup-2 {
  transform: scale(1.1) rotateX(-5deg);
  z-index: 3;
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4);
}

.mockup-3 {
  transform: rotateY(15deg) rotateX(5deg);
  z-index: 1;
}

.mockup:hover {
  transform: scale(1.05) rotateY(0deg) rotateX(0deg);
  z-index: 5;
}

.mockup-2:hover {
  transform: scale(1.15) rotateX(0deg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 50%,
    var(--secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(16px, 3vw, 20px);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.stats {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.zodiac-card {
  background: linear-gradient(
    135deg,
    var(--glass-bg) 0%,
    rgba(102, 126, 234, 0.05) 100%
  );
}

.zodiac-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
  animation: float 3s ease-in-out infinite;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.constellation-icon {
  font-size: 0;
}

.constellation-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
  animation: float 3s ease-in-out infinite, twinkle 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 14px;
}

.features {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

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

.bento-card {
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.bento-card.large {
  grid-column: span 2;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.astrology-icon {
  font-size: 0;
}

.astrology-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.3));
  transition: all 0.3s ease;
}

.bento-card:hover .astrology-icon svg {
  filter: drop-shadow(0 6px 20px rgba(102, 126, 234, 0.5));
  transform: scale(1.05);
}

.bento-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.bento-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.how-it-works {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(102, 126, 234, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(118, 75, 162, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.05) 0%,
      rgba(118, 75, 162, 0.05) 100%
    );
  z-index: 0;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.3),
    rgba(118, 75, 162, 0.3)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  display: inline-block;
  font-size: 12px;
  color: white;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  letter-spacing: 1px;
}

.step-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.6));
  }
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.step-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.step-arrow {
  font-size: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

.download {
  padding: 100px 0;
}

.download-content {
  text-align: center;
}

.download-text h2 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.download-text p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
}

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

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.store-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.store-icon {
  font-size: 32px;
}

.store-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.store-btn small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.store-btn strong {
  display: block;
  font-size: 16px;
}

.download-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-stat {
  text-align: center;
}

.download-stat strong {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.download-stat span {
  color: var(--text-muted);
  font-size: 14px;
}

footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.footer-col p {
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 16px;
}

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

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

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.faq {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(
      circle at top,
      rgba(102, 126, 234, 0.15),
      transparent 60%
    ),
    rgba(10, 10, 26, 0.9);
  overflow: hidden;
}

.faq::before,
.faq::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(118, 75, 162, 0.35),
    rgba(118, 75, 162, 0)
  );
  filter: blur(12px);
  z-index: 0;
}

.faq::before {
  top: -80px;
  left: -60px;
}

.faq::after {
  bottom: -120px;
  right: -80px;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.faq-card {
  background: rgba(10, 10, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px rgba(4, 5, 12, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-card summary {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  line-height: 1.4;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-primary);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-card[open] summary::after {
  content: "–";
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0a1a;
  transform: rotate(180deg);
}

.faq-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.faq-card:hover,
.faq-card[open] {
  border-color: rgba(102, 126, 234, 0.8);
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.15);
  transform: translateY(-6px);
}

@media (max-width: 768px) {
  header {
    top: 20px;
    width: calc(100% - 20px);
  }

  nav {
    padding: 12px 16px;
    flex-wrap: wrap;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
  }

  /* Mobil menü - tamamen yeniden tasarlandı */
  nav .nav-links {
    display: none !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
    margin-top: 16px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    border-top: 1px solid rgba(102, 126, 234, 0.2) !important;
    list-style: none !important;
    order: 3 !important;
  }

  nav .nav-links.active {
    display: flex !important;
  }

  nav .nav-links li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  
  /* Menü içinde SADECE linkler - hiçbir buton görünmemeli */
  nav .nav-links li button,
  nav .nav-links li .button,
  nav .nav-links li .mobile-menu-btn,
  nav .nav-links li .close-btn,
  nav .nav-links li .nav-close-btn,
  nav .nav-links li .hamburger-line,
  nav .nav-links button,
  nav .nav-links .mobile-menu-btn,
  nav .nav-links .close-btn,
  nav .nav-links .nav-close-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    pointer-events: none !important;
  }

  nav .nav-links a {
    display: block !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-decoration: none !important;
    color: var(--text-primary) !important;
    font-weight: 500 !important;
    position: relative !important;
  }
  
  .faq-card {
    padding: 20px;
  }

  .faq-card summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  nav .nav-links a:hover {
    background: rgba(102, 126, 234, 0.15) !important;
    transform: translateX(4px) !important;
  }

  nav .logo {
    order: 0 !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
    flex: 1 !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  nav .mobile-buttons-group {
    order: 1 !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-shrink: 0 !important;
    z-index: 100 !important;
  }

  .language-selector {
    margin-right: 0;
    margin-left: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .lang-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    min-width: 40px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 10px;
  }

  .mobile-menu-btn {
    display: flex !important;
    margin-left: 0;
    margin-right: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding: 0;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
  }
  
  .mobile-menu-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
  }
  
  .mobile-menu-btn .hamburger-line {
    width: 18px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    display: block;
  }
  
  /* Hamburger X'e dönüşür - aynı yerde - AGGRESSIVE FIX */
  .mobile-buttons-group .mobile-menu-btn.is-active {
    gap: 0 !important;
  }
  
  .mobile-buttons-group .mobile-menu-btn.is-active .hamburger-line:nth-child(1) {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) rotate(45deg) !important;
    margin: 0 !important;
    width: 18px !important;
    height: 2px !important;
    background: white !important;
    z-index: 10 !important;
  }
  
  .mobile-buttons-group .mobile-menu-btn.is-active .hamburger-line:nth-child(2) {
    display: none !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
  }
  
  .mobile-buttons-group .mobile-menu-btn.is-active .hamburger-line:nth-child(3) {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) rotate(-45deg) !important;
    margin: 0 !important;
    width: 18px !important;
    height: 2px !important;
    background: white !important;
    z-index: 10 !important;
  }

  .lang-dropdown {
    right: 0;
    left: auto;
  }

  .logo-img {
    width: 28px;
    height: 28px;
  }

  .bento-card.large {
    grid-column: span 1;
  }

  .step-arrow {
    display: none;
  }

  .steps-container {
    flex-direction: column;
  }

  .mockup-container {
    flex-direction: column;
    gap: 30px;
  }

  .mockup {
    width: 250px;
    transform: none !important;
  }

  .mockup:hover {
    transform: scale(1.05) !important;
  }

  .zodiac-icon {
    font-size: 36px;
  }

  .footer-logo-img {
    width: 24px;
    height: 24px;
  }

  .planet {
    width: 60px !important;
  }

  .planet-1 {
    width: 80px !important;
    top: 5%;
    left: 2%;
  }

  .planet-2 {
    width: 70px !important;
    top: 12%;
    right: 3%;
  }

  .planet-3 {
    width: 65px !important;
    top: 60%;
    left: 5%;
  }

  .planet-4 {
    width: 90px !important;
    bottom: 8%;
    right: 8%;
  }

  .planet-5 {
    width: 70px !important;
    top: 40%;
    left: 15%;
  }
}
