/* =========
   SPARKZONE GENEL STİL
   ========= */

:root {
  --color-bg: #05070b;
  --color-bg-alt: #0b1020;
  --color-primary: #00e5ff;
  --color-secondary: #ff2e88;
  --color-text: #e5e7eb;
  --color-muted: #9ca3af;
  --color-border: #1f2933;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top left, #111827 0, #05070b 45%, #000 100%);
  color: var(--color-text);
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sz-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========
   HEADER
   ========= */

.sz-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.sz-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 10px 0;
}

.sz-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sz-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5),
              0 0 28px rgba(255, 46, 136, 0.35);
}

.sz-logo-text {
  font-weight: 700;
  letter-spacing: 0.05em;
}

a.sz-logo-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

a.sz-logo-link:hover {
  text-decoration: none;
}

.sz-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  flex: 0 1 auto;
  min-width: 0;
}

.sz-nav a {
  color: var(--color-muted);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.sz-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: width 0.2s ease;
}

.sz-nav a:hover::after {
  width: 100%;
}

.sz-header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

/* Logo ile aynı mantıkta arkada yumuşak neon halka */
.sz-header-join-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
}

.sz-header-join-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160%;
  min-width: 120px;
  height: 220%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(0, 229, 255, 0.42) 0%,
    rgba(0, 229, 255, 0.12) 42%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
  filter: blur(6px);
}

.sz-header-join-wrap--active::before {
  background: radial-gradient(
    ellipse at center,
    rgba(255, 46, 136, 0.4) 0%,
    rgba(255, 46, 136, 0.12) 42%,
    transparent 68%
  );
}

.sz-btn-header-join {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 9px 20px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  color: #020617 !important;
  border: 1px solid rgba(0, 229, 255, 0.35);
  background: linear-gradient(160deg, #5efff7 0%, var(--color-primary) 45%, #00b8d4 100%);
  box-shadow:
    0 0 22px rgba(0, 229, 255, 0.65),
    0 0 40px rgba(0, 229, 255, 0.25),
    0 4px 14px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sz-btn-header-join:hover {
  text-decoration: none !important;
  color: #020617 !important;
  transform: translateY(-1px);
  box-shadow:
    0 0 32px rgba(0, 229, 255, 0.85),
    0 0 56px rgba(0, 229, 255, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.5);
}

.sz-btn-header-join--active {
  border-color: rgba(255, 46, 136, 0.45);
  background: linear-gradient(160deg, #ff6fae 0%, var(--color-secondary) 45%, #c2185b 100%);
  box-shadow:
    0 0 22px rgba(255, 46, 136, 0.65),
    0 0 40px rgba(255, 46, 136, 0.28),
    0 4px 14px rgba(0, 0, 0, 0.45);
}

.sz-btn-header-join--active:hover {
  box-shadow:
    0 0 32px rgba(255, 46, 136, 0.85),
    0 0 56px rgba(255, 46, 136, 0.32),
    0 8px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 901px) and (max-width: 1180px) {
  .sz-nav {
    gap: 10px;
    font-size: 0.82rem;
  }
}

/* =========
   BİZE KATIL SAYFASI
   ========= */

.sz-join-main {
  min-height: 50vh;
}

.sz-join-form-section {
  padding: 40px 0 80px;
  background:
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.12), transparent 50%),
    radial-gradient(circle at left, rgba(255, 46, 136, 0.1), transparent 50%),
    radial-gradient(circle at bottom, rgba(15, 23, 42, 0.75), #020617 70%);
}

.sz-join-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.sz-join-brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.sz-join-brand-glow {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.14), transparent 62%);
  box-shadow:
    0 0 50px rgba(0, 229, 255, 0.45),
    0 0 70px rgba(255, 46, 136, 0.28);
}

.sz-join-brand-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.5),
    0 0 32px rgba(255, 46, 136, 0.32);
}

.sz-join-brand-text {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.45);
}

.sz-jotform-card {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.35), rgba(255, 46, 136, 0.32));
  box-shadow:
    0 0 36px rgba(0, 229, 255, 0.1),
    0 24px 60px rgba(0, 0, 0, 0.55);
}

