/**
 * SMS Platform - Public Landing Page CSS
 * Claude Dark Theme - Modern & Mobil Uyumlu
 */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&family=Geist+Mono:wght@400;500&display=swap');

:root {
    --bg:           #080810;
    --bg2:          #0e0e18;
    --bg3:          #14141f;
    --border:       rgba(255,255,255,0.07);
    --border2:      rgba(255,255,255,0.12);
    --text:         #e0e0f0;
    --text2:        #7878a0;
    --accent:       #7c5cfc;
    --accent2:      #9b7ffe;
    --accent-glow:  rgba(124,92,252,0.3);
    --green:        #22d3a0;
    --red:          #ff4f6d;
    --yellow:       #fbbf24;
    --white:        #ffffff;
    --font-h:       'Geist', -apple-system, sans-serif;
    --font-b:       'Geist', -apple-system, sans-serif;
    --radius:       12px;
    --radius2:      20px;
    --transition:   all 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); color: var(--text); background: var(--bg); line-height: 1.7; }
a { color: var(--accent2); text-decoration: none; transition: var(--transition); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
.pub-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100; padding: 18px 0;
    transition: var(--transition);
}

.pub-nav.scrolled {
    background: rgba(8,8,16,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border2);
    padding: 12px 0;
}

.pub-nav .container { display: flex; align-items: center; justify-content: space-between; }

.pub-logo {
    font-family: var(--font-h); font-weight: 900; font-size: 20px;
    color: var(--text); display: flex; align-items: center; gap: 10px;
    letter-spacing: -0.5px;
}
.pub-logo .logo-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: #fff;
    box-shadow: 0 0 18px var(--accent-glow);
}

.pub-nav-links { display: flex; align-items: center; gap: 28px; }
.pub-nav-links a { color: var(--text2); font-size: 14px; font-weight: 500; transition: var(--transition); }
.pub-nav-links a:hover { color: var(--text); }

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    box-shadow: 0 0 16px var(--accent-glow);
}
.nav-cta:hover { box-shadow: 0 0 28px var(--accent-glow); transform: translateY(-1px); }

