/* Temel ayarlar */
:root {
  --bg-dark: #0a101f;
  --bg-panel: rgba(9, 15, 31, 0.85);
  --primary: #3ad0ff;
  --secondary: #ff6fbe;
  --accent: #91ffe7;
  --text-main: #f4f5ff;
  --text-muted: rgba(244, 245, 255, 0.82);
  --border-glow: rgba(255, 111, 190, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-glow: 0 0 45px rgba(58, 208, 255, 0.35);
  --shadow-soft: 0 20px 60px rgba(6, 9, 20, 0.55);
  --container-width: min(1120px, 100% - 64px);
  --transition: 320ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  background-image: url("resimlerim/arka%20plan.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.92), rgba(255, 111, 190, 0.92));
  color: var(--bg-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), top var(--transition);
}

.skip-link:focus-visible {
  position: fixed;
  top: 16px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
  box-shadow: 0 10px 30px rgba(58, 208, 255, 0.4);
}

:where(section[id], article[id], .section[id]) {
  scroll-margin-top: clamp(80px, 12vh, 140px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 31, 0.75);
  pointer-events: none;
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'%3E%3C/rect%3E%3C/svg%3E");
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Exo", "Inter", sans-serif;
  letter-spacing: 0.01em;
  color: var(--text-main);
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.1rem);
  line-height: 1.1;
}

p {
  color: var(--text-muted);
  margin: 0 0 16px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 16, 31, 0.95) 0%, rgba(10, 16, 31, 0.75) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(145, 255, 231, 0.15);
  box-shadow: 0 4px 20px rgba(6, 9, 20, 0.3);
  transition: all var(--transition);
}

.site-header:hover {
  border-bottom-color: rgba(58, 208, 255, 0.25);
  box-shadow: 0 6px 30px rgba(58, 208, 255, 0.15);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: transform var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}

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

.logo img {
  height: 45px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(58, 208, 255, 0.3));
  transition: filter var(--transition);
}

.logo:hover img {
  filter: drop-shadow(0 0 12px rgba(255, 111, 190, 0.5));
}

.logo-text {
  font-family: "Exo", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(58, 208, 255, 0.3);
  transition: all var(--transition);
  white-space: nowrap;
}

.logo:hover .logo-text {
  filter: drop-shadow(0 0 8px rgba(58, 208, 255, 0.5));
}

.logo::after {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color var(--transition);
}

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

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav .btn {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 999px;
  transition: all var(--transition);
  display: block;
}

.nav-toggle:hover span {
  background-color: var(--primary);
}

/* Hamburger menü animasyonu */
.nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

:where(a, button, input, select, textarea)[data-focus-visible-added],
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(58, 208, 255, 0.25);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 65px rgba(255, 111, 190, 0.45);
}

.btn-outline {
  border: 1px solid rgba(58, 208, 255, 0.4);
  color: var(--text-main);
  background: rgba(10, 16, 31, 0.2);
}

.btn-outline:hover {
  border-color: rgba(255, 111, 190, 0.6);
  color: var(--accent);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
}

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

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.7;
}

.hero::before {
  width: 340px;
  height: 340px;
  top: -120px;
  right: 12%;
  background: rgba(255, 111, 190, 0.44);
}

.hero::after {
  width: 420px;
  height: 420px;
  bottom: -160px;
  left: -120px;
  background: rgba(58, 208, 255, 0.35);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.18), rgba(255, 111, 190, 0.12));
  border: 1px solid rgba(58, 208, 255, 0.4);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(58, 208, 255, 0.15);
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(58, 208, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.9s ease-out 0.2s both;
}

.hero-copy {
  max-width: 600px;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
  color: rgba(244, 245, 255, 0.85);
  animation: fadeInUp 0.9s ease-out 0.4s both;
}

.hero-visual {
  position: relative;
}

.hero-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  background: radial-gradient(circle at 20% 20%, rgba(58, 208, 255, 0.25), transparent 65%),
    radial-gradient(circle at 80% 60%, rgba(255, 111, 190, 0.35), transparent 70%),
    rgba(9, 15, 31, 0.65);
  border: 1px solid rgba(145, 255, 231, 0.2);
  box-shadow: 0 30px 90px rgba(8, 12, 26, 0.7), 
              0 0 0 1px rgba(58, 208, 255, 0.1),
              inset 0 0 60px rgba(58, 208, 255, 0.1);
  perspective: 1200px;
  transform-style: preserve-3d;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.85) translateY(30px) perspective(1000px) rotateX(15deg);
  filter: saturate(0.7) contrast(0.85) brightness(0.6);
  animation: heroCarousel 5.2s infinite;
  transition: opacity 500ms cubic-bezier(0.34, 1.56, 0.64, 1), 
              transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.hero-gallery--static {
  animation: none;
}

.hero-gallery img[data-desktop-src] {
  display: none;
}

.hero-gallery:not(.hero-gallery--static) img[data-loaded="true"] {
  display: block;
}

.hero-gallery.hero-gallery--static img {
  animation: none;
}

.hero-gallery.hero-gallery--static img:first-child {
  position: relative;
  opacity: 1;
  transform: none;
  filter: saturate(1) contrast(1);
}

.hero-gallery img:nth-child(1) {
  animation-delay: 0s;
}

.hero-gallery img:nth-child(2) {
  animation-delay: 1.3s;
}

.hero-gallery img:nth-child(3) {
  animation-delay: 2.6s;
}

.hero-gallery img:nth-child(4) {
  animation-delay: 3.9s;
}

.hero-glow {
  position: absolute;
  inset: -40px -60px -80px -80px;
  background: radial-gradient(circle at 30% 30%, rgba(58, 208, 255, 0.45), transparent 65%),
    radial-gradient(circle at 70% 80%, rgba(255, 111, 190, 0.4), transparent 55%);
  filter: blur(60px);
  z-index: -1;
  opacity: 0.9;
  animation: pulse 6s infinite alternate;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  animation: fadeInUp 0.9s ease-out 0.6s both;
}

.hero-cta .btn-primary {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(58, 208, 255, 0.4), 0 0 0 0 rgba(58, 208, 255, 0.7);
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero-cta .btn-primary:hover {
  box-shadow: 0 12px 40px rgba(255, 111, 190, 0.5), 0 0 0 4px rgba(255, 111, 190, 0.2);
  transform: translateY(-3px);
}

.hero-cta .btn-ghost {
  padding: 16px 32px;
  font-size: 1rem;
  border: 2px solid rgba(58, 208, 255, 0.5);
  background: rgba(10, 16, 31, 0.4);
  backdrop-filter: blur(10px);
}

.hero-cta .btn-ghost:hover {
  border-color: rgba(255, 111, 190, 0.7);
  background: rgba(255, 111, 190, 0.1);
  transform: translateY(-3px);
}

/* Profesyonel Yaklaşım Butonu Animasyonlu Oklar */
.profesyonel-yaklasim-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.profesyonel-yaklasim-wrapper .arrow-left,
.profesyonel-yaklasim-wrapper .arrow-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.2), rgba(255, 111, 190, 0.15));
  border: 1px solid rgba(58, 208, 255, 0.4);
  color: var(--accent);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(58, 208, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.profesyonel-yaklasim-wrapper .arrow-left::before,
.profesyonel-yaklasim-wrapper .arrow-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.4), rgba(255, 111, 190, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.profesyonel-yaklasim-wrapper .arrow-left:hover::before,
.profesyonel-yaklasim-wrapper .arrow-right:hover::before {
  opacity: 1;
}

.profesyonel-yaklasim-wrapper .arrow-left svg,
.profesyonel-yaklasim-wrapper .arrow-right svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 8px rgba(58, 208, 255, 0.6));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sol ok animasyonu - sağa doğru hareket */
.profesyonel-yaklasim-wrapper .arrow-left {
  animation: arrowPulseLeft 2s ease-in-out infinite;
}

