/* ============================================================
   TakipX — "BLUE AURORA" Premium Tema
   Tek tasarım dili: index.php · blog.php · sss.php · legal.php
   (hizmetler.php aynı token setini kendi içinde kullanır)

   NOT: Renk paleti tamamen CSS değişkenleri üzerinden yönetilir.
        Tek yerden (--brand-500 vb.) değiştirince tüm site döner.
   ============================================================ */

/* ---------- 1) TOKENS ---------- */
:root {
    /* Marka — logo.png'den kalibre edildi (elektrik mavisi / kraliyet mavisi) */
    --brand-50: #EDF5FF;
    --brand-100: #D8E9FF;
    --brand-200: #B6D6FF;
    --brand-300: #7CB8FF;
    --brand-400: #348FFF;
    --brand-500: #0A7CFF;
    /* primary — logonun gövde mavisi */
    --brand-600: #0B57E0;
    --brand-700: #0B3FBF;
    --brand-800: #0A2E93;
    --brand-900: #071E63;

    /* Canlı vurgular — logonun parlak camgöbeği highlight'ı */
    --cyan-300: #8AE7FF;
    --cyan-400: #22D3FF;
    --cyan-500: #00B8F0;
    --electric: #2F6BFF;
    --violet-500: #5B6BFF;
    --pink-500: #FF3D8B;
    --green-400: #34E5A8;
    --green-500: #00CE87;
    --green-600: #00A76D;
    --amber-400: #FFC64D;
    --amber-500: #FFB020;
    --red-500: #FF4D5E;

    /* Yüzeyler — açık tema (mavi çalan nötrler) */
    --bg: #EEF4FF;
    --surface: #FFFFFF;
    --surface-2: #F2F6FF;
    --surface-3: #E4EDFF;
    --border: #DCE7FA;
    --border-strong: #C3D6F5;

    --ink-950: #030B22;
    --ink-900: #06153A;
    --ink-800: #0A2059;
    --ink-700: #0D2E7A;

    --text: #071634;
    --text-muted: #455B84;
    --text-subtle: #7789AC;
    --on-dark: #EAF3FF;
    --on-dark-soft: rgba(234, 243, 255, .74);

    /* Gradyanlar */
    --grad-brand: linear-gradient(135deg, #0A7CFF 0%, #22D3FF 100%);
    --grad-electric: linear-gradient(135deg, #0B3FBF 0%, #0A7CFF 55%, #22D3FF 100%);
    --grad-deep: linear-gradient(160deg, #03102F 0%, #072B7A 55%, #0B3FBF 100%);
    --grad-cta: linear-gradient(135deg, #0B57E0 0%, #0A7CFF 50%, #22D3FF 100%);
    --grad-green: linear-gradient(135deg, #00CE87 0%, #34E5A8 100%);

    /* Gölgeler */
    --sh-sm: 0 1px 2px rgba(8, 18, 43, .06);
    --sh-md: 0 6px 18px rgba(8, 18, 43, .07), 0 2px 6px rgba(8, 18, 43, .04);
    --sh-lg: 0 20px 48px rgba(8, 18, 43, .10), 0 6px 16px rgba(8, 18, 43, .06);
    --sh-xl: 0 36px 90px rgba(8, 18, 43, .16);
    --sh-glow: 0 14px 38px rgba(10, 124, 255, .34), 0 4px 12px rgba(10, 124, 255, .18);
    --sh-glow-cyan: 0 14px 38px rgba(34, 211, 255, .30);

    /* Yarıçap */
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 26px;
    --r-2xl: 34px;
    --r-full: 9999px;

    /* Tipografi */
    --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'Courier New', monospace;

    --container: 1200px;
    --header-h: 68px;
}

[data-theme="dark"] {
    --bg: #030B22;
    --surface: #071A3D;
    --surface-2: #0B2350;
    --surface-3: #103068;
    --border: #17356E;
    --border-strong: #22488C;

    --text: #EAF3FF;
    --text-muted: #A9BCDD;
    --text-subtle: #7789AC;

    --sh-md: 0 6px 18px rgba(0, 0, 0, .38);
    --sh-lg: 0 20px 48px rgba(0, 0, 0, .48);
    --sh-xl: 0 36px 90px rgba(0, 0, 0, .55);
}

/* ---------- 2) RESET / BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    transition: background-color .3s, color .3s;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input,
textarea {
    font-family: inherit;
    font-size: 15px;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.025em;
    margin: 0;
    color: var(--text);
}

p {
    margin: 0 0 14px;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 820px;
}

.text-center {
    text-align: center;
}

.grad-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- 3) BUTONLAR ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: var(--r-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -.01em;
    white-space: nowrap;
    transition: transform .22s cubic-bezier(.34, 1.4, .64, 1), box-shadow .25s, background .22s, color .22s, border-color .22s;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 1.15em;
    line-height: 1;
}

.btn:active {
    transform: translateY(1px) scale(.99);
}

.btn-primary {
    background: var(--grad-cta);
    color: #fff;
    box-shadow: var(--sh-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .32) 50%, transparent 80%);
    transform: translateX(-130%);
    transition: transform .7s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(10, 124, 255, .45);
}

.btn-primary:hover::after {
    transform: translateX(130%);
}

.btn-cyan {
    background: linear-gradient(135deg, #22D3FF, #0A7CFF);
    color: #fff;
    box-shadow: var(--sh-glow-cyan);
}

.btn-cyan:hover {
    transform: translateY(-3px);
}

.btn-green {
    background: var(--grad-green);
    color: #04231A;
    box-shadow: 0 14px 34px rgba(0, 206, 135, .32);
}

.btn-green:hover {
    transform: translateY(-3px);
}

.btn-soft {
    background: var(--surface);
    color: var(--brand-600);
    border: 1.5px solid var(--border);
    box-shadow: var(--sh-sm);
}

.btn-soft:hover {
    border-color: var(--brand-300);
    color: var(--brand-500);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, .10);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .22);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 17px 34px;
    font-size: 16.5px;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 13.5px;
}

.btn-block {
    width: 100%;
}

/* ---------- 4) HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--surface);
    background: color-mix(in srgb, var(--surface) 78%, transparent);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s, background .3s;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(8, 18, 43, .10);
}

.header-row {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: var(--header-h);
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 18px;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border-radius: var(--r-full);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-muted);
    transition: background .2s, color .2s;
}

.main-nav a i {
    font-size: 17px;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--surface-2);
    color: var(--brand-500);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.icon-round {
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    background: var(--surface-2);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid var(--border);
    transition: all .22s;
    flex-shrink: 0;
}

.icon-round:hover {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: #fff;
    transform: translateY(-2px);
}

.burger {
    display: none;
}

/* Mobil çekmece */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 11, 28, .55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 110;
}

.drawer-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw, 340px);
    background: var(--surface);
    z-index: 120;
    padding: 18px;
    transform: translateX(105%);
    transition: transform .34s cubic-bezier(.3, 1, .4, 1);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(5, 11, 28, .3);
}

.drawer.show {
    transform: translateX(0);
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.drawer-head img {
    height: 40px;
    width: auto;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    transition: .2s;
}

.drawer-nav a i {
    font-size: 19px;
    color: var(--brand-500);
}

.drawer-nav a:hover {
    background: var(--surface-2);
}

.drawer-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin: 16px 0 6px 14px;
}

/* ---------- 5) HERO ---------- */
.hero {
    position: relative;
    padding: 54px 0 62px;
    background: var(--grad-deep);
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -30%;
    left: -10%;
    width: 70%;
    height: 130%;
    background: radial-gradient(closest-side, rgba(10, 124, 255, .55), transparent 70%);
    filter: blur(20px);
    animation: aurora 16s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -40%;
    right: -12%;
    width: 66%;
    height: 130%;
    background: radial-gradient(closest-side, rgba(34, 211, 255, .38), transparent 70%);
    filter: blur(24px);
    animation: aurora 20s ease-in-out infinite alternate-reverse;
}

@keyframes aurora {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: .85;
    }

    100% {
        transform: translate3d(6%, 8%, 0) scale(1.18);
        opacity: 1;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 34px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .20);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .4px;
    color: var(--cyan-300);
    text-transform: uppercase;
}

.dot-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-400);
    box-shadow: 0 0 0 0 rgba(52, 229, 168, .8);
    animation: ping 2s infinite;
    flex-shrink: 0;
}