.pub-menu-btn {
    display: none; background: var(--bg3);
    border: 1px solid var(--border2);
    color: var(--text); font-size: 18px;
    cursor: pointer; padding: 8px 10px;
    border-radius: 8px;
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background: var(--bg);
}
/* Mesh gradient */
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(124,92,252,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 30%, rgba(34,211,160,0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 60% 80%, rgba(56,189,248,0.05) 0%, transparent 50%);
}
/* Grid */
.hero-bg::after {
    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: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
    padding: 130px 0 90px;
    width: 100%;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(124,92,252,0.1);
    border: 1px solid rgba(124,92,252,0.25);
    color: var(--accent2);
    padding: 7px 18px; border-radius: 30px;
    font-size: 13px; font-weight: 600;
    margin-bottom: 24px; letter-spacing: 0.2px;
}
.hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
    font-family: var(--font-h); font-size: 54px; font-weight: 900;
    color: var(--white); line-height: 1.08;
    letter-spacing: -2px; margin-bottom: 20px;
}
.hero h1 .grad {
    background: linear-gradient(135deg, var(--accent2), var(--green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub { font-size: 17px; color: var(--text2); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }

.hero-actions { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }

.btn-hero {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff; padding: 14px 30px;
    border-radius: 10px; font-weight: 700; font-size: 15px;
    transition: var(--transition); border: none; cursor: pointer;
    box-shadow: 0 0 24px var(--accent-glow);
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 8px 40px var(--accent-glow); color: #fff; }

.btn-hero-outline {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--text);
    padding: 14px 30px; border-radius: 10px;
    font-weight: 600; font-size: 15px;
    border: 1px solid var(--border2);
    transition: var(--transition);
}
.btn-hero-outline:hover { border-color: var(--accent); color: var(--accent2); background: var(--accent-glow); }

.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust span {
    display: flex; align-items: center; gap: 8px;
    color: var(--text2); font-size: 13px; font-weight: 500;
}
.hero-trust i { color: var(--green); font-size: 13px; }

/* Hero Visual Card */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }

.hero-card {
    background: rgba(14,14,24,0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border2);
    border-radius: 18px; padding: 24px;
    box-shadow: 0 0 60px rgba(124,92,252,0.1);
}

.hero-card-header {
    color: var(--text2); font-size: 13px; font-weight: 600;
    margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.hero-card-header i { color: var(--green); }

.hc-num {
    font-family: 'Geist', monospace; font-size: 48px; font-weight: 900;
    color: var(--white); letter-spacing: -2px; display: block; line-height: 1;
}
.hc-label { color: var(--text2); font-size: 13px; display: block; margin: 4px 0 18px; }

.hero-card-bar { height: 5px; background: var(--border); border-radius: 3px; margin-bottom: 14px; overflow: hidden; }
.hero-card-bar-fill {
    height: 100%; width: 92%;
    background: linear-gradient(90deg, var(--accent), var(--green));
    border-radius: 3px; animation: barGrow 2s ease-out;
}
@keyframes barGrow { from { width: 0; } }
.hero-card-row { color: var(--text2); font-size: 13px; }
.hero-card-row i { color: var(--green); margin-right: 6px; }

/* Mini cards */
.hero-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-mini {
    background: rgba(14,14,24,0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border2);
    border-radius: 14px; padding: 16px;
    text-align: center;
}
.hero-mini i { font-size: 22px; margin-bottom: 8px; display: block; }
.hero-mini strong { display: block; font-size: 20px; font-weight: 800; color: var(--white); }
.hero-mini span { font-size: 11.5px; color: var(--text2); }

/* ════════════════════════════
   STATS BAND
════════════════════════════ */
.stats-band {
    padding: 60px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pub-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.pub-stat-num {
    font-family: var(--font-h); font-size: 38px; font-weight: 900;
    background: linear-gradient(135deg, var(--accent2), var(--green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: -1px;
}
.pub-stat-label { font-size: 13.5px; color: var(--text2); margin-top: 4px; font-weight: 500; }

/* ════════════════════════════
   SECTIONS COMMON
════════════════════════════ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-tag {
    display: inline-block;
    background: var(--accent-glow);
    border: 1px solid rgba(124,92,252,0.25);
    color: var(--accent2); padding: 5px 16px;
    border-radius: 20px; font-size: 12px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 14px;
}
.section-header h2 {
    font-family: var(--font-h); font-size: 38px; font-weight: 900;
    letter-spacing: -1px; margin-bottom: 10px; color: var(--white);
}
.section-header p { color: var(--text2); font-size: 16px; max-width: 520px; margin: 0 auto; }

/* ════════════════════════════
   SERVICES
════════════════════════════ */
.services-section { padding: 90px 0; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.service-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius2);
    padding: 30px 24px;
    transition: var(--transition);
    color: var(--text);
    display: block;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--green));
    opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border2); box-shadow: 0 16px 48px rgba(0,0,0,0.4); color: var(--text); }
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px; height: 52px;
    background: rgba(124,92,252,0.1);
    border: 1px solid rgba(124,92,252,0.2);
    color: var(--accent2);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 18px;
}
.service-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.service-card p  { font-size: 13.5px; color: var(--text2); line-height: 1.65; }

/* ════════════════════════════
   WHY US
════════════════════════════ */
.why-section { padding: 90px 0; background: var(--bg2); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.why-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius2); padding: 28px 24px;
    transition: var(--transition);
}
.why-card:hover { border-color: var(--border2); transform: translateY(-3px); }

.why-icon {
    width: 54px; height: 54px; margin: 0 0 16px;
    background: rgba(124,92,252,0.1);
    border: 1px solid rgba(124,92,252,0.2);
    color: var(--accent2); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.why-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.why-card p  { font-size: 13.5px; color: var(--text2); line-height: 1.65; }

/* ════════════════════════════
   PRICING
════════════════════════════ */
.pricing-section { padding: 90px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-bottom: 28px; }

.pricing-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius2); padding: 28px 18px;
    text-align: center; position: relative;
    transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-5px); border-color: var(--border2); }

.pricing-popular {
    border-color: var(--accent) !important;
    box-shadow: 0 0 40px var(--accent-glow);
    background: linear-gradient(180deg, rgba(124,92,252,0.06) 0%, var(--bg2) 100%);
}