.profesyonel-yaklasim-wrapper .arrow-left:hover {
  transform: translateX(-4px) scale(1.1);
  border-color: rgba(58, 208, 255, 0.7);
  box-shadow: 0 6px 30px rgba(58, 208, 255, 0.5);
}

.profesyonel-yaklasim-wrapper .arrow-left:hover svg {
  transform: translateX(4px);
}

/* Sağ ok animasyonu - sola doğru hareket */
.profesyonel-yaklasim-wrapper .arrow-right {
  animation: arrowPulseRight 2s ease-in-out infinite;
}

.profesyonel-yaklasim-wrapper .arrow-right:hover {
  transform: translateX(4px) scale(1.1);
  border-color: rgba(255, 111, 190, 0.7);
  box-shadow: 0 6px 30px rgba(255, 111, 190, 0.5);
}

.profesyonel-yaklasim-wrapper .arrow-right:hover svg {
  transform: translateX(-4px);
}

/* Buton hover olduğunda okları da vurgula */
.profesyonel-yaklasim-wrapper:hover .arrow-left,
.profesyonel-yaklasim-wrapper:hover .arrow-right {
  border-color: rgba(58, 208, 255, 0.6);
  box-shadow: 0 6px 30px rgba(58, 208, 255, 0.4);
}

@keyframes arrowPulseLeft {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-6px);
    opacity: 1;
  }
}

@keyframes arrowPulseRight {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .profesyonel-yaklasim-wrapper {
    gap: 12px;
  }

  .profesyonel-yaklasim-wrapper .arrow-left,
  .profesyonel-yaklasim-wrapper .arrow-right {
    width: 32px;
    height: 32px;
  }

  .profesyonel-yaklasim-wrapper .arrow-left svg,
  .profesyonel-yaklasim-wrapper .arrow-right svg {
    width: 18px;
    height: 18px;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0, transparent 60%);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.2), transparent 60%);
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: drift 18s linear infinite;
}

.hero-particles.is-static {
  animation: none;
  opacity: 0.18;
}

/* Section ortak stiller */
.section {
  padding: 120px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 208, 255, 0.04), rgba(255, 111, 190, 0.04));
  opacity: 0.4;
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(145, 255, 231, 0.22);
  background: rgba(10, 16, 31, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
}

.services-eyebrow {
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.2), rgba(255, 111, 190, 0.15));
  border: 1px solid rgba(58, 208, 255, 0.4);
  color: var(--accent);
  font-weight: 600;
  padding: 10px 24px;
  font-size: 0.8rem;
  box-shadow: 0 4px 20px rgba(58, 208, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.services-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, 
    var(--text-main) 0%,
    var(--accent) 40%,
    var(--primary) 70%,
    var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(58, 208, 255, 0.3);
  position: relative;
}

.services-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent,
    var(--primary),
    var(--secondary),
    transparent);
  border-radius: 999px;
}

.services-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244, 245, 255, 0.9);
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px;
  background: linear-gradient(135deg, 
    rgba(58, 208, 255, 0.08) 0%,
    rgba(255, 111, 190, 0.08) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(58, 208, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(8, 12, 26, 0.3);
  position: relative;
}

.services-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent,
    var(--primary),
    var(--secondary),
    transparent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Hizmet kartları */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(9, 15, 31, 0.8);
  border: 1px solid rgba(145, 255, 231, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(58, 208, 255, 0.15) 30%,
    rgba(255, 111, 190, 0.15) 70%,
    transparent 100%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
  animation: slideGradient 2s ease-in-out infinite;
}

@keyframes slideGradient {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 208, 255, 0.35);
  box-shadow: 0 12px 40px rgba(8, 12, 26, 0.4), 0 0 0 1px rgba(58, 208, 255, 0.2);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card .card-glow {
  position: absolute;
  inset: -50% -50% auto auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(58, 208, 255, 0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(40px);
}

.service-card:hover .card-glow {
  opacity: 1;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.card-subtitle {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 600;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(58, 208, 255, 0.15);
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
  flex-grow: 1;
}

.card-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}

.card-badge {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(58, 208, 255, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58, 208, 255, 0.15);
  text-align: center;
}

.maintenance-fee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 20px;
  background: rgba(58, 208, 255, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58, 208, 255, 0.2);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .maintenance-fee {
  background: rgba(58, 208, 255, 0.15);
  border-color: rgba(255, 111, 190, 0.3);
}

.maintenance-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.maintenance-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured {
  border-color: rgba(255, 111, 190, 0.4);
  background: rgba(9, 15, 31, 0.9);
}

.featured::before {
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 111, 190, 0.18) 30%,
    rgba(58, 208, 255, 0.18) 70%,
    transparent 100%);
}

.featured:hover::before {
  animation: slideGradient 2s ease-in-out infinite;
}

.featured:hover {
  border-color: rgba(255, 111, 190, 0.6);
  box-shadow: 0 12px 50px rgba(8, 12, 26, 0.5), 
              0 0 0 1px rgba(255, 111, 190, 0.3),
              0 0 60px rgba(255, 111, 190, 0.15);
}

.featured .card-glow {
  background: radial-gradient(circle, rgba(255, 111, 190, 0.3), transparent 70%);
}

/* Hakkımızda */
.about .section-header h2 {
  background: linear-gradient(135deg, 
    var(--text-main) 0%,
    var(--accent) 40%,
    var(--primary) 70%,
    var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(58, 208, 255, 0.3);
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  margin-top: 48px;
  min-height: 600px;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(244, 245, 255, 0.85);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(9, 15, 31, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(58, 208, 255, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  border-color: rgba(58, 208, 255, 0.3);
  background: rgba(9, 15, 31, 0.8);
}

.feature-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.feature-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-item strong {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 600;
}

.feature-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px;
  background: rgba(9, 15, 31, 0.7);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(58, 208, 255, 0.2);
  backdrop-filter: blur(10px);
}

.metric-item {
  text-align: center;
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(58, 208, 255, 0.3), transparent);
}

.metric-item strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.2;
}

.metric-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: radial-gradient(circle at 20% 20%, rgba(58, 208, 255, 0.2), transparent 65%),
    radial-gradient(circle at 80% 60%, rgba(255, 111, 190, 0.25), transparent 70%),
    rgba(9, 15, 31, 0.6);
  border: 1px solid rgba(145, 255, 231, 0.2);
  box-shadow: 0 24px 70px rgba(8, 12, 26, 0.6),
              0 0 0 1px rgba(58, 208, 255, 0.1);
  align-self: center;
}

