/* ============================================================
   CLASSDJ AKADEMİ — Ana Stil
   Marka: koyu lacivert #08112a · kraliyet mavisi #2f6fe4 · altın #f5b83d
   Tasarım dili: koyu premium, cam yüzeyler, altın vurgular
   ============================================================ */

:root {
  --ink-950:   #04091a;
  --ink-900:   #08112a;
  --ink-850:   #0c1734;
  --ink-800:   #112044;

  --blue-300:  #7fb0ff;
  --blue-400:  #4d8dff;
  --blue-500:  #2f6fe4;
  --blue-600:  #1d4fb0;

  --gold-200:  #ffe4a8;
  --gold-300:  #ffd782;
  --gold-400:  #f5b83d;
  --gold-500:  #e0991a;

  --text:      #eaf0ff;
  --text-soft: #c2cee8;
  --muted:     #8b9bc0;

  --glass:     rgba(255, 255, 255, .045);
  --glass-2:   rgba(255, 255, 255, .078);
  --line:      rgba(148, 176, 235, .16);
  --line-2:    rgba(148, 176, 235, .3);

  --grad-gold: linear-gradient(135deg, #ffe4a8 0%, #f5b83d 45%, #e0991a 100%);
  --grad-blue: linear-gradient(135deg, #7fb0ff 0%, #2f6fe4 55%, #143a86 100%);
  --grad-mix:  linear-gradient(120deg, #4d8dff 0%, #7fb0ff 30%, #ffd782 75%, #f5b83d 100%);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .35);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, .45);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, .6);
  --glow-gold: 0 0 40px rgba(245, 184, 61, .35);

  --radius:    20px;
  --radius-sm: 13px;
  --radius-lg: 30px;
  --container: 1220px;
  --ease:      cubic-bezier(.16, .84, .44, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-soft);
  background: var(--ink-950);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
}

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(60rem 40rem at 12% -8%, rgba(47, 111, 228, .20), transparent 60%),
    radial-gradient(45rem 35rem at 92% 6%, rgba(245, 184, 61, .10), transparent 60%);
}
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(148, 176, 235, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 176, 235, .045) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 25%, transparent 78%);
}
header, section, footer { position: relative; z-index: 1; }

/* ============ TİPOGRAFİ YARDIMCILARI ============ */
.grad-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(245, 184, 61, .08);
  border: 1px solid rgba(245, 184, 61, .26);
  padding: 7px 15px; border-radius: 100px;
}

.section { padding: 106px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(12, 23, 52, 0), rgba(12, 23, 52, .85) 18%, rgba(12, 23, 52, .85) 82%, rgba(12, 23, 52, 0));
}

.section-head { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); margin: 20px 0 16px; }
.section-head p { color: var(--muted); font-size: 16.5px; }

/* ============ BUTONLAR ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 100px;
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-gold); color: #16202f;
  box-shadow: 0 10px 26px rgba(245, 184, 61, .28);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(245, 184, 61, .42); }
.btn-ghost {
  background: var(--glass); border-color: var(--line-2); color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: var(--glass-2); border-color: var(--gold-400); color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(6, 13, 32, .82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .5), 0 0 0 1px rgba(148, 176, 235, .2);
  transition: transform .3s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.05); }
.brand-word {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 21px;
  letter-spacing: -.02em; color: var(--text); line-height: 1;
}
.brand-word span { color: var(--gold-400); }
.brand-word small {
  display: block; font-size: 9.5px; font-weight: 600;
  letter-spacing: .34em; color: var(--muted); margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a {
  position: relative; padding: 9px 14px;
  font-size: 14.5px; font-weight: 500; color: var(--text-soft);
  border-radius: 100px; transition: color .22s, background .22s;
}
.nav-links > a::after {
  content: ''; position: absolute; left: 50%; bottom: 3px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--grad-gold); transform: translateX(-50%);
  transition: width .28s var(--ease);
}
.nav-links > a:hover { color: #fff; background: rgba(255, 255, 255, .05); }
.nav-links > a:hover::after { width: 22px; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-auth-mobile { display: none; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--glass); border: 1px solid var(--line-2); color: var(--text); cursor: pointer;
}

/* ============ HERO ============ */
.hero { padding: 168px 0 92px; overflow: hidden; }
.hero-art {
  position: absolute; top: -10%; right: -14%;
  width: 880px; max-width: 78vw;
  opacity: .48; mix-blend-mode: screen; pointer-events: none;
  animation: heroFloat 14s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-22px) scale(1.02); }
}

