﻿:root {
    --bg1: #f6f9ff;
    --bg2: #eef5ff;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e6eefc;
    --primary: #2f78ff;
    --primary2: #1b5cff;
    --shadow: 0 16px 50px rgba(15, 23, 42, .10);
    --shadow2: 0 10px 26px rgba(15, 23, 42, .08);
    --radius: 18px;
}

.tick-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f6cf6;
    background: #eaf1ff;
    border-radius: 50%;
}

    .tick-icon svg {
        width: 14px;
        height: 14px;
    }

/* Çarpı icon */
.cross-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e53935;
    background: #fdecec;
    border-radius: 50%;
}

    .cross-icon svg {
        width: 14px;
        height: 14px;
    }

body {
    margin: 0;

    color: var(--text);
    background: radial-gradient(1200px 500px at 75% 15%, rgba(47,120,255,.10), transparent 55%), linear-gradient(180deg, var(--bg1), var(--bg2));
}

a {
    color: inherit;
    text-decoration: none
}



/* Topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(246,249,255,.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(230,238,252,.8);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .3px;
}

.logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff4d6d, #2f78ff);
    box-shadow: 0 10px 22px rgba(47,120,255,.18);
}



.cta {
    display: flex;
    gap: 10px;
    align-items: center;
}



.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    color: #fff;
    box-shadow: 0 14px 28px rgba(47,120,255,.22);
}

    .btn-primary:hover {
        transform: translateY(-1px)
    }

.btn-ghost {
    background: #fff;
    color: #1e3a8a;
    border: 1px solid var(--line);
    box-shadow: var(--shadow2);
}

    .btn-ghost:hover {
        transform: translateY(-1px)
    }

/* Hero */
.hero {
    padding: 44px 0 26px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.9fr .1fr;
    gap: 22px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(47,120,255,.10);
    color: #1e40af;
    font-weight: 800;
    font-size: 13px;
}


.lead {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;

}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
    flex-wrap: wrap
}

.hero-card {
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(230,238,252,.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    padding: 18px;
}

    .hero-card h3 {
        margin: 0 0 8px;
        font-size: 16px
    }

    .hero-card ul {
        margin: 0;
        padding: 0 0 0 18px;
        color: var(--muted);
        line-height: 1.7
    }

    .hero-card li {
        margin: 6px 0
    }

/* Billing toggle */
.billing {
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-weight: 700;
}

.switch {
    position: relative;
    width: 56px;
    height: 32px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow2);
    cursor: pointer;
}

.knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    transition: .18s ease;
}

.switch[data-state="yearly"] .knob {
    transform: translateX(24px)
}

.save {
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16,185,129,.14);
    color: #065f46;
}

/* Pricing cards */
.pricing {
    padding: 10px 0 18px;
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.plan {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

    .plan h2 {
        margin: 0;
        font-size: 18px
    }

    .plan .desc {
        margin: 6px 0 0;
        color: var(--muted);
        line-height: 1.55;
        font-size: 14px
    }

.price {
    margin: 14px 0 2px;
    font-size: 36px;
    letter-spacing: -.8px;
    font-weight: 900;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

    .price small {
        font-size: 14px;
        color: var(--muted);
        font-weight: 800;
        margin-bottom: 8px
    }

.sub {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 12px;
}

.features {
    margin: 14px 0 16px;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

    .features li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        padding: 8px 0;
        border-top: 1px dashed rgba(230,238,252,.9);
    }

        .features li:first-child {
            border-top: 0
        }

.tick {
    width: 20px;
    height: 20px;
    border-radius: 7px;
    background: rgba(47,120,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    font-weight: 900;
    font-size: 13px;
    flex: 0 0 auto;
    margin-top: 1px;
}

.plan.recommended {
    border: 1px solid rgba(47,120,255,.35);
    box-shadow: 0 20px 65px rgba(47,120,255,.18);
    transform: translateY(-2px);
}

.ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    box-shadow: 0 14px 28px rgba(47,120,255,.22);
}

/* Comparison */
.compare {
    padding: 22px 0 70px;
}

.section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px;
}

    .section-title h2 {
        margin: 0;
        font-size: 24px;
        letter-spacing: -.3px
    }

    .section-title p {
        margin: 0;
        color: var(--muted);
        font-weight: 700
    }

.table-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    overflow: hidden;
}

.table-scroll {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 860px;
}

thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, #ffffff, #f7faff);
    border-bottom: 1px solid var(--line);
    padding: 14px 12px;
    text-align: left;
    font-size: 13px;
    color: #1e3a8a;
    letter-spacing: .2px;
}

