/* ────────────────────────────────────────────────────────────
   İNSANLARI OKUMA SANATI 2.0  ·  Morpheus / @kirmizipill
   Pure-black premium · Bebas Neue + DM Sans
   ──────────────────────────────────────────────────────────── */

:root {
  --black:      #000000;
  --bg:         #050505;
  --bg2:        #0b0a0a;
  --bg3:        #121110;
  --line:       rgba(255,255,255,0.07);
  --line2:      rgba(255,255,255,0.12);
  --red:        #C41E3A;
  --red-deep:   #8a1228;
  --red-bleed:  rgba(196,30,58,0.32);
  --red-soft:   rgba(196,30,58,0.10);
  --gold:       #C9A84C;
  --gold-dim:   #8a7128;
  --text:       #e8e2d8;
  --muted:      #8a847d;
  --muted2:     #a8a29a;
  --white:      #ffffff;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
a { color: inherit; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay — fixed, sits above everything */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 28px; }

/* Typography utilities */
.h-display {
  font-family: 'Bebas Neue', 'DM Sans', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.5px;
}
.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--red);
}
.eyebrow.center::before { display:none; }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }

/* Buttons ─────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .3s ease;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(196,30,58,0);
}
.btn-red:hover {
  background: #d8243f;
  box-shadow: 0 0 36px rgba(196,30,58,0.45), 0 0 0 1px rgba(196,30,58,0.6);
  transform: translateY(-1px);
}
.btn-red.no-arrow::after { content: none; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.03);
  color: #fff;
}

.btn-ghost .price { color: var(--gold); font-weight: 400; }
.btn-red    .price { color: #ffe9a8; font-weight: 400; }
.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-pulse { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(196,30,58,0); }
  50%     { box-shadow: 0 0 32px 4px rgba(196,30,58,0.28); }
}

/* NAV ─────────────────────────────────────────────────── */
nav.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  background: rgba(0,0,0,0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
nav.topbar.scrolled {
  background: rgba(0,0,0,0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.brand .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 10px var(--red); }
.brand-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  padding-left: 14px; margin-left: 4px;
  border-left: 1px solid var(--line);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 11px 22px;
  text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: #d8243f; }
@media (max-width: 720px) { .brand-tag, .nav-cta { display: none; } }

/* HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bleed {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(196,30,58,0.30) 0%, transparent 70%),
    radial-gradient(ellipse 90% 40% at 50% 110%, rgba(196,30,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, transparent 0%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 80px; align-items: center;
  min-width: 0;
}
.hero-inner > * { min-width: 0; }
.hero-eyebrow { margin-bottom: 28px; opacity: 0; animation: fadeUp .8s .1s ease both; }
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8.2vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp .8s .25s ease both;
}
.hero-h1 .accent { color: var(--red); }
.hero-h1 .strike {
  position: relative;
  color: var(--muted);
}
.hero-h1 .strike::after {
  content: ''; position: absolute; left: -4px; right: -4px; top: 52%;
  height: 4px; background: var(--red); transform: rotate(-2deg);
}
.hero-sub {
  font-size: 19px;
  font-weight: 400;
  color: var(--muted2);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0; animation: fadeUp .8s .4s ease both;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-sub,
.hero-sub strong {
  min-width: 0;
  overflow-wrap: anywhere;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0; animation: fadeUp .8s .55s ease both;
}
.hero-meta {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  max-width: 520px;
  opacity: 0; animation: fadeUp .8s .7s ease both;
}
.hero-meta-item {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.4px;
  min-width: 0;
}
.hero-meta-item span:not(.num) { min-width: 0; overflow-wrap: break-word; }
.hero-meta-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--gold);
  letter-spacing: 1px; line-height: 1;
}

/* Hero visual stack */
.hero-visual {
  position: relative;
  opacity: 0; animation: fadeUp .9s .35s ease both;
}
.hero-cards {
  position: relative;
  aspect-ratio: 5 / 6;
}
.hero-card {
  position: absolute;
  border: 1px solid var(--line2);
  overflow: hidden;
  background: var(--bg2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.hero-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) contrast(1.1) saturate(1.05);
}
.hero-card-uyanis {
  width: 62%; height: 78%;
  top: 4%; left: 0;
  transform: rotate(-3deg);
  z-index: 1;
}
.hero-card-hakimiyet {
  width: 64%; height: 82%;
  bottom: 0; right: 0;
  transform: rotate(2.5deg);
  z-index: 2;
  border-color: rgba(196,30,58,0.45);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(196,30,58,0.25), 0 0 60px rgba(196,30,58,0.15);
}
.hero-card-label {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2.5px;
  font-size: 14px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 6px 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-card-hakimiyet .hero-card-label { background: var(--red); border-color: var(--red); }
.hero-stamp {
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: var(--gold);
  color: #1a1408;
  padding: 8px 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(201,168,76,0.25);
}

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #030303;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 56px;
  padding: 18px 0;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px; letter-spacing: 4px;
  color: var(--muted2);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 56px;
}
.marquee-item .sep { color: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Section base */
section { padding: 120px 0; position: relative; }
.section-head { margin-bottom: 64px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.5px;
  color: var(--white);
  text-transform: uppercase;
  margin: 18px 0 22px;
}
.section-title .accent { color: var(--red); }
.section-title .gold { color: var(--gold); }
.section-sub {
  font-size: 18px;
  color: var(--muted2);
  line-height: 1.65;
  max-width: 620px;
}
.section-head.center .section-sub { margin: 0 auto; }

/* Hairline divider */
.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-deep) 20%, var(--red) 50%, var(--red-deep) 80%, transparent);
  opacity: 0.4;
}