.hero-inner { min-height: 58vh; display: flex; align-items: center; }
.hero-content { max-width: 780px; }
.hero h1 { font-size: clamp(40px, 5.8vw, 72px); margin: 24px 0 22px; font-weight: 800; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 620px; }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.hero-trust i { color: var(--gold-400); }

/* Mobil uygulama görselinde kullanılan yüzen bilgi kartları */
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 16px; border-radius: 15px;
  background: rgba(10, 20, 44, .9);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  animation: floatY 5.5s ease-in-out infinite;
}
.float-card i { font-size: 17px; color: var(--blue-300); }
.float-card i.gold { color: var(--gold-400); }
.float-card i.green { color: #4ade80; }
.float-card strong { display: block; font-size: 13px; color: #fff; font-family: 'Outfit', sans-serif; }
.float-card span { font-size: 11.5px; color: var(--muted); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
/* not: hero'da yüzen kart kullanılmıyor; .float-card yalnızca mobil uygulama görselinde */

/* ============ RAKAMLAR ŞERİDİ ============ */
.stats-band { padding: 6px 0 90px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: 34px; border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(23, 44, 88, .7), rgba(8, 17, 42, .8));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.stats-grid::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(40rem 12rem at 50% 0%, rgba(245, 184, 61, .12), transparent 70%);
}
.stat { text-align: center; position: relative; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.4vw, 40px); font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { font-size: 13px; color: var(--muted); }

/* ============ YÖNTEM (ÖĞRENME DÖNGÜSÜ) ============ */
.cycle {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.cycle::before {
  content: '';
  position: absolute;
  top: 46px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(47,111,228,.05), rgba(127,176,255,.5), rgba(245,184,61,.6), rgba(245,184,61,.05));
}
.cyc {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.cyc-dot {
  position: relative; z-index: 1;
  width: 92px; height: 92px; margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(23, 44, 88, .95), rgba(8, 17, 42, .98));
  border: 1px solid var(--line-2);
  color: var(--blue-300); font-size: 27px;
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), color .4s, border-color .4s, box-shadow .4s;
}
.cyc:hover .cyc-dot {
  transform: translateY(-8px) rotate(-5deg);
  color: var(--gold-300);
  border-color: rgba(245, 184, 61, .5);
  box-shadow: var(--shadow-md), var(--glow-gold);
}
.cyc-step {
  position: absolute; top: -8px; left: 50%;
  transform: translateX(46px);
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 800;
  color: #16202f; background: var(--grad-gold);
  padding: 3px 9px; border-radius: 100px;
  z-index: 2;
}
.cyc h3 { font-size: 17px; margin-bottom: 8px; }
.cyc p { font-size: 13.6px; color: var(--muted); }

/* ============ DERSLER (kademe rafları) ============ */
.shelf-list { display: grid; gap: 16px; }

.shelf {
  position: relative;
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 36px;
  padding: 32px 34px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(23, 44, 88, .5), rgba(8, 17, 42, .55));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .35s, background .35s;
}
.shelf::before {
  content: '';
  position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--grad-blue);
  transition: top .4s var(--ease), bottom .4s var(--ease), background .4s;
}
.shelf.accent::before { background: var(--grad-gold); }
.shelf:hover { border-color: var(--line-2); background: linear-gradient(120deg, rgba(28, 52, 100, .6), rgba(9, 19, 46, .65)); }
.shelf:hover::before { top: 8%; bottom: 8%; background: var(--grad-gold); }

.shelf-side { position: relative; }
.shelf-num {
  position: absolute; top: -14px; right: 0;
  font-family: 'Outfit', sans-serif; font-size: 62px; font-weight: 800; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(148, 176, 235, .18);
  transition: -webkit-text-stroke-color .4s;
  pointer-events: none;
}
.shelf:hover .shelf-num { -webkit-text-stroke-color: rgba(245, 184, 61, .5); }
.shelf-side h3 { font-size: 25px; margin-bottom: 8px; }
.shelf-range {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold-300);
  background: rgba(245, 184, 61, .08);
  border: 1px solid rgba(245, 184, 61, .24);
  padding: 5px 13px; border-radius: 100px;
}
.shelf-side p { font-size: 13.6px; color: var(--muted); margin-top: 14px; }