.pricing-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff; padding: 4px 18px;
    border-radius: 20px; font-size: 10.5px; font-weight: 700;
    white-space: nowrap; box-shadow: 0 0 16px var(--accent-glow);
}

.pricing-amount { font-size: 16px; font-weight: 800; margin-bottom: 14px; color: var(--text); }
.pricing-price { margin-bottom: 20px; }
.price-value { font-size: 34px; font-weight: 900; letter-spacing: -1px; color: var(--white); }
.price-currency { font-size: 16px; font-weight: 600; color: var(--text2); }
.pricing-per { font-size: 11.5px; color: var(--text2); margin-bottom: 18px; }

.btn-pricing {
    display: block; padding: 10px 16px;
    background: var(--bg3); border: 1px solid var(--border2);
    color: var(--text); border-radius: 8px; font-weight: 600; font-size: 13.5px;
    transition: var(--transition); text-align: center;
}
.btn-pricing:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.pricing-popular .btn-pricing { background: linear-gradient(135deg, var(--accent), var(--accent2)); border-color: transparent; color: #fff; }

.pricing-note { text-align: center; color: var(--text2); font-size: 13px; }
.pricing-note i { color: var(--green); margin-right: 6px; }

/* ════════════════════════════
   HAKKIMIZDA
════════════════════════════ */
.about-section { padding: 90px 0; background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-size: 38px; font-weight: 900; letter-spacing: -1px; margin-bottom: 18px; color: var(--white); }
.about-text p  { color: var(--text2); line-height: 1.8; margin-bottom: 28px; font-size: 15px; }

.about-feats { display: flex; flex-direction: column; gap: 12px; }
.about-feat {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; font-weight: 500; color: var(--text);
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 16px;
    transition: var(--transition);
}
.about-feat:hover { border-color: rgba(124,92,252,0.25); }
.about-feat i { color: var(--green); font-size: 15px; flex-shrink: 0; }

/* ════════════════════════════
   CTA BANNER
════════════════════════════ */
.cta-section {
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(124,92,252,0.12) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: 40px; font-weight: 900; letter-spacing: -1px; color: var(--white); margin-bottom: 14px; }
.cta-section p  { color: var(--text2); font-size: 16px; margin-bottom: 36px; }
.cta-actions    { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ════════════════════════════
   İLETİŞİM
════════════════════════════ */
.contact-section { padding: 90px 0; background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.contact-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius2); padding: 36px 24px;
    text-align: center; color: var(--text);
    display: block; transition: var(--transition);
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--border2); color: var(--text); }
.contact-card.tg:hover  { border-color: rgba(41,168,222,0.4); box-shadow: 0 0 30px rgba(41,168,222,0.12); }
.contact-card.wa:hover  { border-color: rgba(37,211,102,0.4); box-shadow: 0 0 30px rgba(37,211,102,0.12); }
.contact-card.mail:hover{ border-color: rgba(124,92,252,0.4); box-shadow: 0 0 30px rgba(124,92,252,0.12); }