@keyframes ping {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 229, 168, .75);
    }

    70% {
        box-shadow: 0 0 0 11px rgba(52, 229, 168, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 229, 168, 0);
    }
}

.hero h1 {
    font-size: clamp(34px, 5.2vw, 60px);
    font-weight: 800;
    color: #fff;
    margin: 20px 0 6px;
    letter-spacing: -.035em;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, #22D3FF 0%, #7CB8FF 50%, #2F6BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: clamp(17px, 2.1vw, 22px);
    font-weight: 700;
    color: var(--cyan-300);
    font-family: var(--font-display);
    margin: 0 0 14px;
}

.hero-text {
    color: var(--on-dark-soft);
    font-size: 16.5px;
    max-width: 560px;
    margin-bottom: 26px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-left: -12px;
    border: 2.5px solid #06153A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-display);
}

.avatar-stack span:first-child {
    margin-left: 0;
}

.avatar-stack span:nth-child(1) {
    background: linear-gradient(135deg, #0A7CFF, #22D3FF);
}

.avatar-stack span:nth-child(2) {
    background: linear-gradient(135deg, #2F6BFF, #8AE7FF);
}

.avatar-stack span:nth-child(3) {
    background: linear-gradient(135deg, #00CE87, #22D3FF);
}

.avatar-stack span:nth-child(4) {
    background: linear-gradient(135deg, #FFB020, #FF3D8B);
}

.avatar-stack span:nth-child(5) {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .2);
    font-size: 11px;
}

.proof-text {
    font-size: 13.5px;
    color: var(--on-dark-soft);
    line-height: 1.45;
}

.proof-text b {
    color: #fff;
}

.stars {
    color: var(--amber-400);
    display: inline-flex;
    gap: 2px;
    font-size: 14px;
}

/* Hero görsel tarafı */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 340px;
}

.hero-visual img.hero-figure {
    max-height: 440px;
    width: auto;
    position: relative;
    z-index: 2;
}

.hero-visual .halo {
    position: absolute;
    inset: auto 0 0 0;
    height: 88%;
    background: radial-gradient(60% 60% at 50% 60%, rgba(10, 124, 255, .55), transparent 70%);
    border-radius: 50%;
    filter: blur(6px);
    z-index: 1;
}

.float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(4, 12, 34, .35);
    color: #fff;
    animation: bob 5s ease-in-out infinite;
}

.float-card i {
    font-size: 22px;
}

.float-card small {
    display: block;
    font-size: 11px;
    opacity: .75;
    line-height: 1.2;
}

.float-card b {
    font-size: 15px;
    font-family: var(--font-display);
}

.float-card.fc-1 {
    top: 8%;
    left: -4%;
}

.float-card.fc-2 {
    top: 44%;
    right: -6%;
    animation-delay: 1.4s;
}

.float-card.fc-3 {
    bottom: 8%;
    left: 2%;
    animation-delay: 2.6s;
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-11px);
    }
}