.shelf-subjects {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 10px;
  align-content: start;
}
.subj {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 15px;
  border-radius: 13px;
  font-size: 13.8px; color: var(--text-soft);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  transition: transform .28s var(--ease), background .28s, border-color .28s, color .28s;
}
.subj i {
  width: 28px; height: 28px; flex: none;
  display: grid; place-items: center; border-radius: 9px;
  background: rgba(47, 111, 228, .18);
  border: 1px solid rgba(47, 111, 228, .28);
  color: var(--blue-300); font-size: 12px;
  transition: background .28s, color .28s, border-color .28s;
}
.subj:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .075);
  border-color: rgba(245, 184, 61, .4);
  color: #fff;
}
.subj:hover i {
  background: rgba(245, 184, 61, .18);
  border-color: rgba(245, 184, 61, .35);
  color: var(--gold-300);
}

/* ============ PAKETLER ============ */
.level-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 44px; padding: 7px;
  border-radius: 100px;
  background: var(--glass); border: 1px solid var(--line);
  width: fit-content; margin-inline: auto; max-width: 100%;
}
.lvl-chip {
  padding: 11px 24px; border-radius: 100px;
  background: transparent; border: none;
  color: var(--muted); font-size: 14.5px; font-weight: 600; cursor: pointer;
  transition: color .25s, background .25s, box-shadow .25s;
}
.lvl-chip:hover { color: var(--text); }
.lvl-chip.active {
  background: var(--grad-gold); color: #16202f;
  box-shadow: 0 8px 22px rgba(245, 184, 61, .3);
}

.tab-panel { display: none; }
.tab-panel.active { display: grid; animation: fadeUp .5s var(--ease); }
.price-grid { grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 22px; align-items: start; }

.price-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(23, 44, 88, .55), rgba(8, 17, 42, .75));
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-8px); border-color: var(--line-2); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: rgba(245, 184, 61, .45);
  background: linear-gradient(165deg, rgba(43, 62, 104, .7), rgba(10, 20, 46, .85));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.price-card.featured::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(24rem 12rem at 50% 0%, rgba(245, 184, 61, .14), transparent 70%);
}

.badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  padding: 6px 13px; border-radius: 100px;
  background: var(--grad-gold); color: #16202f;
  box-shadow: var(--glow-gold);
}

.pc-tier {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-300);
  background: rgba(47, 111, 228, .14);
  border: 1px solid rgba(47, 111, 228, .3);
  padding: 5px 13px; border-radius: 100px;
  margin-bottom: 15px;
}
.price-card h3 { font-size: 22px; margin-bottom: 6px; }
.pc-sub { font-size: 13.5px; color: var(--muted); min-height: 40px; }

.pc-price {
  margin: 20px 0 22px; padding: 18px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pc-old { display: block; font-size: 14px; color: var(--muted); text-decoration: line-through; opacity: .75; }
.pc-price strong {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 38px; font-weight: 800; color: #fff; line-height: 1.1;
}
.pc-price strong span { font-size: 22px; color: var(--gold-400); margin-left: 2px; }
.pc-inst { display: block; font-size: 12.5px; color: var(--gold-300); margin-top: 4px; }

.pc-feats { display: grid; gap: 10px; margin-bottom: 18px; }
.pc-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.8px; color: var(--text-soft); }
.pc-feats i {
  flex: none; margin-top: 4px;
  width: 17px; height: 17px;
  display: grid; place-items: center; border-radius: 50%;
  font-size: 8.5px;
  background: rgba(245, 184, 61, .16); color: var(--gold-300);
}
.pc-feats.two-col { grid-template-columns: repeat(2, 1fr); gap: 10px 22px; }

.pc-extra {
  font-size: 12.5px; color: var(--muted);
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .035);
  border: 1px dashed var(--line);
  margin-bottom: 20px;
}

.price-card.wide {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 40px; align-items: center;
  padding: 40px;
}
.pc-wide-main .pc-price { border-bottom: none; padding-bottom: 6px; }