tbody td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(230,238,252,.8);
    color: #0f172a;
    font-weight: 700;
    vertical-align: top;
}

tbody tr:hover td {
    background: rgba(47,120,255,.04)
}

tbody td.muted {
    color: var(--muted);
    font-weight: 700
}

.center {
    text-align: center
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    border: 1px solid var(--line);
    background: #fff;
}

.yes {
    border-color: rgba(16,185,129,.35);
    background: rgba(16,185,129,.10);
    color: #065f46;
}

.no {
    border-color: rgba(148,163,184,.55);
    background: rgba(148,163,184,.10);
    color: #475569;
}

.info {
    display: inline-block;
    font-weight: 800;
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

/* Footer CTA */
.footer-cta {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(230,238,252,.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    padding: 18px;
}

    .footer-cta strong {
        font-size: 16px
    }

    .footer-cta span {
        color: var(--muted);
        font-weight: 700
    }

/* Responsive */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    h1 {
        font-size: 34px
    }



    .grid3 {
        grid-template-columns: 1fr
    }

    .plan.recommended {
        transform: none
    }
}


.plans {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-bottom: 26px;
}

.plan-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow);
    position: relative;
}

    .plan-card.featured {
        border-color: #89aefc;
        box-shadow: 0 12px 30px rgba(47,108,246,.10);
    }

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
}

.plan-title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

.plan-desc {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
    min-height: 42px;
    max-width: 280px;
}

.price {
    margin-bottom: 14px;
    color: var(--text);
}

    .price strong {
        font-size: 24px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: -.02em;
    }

    .price span {
        font-size: 35px;
        color:black;
        display: block;
        margin-top: 4px;
    }

    .price.contact strong {
        font-size: 22px;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    gap: 10px;
}

    .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 14px;
        color: #4f6283;
        padding-bottom: 8px;
        border-bottom: 1px dashed #dde7f5;
    }

        .feature-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

.tick {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    flex: 0 0 18px;
    margin-top: 1px;
}


.compare-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

.compare-box {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.compare-head {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    background: var(--card-2);
    border-bottom: 1px solid var(--line);
}

    .compare-head div {
        padding: 16px 14px;
        font-size: 13px;
        font-weight: 800;
        color: #274b8d;
    }

        .compare-head div:not(:last-child) {
            border-right: 1px solid var(--line);
        }

.acc-item {
    border-bottom: 1px solid var(--line);
}

    .acc-item:last-child {
        border-bottom: none;
    }

.acc-header {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: .2s ease;
}

    .acc-header:hover {
        background: #fbfdff;
    }

.acc-title {
    padding: 16px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--text);
    border-right: 1px solid var(--line);
}

    .acc-title .arrow {
        width: 14px;
        color: var(--primary);
        font-size: 14px;
        transition: transform .2s ease;
    }

.acc-item.active .acc-title .arrow {
    transform: rotate(90deg);
}

.acc-header .empty-col {
    min-height: 54px;
    border-right: 1px solid var(--line);
}

    .acc-header .empty-col:last-child {
        border-right: none;
    }

.acc-content {
    display: none;
    background: #fff;
}

.acc-item.active .acc-content {
    display: block;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    /*min-height: 64px;*/
    border-top: 1px solid var(--line);
}

    .feature-row:first-child {
        /* border-top: none;*/
    }

.feature-name {
    padding: 5px 14px 5px 30px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .feature-name strong {
        font-size: 14px;
        line-height: 1.3;
        color: var(--text);
        text-align: right !important;
        padding-right: 30% !important;
        white-space: nowrap;
        font-weight:normal !important;
    }

    .feature-name span {
        margin-top: 3px;
        font-size: 12px;
        color: var(--muted);
        line-height: 1.35;
    }

.cell {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
    padding: 0px;
}

    .cell:last-child {
        border-right: none;
    }

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid transparent;
    white-space: nowrap;
}

.pill-success {
    background: var(--success-soft);
    color: #17935f;
    border-color: #9fe2c1;
}

.pill-gray {
    background: var(--gray-pill);
    color: #72819a;
    border-color: #cfd9e7;
}

.pill-soft {
    background: #f7fbff;
    color: #49658d;
    border-color: #cfd9e7;
}

.cta-box {
    margin-top: 14px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

    .cta-box h3 {
        margin: 0 0 4px;
        font-size: 16px;
        font-weight: 800;
    }

    .cta-box p {
        margin: 0;
        font-size: 13px;
        color: var(--muted);
    }

@media (max-width: 980px) {
    .plans {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .compare-box {
        overflow: auto;
    }

    .compare-head,
    .acc-header,
    .feature-row {
        min-width: 860px;
    }
}