/* ---------- 6) GÜVEN ŞERİDİ / MARQUEE ---------- */
.trust-strip {
    background: var(--ink-950);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 13px 0;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    gap: 44px;
    width: max-content;
    animation: slide 32s linear infinite;
}

.marquee>span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(234, 241, 255, .82);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.marquee>span i {
    color: var(--cyan-400);
    font-size: 18px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------- 7) BÖLÜM BAŞLIKLARI ---------- */
.section {
    padding: 66px 0;
    position: relative;
}

.section-tight {
    padding: 40px 0;
}

.sec-head {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: var(--r-full);
    background: var(--brand-50);
    color: var(--brand-600);
    border: 1px solid var(--brand-100);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

[data-theme="dark"] .sec-tag {
    background: rgba(10, 124, 255, .14);
    border-color: rgba(10, 124, 255, .3);
    color: var(--brand-300);
}

.sec-head h2 {
    font-size: clamp(27px, 3.6vw, 42px);
    font-weight: 800;
}

.sec-head h2 em {
    font-style: normal;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sec-head p {
    color: var(--text-muted);
    font-size: 16.5px;
    margin: 12px 0 0;
}

/* ---------- 8) KARTLAR ---------- */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-md);
    transition: transform .3s cubic-bezier(.34, 1.3, .64, 1), box-shadow .3s, border-color .3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--brand-200);
}

