/*
  =============================================
  SİGARA YANIĞI EĞİTİMİ — VSL v3
  9-Block Psikolojik Satış Sayfası
  =============================================
*/

/* ─── Tokens ─── */
:root {
    --c-bg:        #060913;
    --c-bg-2:      #0a0f1e;
    --c-bg-3:      #0d1528;
    --c-surface:   rgba(255,255,255,0.042);
    --c-border:    rgba(255,255,255,0.07);

    --c-text:      #f0f4ff;
    --c-muted:     #8898aa;
    --c-gold:      #d4af37;
    --c-gold-glow: rgba(212,175,55,0.35);
    --c-red:       #b91c1c;
    --c-red-dark:  #7f0000;
    --c-green:     #059669;
    --c-wa:        #25D366;
    --c-wa-dark:   #128C7E;
    --c-blue:      #0284c7;

    --r-lg: 18px;
    --r-md: 12px;
    --r-sm: 8px;
    --r-pill: 100px;

    --shadow-gold: 0 8px 40px -8px rgba(212,175,55,0.3);
    --shadow-wa:   0 8px 30px rgba(37,211,102,0.4);

    --f-head: 'Outfit', sans-serif;
    --f-body: 'Inter', sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--f-body);
    line-height: 1.65;
    overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--f-head); line-height: 1.2; }
p { margin-bottom: 0; }

/* ─── Layout ─── */
.container {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section {
    padding: 90px 0;
}

/* ─── Shared Typography ─── */
.section-label {
    display: inline-block;
    font-family: var(--f-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--c-gold);
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--r-pill);
    padding: 5px 16px;
    margin-bottom: 1.2rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.section-sub {
    font-size: 1.15rem;
    color: var(--c-muted);
    margin-bottom: 2.5rem;
}
.text-gold { color: var(--c-gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STICKY WHATSAPP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sticky-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: var(--c-wa);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: var(--r-pill);
    font-family: var(--f-head);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-wa);
    transition: transform 0.25s, background 0.25s;
    animation: waPulse 2.5s ease-in-out infinite;
}
.sticky-wa:hover { background: var(--c-wa-dark); transform: scale(1.06); }
.sticky-wa-icon { font-size: 1.3rem; }
@keyframes waPulse {
    0%,100% { box-shadow: var(--shadow-wa); }
    50%      { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOK 1 — HOOK
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hook-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(185,28,28,0.18) 0%, transparent 70%),
                radial-gradient(ellipse 60% 50% at 80% 80%, rgba(212,175,55,0.08) 0%, transparent 70%),
                var(--c-bg);
    padding: 100px 1.5rem 80px;
}

/* Arka plan izgara */
.hook-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hook-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.fomo-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(185,28,28,0.15);
    border: 1px solid rgba(185,28,28,0.4);
    border-radius: var(--r-pill);
    padding: 8px 20px;
    font-family: var(--f-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fca5a5;
    margin-bottom: 2rem;
    animation: fadeSlideDown 0.6s ease both;
}
.fomo-dot {
    width: 8px; height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1.2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
@keyframes fadeSlideDown {
    from { opacity:0; transform:translateY(-16px); }
    to   { opacity:1; transform:translateY(0); }
}

.hook-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.2rem;
    animation: fadeUp 0.7s 0.1s ease both;
}
.hook-highlight {
    display: block;
    background: linear-gradient(135deg, #d4af37 0%, #fff8dc 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hook-sub {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--c-muted);
    margin-bottom: 2rem;
    animation: fadeUp 0.7s 0.2s ease both;
}
@keyframes fadeUp {
    from { opacity:0; transform:translateY(24px); }
    to   { opacity:1; transform:translateY(0); }
}

.hook-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.7s 0.3s ease both;
}
.pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--c-border);
    border-radius: var(--r-pill);
    padding: 9px 20px;
    font-family: var(--f-head);
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.btn-scroll {
    display: inline-block;
    color: var(--c-muted);
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    padding-bottom: 2px;
    transition: color 0.2s;
    animation: fadeUp 0.7s 0.4s ease both;
}
.btn-scroll:hover { color: var(--c-text); }