/* ============ KARŞILAŞTIRMA ============ */
.cmp-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(23, 44, 88, .5), rgba(8, 17, 42, .7));
  overflow-x: auto;
}
.cmp-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.cmp-table th, .cmp-table td { padding: 18px 22px; text-align: left; vertical-align: top; }
.cmp-table thead th {
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
  border-bottom: 1px solid var(--line-2);
  color: var(--text);
}
.cmp-table thead th:first-child { color: var(--muted); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.cmp-old { color: var(--muted); }
.cmp-new { color: var(--gold-300); display: inline-flex; align-items: center; gap: 9px; }
.cmp-new img { width: 22px; height: 22px; border-radius: 6px; }
.cmp-table tbody tr { border-top: 1px solid var(--line); transition: background .25s; }
.cmp-table tbody tr:hover { background: rgba(255, 255, 255, .03); }
.cmp-row-label { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--text); font-size: 14.5px; }
.cmp-table td { font-size: 14px; color: var(--muted); }
.cmp-table td.yes { color: var(--text-soft); }
.cmp-table td.yes::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--gold-400); font-size: 11px; margin-right: 9px;
}
.cmp-table td.no::before {
  content: '\f068';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: rgba(148, 176, 235, .45); font-size: 10px; margin-right: 9px;
}

/* ============ SKORVAR ============ */
.sv-band { padding: 40px 0 100px; }
.sv-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  padding: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0e1e46 0%, #070f28 55%, #0d1936 100%);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.sv-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.sv-glow-1 { width: 360px; height: 360px; background: rgba(47, 111, 228, .4); top: -150px; right: 22%; }
.sv-glow-2 { width: 300px; height: 300px; background: rgba(245, 184, 61, .22); bottom: -140px; left: -60px; }

.sv-intro { position: relative; z-index: 1; }
.sv-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(245, 184, 61, .08);
  border: 1px solid rgba(245, 184, 61, .28);
  padding: 7px 8px 7px 15px; border-radius: 100px;
}
.sv-badge em {
  font-style: normal; font-size: 10.5px; font-weight: 800; letter-spacing: .1em;
  color: #16202f; background: var(--grad-gold);
  padding: 3px 9px; border-radius: 100px;
}
.sv-intro h2 { font-size: clamp(28px, 3.6vw, 44px); margin: 22px 0 16px; }
.sv-intro > p { color: var(--muted); font-size: 15.5px; }
.sv-intro > p strong { color: var(--text); font-weight: 600; }

.sv-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 30px 0 30px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sv-metrics strong {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 25px; font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sv-metrics span { font-size: 12.5px; color: var(--muted); }
.sv-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

.sv-steps { position: relative; z-index: 1; display: grid; gap: 14px; align-content: center; }
.sv-step {
  display: flex; gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.sv-step:hover { transform: translateX(6px); background: rgba(255, 255, 255, .08); border-color: rgba(245, 184, 61, .35); }
.sv-ic {
  flex: none; width: 44px; height: 44px;
  display: grid; place-items: center; border-radius: 13px;
  background: linear-gradient(140deg, rgba(47, 111, 228, .3), rgba(20, 58, 134, .25));
  border: 1px solid var(--line-2);
  color: var(--blue-300); font-size: 16px;
  transition: color .3s, border-color .3s;
}
.sv-step:hover .sv-ic { color: var(--gold-300); border-color: rgba(245, 184, 61, .4); }
.sv-step h3 { font-size: 16.5px; margin-bottom: 6px; }
.sv-step p { font-size: 13.6px; color: var(--muted); }

.inline-link {
  color: var(--gold-300); font-weight: 600;
  border-bottom: 1px solid rgba(245, 184, 61, .4);
  transition: color .22s, border-color .22s;
}
.inline-link:hover { color: var(--gold-200); border-color: var(--gold-300); }

/* ============ MOBİL UYGULAMA ============ */
.mobil-section { overflow: hidden; }
.mobil-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.mobil-content h2 { font-size: clamp(28px, 3.6vw, 44px); margin: 20px 0 14px; }
.mobil-lead { color: var(--muted); margin-bottom: 30px; }

.mobil-list { display: grid; gap: 14px; margin-bottom: 32px; }
.mobil-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; color: var(--text-soft); }
.mobil-list i {
  flex: none; margin-top: 3px;
  width: 26px; height: 26px;
  display: grid; place-items: center; border-radius: 9px;
  background: rgba(245, 184, 61, .12);
  border: 1px solid rgba(245, 184, 61, .26);
  color: var(--gold-300); font-size: 11px;
}
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px; border-radius: 14px;
  background: var(--glass); border: 1px solid var(--line-2);
  transition: transform .25s var(--ease), border-color .25s, background .25s;
}
.store-badge:hover { transform: translateY(-3px); border-color: var(--gold-400); background: var(--glass-2); }
.store-badge i { font-size: 24px; color: var(--text); }
.store-badge span { font-size: 10.5px; color: var(--muted); display: block; line-height: 1.3; }
.store-badge strong { font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--text); }