.grid {
    display: grid;
    gap: 18px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Platform kutuları */
.platform-tile {
    --p: var(--brand-500);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 14px 20px;
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--sh-md);
    overflow: hidden;
    transition: transform .3s cubic-bezier(.34, 1.4, .64, 1), box-shadow .3s, border-color .3s;
}

.platform-tile::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--p);
    opacity: .9;
}

.platform-tile::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--p);
    opacity: .10;
    transition: transform .4s;
}

.platform-tile:hover {
    transform: translateY(-8px);
    border-color: var(--p);
    box-shadow: 0 22px 46px rgba(8, 18, 43, .14);
}

.platform-tile:hover::after {
    transform: scale(1.9);
}

.platform-tile .p-ico {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    background: var(--p);
    box-shadow: 0 12px 26px -8px var(--p);
    position: relative;
    z-index: 1;
}

.platform-tile .p-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15.5px;
    position: relative;
    z-index: 1;
}

.platform-tile .p-sub {
    font-size: 12px;
    color: var(--text-subtle);
    position: relative;
    z-index: 1;
    margin-top: -6px;
}

/* Fayda kartı */
.benefit {
    padding: 26px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-md);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.benefit::after {
    content: '';
    position: absolute;
    inset: auto -30% -60% auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(closest-side, rgba(10, 124, 255, .13), transparent);
    transition: opacity .3s;
    opacity: 0;
}

.benefit:hover {
    transform: translateY(-6px);
    border-color: var(--brand-200);
    box-shadow: var(--sh-lg);
}

.benefit:hover::after {
    opacity: 1;
}

.benefit .b-ico {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: var(--grad-cta);
    box-shadow: var(--sh-glow);
    margin-bottom: 16px;
}

.benefit h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin: 0;
}

/* Adım kartı */
.step {
    position: relative;
    padding: 26px 22px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-md);
}

.step .s-num {
    position: absolute;
    top: -18px;
    left: 22px;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--grad-cta);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    box-shadow: var(--sh-glow);
}

.step h3 {
    font-size: 17px;
    margin: 18px 0 8px;
}

.step p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin: 0;
}

/* ---------- 9) ÖNE ÇIKAN PAKET KARTLARI ---------- */
.pack {
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1.5px solid var(--border);
    box-shadow: var(--sh-md);
    position: relative;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.34, 1.3, .64, 1), box-shadow .3s, border-color .3s;
}

.pack:hover {
    transform: translateY(-7px);
    border-color: var(--brand-400);
    box-shadow: 0 26px 56px rgba(10, 124, 255, .18);
}

.pack.hot {
    border-color: var(--brand-500);
    background: linear-gradient(180deg, rgba(10, 124, 255, .06), transparent 40%), var(--surface);
}

.pack-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 11px;
    border-radius: var(--r-full);
    background: var(--grad-green);
    color: #04231A;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
}

.pack-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pack-ico {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: #fff;
    flex-shrink: 0;
}

.pack-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.25;
}

.pack-sub {
    font-size: 12px;
    color: var(--text-subtle);
}

.pack-amount {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
}

.pack-amount span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-subtle);
    letter-spacing: 0;
}

.pack-list {
    margin: 16px 0;
    display: grid;
    gap: 9px;
}

.pack-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.8px;
    color: var(--text-muted);
}

.pack-list li i {
    color: var(--green-500);
    font-size: 17px;
}

.pack-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--border-strong);
}

.pack-price b {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-500);
    letter-spacing: -.03em;
}

.pack-price s {
    color: var(--text-subtle);
    font-size: 14px;
}

/* ---------- 10) İSTATİSTİK BANDI ---------- */
.stats-band {
    background: var(--grad-deep);
    border-radius: var(--r-2xl);
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-xl);
}

.stats-band::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(closest-side, rgba(34, 211, 255, .28), transparent 70%);
}

.stats-band::after {
    content: '';
    position: absolute;
    bottom: -60%;
    right: -8%;
    width: 55%;
    height: 200%;
    background: radial-gradient(closest-side, rgba(47, 107, 255, .30), transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-item .st-ico {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--cyan-300);
    flex-shrink: 0;
}

.stat-item b {
    display: block;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
}

.stat-item small {
    font-size: 13px;
    color: var(--on-dark-soft);
}

/* ---------- 11) YORUMLAR ---------- */
.review {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-md);
    transition: transform .3s, box-shadow .3s;
    position: relative;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-family: var(--font-display);
    font-size: 15px;
    flex-shrink: 0;
}