/* PAIN ─────────────────────────────────────────────────── */
.pain { background: var(--bg); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pain-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 38px;
  position: relative;
  transition: background .25s ease;
}
.pain-card:hover { background: rgba(196,30,58,0.04); }
.pain-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--red);
  letter-spacing: 2px;
  margin-bottom: 22px;
  display: block;
}
.pain-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.05;
}
.pain-p {
  font-size: 15.5px;
  color: var(--muted2);
  line-height: 1.65;
}

.pain-quote {
  margin-top: 80px;
  border-left: 3px solid var(--red);
  padding: 20px 0 20px 32px;
  max-width: 820px;
}
.pain-quote p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
}
.pain-quote p .gold { color: var(--gold); }
.pain-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
}

/* CURRICULUM ──────────────────────────────────────────── */
.curriculum { background: var(--black); }
.days-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.day {
  background: var(--bg);
  padding: 36px 26px 32px;
  transition: background .25s ease;
  position: relative;
}
.day:hover { background: var(--bg3); }
.day-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.day-icon {
  width: 36px; height: 36px;
  margin-bottom: 20px;
  color: var(--red);
}
.day-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  line-height: 1.02;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.day-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* CERCEVE (Frame Course teaser) ──────────────────────── */
.cerceve { background: var(--black); position: relative; overflow: hidden; }
.cerceve::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(196,30,58,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cerceve-inner { position: relative; z-index: 2; }
.cerceve-head { max-width: 760px; margin-bottom: 56px; }
.cerceve-head .section-title { margin-bottom: 26px; }
.cerceve-sub {
  font-size: 18px;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 680px;
}
.cerceve-sub p + p { margin-top: 14px; }
.cerceve-sub strong { color: var(--text); font-weight: 500; }

.cerceve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 56px;
}
.cerceve-feat {
  background: var(--bg);
  padding: 32px 32px 32px 28px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  align-items: flex-start;
  transition: background .25s ease;
}
.cerceve-feat:hover { background: var(--bg3); }
.cerceve-feat-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cerceve-feat-icon svg { width: 22px; height: 22px; }
.cerceve-feat-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cerceve-feat-p {
  font-size: 14.5px;
  color: var(--muted2);
  line-height: 1.55;
}