.mobil-visual { position: relative; display: grid; place-items: center; }
.mobil-visual::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 228, .35), transparent 68%);
  filter: blur(20px);
}
.phone {
  position: relative;
  width: 285px; padding: 12px; border-radius: 42px;
  background: linear-gradient(160deg, #1b2c52, #070e22);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg), 0 0 70px rgba(47, 111, 228, .22);
  transform: rotate(-3deg);
}
.phone-notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 22px; border-radius: 100px; background: #050a17; z-index: 3;
}
.phone-screen {
  border-radius: 32px;
  background: linear-gradient(175deg, #0d1a3a, #060d20);
  padding: 44px 16px 20px;
  display: grid; gap: 13px; overflow: hidden;
}
.phone-brand { display: flex; align-items: center; gap: 8px; }
.phone-brand img { width: 24px; height: 24px; border-radius: 7px; }
.phone-brand span { font-size: 11px; color: var(--muted); }
.phone-hi { font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; font-size: 16px; margin-top: 8px; }
.phone-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.phone-stats div {
  text-align: center; padding: 10px 4px; border-radius: 11px;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line);
}
.phone-stats strong { display: block; font-family: 'Outfit', sans-serif; font-size: 15px; color: var(--gold-300); }
.phone-stats span { font-size: 9.5px; color: var(--muted); }
.phone-list { display: grid; gap: 8px; }
.phone-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 12px;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--line);
}
.phone-row .pr-ic { font-size: 14px; }
.phone-row strong { display: block; font-size: 12px; color: var(--text); font-family: 'Outfit', sans-serif; }
.phone-row span { font-size: 10.5px; color: var(--muted); }
.mob-fc-1 { top: 10%; left: -2%; }
.mob-fc-2 { bottom: 12%; right: -4%; animation-delay: -2.4s; }

/* ============ YORUMLAR ============ */
.voice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.voice-card {
  position: relative;
  padding: 32px 28px 26px;
  border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--line);
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.voice-card:hover { transform: translateY(-6px); background: var(--glass-2); border-color: var(--line-2); }
.voice-card::before {
  content: '\201C';
  position: absolute; top: 4px; right: 24px;
  font-family: 'Outfit', serif; font-size: 84px; line-height: 1;
  color: rgba(245, 184, 61, .16);
}
.v-stars { color: var(--gold-400); font-size: 12.5px; letter-spacing: 3px; margin-bottom: 14px; }
.voice-card p { font-size: 14.7px; color: var(--text-soft); margin-bottom: 22px; }
.v-who { display: flex; align-items: center; gap: 12px; }
.v-avatar {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center; border-radius: 14px;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 15px;
  background: var(--grad-blue); color: #fff;
}
.v-who strong { display: block; font-family: 'Outfit', sans-serif; font-size: 14.5px; color: var(--text); }
.v-who span { font-size: 12.5px; color: var(--muted); }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--glass); border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.blog-card:hover { transform: translateY(-8px); border-color: var(--line-2); box-shadow: var(--shadow-md); }
.blog-img { height: 196px; overflow: hidden; position: relative; }
.blog-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 26, 0) 40%, rgba(4, 9, 26, .8));
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-body { padding: 24px; }
.tag {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(245, 184, 61, .1);
  border: 1px solid rgba(245, 184, 61, .25);
  padding: 4px 11px; border-radius: 100px;
}
.blog-meta { font-size: 12px; color: var(--muted); margin: 12px 0 10px; display: flex; align-items: center; gap: 7px; }
.blog-card h3 { font-size: 18px; margin-bottom: 10px; }
.blog-body p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gold-300); }
.link-arrow i { transition: transform .28s var(--ease); }
.blog-card:hover .link-arrow i { transform: translateX(5px); }