.review-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
}

.review-role {
    font-size: 12.5px;
    color: var(--text-subtle);
}

.review p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14.6px;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--green-600);
}

/* ---------- 12) KUPON / CTA BANDI ---------- */
.coupon-band {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-2xl);
    background: linear-gradient(120deg, #071E63 0%, #0A7CFF 55%, #22D3FF 130%);
    color: #fff;
    padding: 34px 32px;
    box-shadow: 0 30px 70px rgba(10, 124, 255, .32);
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.coupon-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .18), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(0, 0, 0, .16), transparent 45%);
    pointer-events: none;
}

.coupon-band>* {
    position: relative;
    z-index: 1;
}

.coupon-copy {
    flex: 1 1 320px;
}

.coupon-band .badge-off {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .3);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .6px;
    margin-bottom: 12px;
}

.coupon-band h2 {
    color: #fff;
    font-size: clamp(24px, 3.4vw, 36px);
    font-weight: 800;
    margin-bottom: 8px;
}

.coupon-band p {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 18px;
    font-size: 15.5px;
}

.coupon-code {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .14);
    border: 1.5px dashed rgba(255, 255, 255, .45);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.coupon-code small {
    display: block;
    font-size: 10.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .8;
}

.coupon-code b {
    font-family: var(--font-mono);
    font-size: 19px;
    letter-spacing: 1.5px;
}

.copy-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    transition: .2s;
}

.copy-btn:hover {
    background: #fff;
    color: var(--brand-600);
}

.copy-btn.copied {
    background: var(--green-500);
    color: #04231A;
}

/* ---------- 13) BÜYÜK CTA ---------- */
.big-cta {
    text-align: center;
    padding: 52px 30px;
    border-radius: var(--r-2xl);
    background: var(--grad-deep);
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-xl);
}

.big-cta::before {
    content: '';
    position: absolute;
    inset: -50% 20% auto;
    height: 200%;
    background: radial-gradient(closest-side, rgba(10, 124, 255, .45), transparent 70%);
}

.big-cta>* {
    position: relative;
    z-index: 1;
}

.big-cta h2 {
    color: #fff;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 12px;
}

.big-cta h2 em {
    font-style: normal;
    background: linear-gradient(120deg, #22D3FF, #7CB8FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.big-cta p {
    color: var(--on-dark-soft);
    max-width: 620px;
    margin: 0 auto 26px;
    font-size: 16.5px;
}

.big-cta .hero-cta {
    justify-content: center;
}

/* ---------- 14) SSS AKORDEON ---------- */
.faq-list {
    display: grid;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.faq {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.faq.open {
    border-color: var(--brand-300);
    box-shadow: var(--sh-md);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15.5px;
}

.faq-q i {
    margin-left: auto;
    color: var(--brand-500);
    font-size: 20px;
    transition: transform .3s;
    flex-shrink: 0;
}

.faq.open .faq-q i {
    transform: rotate(180deg);
}

.faq-q .q-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: var(--brand-50);
    color: var(--brand-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    margin-left: 0;
}

[data-theme="dark"] .faq-q .q-mark {
    background: rgba(10, 124, 255, .16);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 14.8px;
}

.faq.open .faq-a {
    max-height: 480px;
    padding: 0 20px 20px;
}

/* ---------- 15) BLOG ---------- */
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-md);
    transition: transform .3s cubic-bezier(.34, 1.3, .64, 1), box-shadow .3s, border-color .3s;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--sh-lg);
    border-color: var(--brand-200);
}

.blog-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.06);
}

.blog-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
}

.blog-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.blog-date {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-500);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-body h3 {
    font-size: 16.5px;
    line-height: 1.35;
}

.blog-more {
    margin-top: auto;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--brand-500);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card:hover .blog-more i {
    transform: translateX(4px);
}

.blog-more i {
    transition: transform .25s;
}

/* Yazı detayı */
.post-head {
    padding: 46px 0 8px;
}