@media (max-width: 968px) {
  .about-visual {
    min-height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.about-visual:hover .about-image {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.15);
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(58, 208, 255, 0.05) 0%,
    transparent 50%,
    rgba(255, 111, 190, 0.05) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-visual:hover::after {
  opacity: 1;
}

/* Takım */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.team-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(9, 15, 31, 0.8);
  border: 1px solid rgba(145, 255, 231, 0.14);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 111, 190, 0.4);
}

.avatar {
  margin-bottom: 18px;
}

.team-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.9rem;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.portfolio-card {
  background: rgba(9, 15, 31, 0.85);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(58, 208, 255, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(6, 9, 20, 0.4);
  position: relative;
  height: 100%;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.05) 0%,
    rgba(255, 111, 190, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

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

.portfolio-card:hover {
  transform: translateY(-12px);
  border-color: rgba(58, 208, 255, 0.5);
  box-shadow: 0 20px 60px rgba(58, 208, 255, 0.3),
    0 0 80px rgba(255, 111, 190, 0.2);
}

.portfolio-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(9, 15, 31, 0.5);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s ease;
  filter: brightness(0.7) contrast(1.1) saturate(0.9);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.15);
  filter: brightness(0.9) contrast(1.2) saturate(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 16, 31, 0.4) 40%,
    rgba(10, 16, 31, 0.95) 100%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  pointer-events: none;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.portfolio-category {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(58, 208, 255, 0.2);
  border: 1px solid rgba(58, 208, 255, 0.4);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(58, 208, 255, 0.2);
  animation: fadeInUp 0.4s ease-out;
}

.portfolio-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle,
    rgba(58, 208, 255, 0.2) 0%,
    rgba(255, 111, 190, 0.15) 50%,
    transparent 70%
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.portfolio-card:hover .portfolio-glow {
  opacity: 1;
  animation: pulseGlow 2s ease-in-out infinite;
}

.portfolio-copy {
  padding: 28px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 220px;
}

.portfolio-copy h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-main);
  line-height: 1.3;
  transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-copy h3 {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.4s ease;
  min-height: 48px;
}

.portfolio-card:hover .portfolio-copy p {
  color: rgba(244, 245, 255, 0.85);
}

.portfolio-stats {
  display: flex;
  gap: 20px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(58, 208, 255, 0.15);
  flex-shrink: 0;
}

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

.portfolio-stat strong {
  font-family: "Exo", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.portfolio-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .portfolio-copy {
    padding: 24px 20px;
    min-height: auto;
  }

  .portfolio-copy h3 {
    font-size: 1.3rem;
  }

  .portfolio-stats {
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }
}

/* Testimonials */
.testimonial-eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.15), rgba(255, 111, 190, 0.15));
  border: 1px solid rgba(58, 208, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(58, 208, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.testimonial-title {
  font-family: "Exo", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(58, 208, 255, 0.3);
  position: relative;
}

.testimonial-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(58, 208, 255, 0.6);
  animation: slideGradient 3s ease-in-out infinite;
}

.testimonial-description {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px 32px;
  background: rgba(9, 15, 31, 0.6);
  border: 1px solid rgba(58, 208, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(6, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.testimonial-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 64px;
}

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(9, 15, 31, 0.85);
  border: 1px solid rgba(58, 208, 255, 0.2);
  backdrop-filter: blur(16px);
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(6, 9, 20, 0.4);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.05) 0%,
    rgba(255, 111, 190, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(58, 208, 255, 0.4);
  box-shadow: 0 16px 48px rgba(58, 208, 255, 0.3),
    0 0 60px rgba(255, 111, 190, 0.2);
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.2), rgba(255, 111, 190, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(58, 208, 255, 0.3);
  border: 2px solid rgba(58, 208, 255, 0.3);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(58, 208, 255, 0.5);
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--text-main);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
}

.testimonial-card .stars {
  color: var(--secondary);
  letter-spacing: 3px;
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(255, 111, 190, 0.5));
}

.testimonial-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
  font-style: italic;
  position: relative;
  padding-left: 24px;
}

.testimonial-card p::before {
  content: "\"";
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
}