.sz-jotform-card-inner {
  background: rgba(15, 23, 42, 0.97);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 20px 18px 24px;
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.sz-jotform-embed {
  min-height: 420px;
}

@media (max-width: 600px) {
  .sz-jotform-card-inner {
    padding: 14px 10px 18px;
  }

  .sz-join-brand-glow {
    width: 120px;
    height: 120px;
  }

  .sz-join-brand-logo {
    width: 86px;
    height: 86px;
  }

  .sz-join-brand-text {
    font-size: 1.25rem;
  }
}

.sz-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* =========
   HERO
   ========= */

.sz-hero {
  padding: 80px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.18), transparent 55%),
    radial-gradient(circle at left, rgba(255, 46, 136, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(5, 7, 11, 1));
}

.sz-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sz-hero-left h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.sz-hero-sub {
  color: var(--color-text);
  max-width: 560px;
  margin-bottom: 14px;
}

.sz-hero-trust {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.sz-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.sz-btn-primary {
  background: linear-gradient(90deg, var(--color-primary), #5efff7);
  color: #020617;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.4);
}

.sz-btn-secondary {
  background: linear-gradient(90deg, var(--color-secondary), #ff6fae);
  color: #020617;
  box-shadow: 0 8px 24px rgba(255, 46, 136, 0.4);
}

.sz-btn-primary:hover,
.sz-btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.sz-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sz-hero-logo-glow {
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.45),
              0 0 60px rgba(255, 46, 136, 0.35);
}

.sz-hero-logo-glow img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

/* =========
   GENEL BÖLÜMLER
   ========= */

.sz-section {
  padding: 70px 0;
}

.sz-section h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.sz-section-sub {
  max-width: 640px;
  color: var(--color-muted);
  font-size: 0.98rem;
}

/* =========
   KİME HİTAP EDİYORUZ
   ========= */

.sz-who {
  background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.8), #020617 65%);
}

.sz-who-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sz-who-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.sz-who-card h3 {
  margin: 10px 0 8px;
}

.sz-who-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.sz-who-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.4), transparent 70%);
  position: relative;
}

/* Basit ikon siluetleri */
.sz-icon-publisher::before,
.sz-icon-school::before,
.sz-icon-course::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 4px;
  border: 2px solid rgba(15, 23, 42, 0.95);
}

.sz-icon-school::before {
  border-radius: 50% 50% 5px 5px;
}

.sz-icon-course::before {
  border-left: none;
}

/* =========
   DEĞER ÖNERİSİ
   ========= */

.sz-value {
  background: #020617;
}

.sz-value-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.sz-value-card {
  border-radius: var(--radius-lg);
  padding: 22px 20px 20px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.sz-value-brands {
  background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.15), #020617 70%);
}

.sz-value-influencers {
  background: radial-gradient(circle at top right, rgba(255, 46, 136, 0.18), #020617 70%);
}

.sz-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  margin-bottom: 10px;
  position: relative;
}

.sz-icon-dashboard {
  background: radial-gradient(circle, rgba(0, 229, 255, 0.45), transparent 70%);
}

.sz-icon-community {
  background: radial-gradient(circle, rgba(255, 46, 136, 0.45), transparent 70%);
}

.sz-icon-dashboard::before,
.sz-icon-community::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 4px;
  border: 2px solid rgba(15, 23, 42, 0.95);
}

.sz-value-card ul {
  padding-left: 18px;
  margin: 10px 0 14px;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.sz-link-btn {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}

/* =========
   CAMPUS
   ========= */

.sz-campus {
  background:
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.18), transparent 55%),
    radial-gradient(circle at top right, rgba(255, 46, 136, 0.18), transparent 55%),
    #020617;
}

.sz-campus-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.sz-campus-left p {
  color: var(--color-muted);
  font-size: 0.96rem;
  margin-bottom: 18px;
}

.sz-campus-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sz-campus-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-md);
  padding: 14px 14px 13px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 0.9rem;
}

.sz-campus-card h3 {
  margin: 8px 0 6px;
  font-size: 0.98rem;
}

.sz-campus-card p {
  color: var(--color-muted);
}

.sz-campus-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.35), transparent 70%);
  position: relative;
}

.sz-icon-workshop::before,
.sz-icon-mentor::before,
.sz-icon-event::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 3px;
  border: 2px solid rgba(15, 23, 42, 0.95);
}