/* ============ CTA ============ */
.cta-band { padding: 40px 0 100px; }
.cta-card {
  position: relative; border-radius: var(--radius-lg);
  padding: 68px 40px; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, #12295c 0%, #0a1638 55%, #101d3f 100%);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
}
.cta-glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.cta-glow-1 { width: 380px; height: 380px; background: rgba(47, 111, 228, .45); top: -160px; left: -80px; }
.cta-glow-2 { width: 330px; height: 330px; background: rgba(245, 184, 61, .3); bottom: -150px; right: -60px; }
.cta-inner { position: relative; z-index: 1; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #16202f; background: var(--grad-gold);
  padding: 7px 16px; border-radius: 100px;
}
.cta-card h2 { font-size: clamp(30px, 4.4vw, 50px); margin: 22px 0 14px; }
.cta-inner > p { color: var(--text-soft); max-width: 600px; margin: 0 auto; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 34px 0 30px; }
.cta-feats { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
.cta-feats span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-soft); }
.cta-feats i { color: var(--gold-300); }

/* ============ İLETİŞİM ============ */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.contact-panel {
  position: relative; border-radius: var(--radius);
  padding: 38px 34px; overflow: hidden;
  background: linear-gradient(160deg, rgba(23, 44, 88, .7), rgba(8, 17, 42, .85));
  border: 1px solid var(--line);
}
.cp-glow {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(47, 111, 228, .35); filter: blur(70px); top: -120px; right: -80px;
}
.cp-inner { position: relative; z-index: 1; }
.contact-panel h3 { font-size: 22px; margin-bottom: 10px; }
.cp-inner > p { color: var(--muted); font-size: 14.5px; margin-bottom: 26px; }
.contact-lines { display: grid; gap: 16px; margin-bottom: 26px; }
.contact-lines li { display: flex; gap: 14px; align-items: flex-start; }
.contact-lines > li > i {
  flex: none; width: 40px; height: 40px;
  display: grid; place-items: center; border-radius: 12px;
  background: rgba(245, 184, 61, .1);
  border: 1px solid rgba(245, 184, 61, .24);
  color: var(--gold-300); font-size: 15px;
}
.contact-lines strong { display: block; font-family: 'Outfit', sans-serif; font-size: 13.5px; color: var(--text); }
.contact-lines span, .contact-lines a { font-size: 13.5px; color: var(--muted); transition: color .22s; }
.contact-lines a:hover { color: var(--gold-300); }


.contact-form {
  padding: 38px 34px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--line);
  display: grid; gap: 16px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: grid; gap: 7px; }