.post-head h1 {
    font-size: clamp(27px, 4.2vw, 44px);
    margin: 14px 0;
}

.post-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-subtle);
    font-weight: 600;
}

.post-cover img,
.post-cover-ph {
    width: 100%;
    border-radius: var(--r-2xl);
    margin: 24px 0;
    box-shadow: var(--sh-lg);
}

.post-cover-ph {
    aspect-ratio: 21/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 62px;
}

.post-body {
    font-size: 17.2px;
    line-height: 1.9;
    max-width: 780px;
    color: var(--text-muted);
}

.post-lead {
    font-size: 19px;
    line-height: 1.7;
    padding: 20px 24px;
    margin-bottom: 28px;
    border-left: 4px solid var(--brand-500);
    background: var(--brand-50);
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
    color: var(--text);
    font-weight: 500;
}

[data-theme="dark"] .post-lead {
    background: rgba(10, 124, 255, .12);
}

/* ---------- 16) FOOTER ---------- */
.site-footer {
    margin-top: 60px;
    background: var(--grad-deep);
    color: var(--on-dark);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--brand-500);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -5%;
    width: 50%;
    height: 200%;
    background: radial-gradient(closest-side, rgba(10, 124, 255, .30), transparent 70%);
}

.footer-in {
    position: relative;
    z-index: 1;
    padding: 46px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-brand img {
    height: 54px;
    width: auto;
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--on-dark-soft);
    font-size: 14.4px;
    max-width: 330px;
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 16px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--on-dark);
    transition: .22s;
}

.footer-social a:hover {
    background: var(--brand-500);
    border-color: var(--brand-500);
    transform: translateY(-3px);
    box-shadow: var(--sh-glow);
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: var(--on-dark-soft);
    font-size: 14.2px;
    padding: 5px 0;
    transition: color .2s, transform .2s;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-pay {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-pay span {
    background: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    height: 34px;
}

.footer-pay img {
    height: 17px;
    width: auto;
}

.footer-bottom {
    margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: var(--on-dark-soft);
}

/* ---------- 17) MOBİL YAPIŞKAN CTA ---------- */
.mobile-cta {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    padding: 12px 14px;
    border-radius: var(--r-xl);
    background: var(--surface);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: 0 -6px 30px rgba(8, 18, 43, .18);
    align-items: center;
    gap: 12px;
}

.mobile-cta .mc-text {
    flex: 1;
    min-width: 0;
    line-height: 1.25;
}

.mobile-cta .mc-text small {
    display: block;
    font-size: 11px;
    color: var(--text-subtle);
}

.mobile-cta .mc-text b {
    font-family: var(--font-display);
    font-size: 14.5px;
}

/* ---------- 18) YARDIMCILAR ---------- */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: var(--r-full);
    background: var(--surface-2);
    border: 1px solid var(--border);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
    transition: .2s;
}

.chip:hover {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: #fff;
}

.chip i {
    font-size: 16px;
}

.tick-list {
    display: grid;
    gap: 11px;
    margin: 0;
}

.tick-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: 15.4px;
    color: var(--text-muted);
}

.tick-list li i {
    color: var(--green-500);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.tick-list li b {
    color: var(--text);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.glass-panel {
    padding: 28px;
    border-radius: var(--r-2xl);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--sh-lg);
}

.mini-note {
    font-size: 12.8px;
    color: var(--text-subtle);
}

/* Sayaç */
.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 11px 18px;
    border-radius: var(--r-full);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--sh-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.live-pill b {
    color: var(--brand-500);
    font-family: var(--font-display);
    font-size: 16px;
}

/* ---------- 19) RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero-visual {
        min-height: 0;
        order: -1;
    }

    .hero-visual img.hero-figure {
        max-height: 300px;
    }

    .float-card.fc-1 {
        left: 0;
        top: 2%;
    }

    .float-card.fc-2 {
        right: 0;
    }

    .float-card.fc-3 {
        display: none;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .section {
        padding: 46px 0;
    }

    .hero {
        padding: 34px 0 44px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .coupon-band {
        padding: 26px 20px;
    }

    .big-cta {
        padding: 38px 20px;
    }

    .mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 84px;
    }

    .btn {
        padding: 13px 20px;
    }

    .brand img {
        height: 40px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