.contact-card i   { font-size: 40px; margin-bottom: 14px; display: block; }
.contact-card.tg i  { color: #29a8de; }
.contact-card.wa i  { color: #25d366; }
.contact-card.mail i{ color: var(--accent2); }
.contact-card h4   { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.contact-card span { font-size: 13.5px; color: var(--text2); }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.pub-footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-brand h3 {
    font-size: 20px; font-weight: 900; letter-spacing: -0.5px;
    margin-bottom: 12px; color: var(--white);
    display: flex; align-items: center; gap: 10px;
}
.footer-brand h3 .logo-icon {
    width: 30px; height: 30px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #fff;
}
.footer-brand p { color: var(--text2); font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
    width: 36px; height: 36px;
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 15px; transition: var(--transition);
}
.footer-social.tg { color: #29a8de; }
.footer-social.wa { color: #25d366; }
.footer-social:hover { border-color: var(--border2); transform: translateY(-2px); }

.footer-links h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text2); margin-bottom: 16px; }
.footer-links a {
    display: block; color: var(--text2); font-size: 13.5px;
    margin-bottom: 10px; transition: var(--transition);
}
.footer-links a:hover { color: var(--text); padding-left: 4px; }
.footer-links a i { margin-right: 6px; font-size: 12px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px; display: flex;
    align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text2); font-size: 13px; }

/* ════════════════════════════
   TELEGRAM FLOAT (sabit)
════════════════════════════ */
.tg-float-wrapper {
    position: fixed; bottom: 28px; right: 28px;
    z-index: 200;
    display: flex; align-items: center; gap: 12px;
    flex-direction: row-reverse;
}

.tg-float {
    width: 58px; height: 58px;
    background: linear-gradient(135deg, #1a7bbf, #29a8de);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(41,168,222,0.45);
    transition: var(--transition);
    animation: tgBounce 3s ease-in-out infinite;
    cursor: pointer;
    flex-shrink: 0;
}
.tg-float:hover { transform: scale(1.12); box-shadow: 0 6px 32px rgba(41,168,222,0.65); color: #fff; }

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

.tg-float-bubble {
    background: var(--bg2);
    border: 1px solid var(--border2);
    color: var(--text); font-size: 13px; font-weight: 600;
    padding: 10px 16px; border-radius: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    display: flex; align-items: center; gap: 8px;
    animation: bubblePop 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
    transform-origin: right center;
}
.tg-float-bubble i { color: #29a8de; font-size: 14px; }
.tg-float-bubble::after {
    content: '';
    position: absolute; right: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--border2);
}
@keyframes bubblePop {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 50px; padding: 120px 0 60px; }
    .hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .hero h1 { font-size: 42px; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid  { grid-template-columns: repeat(3,1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
    .about-grid    { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .pub-nav-links { 
        display: none; flex-direction: column; 
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(8,8,16,0.97); backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border2);
        padding: 16px 24px;
        gap: 4px;
    }
    .pub-nav-links.open { display: flex; }
    .pub-nav-links a { padding: 10px 0; border-bottom: 1px solid var(--border); width: 100%; }
    .pub-nav-links a:last-child { border-bottom: none; }
    .pub-menu-btn { display: block; }
    .pub-nav { position: relative; }
    
    .hero h1 { font-size: 34px; letter-spacing: -1px; }
    .hero-sub { font-size: 15px; }
    .hero-visual { grid-template-columns: 1fr; }
    .hero-mini-cards { display: grid; grid-template-columns: 1fr 1fr; }

    .pub-stats-grid    { grid-template-columns: repeat(2,1fr); }
    .services-grid     { grid-template-columns: 1fr; }
    .why-grid          { grid-template-columns: 1fr; }
    .pricing-grid      { grid-template-columns: repeat(2,1fr); }
    .contact-grid      { grid-template-columns: 1fr; }
    .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
    .section-header h2 { font-size: 28px; }
    .cta-section h2    { font-size: 28px; }
    .about-text h2     { font-size: 28px; }
    
    .tg-float-bubble { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pub-stats-grid { grid-template-columns: 1fr 1fr; }
    .btn-hero, .btn-hero-outline { width: 100%; justify-content: center; }
    .hero-actions { flex-direction: column; }
}

/* ════════════════════════════
   PAGE HERO (İç Sayfalar)
════════════════════════════ */
.page-hero {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 120px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(124,92,252,0.08) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 13px; color: var(--text2);
    margin-bottom: 24px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text2); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent2); }
.breadcrumb i { font-size: 10px; opacity: 0.5; }

.page-hero-icon {
    width: 64px; height: 64px;
    background: rgba(124,92,252,0.12);
    border: 1px solid rgba(124,92,252,0.25);
    color: var(--accent2);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.page-hero h1 {
    font-family: var(--font-h); font-size: 38px; font-weight: 900;
    letter-spacing: -1px; color: var(--white); margin-bottom: 14px;
}
.page-hero-sub {
    font-size: 16px; color: var(--text2);
    max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ════════════════════════════
   PAGE LAYOUT
════════════════════════════ */
.page-content-section { padding: 60px 0 80px; }

.page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

/* ════════════════════════════
   PAGE BODY (makale içerik)
════════════════════════════ */
.page-main { min-width: 0; }

.page-body {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius2);
    padding: 36px 40px;
    margin-bottom: 24px;
    line-height: 1.85;
    color: var(--text);
}

.page-body h2 {
    font-family: var(--font-h); font-size: 26px; font-weight: 800;
    letter-spacing: -0.5px; color: var(--white);
    margin: 0 0 18px;
}
.page-body h3 {
    font-size: 18px; font-weight: 700; color: var(--text);
    margin: 28px 0 12px;
}
.page-body p  { margin-bottom: 14px; color: var(--text2); font-size: 14.5px; }
.page-body ul { margin: 0 0 14px 0; padding: 0; list-style: none; }
.page-body ul li {
    padding: 7px 0 7px 22px;
    position: relative;
    color: var(--text2); font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.page-body ul li:last-child { border-bottom: none; }
.page-body ul li::before {
    content: '→';
    position: absolute; left: 0;
    color: var(--accent2); font-weight: 700;
}
.page-body strong { color: var(--text); font-weight: 600; }
.page-body em { color: var(--accent2); font-style: italic; }

/* ════════════════════════════
   PAGE CTA KUTUSU
════════════════════════════ */
.page-cta {
    background: linear-gradient(135deg, rgba(124,92,252,0.08) 0%, rgba(34,211,160,0.05) 100%);
    border: 1px solid rgba(124,92,252,0.2);
    border-radius: var(--radius2); padding: 28px 32px;
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.page-cta-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: rgba(41,168,222,0.15);
    border: 1px solid rgba(41,168,222,0.3);
    color: #29a8de; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}
.page-cta h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.page-cta p  { font-size: 13px; color: var(--text2); }
.page-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-left: auto; }

/* ════════════════════════════
   PAGE SIDEBAR
════════════════════════════ */
.page-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 80px; }

.sidebar-widget {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius2); padding: 20px;
}
.sidebar-widget h4 {
    font-size: 13px; font-weight: 700; color: var(--text2);
    text-transform: uppercase; letter-spacing: 0.8px;
    margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.sidebar-widget h4 i { color: var(--accent2); font-size: 12px; }

.sidebar-link {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px; border-radius: 8px;
    font-size: 13px; color: var(--text2);
    transition: var(--transition); margin-bottom: 2px;
}
.sidebar-link:hover { background: var(--bg3); color: var(--text); }
.sidebar-link i { color: var(--accent2); font-size: 12px; width: 14px; text-align: center; flex-shrink: 0; }

/* Telegram sidebar kutusu */
.sidebar-tg {
    background: linear-gradient(135deg, rgba(26,123,191,0.12), rgba(41,168,222,0.08));
    border-color: rgba(41,168,222,0.25) !important;
    text-align: center;
}
.sidebar-tg-icon {
    width: 52px; height: 52px; margin: 0 auto 12px;
    background: rgba(41,168,222,0.15);
    border: 1px solid rgba(41,168,222,0.3);
    color: #29a8de; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}
.sidebar-tg h4 {
    text-align: center; color: var(--white) !important;
    font-size: 14px !important; letter-spacing: 0 !important;
    text-transform: none !important; margin-bottom: 8px !important;
}
.sidebar-tg p { font-size: 12.5px; color: var(--text2); margin-bottom: 14px; }

.btn-tg {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(135deg, #1a7bbf, #29a8de);
    color: #fff; padding: 10px 20px; border-radius: 8px;
    font-weight: 700; font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 0 16px rgba(41,168,222,0.3);
}
.btn-tg:hover { transform: translateY(-2px); box-shadow: 0 4px 24px rgba(41,168,222,0.5); color: #fff; }

.sidebar-login p { font-size: 12.5px; color: var(--text2); }

/* ════════════════════════════
   RESPONSIVE PAGE
════════════════════════════ */
@media (max-width: 900px) {
    .page-layout { grid-template-columns: 1fr; }
    .page-sidebar { position: static; }
    .page-body { padding: 24px; }
    .page-hero h1 { font-size: 28px; }
    .page-cta { flex-direction: column; }
    .page-cta-actions { margin-left: 0; }
}
@media (max-width: 480px) {
    .page-hero { padding: 100px 0 40px; }
    .page-hero h1 { font-size: 24px; }
}