@media (max-width: 768px) {
  .testimonial-title {
    font-size: 1.8rem;
  }

  .testimonial-description {
    padding: 20px 24px;
    font-size: 0.95rem;
    margin-top: 24px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .testimonial-info h3 {
    font-size: 1.1rem;
  }
}

/* Blog */
.blog-eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.15), rgba(255, 111, 190, 0.15));
  border: 1px solid rgba(58, 208, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(58, 208, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.blog-title {
  font-family: "Exo", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(58, 208, 255, 0.3);
  position: relative;
}

.blog-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(58, 208, 255, 0.6);
  animation: slideGradient 3s ease-in-out infinite;
}

.blog-description {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px 32px;
  background: rgba(9, 15, 31, 0.6);
  border: 1px solid rgba(58, 208, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(6, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.blog-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.blog-card {
  background: rgba(9, 15, 31, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(58, 208, 255, 0.2);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(6, 9, 20, 0.4);
  position: relative;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.05) 0%,
    rgba(255, 111, 190, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.blog-card:hover {
  transform: translateY(-12px);
  border-color: rgba(58, 208, 255, 0.5);
  box-shadow: 0 20px 60px rgba(58, 208, 255, 0.3),
    0 0 80px rgba(255, 111, 190, 0.2);
}

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

.blog-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-dark);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s ease;
  filter: brightness(0.7) contrast(1.1);
}

.blog-card:hover .blog-image img {
  transform: scale(1.12);
  filter: brightness(0.9) contrast(1.2);
}

.blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 16, 31, 0.3) 50%,
    rgba(10, 16, 31, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.blog-card:hover .blog-overlay {
  opacity: 0.6;
}

.blog-copy {
  padding: 28px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-copy .meta {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(58, 208, 255, 0.1);
  border-radius: 20px;
  width: fit-content;
  border: 1px solid rgba(58, 208, 255, 0.2);
}

.blog-copy h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-main);
  line-height: 1.3;
  transition: all 0.4s ease;
}

.blog-card:hover .blog-copy h3 {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-copy p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

.blog-card:hover .blog-copy p {
  color: rgba(244, 245, 255, 0.85);
}

.blog-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: all 0.3s ease;
  width: fit-content;
}

.blog-link:hover {
  color: var(--accent);
  gap: 10px;
  text-shadow: 0 0 20px rgba(58, 208, 255, 0.6);
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 1.8rem;
  }

  .blog-description {
    padding: 20px 24px;
    font-size: 0.95rem;
    margin-top: 24px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .blog-copy {
    padding: 24px 20px;
  }

  .blog-copy h3 {
    font-size: 1.2rem;
  }
}

.section-footer {
  text-align: center;
  margin-top: 48px;
}

/* Blog Post Pages */
.blog-post {
  min-height: 100vh;
  padding-top: 100px;
}

.blog-post-hero {
  padding: 60px 0 40px;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.1) 0%,
    rgba(255, 111, 190, 0.1) 100%
  );
  border-bottom: 1px solid rgba(58, 208, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.blog-post-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(58, 208, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.back-link:hover {
  color: var(--accent);
  gap: 12px;
}

.blog-post-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.blog-post-category {
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.15), rgba(255, 111, 190, 0.15));
  border: 1px solid rgba(58, 208, 255, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(58, 208, 255, 0.2);
}

.blog-post-date {
  padding: 8px 18px;
  background: rgba(9, 15, 31, 0.7);
  border: 1px solid rgba(58, 208, 255, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
}

.blog-post-title {
  font-family: "Exo", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.blog-post-excerpt {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.blog-post-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 32px;
  margin-top: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.blog-post-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(6, 9, 20, 0.4),
    0 0 60px rgba(58, 208, 255, 0.15);
  border: 1px solid rgba(58, 208, 255, 0.2);
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px 80px;
  position: relative;
  z-index: 2;
  display: block;
  visibility: visible;
  opacity: 1;
}

.blog-post-body {
  background: rgba(9, 15, 31, 0.7);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  border: 1px solid rgba(58, 208, 255, 0.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(6, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
  display: block;
  visibility: visible;
  opacity: 1;
}

.blog-post-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-post-body .lead {
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--text-main);
  margin-bottom: 48px;
  font-weight: 500;
  padding: 24px;
  background: rgba(58, 208, 255, 0.05);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
}

.blog-post-body h2 {
  font-family: "Exo", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 56px 0 24px 0;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(58, 208, 255, 0.2);
}

.blog-post-body h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 40px 0 16px 0;
  color: var(--text-main);
}

.blog-post-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 28px 0;
  padding-left: 28px;
  color: var(--text-muted);
}

.blog-post-body li {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 14px;
  position: relative;
}

.blog-post-body ul li::marker {
  color: var(--primary);
}

.blog-post-body ol li::marker {
  color: var(--primary);
  font-weight: 600;
}

.blog-post-body li strong {
  color: var(--primary);
  font-weight: 600;
}

.blog-post-cta {
  margin-top: 64px;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.1) 0%,
    rgba(255, 111, 190, 0.1) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(58, 208, 255, 0.3);
  text-align: center;
}

.blog-post-cta h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-post-cta p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .blog-post {
    padding-top: 80px;
  }

  .blog-post-hero {
    padding: 40px 0 32px;
  }

  .blog-post-title {
    font-size: 1.8rem;
  }

  .blog-post-excerpt {
    font-size: 1.05rem;
  }

  .blog-post-image {
    padding: 0 16px;
    margin-top: 32px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
  }

  .blog-post-image img {
    aspect-ratio: 1 / 1;
    max-height: none;
  }

  .blog-post-content {
    padding: 0 16px 48px;
    position: relative;
    z-index: 2;
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .blog-post-body {
    padding: 32px 24px;
    position: relative;
    z-index: 2;
    display: block;
    visibility: visible;
    opacity: 1;
    backdrop-filter: none;
    background: rgba(9, 15, 31, 0.95);
  }

  .blog-post-body .lead {
    font-size: 1.1rem;
    padding: 20px;
    margin-bottom: 32px;
  }

  .blog-post-body h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px 0;
  }

  .blog-post-body h3 {
    font-size: 1.25rem;
    margin: 32px 0 14px 0;
  }

  .blog-post-body p,
  .blog-post-body li {
    font-size: 1rem;
  }

  .blog-post-cta {
    padding: 32px 24px;
  }

  .blog-post-cta h3 {
    font-size: 1.5rem;
  }

  .blog-post-title,
  .blog-post-body h2,
  .blog-post-cta h3 {
    background: none;
    color: var(--text-main);
    -webkit-text-fill-color: var(--text-main);
  }
}

/* Process */
.process-eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.15), rgba(255, 111, 190, 0.15));
  border: 1px solid rgba(58, 208, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(58, 208, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.process-title {
  font-family: "Exo", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(58, 208, 255, 0.3);
  position: relative;
}

.process-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(58, 208, 255, 0.6);
  animation: slideGradient 3s ease-in-out infinite;
}

.process-description {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px 32px;
  background: rgba(9, 15, 31, 0.6);
  border: 1px solid rgba(58, 208, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(6, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.process-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
  padding: 0 12px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(58, 208, 255, 0.3) 10%,
    rgba(58, 208, 255, 0.5) 50%,
    rgba(255, 111, 190, 0.5) 50%,
    rgba(255, 111, 190, 0.3) 90%,
    transparent 100%
  );
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  animation: slideGradient 4s ease-in-out infinite;
}

.process-step {
  background: rgba(9, 15, 31, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(58, 208, 255, 0.2);
  overflow: visible;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(6, 9, 20, 0.5),
    0 0 0 0 rgba(58, 208, 255, 0);
  z-index: 1;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.1) 0%,
    rgba(255, 111, 190, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.process-step:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(58, 208, 255, 0.5);
  box-shadow: 0 20px 60px rgba(58, 208, 255, 0.3),
    0 0 80px rgba(255, 111, 190, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.process-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-dark);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s ease;
  filter: brightness(0.65) contrast(1.15) saturate(1.1);
}

.process-step:hover .process-image img {
  transform: scale(1.12);
  filter: brightness(0.9) contrast(1.2) saturate(1.2);
}

.process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 16, 31, 0.4) 40%,
    rgba(10, 16, 31, 0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.process-step:hover .process-overlay {
  opacity: 0.7;
}

.process-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle,
    rgba(58, 208, 255, 0.2) 0%,
    rgba(255, 111, 190, 0.15) 50%,
    transparent 70%
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.process-step:hover .process-glow {
  opacity: 1;
  animation: pulseGlow 2s ease-in-out infinite;
}

.process-content {
  padding: 36px 32px;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-content .step {
  font-family: "Exo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 6px;
  position: relative;
  text-shadow: 0 0 20px rgba(58, 208, 255, 0.5);
}

.process-content .step::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(58, 208, 255, 0.8);
  transition: width 0.4s ease;
}

.process-step:hover .process-content .step::after {
  width: 70px;
}

.process-content h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-main);
  line-height: 1.3;
  background: linear-gradient(135deg, var(--text-main), rgba(244, 245, 255, 0.95));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.process-step:hover .process-content h3 {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
  transition: color 0.4s ease;
}

.process-step:hover .process-content p {
  color: rgba(244, 245, 255, 0.9);
}

.process-connector {
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(58, 208, 255, 0.4), rgba(255, 111, 190, 0.4));
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(58, 208, 255, 0.5);
}

.process-connector::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid rgba(255, 111, 190, 0.6);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  filter: drop-shadow(0 0 4px rgba(255, 111, 190, 0.8));
}

.process-step:hover .process-connector {
  background: linear-gradient(90deg, rgba(58, 208, 255, 0.8), rgba(255, 111, 190, 0.8));
  box-shadow: 0 0 20px rgba(58, 208, 255, 0.8);
  width: 32px;
  right: -32px;
}

.process-step:hover .process-connector::before {
  border-left-color: rgba(255, 111, 190, 1);
  filter: drop-shadow(0 0 8px rgba(255, 111, 190, 1));
}

@media (max-width: 1200px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-title {
    font-size: 1.8rem;
  }

  .process-description {
    padding: 20px 24px;
    font-size: 0.95rem;
    margin-top: 24px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 48px;
  }

  .process-content {
    padding: 28px 24px;
  }

  .process-content h3 {
    font-size: 1.4rem;
  }
}