.wave-divider {
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%; height: 80px;
    pointer-events: none;
}
.wave-divider svg { width:100%; height:100%; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOK 2 — PROBLEM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.problem-section { background: var(--c-bg-2); }

.problem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.problem-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.3s;
}
.problem-card:hover { transform: translateY(-4px); }
.problem-card.bad {
    border-color: rgba(239,68,68,0.2);
    background: rgba(127,29,29,0.1);
}
.problem-card.highlight-card-problem {
    border-color: rgba(212,175,55,0.35);
    background: rgba(212,175,55,0.06);
}
.pcard-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.problem-card p { font-size: 1.05rem; line-height: 1.55; }

.problem-conclusion {
    text-align: center;
    font-size: 1.4rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOK 3 — FIRSAT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.opportunity-section {
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(212,175,55,0.07) 0%, transparent 70%),
                var(--c-bg);
    text-align: center;
}

.opportunity-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-gold);
}
.ostat {
    flex: 1;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.ostat-num {
    font-family: var(--f-head);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--c-gold);
    letter-spacing: -1px;
}
.ostat-label {
    font-size: 0.9rem;
    color: var(--c-muted);
    line-height: 1.4;
}
.ostat-divider {
    width: 1px;
    height: 80px;
    background: rgba(212,175,55,0.2);
    flex-shrink: 0;
}

.opp-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 640px;
    margin: 0 auto;
}
.opp-pill {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-head);
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(8px);
    transition: border-color 0.2s, transform 0.2s;
}
.opp-pill:hover {
    border-color: rgba(212,175,55,0.35);
    transform: translateY(-2px);
}
.opp-pill span { font-size: 1.5rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VIDEO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.video-wrap {
    max-width: 780px;
    margin: 2.5rem auto;
    background: #000;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: var(--shadow-gold);
}
.secondary-video { margin-top: 3rem; }
.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #0d1015;
    border: 2px dashed rgba(255,255,255,0.12);
    cursor: pointer;
    transition: background 0.2s;
}
.video-placeholder:hover { background: #12171f; }
.play-btn {
    font-size: 3.5rem;
    color: var(--c-red);
    display: block;
    transition: transform 0.2s;
}
.video-placeholder:hover .play-btn { transform: scale(1.15); }
.video-placeholder p { font-size: 1rem; color: var(--c-text); }
.video-note { font-size: 0.78rem !important; color: var(--c-muted) !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOK 4 — ÇÖZÜM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.solution-section { background: var(--c-bg-2); }

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 720px;
    margin: 0 auto;
}
.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 1.5rem 1.75rem;
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, transform 0.25s;
}
.solution-item:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateX(4px);
}
.sol-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.solution-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--c-text);
}
.solution-item p {
    font-size: 0.95rem;
    color: var(--c-muted);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOK 5 — FORMAT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.format-section { background: var(--c-bg); }

.format-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 760px;
    margin: 0 auto 0;
}
.fstep {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 1.5rem 1.75rem;
    backdrop-filter: blur(8px);
}
.fstep-num {
    font-family: var(--f-head);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(212,175,55,0.25);
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
}
.fstep h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}
.fstep p { font-size: 0.9rem; color: var(--c-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOK 6 — HEDEF KİTLE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.target-section { background: var(--c-bg-2); }

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.target-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.target-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.target-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.target-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--c-gold); }
.target-card p { font-size: 0.95rem; color: var(--c-muted); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOK 7 — OTORİTE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.authority-section {
    background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 70%),
                var(--c-bg);
}
.authority-body {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1rem;
}
.authority-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.educator-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 1rem 1.25rem;
    margin-bottom: 0 !important;
}
.av-circle {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--c-gold), #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-head);
    font-weight: 900;
    font-size: 1.1rem;
    color: #000;
    flex-shrink: 0;
}
.educator-badge strong { display: block; font-size: 1rem; }
.edu-title { font-size: 0.85rem; color: var(--c-muted); }

