﻿
:root {
    --bg: #ffffff;
    --bg2: #faf9ff;
    --card: #ffffff;
    --text: #2b2b2b;
    --muted: #6f6f85;
    --border: #e8e8f0;
    /* Mor & lila kadın tonları */
    --purple: #ab05af;
    --lila: #b9a6ff;
    --lila2: #efeaff;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
    --shadow2: 0 12px 28px rgba(0,0,0,.06);
    --radius: 18px;
    --max: 1100px;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: linear-gradient(180deg, #ab05af(--bg), #ab05af(--bg2));
    color: #ab05af(--text);
    line-height: 1.5;
}

.wrap {
    max-width: var(--max);
    margin: auto;
    padding: 24px
}

h1, h2, h3 {
    letter-spacing: -.3px
}

h1 {
    font-size: 40px;
    margin: 0 0 10px
}

h2 {
    font-size: 24px;
    margin: 0 0 14px
}

p {
    color: #ab05af(--muted);
    margin: 0 0 12px
}

.rozet.halo {
    filter: drop-shadow(0 0 18px rgba(122,92,255,.55)) drop-shadow(0 0 36px rgba(185,166,255,.45));
}

/* Premium halo efekti */
.halo-purple {
    box-shadow: 0 0 0 1px rgba(122,92,255,.18), 0 12px 30px rgba(122,92,255,.22), 0 0 60px rgba(185,166,255,.35);
}

@media (max-width: 480px) {
    .rozet {
        height: 95px;
    }
}
/* Top mini nav */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    color: #ab05af(--text);
}

    .brand .dot {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        background: linear-gradient(135deg, #ab05af(--purple), #ab05af(--lila));
        box-shadow: 0 0 0 4px rgba(122,92,255,.14);
    }

.nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 14px;
}

    .nav a {
        color: #ab05af(--muted);
        text-decoration: none;
    }

        .nav a:hover {
            color: #ab05af(--purple);
            text-decoration: underline
        }

@media(max-width:700px) {
    .nav {
        display: none
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid transparent;
    margin-right: 10px;
    margin-top: 8px;
    transition: transform .06s ease, box-shadow .2s ease, opacity .2s ease;
}

    .btn:active {
        transform: translateY(1px)
    }

.btn-primary {
    background: #ab05af(--purple);
    color: #fff;
    box-shadow: 0 10px 22px rgba(122,92,255,.22);
}

    .btn-primary:hover {
        opacity: .95
    }

.btn-outline {
    border-color: #ab05af(--purple);
    color: #ab05af(--purple);
    background: #fff;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #ab05af(--lila), #ab05af(--lila2));
    border-radius: 24px;
    padding: 34px;
    border: 1px solid rgba(122,92,255,.18);
    box-shadow: #ab05af(--shadow2);
    margin-bottom: 26px;
}

    .hero p {
        max-width: 720px
    }

.pill-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px
}

.pill {
    font-size: 13px;
    color: #4f4f68;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(122,92,255,.12);
    padding: 7px 10px;
    border-radius: 999px;
}

.section {
    margin: 34px 0
}

/* Grid & cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.card {
    background: #ab05af(--card);
    border: 1px solid #ab05af(--border);
    border-radius: #ab05af(--radius);
    padding: 22px;
    box-shadow: #ab05af(--shadow);
    position: relative;
    overflow: hidden;
}

    .card h3 {
        margin: 10px 0 8px
    }

.mini {
    font-size: 13px;
    color: #ab05af(--muted)
}

ul {
    padding-left: 18px;
    margin: 10px 0 0
}

li {
    margin: 8px 0;
    color: #ab05af(--muted)
}

/* Rozet */
.rozet {
    position: relative;
    display: block;
    height: 150px;
    width: auto;
    margin: 0 auto 14px auto;
    object-fit: contain;
}

/* Roadmap steps */
.step {
    background: linear-gradient(180deg, #fff, #fcfbff);
    border: 1px solid rgba(122,92,255,.14);
}

    .step .k {
        display: inline-block;
        font-size: 12px;
        font-weight: 900;
        color: #ab05af(--purple);
        background: rgba(122,92,255,.10);
        border: 1px solid rgba(122,92,255,.14);
        padding: 6px 10px;
        border-radius: 999px;
        margin-bottom: 10px;
    }

.price {
    font-size: 26px;
    font-weight: 900;
    color: #ab05af(--purple);
    margin: 6px 0 2px;
}

/* FAQ accordion */
.faq {
    border: 1px solid #ab05af(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: #ab05af(--shadow2);
    background: #fff;
}

.faq-item {
    border-top: 1px solid #ab05af(--border)
}

    .faq-item:first-child {
        border-top: none
    }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 0;
    cursor: pointer;
    font-weight: 900;
    color: #ab05af(--text);
    text-align: left;
    font-size: 15px;
}

    .faq-q small {
        color: #ab05af(--muted);
        font-weight: 700
    }

.chev {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(122,92,255,.18);
    background: rgba(122,92,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

    .chev i {
        display: block;
        width: 9px;
        height: 9px;
        border-right: 2px solid rgba(122,92,255,.85);
        border-bottom: 2px solid rgba(122,92,255,.85);
        transform: rotate(45deg);
        transition: transform .15s ease;
        margin-top: -2px;
    }

.faq-a {
    display: none;
    padding: 0 16px 16px 16px;
    color: #ab05af(--muted);
    font-size: 14px;
}

.faq-item.open .faq-a {
    display: block
}

.faq-item.open .chev i {
    transform: rotate(225deg);
    margin-top: 2px
}

/* Final CTA */
.footer-cta {
    background: linear-gradient(135deg, #f4f1ff, #ffffff);
    border: 1px solid rgba(122,92,255,.14);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: #ab05af(--shadow2);
}

@media(max-width:700px) {
    .footer-cta {
        flex-direction: column;
        align-items: flex-start
    }

    .btn {
        margin-right: 0
    }
}

/* Sticky CTA (mobil) */
.sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px 14px;
    background: rgba(255,255,255,.86);
    border-top: 1px solid rgba(122,92,255,.14);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    z-index: 999;
}

    .sticky .btn {
        width: min(640px, 100%);
        margin: 0
    }