:root {
  --bg: #040208;
  --bg-2: #090313;
  --card: rgba(20, 7, 38, 0.95);
  --card-2: rgba(28, 10, 50, 0.96);
  --text: #ffffff;
  --muted: #b8b0c9;
  --border: rgba(147, 69, 255, 0.34);
  --purple: #9d4dff;
  --purple-2: #7a2cff;
  --purple-3: #bb7cff;
  --purple-soft: rgba(157, 77, 255, 0.16);
  --green: #29e088;
  --green-2: #18dca0;
  --shadow-purple: 0 0 45px rgba(138, 59, 255, 0.25);
  --shadow-green: 0 0 35px rgba(41, 224, 136, 0.34);
  --container: 1180px;
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at 50% 14%, rgba(122, 44, 255, 0.32), transparent 24%),
    radial-gradient(circle at 20% 75%, rgba(157, 77, 255, 0.10), transparent 26%),
    radial-gradient(circle at 82% 30%, rgba(122, 44, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #020105 0%, #05020c 38%, #040208 100%);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 92px 0;
  border-top: 1px solid rgba(120, 57, 255, 0.16);
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(4, 3, 7, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(120, 57, 255, 0.12);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(157, 77, 255, 0.35));
}

.footer-logo {
  width: 52px;
  height: 52px;
}

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

.nav a {
  color: #d2cbdd;
  font-size: 0.98rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.2rem;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  cursor: pointer;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 18px;
  border: 1px solid rgba(139, 61, 255, 0.35);
  background: rgba(84, 23, 167, 0.15);
  color: #ae8dff;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.center-badge {
  display: table;
  margin: 0 auto 26px auto;
}

.hero {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.25rem);
  line-height: 1.03;
  letter-spacing: -2px;
  font-weight: 800;
  margin-top: 26px;
  text-shadow: 0 0 28px rgba(122, 44, 255, 0.10);
}

.hero-title span,
.section-title span {
  color: var(--purple);
}

.hero-text {
  max-width: 760px;
  margin: 28px auto 0 auto;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  line-height: 1.7;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: 0.28s ease;
  cursor: pointer;
}

.btn-primary,
.btn-whatsapp {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  color: #fff;
  box-shadow:
    0 0 20px rgba(41, 224, 136, 0.28),
    0 0 40px rgba(24, 220, 160, 0.18);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.01);
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #f4efff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 61, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.btn-icon {
  font-size: 1.15rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 54px;
  margin-top: 58px;
}

.stat-item h3 {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
}

.stat-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 1rem;
}

.section-title {
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -1px;
}

.section-title.center {
  text-align: center;
}

.left-align {
  margin-top: 24px;
}

.section-subtitle {
  max-width: 760px;
  margin: 18px auto 0 auto;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.section-paragraph {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 28px;
  max-width: 720px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.tag {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(84, 23, 167, 0.12);
  border: 1px solid rgba(139, 61, 255, 0.26);
  color: #b799ff;
  font-size: 0.98rem;
  font-weight: 500;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card,
.service-card,
.result-card,
.review-card {
  background: linear-gradient(180deg, rgba(23, 8, 43, 0.96), rgba(10, 4, 22, 0.98));
  border: 1px solid rgba(157, 77, 255, 0.28);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 0 35px rgba(138, 59, 255, 0.14);
  backdrop-filter: blur(10px);
}

.info-card {
  min-height: 185px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-icon,
.service-icon,
.mini-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7a2cff, #b56eff);
  color: #fff;
  box-shadow:
    0 0 20px rgba(157, 77, 255, 0.34),
    0 0 40px rgba(122, 44, 255, 0.18);
}

.info-card h3 {
  margin-top: 20px;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
}

.info-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
}

.service-grid,
.result-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card,
.result-card {
  min-height: 345px;
  padding: 34px 32px;
  transition: 0.28s ease;
}

.service-card:hover,
.result-card:hover,
.review-card:hover,
.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(157, 77, 255, 0.52);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 45px rgba(138, 59, 255, 0.26);
}

.service-card h3,
.result-card h3 {
  margin-top: 26px;
  font-size: 1.7rem;
  line-height: 1.25;
}

.service-card p,
.result-card p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.08rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #a56cff;
  font-weight: 700;
}

.result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-number {
  margin-top: 28px;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}

.result-highlight {
  margin-top: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #c7b3ff;
}

.review-card {
  position: relative;
  padding: 34px;
  min-height: 280px;
}

.stars {
  color: #ffd84f;
  letter-spacing: 4px;
  font-size: 1.2rem;
}

.quote-mark {
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(139, 61, 255, 0.55);
  font-weight: 800;
}

.review-text {
  margin-top: 22px;
  color: #ddd3ed;
  font-size: 1.18rem;
  line-height: 1.9;
  font-style: italic;
  min-height: 138px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #6f2cff, #8f48ff);
  font-weight: 700;
}

.review-user h4 {
  font-size: 1.1rem;
}

.review-user span {
  color: var(--muted);
  font-size: 0.97rem;
}