/* FAQ */
.faq-eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.15), rgba(255, 111, 190, 0.15));
  border: 1px solid rgba(58, 208, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(58, 208, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.faq-title {
  font-family: "Exo", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(58, 208, 255, 0.3);
  position: relative;
}

.faq-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(58, 208, 255, 0.6);
  animation: slideGradient 3s ease-in-out infinite;
}

.faq-description {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px 32px;
  background: rgba(9, 15, 31, 0.6);
  border: 1px solid rgba(58, 208, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(6, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.faq-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.faq-list {
  display: grid;
  gap: 20px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: rgba(9, 15, 31, 0.85);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(58, 208, 255, 0.2);
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(6, 9, 20, 0.4);
  overflow: hidden;
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.05) 0%,
    rgba(255, 111, 190, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.faq-item:hover {
  border-color: rgba(58, 208, 255, 0.4);
  box-shadow: 0 12px 48px rgba(58, 208, 255, 0.25),
    0 0 60px rgba(255, 111, 190, 0.15);
  transform: translateY(-2px);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item[open] {
  border-color: rgba(255, 111, 190, 0.5);
  box-shadow: 0 16px 56px rgba(58, 208, 255, 0.3),
    0 0 80px rgba(255, 111, 190, 0.2);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  outline: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  position: relative;
  transition: all 0.3s ease;
  user-select: none;
}

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

.faq-item summary::marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.2), rgba(255, 111, 190, 0.2));
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(58, 208, 255, 0.2);
}

.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.4), rgba(255, 111, 190, 0.4));
  box-shadow: 0 4px 16px rgba(58, 208, 255, 0.4);
}

.faq-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.15), rgba(255, 111, 190, 0.15));
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(58, 208, 255, 0.2);
}

.faq-question {
  flex: 1;
  font-family: "Exo", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

.faq-item[open] .faq-question {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-answer {
  padding: 0 28px 28px 84px;
  animation: fadeInDown 0.4s ease-out;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
}

.faq-item[open] .faq-answer p {
  color: rgba(244, 245, 255, 0.9);
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 1.8rem;
  }

  .faq-description {
    padding: 20px 24px;
    font-size: 0.95rem;
    margin-top: 24px;
  }

  .faq-list {
    gap: 16px;
    margin-top: 36px;
  }

  .faq-item summary {
    padding: 20px 24px;
    gap: 12px;
  }

  .faq-item summary::after {
    right: 24px;
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 24px 24px 72px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

/* İletişim */
.contact-eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.15), rgba(255, 111, 190, 0.15));
  border: 1px solid rgba(58, 208, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(58, 208, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.contact-title {
  font-family: "Exo", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(58, 208, 255, 0.3);
  position: relative;
}

.contact-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(58, 208, 255, 0.6);
  animation: slideGradient 3s ease-in-out infinite;
}

.contact-description {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px 32px;
  background: rgba(9, 15, 31, 0.6);
  border: 1px solid rgba(58, 208, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(6, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.contact-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-top: 64px;
}

.contact-copy {
  display: grid;
  gap: 32px;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(9, 15, 31, 0.7);
  border: 1px solid rgba(58, 208, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(6, 9, 20, 0.3);
}

.contact-link:hover {
  border-color: rgba(58, 208, 255, 0.5);
  background: rgba(9, 15, 31, 0.85);
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(58, 208, 255, 0.25),
    0 0 40px rgba(255, 111, 190, 0.15);
}

.contact-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.2), rgba(255, 111, 190, 0.2));
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(58, 208, 255, 0.3);
}

.contact-link:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(58, 208, 255, 0.5);
}

.contact-link div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.contact-value {
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 500;
}

.contact-link:hover .contact-value {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-whatsapp {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
}

.contact-whatsapp span {
  font-size: 1.3rem;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(58, 208, 255, 0.25);
  padding: 0;
  text-align: center;
  background: rgba(9, 15, 31, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(6, 9, 20, 0.3);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.05) 0%,
    rgba(255, 111, 190, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.map-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(58, 208, 255, 0.1), rgba(9, 15, 31, 0.8));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.map-animation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(58, 208, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 208, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  animation: mapGridMove 20s linear infinite;
}

@keyframes mapGridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(58, 208, 255, 0.3), transparent);
  height: 2px;
  width: 100%;
  opacity: 0.5;
}

.map-line-1 {
  top: 30%;
  animation: mapLineMove 3s ease-in-out infinite;
}

.map-line-2 {
  top: 50%;
  animation: mapLineMove 4s ease-in-out infinite 0.5s;
}

.map-line-3 {
  top: 70%;
  animation: mapLineMove 5s ease-in-out infinite 1s;
}

@keyframes mapLineMove {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%);
    opacity: 0.5;
  }
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: mapPinPulse 2s ease-in-out infinite;
}

.pin-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 15px rgba(58, 208, 255, 0.8));
  position: relative;
  z-index: 2;
  animation: mapPinBounce 2s ease-in-out infinite;
}

.pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 208, 255, 0.4), transparent 70%);
  animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPinPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

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

@keyframes mapPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.map-info {
  padding: 24px 32px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(58, 208, 255, 0.15);
}

.map-info p {
  font-family: "Exo", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 8px 0;
}

.map-info span {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
}

.map-placeholder:hover .map-pin {
  animation-duration: 1.5s;
}

.map-placeholder:hover .pin-pulse {
  animation-duration: 1.5s;
}

.map-placeholder:hover .map-line {
  animation-duration: 2s;
}

.contact-form {
  display: grid;
  gap: 24px;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(9, 15, 31, 0.9);
  border: 1px solid rgba(58, 208, 255, 0.25);
  box-shadow: 0 12px 48px rgba(6, 9, 20, 0.5),
    0 0 0 0 rgba(58, 208, 255, 0);
  backdrop-filter: blur(16px);
  position: relative;
  transition: all 0.4s ease;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.05) 0%,
    rgba(255, 111, 190, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.contact-form:hover::before {
  opacity: 1;
}

.contact-form:hover {
  border-color: rgba(58, 208, 255, 0.4);
  box-shadow: 0 16px 64px rgba(58, 208, 255, 0.3),
    0 0 80px rgba(255, 111, 190, 0.2);
}

.form-header {
  margin-bottom: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(58, 208, 255, 0.2);
}

.form-header h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  background: linear-gradient(135deg, var(--text-main), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.label-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58, 208, 255, 0.3);
  background: rgba(10, 16, 31, 0.7);
  color: var(--text-main);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  backdrop-filter: blur(8px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(244, 245, 255, 0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(58, 208, 255, 0.6);
  background: rgba(10, 16, 31, 0.85);
  box-shadow: 0 0 0 3px rgba(58, 208, 255, 0.15),
    0 4px 16px rgba(58, 208, 255, 0.2);
  transform: translateY(-2px);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233ad0ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.contact-form button {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  position: relative;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.contact-form button .btn-text,
.contact-form button .btn-loader {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form button .btn-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.contact-form button span {
  font-size: 1.2rem;
}

/* Form Mesajları */
.form-message {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  animation: fadeInDown 0.4s ease-out;
  border: 1px solid;
}

.form-message--success {
  background: rgba(58, 208, 255, 0.1);
  border-color: rgba(58, 208, 255, 0.3);
  color: var(--accent);
}

.form-message--error {
  background: rgba(255, 111, 190, 0.1);
  border-color: rgba(255, 111, 190, 0.3);
  color: var(--secondary);
}

.form-message-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  font-weight: 700;
}

.form-message strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.form-message p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-muted);
}

/* Form Hata Mesajları */
.field-error {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-top: 4px;
  min-height: 20px;
  animation: fadeInDown 0.3s ease-out;
}

.contact-form input:invalid:not(:focus):not(:placeholder-shown),
.contact-form textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(255, 111, 190, 0.5);
}

.contact-form input:valid:not(:focus):not(:placeholder-shown),
.contact-form textarea:valid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(58, 208, 255, 0.5);
}