.cerceve-callout {
  background: linear-gradient(120deg, #1a0000 0%, rgba(26,0,0,0.4) 100%);
  border: 1px solid rgba(196,30,58,0.25);
  border-left: 4px solid var(--red);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 0 60px rgba(196,30,58,0.06), inset 0 0 40px rgba(196,30,58,0.04);
}
.cerceve-callout-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  flex-shrink: 0;
  border-right: 1px solid rgba(196,30,58,0.25);
  padding-right: 24px;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.cerceve-callout-body {
  flex: 1; min-width: 260px;
  font-size: 15.5px;
  color: var(--muted2);
  line-height: 1.65;
}
.cerceve-callout-body strong { color: var(--text); font-weight: 500; }
.cerceve-callout-body .coupon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2.5px;
  color: var(--gold);
  padding: 2px 10px;
  border: 1px dashed var(--gold-dim);
  margin: 0 2px;
  white-space: nowrap;
}
.cerceve-callout-body .price-line {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}
.cerceve-callout-body .price-line .gold { color: var(--gold); font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: 1px; }

@media (max-width: 820px) {
  .cerceve-grid { grid-template-columns: 1fr; }
  .cerceve-callout { padding: 24px; }
  .cerceve-callout-mark { border-right: none; border-bottom: 1px solid rgba(196,30,58,0.25); padding: 0 0 16px; align-self: flex-start; }
}

/* PACKAGES ───────────────────────────────────────────── */
.packages { background: var(--bg); position: relative; overflow: hidden; }
.packages::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 70% 50%, rgba(196,30,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.pkg {
  position: relative;
  border: 1px solid var(--line);
  background: var(--black);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.pkg:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  border-color: var(--line2);
}
.pkg-hakimiyet:hover { transform: translateY(-6px) rotate(0.3deg); }

.pkg-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg2);
}
.pkg-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  filter: brightness(0.78) contrast(1.1);
  transition: transform .6s ease, filter .35s ease;
}
.pkg:hover .pkg-img-wrap img { transform: scale(1.04); filter: brightness(0.9) contrast(1.1); }
.pkg-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.5) 100%);
}
.pkg-img-label {
  position: absolute;
  left: 24px; bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  z-index: 2;
}

.pkg-body { padding: 40px 36px 36px; display: flex; flex-direction: column; flex: 1; }
.pkg-tag {
  align-self: flex-start;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 3px;
  padding: 6px 12px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.pkg-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 4.5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pkg-tagline {
  font-size: 15px;
  color: var(--muted2);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pkg-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px dashed var(--line2);
}
.pkg-price .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 0.92;
  color: var(--gold);
  letter-spacing: 0;
}
.pkg-price .currency {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--gold-dim);
}
.pkg-price .strike {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  margin-left: 8px;
}
.pkg-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}
.pkg-features li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px;
  color: var(--muted2);
  line-height: 1.5;
}
.pkg-features li .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  color: var(--red);
}
.pkg-features li strong { color: var(--white); font-weight: 500; }
.pkg-features li .feat-value {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 2px;
  text-transform: uppercase;
  vertical-align: 2px;
  white-space: nowrap;
}
.pkg-features li.gold-feature .check { color: var(--gold); }
.pkg-features li.gold-feature strong { color: var(--gold); }

.pkg-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2.5px;
  padding: 18px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s ease;
}

/* Uyanış (left) */
.pkg-uyanis .pkg-tag {
  background: rgba(255,255,255,0.05);
  color: var(--muted2);
  border: 1px solid var(--line2);
}
.pkg-uyanis .pkg-cta {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line2);
}
.pkg-uyanis .pkg-cta:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.04);
}