.cf-field label { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.cf-field input, .cf-field textarea, .cf-field select {
  padding: 13px 16px; border-radius: var(--radius-sm);
  background: rgba(4, 9, 26, .6); border: 1px solid var(--line);
  color: var(--text); font-size: 14.5px;
  transition: border-color .25s, box-shadow .25s, background .25s;
  resize: vertical;
}
.cf-field select { appearance: none; cursor: pointer; }
.cf-field select option { background: #0c1734; color: var(--text); }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(139, 155, 192, .6); }
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus {
  outline: none; border-color: var(--gold-400);
  background: rgba(4, 9, 26, .85);
  box-shadow: 0 0 0 3px rgba(245, 184, 61, .14);
}
.cf-note { font-size: 12px; color: var(--muted); text-align: center; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 17, 42, .5), rgba(4, 9, 26, 1));
  padding-top: 70px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 50px;
}
.brand-footer { margin-bottom: 18px; }
.footer-slogan { font-size: 14px; color: var(--muted); margin-bottom: 20px; max-width: 320px; }
.footer-contact { display: grid; gap: 12px; margin-bottom: 20px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: var(--muted); }
.footer-contact i { color: var(--gold-400); margin-top: 4px; width: 15px; }
.footer-contact a:hover { color: var(--gold-300); }
.footer-col h4 { font-size: 14.5px; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 13.5px; color: var(--muted); transition: color .22s, padding-left .22s; }
.footer-col ul a:hover { color: var(--gold-300); padding-left: 5px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-pay { display: flex; flex-wrap: wrap; gap: 9px; }
.pay {
  font-size: 11.5px; font-weight: 700; padding: 6px 12px; border-radius: 8px;
  background: var(--glass); border: 1px solid var(--line); color: var(--text-soft); letter-spacing: .04em;
}
.pay-visa { color: #7fb0ff; }
.pay-troy { color: #6ee7b7; }
.pay-mc { display: inline-flex; align-items: center; gap: 7px; }
.mc-dots { display: inline-flex; }
.mc-dots i { width: 11px; height: 11px; border-radius: 50%; background: #eb001b; }
.mc-dots i:last-child { background: rgba(245, 158, 11, .9); margin-left: -5px; }

/* ============ MODALLAR ============ */
.post-modal { position: fixed; inset: 0; z-index: 200; display: none; overflow-y: auto; padding: 40px 20px; }
.post-modal.open { display: block; }
.post-overlay { position: fixed; inset: 0; background: rgba(2, 6, 18, .82); backdrop-filter: blur(6px); }
.post-dialog {
  position: relative; z-index: 1; max-width: 780px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(170deg, #0e1a3a, #070e22);
  border: 1px solid var(--line-2); box-shadow: var(--shadow-lg);
  animation: fadeUp .4s var(--ease);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.post-close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(4, 9, 26, .75); border: 1px solid var(--line-2);
  color: var(--text); cursor: pointer;
  transition: background .25s, transform .25s;
}
.post-close:hover { background: var(--gold-400); color: #16202f; transform: rotate(90deg); }
.post-hero { height: 250px; overflow: hidden; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-content { padding: 32px 36px 36px; }
.post-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.post-head .blog-meta { margin: 0; }
.post-content h2 { font-size: 27px; margin-bottom: 18px; }
.post-body { color: var(--muted); font-size: 15px; }
.post-body h3 { font-size: 18px; margin: 22px 0 10px; color: var(--gold-300); }
.post-body p { margin-bottom: 14px; }
.post-body strong { color: var(--text); }
.post-body ul { display: grid; gap: 9px; margin: 0 0 16px 4px; }
.post-body li { position: relative; padding-left: 20px; }
.post-body li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--grad-gold);
}
.post-foot { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.legal-modal .post-dialog { max-width: 860px; }
.legal-body { font-size: 14px; line-height: 1.75; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  width: 56px; height: 56px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--grad-gold);
  color: #0c1734; font-size: 26px;
  border: 1px solid rgba(255, 228, 168, .5);
  box-shadow: 0 12px 30px rgba(245, 184, 61, .38);
  transition: transform .28s var(--ease), box-shadow .28s;
}
.wa-float::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(245, 184, 61, .35);
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(.9); opacity: .9; }
  100% { transform: scale(1.3); opacity: 0; }
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 18px 46px rgba(245, 184, 61, .55); }

/* ============ SCROLL REVEAL ============ */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .mobil-inner { grid-template-columns: 1fr; gap: 48px; }
  .shelf { grid-template-columns: 1fr; gap: 22px; }
  .sv-panel { grid-template-columns: 1fr; gap: 40px; padding: 46px 34px; }
  .shelf-num { top: -10px; font-size: 52px; }
  .cycle { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; }
  .cycle::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: 100%; left: 20px; right: 20px;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 14px; border-radius: var(--radius);
    background: rgba(6, 13, 32, .97); backdrop-filter: blur(20px);
    border: 1px solid var(--line-2); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .28s, transform .28s, visibility .28s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links > a { padding: 12px 14px; }
  .nav-auth-mobile { display: block; margin-top: 8px; }
  .btn-login { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat + .stat { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); }
  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .section { padding: 76px 0; }
  .hero { padding: 132px 0 70px; }
  .hero-art { opacity: .3; right: -30%; }
  .cycle { grid-template-columns: repeat(2, 1fr); }
  .cyc-dot { width: 76px; height: 76px; font-size: 23px; border-radius: 24px; }
  .cyc-step { transform: translateX(36px); }
  .cf-row { grid-template-columns: 1fr; }
  .price-card.wide { grid-template-columns: 1fr; gap: 26px; padding: 32px 24px; }
  .pc-feats.two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 48px 22px; }
  .sv-panel { padding: 40px 24px; }
  .sv-metrics { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .post-content { padding: 24px 22px 28px; }
  .post-hero { height: 190px; }
  .level-chips { border-radius: var(--radius); }
  .lvl-chip { padding: 10px 16px; font-size: 13.5px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .phone { transform: none; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; padding: 26px 20px; }
  .stat + .stat { border-left: none !important; border-top: 1px solid var(--line); padding-top: 18px; }
  .cycle { grid-template-columns: 1fr; }
  .brand-word { font-size: 18px; }
}