.label-text .required {
  color: var(--secondary);
  margin-left: 2px;
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10, 16, 31, 0.3);
  border-top-color: var(--bg-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 1.8rem;
  }

  .contact-description {
    padding: 20px 24px;
    font-size: 0.95rem;
    margin-top: 24px;
  }

  .contact-grid {
    margin-top: 48px;
    gap: 32px;
  }

  .contact-link {
    padding: 16px 20px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .map-placeholder {
    min-height: 250px;
  }

  .map-container {
    height: 180px;
  }

  .map-info {
    padding: 20px 24px;
  }

  .map-info p {
    font-size: 1.1rem;
  }

  .map-info span {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 28px 24px;
  }

  .form-header h3 {
    font-size: 1.3rem;
  }
}

/* Footer */
.site-footer {
  padding: 80px 0 32px;
  background: rgba(6, 9, 20, 0.9);
  border-top: 1px solid rgba(145, 255, 231, 0.18);
  position: relative;
}

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

.footer-grid h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: 0.9rem;
}

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

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(58, 208, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.back-to-top {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, var(--primary), var(--secondary));
  color: var(--bg-dark);
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Placeholder genel stiller */
.img-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.25), rgba(255, 111, 190, 0.25));
  border-radius: var(--radius-md);
  border: 1px dashed rgba(58, 208, 255, 0.35);
  color: rgba(10, 16, 31, 0.8);
  font-weight: 600;
  min-height: 200px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.img-placeholder.tall {
  min-height: 360px;
}

.img-placeholder.wide {
  min-height: 160px;
}

.img-placeholder.circle {
  border-radius: 50%;
  width: 96px;
  height: 96px;
  border-style: solid;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(58, 208, 255, 0));
  border-radius: 50%;
  opacity: 0.8;
  animation-name: float;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes float {
  from {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: translateY(-40px);
    opacity: 0.2;
  }
}

@keyframes heroCarousel {
  0% {
    opacity: 0;
    transform: scale(0.75) translateY(40px) perspective(1000px) rotateX(25deg) rotateY(-5deg);
    filter: saturate(0.5) contrast(0.7) brightness(0.4);
    z-index: 1;
  }
  3% {
    opacity: 1;
    transform: scale(1.05) translateY(-5px) perspective(1000px) rotateX(-2deg) rotateY(2deg);
    filter: saturate(1.3) contrast(1.15) brightness(1.1);
    z-index: 3;
  }
  20% {
    opacity: 1;
    transform: scale(1) translateY(0) perspective(1000px) rotateX(0deg) rotateY(0deg);
    filter: saturate(1.2) contrast(1.1) brightness(1);
    z-index: 3;
  }
  22% {
    opacity: 1;
    transform: scale(0.98) translateY(2px) perspective(1000px) rotateX(2deg) rotateY(-1deg);
    filter: saturate(1.1) contrast(1.05) brightness(0.95);
    z-index: 3;
  }
  25% {
    opacity: 0;
    transform: scale(0.85) translateY(30px) perspective(1000px) rotateX(15deg) rotateY(5deg);
    filter: saturate(0.6) contrast(0.8) brightness(0.5);
    z-index: 1;
  }
  100% {
    opacity: 0;
    transform: scale(0.75) translateY(40px) perspective(1000px) rotateX(25deg) rotateY(-5deg);
    filter: saturate(0.5) contrast(0.7) brightness(0.4);
    z-index: 1;
  }
}

/* Animasyonlar */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(58, 208, 255, 0.4), 0 0 0 0 rgba(58, 208, 255, 0.7);
  }
  50% {
    box-shadow: 0 8px 40px rgba(58, 208, 255, 0.6), 0 0 0 4px rgba(58, 208, 255, 0.3);
  }
}

@keyframes pulse {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}

@keyframes drift {
  from {
    transform: translate3d(-5%, -5%, 0) scale(1);
  }
  to {
    transform: translate3d(5%, 5%, 0) scale(1.05);
  }
}

/* Scroll animasyon sınıfları */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 640ms ease, transform 640ms ease;
}

html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(32px);
  will-change: transform, opacity;
}

html.js-enabled.reveal-ready .reveal {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* Tablet görünümü */
@media (max-width: 1024px) {
  .header-content {
    gap: 24px;
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 0.88rem;
  }

  .nav .btn {
    padding: 9px 18px;
    font-size: 0.88rem;
  }
}

/* Reduced motion - Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Reduce animations on mobile for better performance */
  .hero-gallery img {
    animation-duration: 8s;
    will-change: auto;
  }
  
  .hero-glow {
    animation-duration: 8s;
  }
  
  html.js-enabled .reveal {
    transition-duration: 400ms;
  }
  
  /* Optimize backdrop filters on mobile */
  .site-header {
    backdrop-filter: blur(8px);
  }
  
  /* Reduce particle count on mobile */
  .hero-particles .particle {
    display: none;
  }
  
  .hero-particles .particle:nth-child(-n+18) {
    display: block;
  }
}

/* Duyarlılık */
@media (max-width: 768px) {
  body {
    background-image: radial-gradient(circle at top, rgba(58, 208, 255, 0.16), rgba(10, 16, 31, 0.96) 70%);
    background-attachment: scroll;
    background-size: auto;
  }

  .hero-gallery {
    animation: none;
  }

  .hero-gallery img {
    animation: none;
  }

  html.js-enabled .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-particles {
    display: none;
  }

  .map-animation,
  .map-animation * {
    animation: none !important;
    transform: none !important;
  }

  .nav {
    position: fixed;
    inset: 72px 24px auto;
    padding: 24px;
    background: rgba(9, 15, 31, 0.96);
    border-radius: var(--radius-md);
    border: 1px solid rgba(58, 208, 255, 0.25);
    flex-direction: column;
    gap: 16px;
    transform: scale(0.9);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-toggle {
    display: flex;
  }

  .header-content {
    padding: 14px 0;
    gap: 12px;
  }

  .logo {
    gap: 6px;
    flex-shrink: 1;
    min-width: 0;
  }

  .logo img {
    height: 36px;
    max-width: 120px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 0.85rem;
    padding: 4px 0;
  }

  .nav .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    margin-left: 4px;
  }

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

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 16px;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
    padding: 14px 28px;
  }

  .hero-gallery {
    max-width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 24px;
  }

  .services-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 16px;
  }

  .services-description {
    font-size: 1rem;
    padding: 20px;
    margin-top: 24px;
  }

  .services-eyebrow {
    padding: 8px 20px;
    font-size: 0.75rem;
  }

  .price-amount {
    font-size: 1.8rem;
  }

  .about-content h3 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .metrics {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .metric-item:not(:last-child)::after {
    display: none;
  }

  .metric-item strong {
    font-size: 2rem;
  }

  .about-features {
    gap: 16px;
  }

  .feature-item {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(9, 15, 31, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(58, 208, 255, 0.3);
  padding: 24px 32px;
  box-shadow: 0 -8px 32px rgba(6, 9, 20, 0.5),
              0 0 0 1px rgba(58, 208, 255, 0.1);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.5s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 280px;
}

.cookie-consent-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-consent-text a {
  color: var(--primary);
  text-decoration: underline;
  transition: color var(--transition);
}

.cookie-consent-text a:hover {
  color: var(--accent);
}

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

.cookie-consent-btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.cookie-consent-btn-accept {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow);
}

.cookie-consent-btn-accept:hover {
  box-shadow: 0 0 65px rgba(255, 111, 190, 0.45);
  transform: translateY(-2px);
}

.cookie-consent-btn-settings {
  background: rgba(58, 208, 255, 0.1);
  color: var(--text-main);
  border: 1px solid rgba(58, 208, 255, 0.3);
}

.cookie-consent-btn-settings:hover {
  background: rgba(58, 208, 255, 0.2);
  border-color: rgba(58, 208, 255, 0.5);
}

.cookie-consent-btn-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(145, 255, 231, 0.2);
}