.sz-campus-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sz-campus-visual {
  width: 240px;
  height: 240px;
  border-radius: 28px;
  position: relative;
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 229, 255, 0.4), transparent 70%),
    radial-gradient(circle at 80% 85%, rgba(255, 46, 136, 0.4), transparent 70%),
    #020617;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.sz-campus-visual::before,
.sz-campus-visual::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(148, 163, 184, 0.6);
}

.sz-campus-visual::before {
  top: 18%;
  left: 12%;
}

.sz-campus-visual::after {
  bottom: 18%;
  right: 10%;
}

/* =========
   PERFORMANS
   ========= */

.sz-performance {
  background: #020617;
}

.sz-performance-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.sz-performance-left p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.sz-performance-left ul {
  margin-top: 10px;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.sz-dashboard {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
  padding: 16px 16px 18px;
}

.sz-dashboard-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.sz-dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.sz-kpi {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-md);
  padding: 8px 9px;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.sz-kpi-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 2px;
}

.sz-kpi-value {
  font-size: 0.98rem;
  font-weight: 600;
}

.sz-dashboard-chart {
  position: relative;
  height: 120px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.9));
  overflow: hidden;
  padding: 10px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.sz-chart-bar {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--color-primary), transparent);
}

.sz-chart-bar-1 { height: 45%; }
.sz-chart-bar-2 { height: 70%; }
.sz-chart-bar-3 { height: 55%; }

.sz-chart-line {
  position: absolute;
  inset: 16px 12px auto 12px;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
}

/* =========
   HİZMETLER (ACCORDION)
   ========= */

.sz-services {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.8), #020617 65%);
}

.sz-accordion {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.sz-accordion-item + .sz-accordion-item {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.sz-accordion-header {
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  color: var(--color-text);
  border: none;
  padding: 14px 18px;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.sz-accordion-icon {
  font-weight: 700;
  font-size: 1.1rem;
}

.sz-accordion-body {
  max-height: 0;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.98);
  transition: max-height 0.25s ease;
  padding: 0 18px;
}

.sz-accordion-body.open {
  padding: 10px 18px 14px;
}

.sz-accordion-body p {
  font-size: 0.94rem;
  color: var(--color-muted);
}

/* =========
   SOSYAL KANIT
   ========= */

.sz-stats {
  background: #020617;
}

.sz-stats-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.sz-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.sz-stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 4px;
}

/* =========
   BLOG
   ========= */

.sz-blog {
  background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.85), #020617 65%);
}

.sz-blog-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sz-blog-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  padding: 18px 16px 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
}

.sz-blog-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

/* =========
   İLETİŞİM
   ========= */

.sz-contact {
  background: #020617;
}

.sz-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.sz-contact-left p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.sz-contact-tabs {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  padding: 3px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.sz-contact-tab {
  background: transparent;
  border: none;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--color-muted);
  cursor: pointer;
}

.sz-contact-tab-active {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  color: #020617;
}

.sz-contact-panel {
  display: none;
  margin-top: 14px;
}

.sz-contact-panel-active {
  display: block;
}

.sz-contact-right {
  background: rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
}

.sz-contact-info {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* =========
   FOOTER
   ========= */

.sz-footer {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.sz-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sz-footer-links {
  display: flex;
  gap: 14px;
}

.sz-footer-links a {
  color: var(--color-muted);
}

/* =========
   RESPONSIVE
   ========= */

@media (max-width: 900px) {
  .sz-hero-inner,
  .sz-campus-inner,
  .sz-performance-inner,
  .sz-contact-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .sz-hero-inner {
    flex-direction: column;
  }

  .sz-hero-right {
    order: -1;
  }

  .sz-who-grid,
  .sz-value-grid,
  .sz-campus-features,
  .sz-blog-grid,
  .sz-dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .sz-stats-inner {
    flex-direction: column;
  }

  .sz-header-inner {
    padding: 8px 0;
  }

  .sz-header-end {
    gap: 10px;
  }

  .sz-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(5, 7, 11, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px 14px;
    display: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  }

  .sz-nav.open {
    display: flex;
  }

  .sz-nav-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .sz-hero-left h1 {
    font-size: 1.9rem;
  }
}
/* =========
   BAŞARI HİKAYELERİ
   ========= */

.sz-success {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.8), #020617 65%);
}

.sz-success-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sz-success-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  padding: 20px 18px 18px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
}