/* Hakimiyet (right, featured) */
.pkg-hakimiyet {
  border-color: rgba(196,30,58,0.45);
  background: linear-gradient(170deg, rgba(196,30,58,0.06) 0%, var(--black) 60%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(196,30,58,0.08);
}
.pkg-hakimiyet .pkg-tag {
  background: var(--gold);
  color: #1a1408;
  border: 1px solid var(--gold);
}
.pkg-hakimiyet .pkg-cta {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
}
.pkg-hakimiyet .pkg-cta:hover {
  background: #d8243f;
  box-shadow: 0 0 28px rgba(196,30,58,0.4);
}
.pkg-badge {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  background: var(--gold);
  color: #1a1408;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  padding: 7px 14px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

/* Savings row */
.savings {
  margin-top: 28px;
  background: var(--black);
  border: 1px solid var(--line);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: end;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.savings-cell { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.savings-cell .label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 3px;
  color: var(--muted); text-transform: uppercase;
}
.savings-cell .val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.5px;
}
.savings-cell.save .val { color: var(--gold); }
.savings .op {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--red);
  padding-bottom: 4px;
}
@media (max-width: 720px) {
  .savings {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 18px;
    padding: 24px;
  }
  .savings .op { display: none; }
  .savings-cell.save { padding-top: 16px; border-top: 1px dashed var(--line2); }
}

/* COMPARISON ──────────────────────────────────────────── */
.compare { background: var(--black); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.compare-col { padding: 44px 40px; }
.compare-col.old {
  background: var(--bg);
  border-right: 1px solid var(--line);
}
.compare-col.new {
  background: linear-gradient(170deg, rgba(196,30,58,0.06) 0%, transparent 70%);
}
.compare-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.compare-col.old .compare-h { color: var(--muted); }
.compare-col.new .compare-h { color: var(--red); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.compare-list li {
  font-size: 15px;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
  color: var(--muted2);
}
.compare-col.old .compare-list li::before {
  content: '✕';
  position: absolute; left: 0; top: 1px;
  color: var(--muted);
  font-weight: 700;
}
.compare-col.new .compare-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 1px;
  color: var(--red);
  font-weight: 700;
}
.compare-col.old .compare-list li { text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.15); }

/* BONUS EBOOK ─────────────────────────────────────────── */
.bonus { background: var(--bg); position: relative; overflow: hidden; }
.bonus::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 60% at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 2;
}
.bonus-stamp {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 8px 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.bonus-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.bonus-title .gold { color: var(--gold); }
.bonus-sub {
  font-size: 17px;
  color: var(--muted2);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 540px;
}
.bonus-needs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 540px;
}
.bonus-need {
  background: var(--black);
  padding: 18px 14px;
  text-align: center;
}
.bonus-need .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}
.bonus-visual {
  position: relative;
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
}
.bonus-book {
  width: 78%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1a1408 0%, #0d0a06 100%);
  border: 1px solid var(--gold-dim);
  border-left: 6px solid var(--gold);
  padding: 36px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 50px rgba(201,168,76,0.12);
  transform: rotate(-3deg);
  position: relative;
}
.bonus-book::before {
  content: '';
  position: absolute; left: 6px; top: 0; bottom: 0;
  width: 1px;
  background: rgba(201,168,76,0.3);
}
.bonus-book-top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 4px;
  color: var(--gold-dim);
  text-transform: uppercase;
}
.bonus-book-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0;
}
.bonus-book-title .gold { color: var(--gold); }
.bonus-book-bottom {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}
.bonus-value-tag {
  position: absolute;
  top: 8%; right: 4%;
  background: var(--red);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  padding: 18px 14px;
  letter-spacing: 1.5px;
  text-align: center;
  line-height: 0.95;
  transform: rotate(8deg);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}
.bonus-value-tag .vt-big { font-size: 32px; display: block; }
.bonus-value-tag .vt-sm { font-size: 11px; letter-spacing: 2px; opacity: 0.85; }

/* PROOF / TESTIMONIALS ────────────────────────────────── */
.proof { background: var(--black); }
.proof-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.proof-grid {
  columns: 3;
  column-gap: 20px;
}
.proof-card {
  break-inside: avoid;
  margin-bottom: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 14px;
  user-select: none;
  -webkit-user-select: none;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,30,58,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 30px rgba(196,30,58,0.06);
}
.proof-card img {
  width: 100%;
  display: block;
  border-radius: 2px;
  pointer-events: none;
  -webkit-touch-callout: none;
}
.proof-card .src {
  margin-top: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}
.proof-card .src .corner { color: var(--red); }