/* Önce/Sonra Galeri */
.before-after-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.ba-showcase {
    background: var(--c-surface);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.ba-showcase:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-gold);
    border-color: rgba(212,175,55,0.5);
}
.ba-showcase img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.ba-showcase:hover img {
    transform: scale(1.03);
}
.ba-caption {
    text-align: center;
    font-family: var(--f-head);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-muted);
    padding: 0.8rem 1rem;
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(212,175,55,0.15);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOK 8 — GERÇEKLİK
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reality-section { background: var(--c-bg-2); }

.reality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.reality-negative,
.reality-positive {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 2rem;
    backdrop-filter: blur(8px);
}
.reality-negative { border-color: rgba(239,68,68,0.15); }
.reality-positive  { border-color: rgba(5,150,105,0.2); }
.reality-neg-title { color: #f87171; margin-bottom: 1.2rem; font-size: 1.15rem; }
.reality-pos-title { color: #34d399; margin-bottom: 1.2rem; font-size: 1.15rem; }
.reality-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.reality-list li { font-size: 1rem; line-height: 1.5; }
.bad-list li  { color: var(--c-muted); }
.good-list li { color: var(--c-text); }

.reality-quote {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--c-muted);
    border-left: 3px solid var(--c-gold);
    padding: 1rem 2rem;
    background: rgba(212,175,55,0.04);
    border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOK 9 — TEKLİF + CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-section {
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(185,28,28,0.12) 0%, transparent 70%),
                var(--c-bg);
}
.offer-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(10,15,30,0.8);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-gold), 0 40px 80px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
}
.offer-fomo {
    background: linear-gradient(135deg, rgba(185,28,28,0.6), rgba(127,0,0,0.4));
    color: #fca5a5;
    font-family: var(--f-head);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(185,28,28,0.3);
}
.offer-price-area { text-align: center; padding: 2.5rem 2rem 1.5rem; }
.offer-price-label {
    font-family: var(--f-head);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 0.5rem;
}
.offer-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin-bottom: 0.6rem;
}
.price-cur {
    font-family: var(--f-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-gold);
    margin-top: 0.8rem;
    margin-right: 4px;
}
.price-val {
    font-family: var(--f-head);
    font-size: clamp(4rem, 10vw, 5.5rem);
    font-weight: 900;
    color: var(--c-gold);
    letter-spacing: -2px;
}
.offer-price-note {
    font-size: 0.88rem;
    color: var(--c-muted);
}
.offer-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0 2rem;
}

/* IBAN */
.payment-details { padding: 2rem; }
.pd-title { font-size: 1.1rem; margin-bottom: 0.4rem; }
.pd-sub { font-size: 0.88rem; color: var(--c-muted); margin-bottom: 1.2rem; }
.iban-box {
    background: rgba(0,0,0,0.5);
    border-radius: var(--r-md);
    overflow: hidden;
}
.iban-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.iban-row:last-child { border-bottom: none; }
.iban-row-highlight { background: rgba(212,175,55,0.07); }
.iban-lbl { font-size: 0.82rem; color: var(--c-muted); }
.iban-val { font-size: 1rem; letter-spacing: 0.3px; }
.gold-text { color: var(--c-gold); font-size: 1.05rem; }