.cookie-consent-btn-reject:hover {
  color: var(--text-main);
  border-color: rgba(145, 255, 231, 0.4);
}

.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(6, 9, 20, 0.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-settings-modal.show {
  display: flex;
  opacity: 1;
}

.cookie-settings-content {
  background: rgba(9, 15, 31, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(58, 208, 255, 0.3);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(6, 9, 20, 0.7),
              0 0 0 1px rgba(58, 208, 255, 0.1);
  position: relative;
}

.cookie-settings-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(58, 208, 255, 0.2);
}

.cookie-settings-header h2 {
  font-family: "Exo", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cookie-settings-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.cookie-settings-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(58, 208, 255, 0.1);
  border: 1px solid rgba(58, 208, 255, 0.2);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
}

.cookie-settings-close:hover {
  background: rgba(58, 208, 255, 0.2);
  border-color: rgba(58, 208, 255, 0.4);
  transform: rotate(90deg);
}

.cookie-setting-item {
  padding: 20px;
  background: rgba(9, 15, 31, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(58, 208, 255, 0.15);
  margin-bottom: 16px;
}

.cookie-setting-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-setting-header h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-main);
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: rgba(58, 208, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition);
  border: 1px solid rgba(58, 208, 255, 0.3);
}

.cookie-toggle.active {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
}

.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--bg-dark);
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active .cookie-toggle-slider {
  transform: translateX(24px);
}

.cookie-setting-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-settings-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(58, 208, 255, 0.2);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 20px 24px;
  }

  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-btn {
    width: 100%;
  }

  .cookie-settings-content {
    padding: 32px 24px;
    max-height: 95vh;
  }

  .cookie-settings-header h2 {
    font-size: 1.5rem;
  }
}

/* ============================================
   ANA SAYFA - YAKLAŞIM TEASER BÖLÜMÜ
   ============================================ */

.approach-teaser {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.08) 0%,
    rgba(255, 111, 190, 0.06) 100%
  );
  border-top: 1px solid rgba(58, 208, 255, 0.2);
  border-bottom: 1px solid rgba(58, 208, 255, 0.2);
}

.approach-teaser::before,
.approach-teaser::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.approach-teaser::before {
  width: 420px;
  height: 420px;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(58, 208, 255, 0.25), transparent 70%);
}

.approach-teaser::after {
  width: 380px;
  height: 380px;
  bottom: -25%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 111, 190, 0.2), transparent 70%);
}

.approach-card {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 64px;
  border-radius: var(--radius-lg);
  background: rgba(9, 15, 31, 0.75);
  border: 1px solid rgba(58, 208, 255, 0.25);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(8, 12, 26, 0.55);
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.approach-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.08),
    rgba(255, 111, 190, 0.12)
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

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

.approach-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(58, 208, 255, 0.18);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: center;
  border: 1px solid rgba(58, 208, 255, 0.4);
  box-shadow: 0 6px 24px rgba(58, 208, 255, 0.25);
}

.approach-card h2 {
  font-family: "Exo", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.approach-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(244, 245, 255, 0.9);
  margin: 0;
}

.approach-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.approach-highlights li {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(244, 245, 255, 0.85);
  position: relative;
  padding-left: 0;
}

.approach-highlights strong {
  color: var(--accent);
  font-weight: 600;
}

.approach-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.approach-actions .btn {
  min-width: 220px;
}

@media (max-width: 768px) {
  .approach-card {
    padding: 40px 28px;
  }

  .approach-card p {
    font-size: 1.05rem;
  }

  .approach-highlights {
    gap: 12px;
  }

  .approach-actions {
    flex-direction: column;
  }

  .approach-actions .btn {
    width: 100%;
  }
}

/* ============================================
   PROFESYONEL YAKLAŞIM SAYFASI STİLLERİ
   ============================================ */

.profesyonel-yaklasim-page {
  min-height: 100vh;
  padding-top: 100px;
}

/* Hero Section */
.profesyonel-hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.08) 0%,
    rgba(255, 111, 190, 0.08) 50%,
    rgba(145, 255, 231, 0.05) 100%
  );
  border-bottom: 1px solid rgba(58, 208, 255, 0.2);
}

.profesyonel-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58, 208, 255, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
}

.profesyonel-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 111, 190, 0.12), transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  animation: float 25s ease-in-out infinite reverse;
}

.profesyonel-hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.profesyonel-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profesyonel-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(58, 208, 255, 0.2), rgba(255, 111, 190, 0.15));
  border: 1px solid rgba(58, 208, 255, 0.4);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(58, 208, 255, 0.2);
  animation: fadeInDown 0.8s ease-out;
}

.profesyonel-title {
  font-family: "Exo", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--text-main) 0%,
    var(--accent) 40%,
    var(--primary) 70%,
    var(--secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(58, 208, 255, 0.3);
  animation: fadeInUp 0.9s ease-out 0.2s both;
}

.profesyonel-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(244, 245, 255, 0.9);
  margin: 0;
  max-width: 600px;
  animation: fadeInUp 0.9s ease-out 0.4s both;
}

.profesyonel-hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(58, 208, 255, 0.25),
    transparent 65%
  ),
  radial-gradient(
    circle at 70% 70%,
    rgba(255, 111, 190, 0.3),
    transparent 70%
  ),
  rgba(9, 15, 31, 0.7);
  border: 1px solid rgba(145, 255, 231, 0.25);
  box-shadow: 0 30px 90px rgba(8, 12, 26, 0.7),
    0 0 0 1px rgba(58, 208, 255, 0.15),
    inset 0 0 60px rgba(58, 208, 255, 0.1);
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(1.1) contrast(1.05);
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
  filter: saturate(1.2) contrast(1.15);
}

.hero-image-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(58, 208, 255, 0.4),
    rgba(255, 111, 190, 0.3),
    transparent 70%
  );
  filter: blur(60px);
  z-index: -1;
  opacity: 0.8;
  animation: pulseGlow 4s ease-in-out infinite;
}

.profesyonel-hero-particles {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0,
    transparent 60%
  );
  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.2),
    transparent 60%
  );
  opacity: 0.3;
  mix-blend-mode: screen;
  animation: drift 20s linear infinite;
}