.proof-stats {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.proof-stat:last-child { border-right: none; }
.proof-stat .n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.proof-stat .l {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
}

/* URGENCY / COUNTDOWN ────────────────────────────────── */
.urgency {
  background: linear-gradient(180deg, var(--black) 0%, #0a0202 100%);
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(196,30,58,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.urgency-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.urgency-text {
  flex: 1; min-width: 280px;
}
.urgency-text .small {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.urgency-text .big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
  color: var(--white);
  text-transform: uppercase;
}
.countdown {
  display: flex; gap: 10px;
}
.cd-box {
  background: var(--black);
  border: 1px solid var(--line2);
  padding: 16px 18px;
  text-align: center;
  min-width: 78px;
}
.cd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.cd-lab {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
}

/* FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--bg); }
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 4px;
}
.faq-item {
  border: 1px solid var(--line);
  background: var(--black);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open { border-color: rgba(196,30,58,0.4); }
.faq-q {
  width: 100%; background: transparent; border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 500;
  text-align: left;
  padding: 24px 28px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s, background .2s;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 2.5px;
  color: var(--red);
  margin-right: 16px;
}
.faq-item.open .faq-q { color: var(--white); background: rgba(196,30,58,0.05); }
.faq-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--red);
  transition: transform .25s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 4px 28px 26px 76px;
  font-size: 15.5px;
  color: var(--muted2);
  line-height: 1.7;
}

/* FINAL CTA ───────────────────────────────────────────── */
.final {
  position: relative;
  padding: 140px 0 120px;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(196,30,58,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.final-inner { position: relative; z-index: 2; }
.final h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.9;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin: 18px 0 24px;
}
.final h2 .accent { color: var(--red); }
.final p.lead {
  font-size: 20px;
  color: var(--muted2);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.55;
}
.final-btns {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.final-sign {
  margin-top: 56px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.mobile-sticky-cta {
  display: none;
}

/* FOOTER ──────────────────────────────────────────────── */
footer.foot {
  border-top: 1px solid var(--line);
  padding: 40px 24px;
  text-align: center;
  background: var(--black);
}
.foot a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}
.foot a:hover { color: var(--red); }
.foot p.small {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* ANIMATIONS / OBSERVERS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .days-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col.old { border-right: none; border-bottom: 1px solid var(--line); }
  .bonus-inner { grid-template-columns: 1fr; gap: 48px; }
  .bonus-visual { max-width: 360px; margin: 0 auto; width: 100%; }
  .proof-grid { columns: 2; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .proof-stat:nth-child(2) { border-right: none; }
  .proof-stat:nth-child(1), .proof-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  body { padding-bottom: 82px; }
  section { padding: 80px 0; }
  .container, .container-narrow { padding: 0 20px; }
  .hero { min-height: auto; padding: 104px 0 58px; align-items: flex-start; }
  .hero-inner { gap: 46px; }
  .hero-h1 {
    font-size: clamp(48px, 15.2vw, 62px);
    line-height: 0.9;
    letter-spacing: 0;
    max-width: 100%;
    overflow-wrap: normal;
  }
  .hero-sub {
    max-width: 100%;
    margin-bottom: 34px;
    font-size: 17px;
    line-height: 1.55;
    overflow-wrap: break-word;
  }
  .hero-sub strong { display: block; margin-top: 4px; }
  .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    max-width: 100%;
    min-width: 0;
  }
  .hero-meta-item { align-items: flex-start; line-height: 1.3; min-width: 0; }
  .hero-visual { max-width: min(340px, 88vw); }
  .pain-grid { grid-template-columns: 1fr; }
  .days-grid { grid-template-columns: 1fr; }
  .proof-grid { columns: 1; }
  .proof-stats { grid-template-columns: 1fr; }
  .proof-stat { border-right: none; border-bottom: 1px solid var(--line); }
  .proof-stat:last-child { border-bottom: none; }
  .hero-btns .btn, .final-btns .btn { width: 100%; }
  .urgency-inner { flex-direction: column; align-items: flex-start; }
  .countdown { width: 100%; justify-content: space-between; }
  .cd-box { min-width: 0; flex: 1; padding: 14px 8px; }
  .bonus-needs { grid-template-columns: 1fr; }
  .compare-col, .pkg-body { padding: 32px 24px; }
  .faq-a-inner { padding-left: 28px; }
  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 13px 18px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 42px rgba(0,0,0,0.55), 0 0 32px rgba(196,30,58,0.35);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .22s ease, transform .22s ease;
  }
  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-sticky-cta strong {
    color: #ffe9a8;
    font-weight: 400;
    letter-spacing: 1.2px;
  }
}

/* 404 */
.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 18%, rgba(196,30,58,0.18), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(201,168,76,0.08), transparent 30%),
    var(--black);
  overflow-x: hidden;
}
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 72px;
}
.error-noise {
  position: absolute;
  inset: auto -8vw 12vh -8vw;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 180px);
  letter-spacing: 18px;
  color: rgba(196,30,58,0.055);
  white-space: nowrap;
  transform: rotate(-7deg);
  pointer-events: none;
  user-select: none;
}
.error-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}
.error-inner h1 {
  margin: 18px 0 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(70px, 11vw, 142px);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0;
}
.error-inner h1 .accent { color: var(--red); }
.error-inner p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted2);
  font-size: 18px;
  line-height: 1.7;
}
.error-actions {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.error-actions .btn-primary-xl { min-width: min(420px, 100%); }

@media (max-width: 720px) {
  .error-404 { padding: 110px 0 56px; align-items: flex-start; }
  .error-inner h1 { font-size: 74px; }
  .error-inner p { font-size: 16px; }
  .error-noise { bottom: 18vh; letter-spacing: 10px; }
}


/* ────────────────────────────────────────────────────────────
   v2 ADDITIONS · CTA hierarchy · Trust signals · Opt-in
   ──────────────────────────────────────────────────────────── */

/* Stacked CTAs (hero + final) — primary dominant, secondary as text link */
.hero-btns-stack,
.final-btns-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.final-btns-stack { align-items: center; }

.btn-primary-xl {
  padding: 22px 44px;
  font-size: 20px;
  letter-spacing: 3px;
  min-width: 320px;
}
.btn-primary-xl .price {
  font-size: 18px;
  padding-left: 0;
  border-left: 0;
  margin-left: 0;
}
.btn-primary-xl .cta-arrow {
  color: #ffe9a8;
  font-size: 18px;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--muted2);
  text-decoration: none;
  letter-spacing: 0.2px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.cta-secondary strong { color: var(--gold); font-weight: 600; letter-spacing: 0.4px; }
.cta-secondary:hover { color: var(--text); border-bottom-color: var(--line2); }
.cta-secondary:hover strong { color: var(--gold); }

.cta-free {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.2px;
  padding: 2px 0;
  border-bottom: 1px solid rgba(201,168,76,0.28);
  transition: color .2s ease, border-color .2s ease;
}
.cta-free strong {
  color: var(--gold);
  font-weight: 700;
  padding: 0 3px;
}
.cta-free:hover {
  color: var(--text);
  border-bottom-color: var(--gold);
}

/* ── Trust signals row ── */
.trust-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  padding: 4px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.4px;
}
.trust-line-center { justify-content: center; width: 100%; }
.final-btns .trust-line { justify-content: center; }
.pkg-body .trust-line { margin-top: 12px; }