.contact-section {
  padding-top: 86px;
}

.contact-box {
  text-align: center;
  max-width: 980px;
}

.contact-text {
  max-width: 860px;
}

.large-btn {
  min-width: 310px;
}

.small-call-btn {
  min-width: 160px;
}

.mini-note {
  margin-top: 28px;
  color: #7e778c;
  font-size: 1rem;
}

.footer {
  padding: 70px 0 50px 0;
  border-top: 1px solid rgba(120, 57, 255, 0.18);
  background: linear-gradient(180deg, rgba(5, 3, 8, 0.2), rgba(5, 3, 8, 0.92));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 54px;
}

.footer-text {
  margin-top: 22px;
  max-width: 430px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.85;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.socials a {
  padding: 12px 18px;
  border: 1px solid rgba(139, 61, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #ddd;
  transition: 0.25s ease;
}

.socials a:hover,
.footer-links a:hover,
.footer-contact:hover {
  color: #fff;
  border-color: rgba(139, 61, 255, 0.42);
}

.footer-col h3 {
  font-size: 1.55rem;
  margin-bottom: 26px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 16px;
}

.footer-links a,
.footer-contact {
  color: var(--muted);
  font-size: 1.08rem;
  transition: 0.22s ease;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-btn {
  margin-top: 28px;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: white;
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: var(--shadow-green);
  z-index: 999;
  transition: 0.25s ease;
}

.floating-wa:hover {
  transform: scale(1.08);
}

.bg-blur {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.blur-1 {
  width: 420px;
  height: 420px;
  background: rgba(117, 39, 255, 0.16);
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

.blur-2 {
  width: 320px;
  height: 320px;
  background: rgba(60, 255, 180, 0.07);
  bottom: 80px;
  right: 40px;
}

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(139, 61, 255, 0.55) 0 3px, transparent 7px),
    radial-gradient(circle at 17% 78%, rgba(139, 61, 255, 0.35) 0 5px, transparent 11px),
    radial-gradient(circle at 44% 22%, rgba(139, 61, 255, 0.30) 0 3px, transparent 8px),
    radial-gradient(circle at 71% 66%, rgba(139, 61, 255, 0.36) 0 4px, transparent 10px),
    radial-gradient(circle at 89% 28%, rgba(139, 61, 255, 0.34) 0 4px, transparent 10px),
    radial-gradient(circle at 91% 82%, rgba(40, 209, 124, 0.22) 0 5px, transparent 11px),
    linear-gradient(120deg, transparent 15%, rgba(139, 61, 255, 0.08) 16%, transparent 17%),
    linear-gradient(148deg, transparent 62%, rgba(139, 61, 255, 0.07) 63%, transparent 64%);
  opacity: 0.9;
}

main,
footer,
header {
  position: relative;
  z-index: 2;
}

/* AÇILIŞ EFEKTİ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background:
    radial-gradient(circle at center, rgba(122, 44, 255, 0.20), transparent 22%),
    linear-gradient(180deg, #020105 0%, #040208 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  position: relative;
  text-align: center;
  animation: loaderPop 1.4s ease;
}

.loader-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 22px rgba(157, 77, 255, 0.42));
}

.loader-inner h2 {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.loader-inner p {
  margin-top: 8px;
  color: #b8b0c9;
  font-size: 1rem;
}

.loader-glow {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 77, 255, 0.35) 0%, rgba(157, 77, 255, 0.08) 45%, transparent 72%);
  filter: blur(14px);
  animation: pulseGlow 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    transform: translateX(-50%) scale(0.92);
    opacity: 0.75;
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(0.92);
    opacity: 0.75;
  }
}

@keyframes loaderPop {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

body.loaded main,
body.loaded footer,
body.loaded header,
body.loaded .floating-wa {
  animation: pageReveal 0.9s ease;
}

@keyframes pageReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1150px) {
  .service-grid,
  .result-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .about-right {
    margin-top: 8px;
  }
}

@media (max-width: 920px) {
  .nav {
    position: absolute;
    top: 92px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(10, 6, 17, 0.96);
    border: 1px solid rgba(139, 61, 255, 0.22);
    box-shadow: var(--shadow-purple);
  }

  .nav.show {
    display: flex;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .desktop-whatsapp {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-stats {
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-wrap {
    min-height: 82px;
  }

  .brand span,
  .footer-brand span {
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .footer-logo {
    width: 46px;
    height: 46px;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .hero-text,
  .section-subtitle,
  .section-paragraph,
  .service-card p,
  .result-card p,
  .review-text,
  .footer-text {
    font-size: 1rem;
  }

  .about-right {
    grid-template-columns: 1fr;
  }

  .info-card,
  .service-card,
  .result-card,
  .review-card {
    border-radius: 24px;
  }

  .btn,
  .large-btn,
  .small-call-btn {
    width: 100%;
    min-width: unset;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .footer {
    padding-bottom: 100px;
  }

  .floating-wa {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .loader-logo {
    width: 76px;
    height: 76px;
  }

  .loader-inner h2 {
    font-size: 1.6rem;
  }
}