/* CTA */
.cta-block { padding: 2rem; text-align: center; }
.cta-intro { font-size: 1rem; color: var(--c-muted); margin-bottom: 1.2rem; }
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-wa);
    color: #fff;
    font-family: var(--f-head);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-wa);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    margin-bottom: 0.75rem;
}
.btn-wa:hover { background: var(--c-wa-dark); transform: scale(1.04); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.btn-wa span { font-size: 1.4rem; }
@keyframes waOffer {
    0%,100% { box-shadow: var(--shadow-wa); }
    50%      { box-shadow: 0 12px 50px rgba(37,211,102,0.65); }
}
.pulse-wa { animation: waOffer 2s ease-in-out infinite; }
.cta-note { font-size: 0.82rem; color: var(--c-muted); }

/* Trust */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-item {
    font-size: 0.8rem;
    font-family: var(--f-head);
    font-weight: 600;
    color: var(--c-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-pill);
    padding: 5px 14px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
    background: rgba(0,0,0,0.85);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.site-footer p { font-size: 0.82rem; color: var(--c-muted); margin-bottom: 0.5rem; }
.footer-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin: 0.75rem 0;
}
.footer-links a { color: var(--c-muted); font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--c-text); }
.footer-links span { color: rgba(255,255,255,0.2); }
.footer-disclaimer { color: rgba(255,255,255,0.25) !important; font-size: 0.75rem !important; max-width: 680px; margin: 0 auto 0.5rem; line-height: 1.5; }
.footer-copy { color: rgba(255,255,255,0.2) !important; font-size: 0.75rem !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOK — BEN KİMİM?
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-me-section {
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(212,175,55,0.05) 0%, transparent 70%),
                var(--c-bg-2);
}

.about-me-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 1rem;
}

.about-me-video .video-wrap {
    margin: 0;
}

.about-me-card {
    background: var(--c-surface);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.about-me-card:hover {
    border-color: rgba(212,175,55,0.45);
    box-shadow: var(--shadow-gold);
}

.about-me-avatar {
    margin-bottom: 1.5rem;
}
.av-circle.large {
    width: 80px;
    height: 80px;
    font-size: 1.6rem;
    margin: 0 auto;
}

.about-me-details h3 {
    font-family: var(--f-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 0.4rem;
}
.about-me-role {
    font-size: 0.9rem;
    color: var(--c-gold);
    font-family: var(--f-head);
    font-weight: 600;
    margin-bottom: 1.5rem !important;
}

.about-me-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}
.about-me-highlights li {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--c-muted);
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--r-sm);
    border-left: 3px solid rgba(212,175,55,0.3);
    transition: border-color 0.2s, background 0.2s;
}
.about-me-highlights li:hover {
    border-left-color: var(--c-gold);
    background: rgba(212,175,55,0.06);
    color: var(--c-text);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left  { opacity:0; transform:translateX(-28px); transition: opacity 0.75s ease-out, transform 0.75s ease-out; }
.fade-in-left.visible  { opacity:1; transform:translateX(0); }
.fade-in-right { opacity:0; transform:translateX(28px); transition: opacity 0.75s ease-out, transform 0.75s ease-out; }
.fade-in-right.visible { opacity:1; transform:translateX(0); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 860px) {
    .section { padding: 60px 0; }
    .problem-cards { grid-template-columns: 1fr; }
    .opportunity-stats { flex-direction: column; }
    .ostat-divider { width: 80%; height: 1px; }
    .opp-pills { grid-template-columns: 1fr; }
    .format-steps { grid-template-columns: 1fr; }
    .target-grid { grid-template-columns: 1fr; }
    .reality-grid { grid-template-columns: 1fr; }
    .authority-body { grid-template-columns: 1fr; gap: 2rem; }
    .before-after-gallery { grid-template-columns: 1fr; }
    .about-me-content { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
    .hook-title { font-size: 2.2rem; letter-spacing: -0.5px; }
    .hook-pills { flex-direction: column; align-items: center; }
    .sticky-wa-text { display: none; }
    .sticky-wa { padding: 14px 16px; }
    .offer-box { border-radius: var(--r-lg); }
    .iban-row { flex-direction: column; align-items: flex-start; gap: 2px; }
    .btn-wa { font-size: 1rem; padding: 1rem 1.5rem; }
    .price-val { font-size: 3.5rem; }
}