.trust-lock { color: var(--muted2); flex: 0 0 auto; }
.trust-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 9px;
  color: var(--muted2);
  font-weight: 500;
  margin-right: 1px;
}

.pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  padding: 0 6px;
  border-radius: 2px;
  background: #fff;
  color: #111;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.4px;
  line-height: 1;
  user-select: none;
}
.pay-paytr {
  background: #fff;
  padding: 0 6px;
}
.pay-paytr .paytr-img {
  display: block;
  height: 10px;
  width: auto;
}
.pay-visa {
  background: #fff;
  padding: 0 5px;
  min-width: 34px;
}
.pay-visa .visa-img {
  display: block;
  height: 10px;
  width: auto;
}
.pay-mc { padding: 0 3px; }
.pay-mc svg { display: block; width: 22px; height: 13px; }
.pay-troy {
  background: #00a0d2;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0;
  padding: 0 6px;
  font-size: 9px;
}

/* ── Hero meta: gold "Ömür Boyu Erişim" emphasis ── */
.hero-meta-hero { position: relative; }
.hero-meta-hero .num.gold-num {
  font-size: 32px;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(201,168,76,0.35);
}
.hero-meta-hero .gold-label {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
}

/* ════════════════════════════════════════════════════════════
   OPT-IN · "MASKE" · editorial letter-from-Morpheus layout
   ════════════════════════════════════════════════════════════ */