/* Intro Section */
.profesyonel-intro {
  background: rgba(9, 15, 31, 0.4);
  border-top: 1px solid rgba(58, 208, 255, 0.15);
  border-bottom: 1px solid rgba(58, 208, 255, 0.15);
}

.profesyonel-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text .lead-text {
  font-size: 1.3rem;
  line-height: 1.85;
  color: var(--text-main);
  margin-bottom: 24px;
  font-weight: 500;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(244, 245, 255, 0.85);
  margin-bottom: 0;
}

.intro-text strong {
  color: var(--accent);
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Grid */
.profesyonel-section {
  position: relative;
}

.profesyonel-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.profesyonel-section-reverse .profesyonel-section-grid {
  direction: rtl;
}

.profesyonel-section-reverse .profesyonel-section-grid > * {
  direction: ltr;
}

.profesyonel-section-image {
  position: relative;
}

.section-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(58, 208, 255, 0.2),
    transparent 65%
  ),
  radial-gradient(
    circle at 80% 60%,
    rgba(255, 111, 190, 0.25),
    transparent 70%
  ),
  rgba(9, 15, 31, 0.6);
  border: 1px solid rgba(145, 255, 231, 0.2);
  box-shadow: 0 24px 70px rgba(8, 12, 26, 0.6),
    0 0 0 1px rgba(58, 208, 255, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.section-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 90px rgba(58, 208, 255, 0.3),
    0 0 0 1px rgba(58, 208, 255, 0.2);
}

.section-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s ease;
  filter: brightness(0.85) contrast(1.1) saturate(1.05);
}

.section-image-wrapper:hover img {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2) saturate(1.15);
}

.section-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.05) 0%,
    transparent 50%,
    rgba(255, 111, 190, 0.05) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.section-image-wrapper:hover .section-image-overlay {
  opacity: 1;
}

.section-image-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle,
    rgba(58, 208, 255, 0.25) 0%,
    rgba(255, 111, 190, 0.2) 50%,
    transparent 70%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
  filter: blur(60px);
}

.section-image-wrapper:hover .section-image-glow {
  opacity: 1;
  animation: pulseGlow 3s ease-in-out infinite;
}

.profesyonel-section-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg-dark);
  font-family: "Exo", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(58, 208, 255, 0.4);
  margin-bottom: 8px;
  animation: fadeInDown 0.6s ease-out;
}

.profesyonel-section-content h2 {
  font-family: "Exo", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profesyonel-section-content p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(244, 245, 255, 0.85);
  margin-bottom: 20px;
}

.profesyonel-section-content strong {
  color: var(--accent);
  font-weight: 600;
}

.feature-highlights {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

.feature-highlight-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(9, 15, 31, 0.7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(58, 208, 255, 0.2);
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-highlight-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(58, 208, 255, 0.1) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

.feature-highlight-item:hover::before {
  left: 100%;
}

.feature-highlight-item:hover {
  transform: translateX(8px);
  border-color: rgba(58, 208, 255, 0.4);
  box-shadow: 0 12px 40px rgba(58, 208, 255, 0.2);
}

.feature-highlight-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(58, 208, 255, 0.5));
  animation: float 3s ease-in-out infinite;
}

.feature-highlight-item:nth-child(2) .feature-highlight-icon {
  animation-delay: 0.5s;
}

.feature-highlight-item h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-highlight-item p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(244, 245, 255, 0.8);
  margin: 0;
}

/* Mockup Section */
.profesyonel-mockup {
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.1) 0%,
    rgba(255, 111, 190, 0.08) 100%
  );
  border-top: 1px solid rgba(58, 208, 255, 0.2);
  border-bottom: 1px solid rgba(58, 208, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.profesyonel-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(58, 208, 255, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.profesyonel-mockup-content {
  position: relative;
  z-index: 1;
}

.mockup-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.mockup-header .section-badge {
  margin: 0 auto 24px;
}

.mockup-header h2 {
  font-family: "Exo", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mockup-lead {
  font-size: 1.2rem;
  line-height: 1.85;
  color: rgba(244, 245, 255, 0.9);
  margin: 0;
}

.mockup-lead strong {
  color: var(--accent);
  font-weight: 600;
}

.mockup-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.mockup-feature-card {
  padding: 40px;
  background: rgba(9, 15, 31, 0.8);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(58, 208, 255, 0.25);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 48px rgba(6, 9, 20, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mockup-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.08) 0%,
    rgba(255, 111, 190, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mockup-feature-card:hover::before {
  opacity: 1;
}

.mockup-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(58, 208, 255, 0.5);
  box-shadow: 0 20px 60px rgba(58, 208, 255, 0.3),
    0 0 80px rgba(255, 111, 190, 0.2);
}

.mockup-feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 0 15px rgba(58, 208, 255, 0.6));
  animation: float 4s ease-in-out infinite;
}

.mockup-feature-card:nth-child(2) .mockup-feature-icon {
  animation-delay: 0.5s;
}

.mockup-feature-card h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mockup-feature-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(244, 245, 255, 0.85);
  margin: 0;
}

/* CTA Section */
.profesyonel-cta {
  background: linear-gradient(
    135deg,
    rgba(58, 208, 255, 0.12) 0%,
    rgba(255, 111, 190, 0.1) 100%
  );
  border-top: 1px solid rgba(58, 208, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.profesyonel-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(58, 208, 255, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 15s ease-in-out infinite;
}

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

.profesyonel-cta-content h2 {
  font-family: "Exo", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profesyonel-cta-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(244, 245, 255, 0.9);
  margin: 0 0 40px 0;
}

.profesyonel-cta-content strong {
  color: var(--accent);
  font-weight: 600;
}

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

.profesyonel-cta-buttons .btn {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Links Section */
.profesyonel-links {
  background: rgba(9, 15, 31, 0.5);
  border-top: 1px solid rgba(58, 208, 255, 0.15);
}

.profesyonel-links-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.profesyonel-links-content h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 32px 0;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profesyonel-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.profesyonel-links-list li {
  margin: 0;
}

.profesyonel-links-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(9, 15, 31, 0.7);
  border: 1px solid rgba(58, 208, 255, 0.25);
  border-radius: var(--radius-md);
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.profesyonel-links-list a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.profesyonel-links-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.profesyonel-links-list a:hover {
  border-color: rgba(58, 208, 255, 0.5);
  background: rgba(9, 15, 31, 0.9);
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(58, 208, 255, 0.25);
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .profesyonel-hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .profesyonel-section-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .profesyonel-section-reverse .profesyonel-section-grid {
    direction: ltr;
  }

  .mockup-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .profesyonel-yaklasim-page {
    padding-top: 80px;
  }

  .profesyonel-hero {
    padding: 60px 0 80px;
  }

  .profesyonel-title {
    font-size: 2rem;
  }

  .profesyonel-subtitle {
    font-size: 1.1rem;
  }

  .profesyonel-section-content h2 {
    font-size: 1.8rem;
  }

  .feature-highlight-item {
    flex-direction: column;
    padding: 24px;
  }

  .feature-highlight-icon {
    font-size: 2rem;
  }

  .mockup-feature-card {
    padding: 32px 24px;
  }

  .profesyonel-cta-buttons {
    flex-direction: column;
  }

  .profesyonel-cta-buttons .btn {
    width: 100%;
  }
}

html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(32px);
  will-change: transform, opacity;
}