.sz-success-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.sz-success-card p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.sz-success-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

.sz-success-metrics span {
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--color-primary);
  font-weight: 500;
}

/* =========
   BLOG GÜNCELLEMELERİ
   ========= */

.sz-blog-date {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.sz-blog-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
}

.sz-blog-link:hover {
  text-decoration: underline;
}

/* =========
   FAQ
   ========= */

.sz-faq {
  background: #020617;
}

.sz-faq-accordion {
  margin-top: 26px;
}

/* =========
   FOOTER SOSYAL MEDYA
   ========= */

.sz-footer-social {
  display: flex;
  gap: 12px;
}

.sz-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--color-text);
  transition: all 0.2s ease;
}

.sz-social-icon:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #020617;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.4);
}

/* =========
   RESPONSIVE EKLEMELERİ
   ========= */

@media (max-width: 900px) {
  .sz-success-grid {
    grid-template-columns: 1fr;
  }

  .sz-footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .sz-footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .sz-footer-social {
    justify-content: center;
  }
}
/* =========
   SCROLL REVEAL ANİMASYONLARI
   ========= */

.sz-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sz-reveal.sz-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Küçük gecikmelerle dalga efekti için opsiyonel */
.sz-reveal[data-delay="1"] {
  transition-delay: 0.1s;
}

.sz-reveal[data-delay="2"] {
  transition-delay: 0.2s;
}

.sz-reveal[data-delay="3"] {
  transition-delay: 0.3s;
}
/* =========
   SCROLL REVEAL ANİMASYONLARI - DAHA GÜÇLÜ
   ========= */

.sz-reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  filter: blur(4px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s ease-out;
}

.sz-reveal.sz-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Dalga dalga giriş için (opsiyonel gecikmeler) */
.sz-reveal[data-delay="1"] {
  transition-delay: 0.1s;
}

.sz-reveal[data-delay="2"] {
  transition-delay: 0.2s;
}

.sz-reveal[data-delay="3"] {
  transition-delay: 0.3s;
} /* =========
   TEK KART FLİP ANİMASYONU
   ========= */

.sz-value-single {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.sz-flip-card-single {
  perspective: 1000px;
  cursor: pointer;
  width: 100%;
  max-width: 600px;
  height: 400px;
}

.sz-flip-card-inner-single {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

/* Hover veya tıklama ile döndür */
.sz-flip-card-single:hover .sz-flip-card-inner-single,
.sz-flip-card-single.flipped .sz-flip-card-inner-single {
  transform: rotateY(180deg);
}

.sz-flip-card-front-single,
.sz-flip-card-back-single {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
}

.sz-flip-card-front-single {
  z-index: 2;
  transform: rotateY(0deg);
}

.sz-flip-card-front-single h3,
.sz-flip-card-back-single h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  text-align: center;
}

.sz-flip-subtitle {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}

.sz-flip-card-front-single ul,
.sz-flip-card-back-single ul {
  padding-left: 18px;
  margin: 16px 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.sz-flip-card-front-single .sz-link-btn,
.sz-flip-card-back-single .sz-link-btn {
  display: inline-block;
  text-align: center;
  margin-top: 8px;
}

.sz-flip-card-back-single {
  transform: rotateY(180deg);
}

/* Flip ipucu */
.sz-flip-hint {
  margin-top: 16px;
  font-size: 0.85rem;
  text-align: center;
  color: var(--color-primary);
  opacity: 0.8;
  font-weight: 500;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Hover efekti - kartı hafif kaldır */
.sz-flip-card-single:hover {
  transform: translateY(-4px);
}

/* Mobil uyumluluk */
@media (max-width: 900px) {
  .sz-flip-card-single {
    height: auto;
    min-height: 400px;
    max-width: 100%;
  }
  
  .sz-flip-card-front-single,
  .sz-flip-card-back-single {
    padding: 28px 24px;
  }
  
  .sz-flip-card-front-single h3,
  .sz-flip-card-back-single h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .sz-flip-card-single {
    min-height: 450px;
  }
}