.optin {
  position: relative;
  padding: 120px 0;
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.optin::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 18% 50%, rgba(196,30,58,0.10), transparent 60%),
    radial-gradient(ellipse 60% 60% at 95% 30%, rgba(196,30,58,0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Diagonal "MASKE · GİZLİ" stamp watermark in the bg */
.optin-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.optin-stamp-bg {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 22%;
  transform: rotate(-12deg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  letter-spacing: 16px;
  color: rgba(196,30,58,0.045);
  white-space: nowrap;
  user-select: none;
  text-transform: uppercase;
}
.optin-stamp-bg-2 {
  top: 62%;
  transform: rotate(-12deg);
  color: rgba(255,255,255,0.025);
}

.optin .container { position: relative; z-index: 1; }

.optin-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── ENVELOPE VISUAL ── */
.optin-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.envelope {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1.55 / 1;
  transform: rotate(-3.5deg);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(196,30,58,0.15));
}
.optin-wrap:hover .envelope { transform: rotate(-1.5deg) translateY(-4px); }

.envelope-back,
.envelope-front {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1a1715 0%, #0f0d0c 100%);
  border: 1px solid rgba(255,255,255,0.06);
}
.envelope-flap {
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 56%;
  background: linear-gradient(180deg, #221d1b 0%, #15110f 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  z-index: 1;
}
.envelope-front {
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%),
    linear-gradient(180deg, #181412 0%, #0d0b0a 100%);
  border-top: none;
  clip-path: polygon(0 38%, 50% 70%, 100% 38%, 100% 100%, 0 100%);
  padding: 0 28px 24px;
}

/* Envelope content text */
.env-stamp-tl,
.env-stamp-tr {
  position: absolute;
  top: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: rgba(232,226,216,0.4);
  text-transform: uppercase;
  z-index: 3;
}
.env-stamp-tl { left: 24px; }
.env-stamp-tr { right: 24px; }

.env-label {
  position: absolute;
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 14px;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(196,30,58,0.4);
  white-space: nowrap;
  z-index: 3;
}
.env-sub {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
}
.env-line {
  position: absolute;
  left: 24px; right: 24px;
  bottom: 32px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  z-index: 3;
}
.env-meta {
  position: absolute;
  left: 24px; right: 24px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--muted2);
  text-transform: uppercase;
  z-index: 3;
}
.env-meta span:last-child { color: var(--text); font-weight: 600; letter-spacing: 0.5px; text-transform: none; font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 2px; }

/* Red wax seal */
.env-seal {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%) rotate(8deg);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #e83d5a 0%, #c41e3a 40%, #7a0f22 100%);
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,0.25),
    inset 4px -6px 14px rgba(0,0,0,0.45),
    inset -3px 4px 12px rgba(255,120,140,0.35),
    0 8px 22px rgba(196,30,58,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.env-seal::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0,0,0,0.3);
}
.env-seal-letter {
  font-family: 'Bebas Neue', serif;
  font-size: 38px;
  color: rgba(0,0,0,0.5);
  text-shadow: 0 1px 0 rgba(255,255,255,0.15);
  font-style: italic;
  font-weight: 700;
  transform: translateY(-1px);
}

/* ── COPY COLUMN ── */
.optin-copy { max-width: 600px; }
.optin-copy .eyebrow { margin-bottom: 22px; }

.optin-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.5px;
  font-size: clamp(40px, 5.2vw, 68px);
  color: var(--white);
  margin-bottom: 28px;
}
.optin-title-em {
  font-style: italic;
  color: var(--red);
  position: relative;
  display: inline-block;
}
.optin-title-em::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 6px;
  height: 6px;
  background: var(--red);
  opacity: 0.18;
  z-index: -1;
}

.optin-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted2);
  margin-bottom: 36px;
  max-width: 560px;
}
.optin-body p + p { margin-top: 12px; }
.optin-body strong { color: var(--text); font-weight: 600; }
.optin-body .quote-mark {
  font-family: 'Bebas Neue', serif;
  color: var(--red);
  font-weight: 700;
  font-size: 1.15em;
  line-height: 0;
  vertical-align: -0.05em;
}
.optin-lead {
  max-width: 500px;
}
.optin-techniques {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 16px;
}
.optin-technique {
  border-left: 2px solid rgba(201,168,76,0.72);
  background: rgba(255,255,255,0.025);
  padding: 14px 16px 16px;
}
.optin-technique span {
  display: block;
  margin-bottom: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.optin-technique p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--muted2);
}
.optin-body-2 { color: var(--muted); font-size: 15.5px; max-width: 520px; }

/* Inline input field with arrow submit */
.optin-form { max-width: 620px; }
.optin-fields {
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) minmax(180px, 1fr) 142px;
  align-items: stretch;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.optin-fields:focus-within {
  border-color: var(--red);
  background: rgba(0,0,0,0.6);
  box-shadow: 0 0 0 4px rgba(196,30,58,0.12), 0 18px 40px rgba(0,0,0,0.4);
}
.optin-field {
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.optin-field + .optin-field {
  border-left: 1px solid rgba(255,255,255,0.10);
}
.optin-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 22px 24px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 0.3px;
  min-width: 0;
}
.optin-input::placeholder { color: var(--muted); font-style: italic; }

.optin-submit {
  flex: 0 0 auto;
  width: 142px;
  background: var(--red);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s ease, width .25s ease;
}
.optin-submit:hover { background: #d8243f; }
.optin-submit svg { transition: transform .25s ease; }
.optin-submit:hover svg { transform: translateX(3px); }

.optin-fine {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.dot-sep {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
  flex: 0 0 auto;
}

.optin-success {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(201,168,76,0.06);
  border-left: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3px;
  align-items: center;
  gap: 12px;
}
.optin-error {
  min-height: 22px;
  margin-top: 14px;
  font-size: 13px;
  color: #f0c36a;
  line-height: 1.45;
}
.optin-form.loading .optin-submit {
  opacity: 0.65;
  pointer-events: none;
}
.optin-form.done .optin-fields,
.optin-form.done .optin-fine { display: none; }
.optin-form.done .optin-success { display: flex; }

/* Responsive */
@media (max-width: 960px) {
  .optin-wrap { grid-template-columns: 1fr; gap: 56px; }
  .optin-visual { order: -1; }
  .envelope { max-width: 320px; }
}
@media (max-width: 720px) {
  .btn-primary-xl { min-width: 0; width: 100%; padding: 20px 24px; font-size: 17px; letter-spacing: 2px; }
  .hero-btns-stack { align-items: stretch; }
  .hero-btns-stack .cta-secondary,
  .hero-btns-stack .cta-free,
  .hero-btns-stack .trust-line { justify-content: center; align-self: center; text-align: center; }
  .optin { padding: 80px 0; }
  .optin-stamp-bg { font-size: 64px; letter-spacing: 10px; }
  .envelope { max-width: 280px; }
  .env-label { font-size: 34px; letter-spacing: 10px; }
  .env-seal { width: 64px; height: 64px; right: -10px; }
  .env-seal-letter { font-size: 30px; }
  .optin-title { font-size: 44px; }
  .optin-body {
    max-width: 100%;
    font-size: 16px;
  }
  .optin-techniques {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 16px 0 14px;
  }
  .optin-technique {
    padding: 13px 14px 14px;
  }
  .optin-technique p {
    font-size: 14px;
    line-height: 1.55;
  }
  .optin-fields {
    grid-template-columns: 1fr;
  }
  .optin-field-name {
    grid-column: 1;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .optin-field + .optin-field {
    border-left: 0;
  }
  .optin-field-email {
    grid-column: 1;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .optin-input {
    padding: 18px 18px;
  }
  .optin-submit {
    width: 100%;
    min-height: 58px;
    grid-column: 1;
    font-size: 14px;
    letter-spacing: 1.7px;
    white-space: nowrap;
  }
}
