﻿/* =========================================================
   PersonelTakip Landing CSS
   Görseller:
   /wwwroot/images/dashboard.png
   /wwwroot/images/kontrol-paneli.png
   /wwwroot/images/izin-yonetimi.png
   /wwwroot/images/maas-yonetimi.png
   /wwwroot/images/mobil-uygulama.png
   ========================================================= */

:root {
    --navy-950: #061225;
    --navy-900: #07172c;
    --navy-800: #082347;
    --blue: #1769ff;
    --blue-2: #2d7dff;
    --green: #16c76a;
    --orange: #ff7a1a;
    --purple: #8b5cf6;
    --cyan: #119be8;
    --text: #0d1e3a;
    --muted: #65748d;
    --line: #e3ebf7;
    --page: #f3f7fc;
    --card: #fbfdff;
    --shadow: 0 22px 55px rgba(17, 42, 90, .10);
    --shadow-soft: 0 12px 30px rgba(17, 42, 90, .07);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at 10% 20%, rgba(23,105,255,.05), transparent 25%),
        radial-gradient(circle at 90% 40%, rgba(139,92,246,.05), transparent 24%),
        var(--page);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

.page-container {
    width: 95%;
    max-width: 1800px;
    margin: 0 auto;
}

/* HEADER */

.topbar {
    height: 82px;
    background: rgba(6, 18, 37, .98);
    border-bottom: 1px solid rgba(255,255,255,.09);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
}

.nav {
    height: 82px;
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -.5px;
}

.brand b {
    color: #2f7cff;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1f6fff, #54a6ff);
    box-shadow: 0 12px 28px rgba(47, 124, 255, .34);
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 2vw, 42px);
}

.menu a {
    color: #d8e3ff;
    font-size: 15px;
    font-weight: 700;
    height: 82px;
    display: inline-flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 8px 8px 0 0;
    background: var(--blue-2);
    transform: scaleX(0);
    transition: .2s ease;
}

.menu a:hover::after,
.menu a.active::after {
    transform: scaleX(1);
}

.nav-demo {
    height: 44px;
    min-width: 150px;
    padding: 0 22px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(45, 125, 255, .30);
}

.mobile-menu-btn {
    display: none;
}

/* HERO */

.hero {
    color: white;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: clamp(50px, 5.5vw, 90px) 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(101,87,255,.48), transparent 30%),
        radial-gradient(circle at 4% 30%, rgba(0,132,255,.26), transparent 33%),
        linear-gradient(135deg, #061225 0%, #071b36 43%, #10105c 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 900px;
    gap: 40px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    color: #a9c8ff;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 26px;
}

.hero-content h1 {
    margin: 0 0 28px;
    font-size: clamp(54px, 4.6vw, 86px);
    line-height: 1.08;
    letter-spacing: -3.2px;
}

.hero-content p {
    max-width: 720px;
    color: #cbd9f2;
    font-size: clamp(18px, 1.1vw, 22px);
    line-height: 1.85;
    margin: 0 0 36px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 850;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    box-shadow: 0 18px 38px rgba(45,125,255,.28);
}

.btn-ghost {
    min-width: 190px;
    color: white;
    border: 1px solid rgba(255,255,255,.48);
    background: rgba(255,255,255,.04);
}

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: #c9d8f3;
    font-size: 14px;
    font-weight: 650;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
}

.hero-image {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 35px 90px rgba(0,0,0,.36);
    border: 1px solid rgba(255,255,255,.42);
}

.dashboard-mockup {
    width: 100%;
    min-height: clamp(470px, 38vw, 660px);
    background: #f6f9ff;
    border-radius: 18px;
    box-shadow: 0 35px 90px rgba(0,0,0,.36);
    border: 1px solid rgba(255,255,255,.68);
    overflow: hidden;
    color: #122446;
}

.mockup-top {
    height: 68px;
    display: grid;
    grid-template-columns: 210px 1fr 190px;
    align-items: center;
    gap: 20px;
    padding: 0 24px;
    background: rgba(255,255,255,.78);
    border-bottom: 1px solid #e4ebf6;
}

.mockup-top strong {
    color: var(--blue);
    font-size: 15px;
}

.mockup-top span {
    height: 38px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dce6f4;
    display: flex;
    align-items: center;
    padding-left: 20px;
    color: #9aa8bd;
    font-size: 13px;
}

.mockup-top em {
    font-style: normal;
    font-size: 13px;
    color: #586a84;
    text-align: right;
    font-weight: 700;
}

.mockup-body {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: calc(clamp(470px, 38vw, 660px) - 68px);
}

.mockup-body aside {
    padding: 24px 14px;
    background: #edf4ff;
    border-right: 1px solid #dde8f7;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.mockup-body aside b {
    padding: 11px 12px;
    border-radius: 8px;
    color: #66758e;
    font-size: 12px;
}

.mockup-body aside b:first-child {
    background: #dfeaff;
    color: var(--blue);
}

.mockup-body section {
    padding: 28px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mockup-stats div,
.mockup-panels > div {
    background: #fff;
    border: 1px solid #e8eef8;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(22,45,80,.06);
}

.mockup-stats div {
    min-height: 124px;
    padding: 20px;
}

.mockup-stats small {
    color: var(--green);
    font-weight: 850;
    font-size: 12px;
}

.mockup-stats div:nth-child(2) small,
.mockup-stats div:nth-child(2) span { color: var(--orange); }

.mockup-stats div:nth-child(3) small,
.mockup-stats div:nth-child(3) span { color: var(--blue); }

.mockup-stats div:nth-child(4) small,
.mockup-stats div:nth-child(4) span { color: var(--purple); }

.mockup-stats strong {
    display: block;
    font-size: 38px;
    margin: 9px 0;
}

.mockup-stats span {
    font-size: 12px;
    font-weight: 800;
    color: var(--green);
}

.mockup-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

.mockup-panels > div {
    min-height: 270px;
    padding: 22px;
}

.mockup-panels h4 {
    margin: 0 0 18px;
    font-size: 17px;
}

.mockup-panels p {
    font-size: 13px;
    color: #5d6c84;
    line-height: 1.55;
    margin: 0 0 16px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.mockup-panels i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dce8ff;
}

.mockup-panels p span {
    margin-left: auto;
    color: #7c8aa0;
}

/* COMMON SECTIONS */

.section-block {
    padding: clamp(58px, 5.2vw, 96px) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 42px;
}

.section-title h2 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: clamp(32px, 2.2vw, 44px);
    line-height: 1.18;
    letter-spacing: -1.1px;
}

.section-title p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.section-title.compact {
    margin-bottom: 34px;
}

/* FEATURES */

.features {
    padding: 80px 0 120px;
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.feature-card {
    min-height: 275px;
    background: linear-gradient(180deg, #ffffff, #f9fcff);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: #cfe0f8;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 25px;
    margin-bottom: 24px;
}

.feature-icon.blue { background: #e8f1ff; color: var(--blue); }
.feature-icon.green { background: #e7faef; color: var(--green); }
.feature-icon.purple { background: #f0e8ff; color: var(--purple); }
.feature-icon.orange { background: #fff0e4; color: var(--orange); }
.feature-icon.cyan { background: #e6f7ff; color: var(--cyan); }

.feature-card h3 {
    margin: 0 0 14px;
    font-size: 20px;
    color: #102040;
}

.feature-card p {
    min-height: 76px;
    margin: 0 0 22px;
    color: #5e6b82;
    line-height: 1.72;
    font-size: 15px;
}

.feature-card a {
    color: var(--blue);
    font-size: 15px;
    font-weight: 850;
}

/* SCREENS */

.screens {
    padding: 100px 0;
    background: #f6f9ff;
    border-top: 1px solid #e3ebf7;
    border-bottom: 1px solid #e3ebf7;
}

.screen-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.screen-tabs button {
    border: 0;
    cursor: pointer;
    background: transparent;
    color: #52617a;
    font-size: 15px;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 10px;
}

.screen-tabs button.active {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    box-shadow: 0 12px 28px rgba(45,125,255,.25);
}

.screen-shell {
    position: relative;
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    justify-content: center;
    gap: 22px;
}

.screen-grid::-webkit-scrollbar {
    display: none;
}

.screen-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: .3s;
    cursor: pointer;
}
    .screen-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }
.screen-image-wrap {
    height: 260px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #f8fafc;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
}

    .screen-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        position: relative;
        z-index: 2;
    }

.screen-fallback {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #edf4ff 0 18%, transparent 18%),
        linear-gradient(#ffffff, #f6faff);
}

.screen-fallback::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 25%;
    right: 8%;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, #e7fff1, #fff2e7, #edf3ff, #f3ecff);
}

.screen-fallback::after {
    content: "";
    position: absolute;
    left: 25%;
    right: 8%;
    top: 90px;
    height: 90px;
    border-radius: 10px;
    border: 1px solid #dce6f4;
    background: #fff;
}

.screen-fallback.table::after,
.screen-fallback.report::after {
    border: 0;
    border-radius: 0;
    background: repeating-linear-gradient(to bottom, #dce6f4 0, #dce6f4 2px, transparent 2px, transparent 18px);
}

.screen-fallback.mobile::before,
.screen-fallback.mobile::after {
    content: "";
    position: absolute;
    top: 34px;
    width: 70px;
    height: 150px;
    border-radius: 22px;
    background: linear-gradient(#1769ff 0 20%, #f7fbff 20%);
    border: 7px solid #0b1b35;
}

.screen-fallback.mobile::before { left: calc(50% - 88px); }
.screen-fallback.mobile::after { right: calc(50% - 88px); }

.screen-card h4 {
    padding: 18px 20px 6px;
    margin: 0;
    font-size: 17px;
    color: #102040;
}

.screen-card p {
    padding: 0 20px 20px;
    margin: 0;
    color: #6a7890;
    font-size: 14px;
}

.screen-arrow {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid #e4ebf6;
    background: white;
    color: #52617a;
    box-shadow: var(--shadow-soft);
    position: absolute;
    top: 88px;
    z-index: 5;
    font-size: 34px;
    cursor: pointer;
}

.screen-arrow.prev { left: -24px; }
.screen-arrow.next { right: -24px; }

/* WHY */

.why {
    padding: 100px 0;
    background: #fff;
}

.why-box {
    background: linear-gradient(135deg, #eef5ff, #f9fcff);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 46px;
    box-shadow: 0 18px 45px rgba(17,42,90,.055);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.why-grid article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
}

.why-grid article span {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #dfeaff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 23px;
}

.why-grid h4 {
    margin: 0 0 8px;
    color: #102040;
    font-size: 17px;
}

.why-grid p {
    margin: 0;
    color: #64728a;
    line-height: 1.6;
    font-size: 14px;
}

/* PRICING */

.pricing {
    padding: 100px 0;
    background: #f6f9ff;
}

.price-grid {
    width: min(1080px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: stretch;
}

.price-card {
    background: linear-gradient(180deg, #ffffff, #f9fcff);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 46px 36px 32px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border-color: var(--green);
    transform: translateY(-14px);
    box-shadow: 0 24px 60px rgba(22,199,106,.14);
}

.popular-label {
    position: absolute;
    left: 24px;
    right: 24px;
    top: -1px;
    height: 34px;
    border-radius: 0 0 9px 9px;
    background: linear-gradient(135deg, var(--green), #18d67a);
    color: white;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
}

.price-card h3 {
    margin: 0 0 26px;
    font-size: 18px;
    color: #102040;
}

.price {
    height: 120px; /* Üç kartın fiyat alanı aynı yükseklikte */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #102040;
    font-size: 44px;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 34px;
}

    .price span {
        font-size: 15px;
        font-weight: 700;
        color: var(--muted);
    }

    .price .price-value {
        font-size: 44px;
        font-weight: 950;
        color: #102040;
        line-height: 1;
    }

    .price .price-period {
        margin-top: 7px;
        font-size: 15px;
        font-weight: 700;
        color: #64748b;
    }

    /* Kurumsal Paket */
    .price.special {
        justify-content: center;
        gap: 8px;
    }

        .price.special span {
            font-size: 36px;
            font-weight: 900;
            color: #102040;
            line-height: 1;
        }

        .price.special small {
            font-size: 14px;
            font-weight: 600;
            color: #6b7280;
            margin: 0;
            text-align: center;
        }

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
    text-align: left;
    flex: 1;
}

.price-card li {
    color: #53627a;
    font-size: 15px;
    margin-bottom: 16px;
}

.price-outline,
.price-primary {
    height: 50px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    margin-top: auto;
}

.price-outline {
    border: 1px solid var(--blue);
    color: var(--blue);
    background: white;
}

.price-primary {
    color: white;
    background: linear-gradient(135deg, var(--green), #17c96f);
}

.discount {
    text-align: center;
    color: #63718c;
    font-size: 15px;
    margin: 10px 0 0;
}

.discount b {
    color: #11b95c;
}

/* CONTACT */

.contact {
    padding: 100px 0;
    background: #fff;
}

.contact-box {
    background:
        radial-gradient(circle at 90% 20%, rgba(38,105,255,.28), transparent 30%),
        linear-gradient(135deg, #07172c, #062143);
    border-radius: 22px;
    padding: clamp(38px, 3vw, 58px);
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(40px, 5vw, 90px);
    color: white;
    box-shadow: 0 24px 70px rgba(7,23,44,.20);
}

.contact-info h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 2vw, 42px);
    letter-spacing: -.8px;
}

.contact-info p {
    color: #cbd9f2;
    line-height: 1.75;
    font-size: 17px;
    max-width: 620px;
    margin: 0 0 32px;
}

.contact-info span {
    display: block;
    color: #dce7ff;
    margin-bottom: 18px;
    font-size: 16px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-content: center;
}

.contact-form input {
    height: 58px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,.34);
    background: rgba(255,255,255,.045);
    color: white;
    padding: 0 18px;
    outline: none;
    font-size: 15px;
}

.contact-form input::placeholder {
    color: #c7d3e9;
}

.contact-form button {
    grid-column: 1 / -1;
    height: 58px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    color: white;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

/* FOOTER */

.footer {
    padding: 30px 0;
    background: #eef3f9;
    border-top: 1px solid #dde7f4;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #75839a;
    font-size: 14px;
}

.footer a {
    margin-left: 34px;
}

/* RESPONSIVE */

@media (max-width: 1450px) {
    .page-container {
        width: min(1320px, calc(100% - 64px));
    }

    .hero-grid {
        grid-template-columns: 52% 48%;
        gap: 20px;
    }

    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mockup-body aside {
        display: none;
    }

    .mockup-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .nav {
        grid-template-columns: auto auto auto;
    }

    .menu {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: #061225;
        padding: 18px 32px 26px;
        display: none;
        flex-wrap: wrap;
        border-top: 1px solid rgba(255,255,255,.09);
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        height: auto;
        padding: 8px 0;
    }

    .mobile-menu-btn {
        display: inline-grid;
        place-items: center;
        justify-self: end;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,.18);
        background: rgba(255,255,255,.06);
        color: white;
        font-size: 22px;
        cursor: pointer;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-left: 0;
        margin-left: -40px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .page-container {
        width: min(100% - 28px, 100%);
    }

    .topbar,
    .nav {
        height: auto;
    }

    .nav {
        padding: 16px 0;
        grid-template-columns: 1fr auto;
    }

    .nav-demo {
        grid-column: 1 / -1;
        width: 100%;
    }

    .menu {
        top: 121px;
    }

    .hero {
        padding: 46px 0;
    }

    .hero-content h1 {
        font-size: clamp(64px, 5.5vw, 96px);
        letter-spacing: -1.6px;
        max-width: 900px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }

    .hero-badges {
        gap: 12px;
    }

    .dashboard-mockup {
        min-height: 560px;
    }

    .mockup-top {
        grid-template-columns: 1fr;
        height: auto;
        padding: 16px;
    }

    .mockup-top em {
        text-align: left;
    }

    .mockup-stats,
    .mockup-panels,
    .feature-grid,
    .price-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .mockup-body section {
        padding: 16px;
    }

    .screen-grid {
        grid-template-columns: repeat(5, 82vw);
    }

    .screen-arrow {
        display: none;
    }

    .why-box {
        padding: 30px 18px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: none;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer a {
        margin: 0 10px;
    }
}
.selected-package-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient( 135deg, #1769ff, #4f8cff );
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    margin-bottom: 20px;
}
@media (max-width:480px) {

    .selected-package-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px;
    }

        .selected-package-box span {
            font-size: 13px;
        }

        .selected-package-box strong {
            font-size: 18px;
            line-height: 1.3;
        }
}
@media (max-width:480px) {

    .contact-box {
        padding: 20px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-info p {
        font-size: 15px;
    }
}

    .selected-package-box span {
        font-size: 14px;
        opacity: .9;
    }

    .selected-package-box strong {
        font-size: 22px;
        font-weight: 700;
    }

.price-card {
    transition: .25s;
}

    .price-card.selected {
        border: 2px solid #1769ff;
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(23,105,255,.18);
    }
.swal2-popup {
    font-size: 18px !important;
    width: 650px !important;
    border-radius: 20px !important;
}

.swal2-title {
    font-size: 32px !important;
    font-weight: 700 !important;
}

.swal2-html-container {
    font-size: 18px !important;
}

.swal2-confirm {
    padding: 12px 32px !important;
    font-size: 16px !important;
}
.agreement-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}
.agreement-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
}

    .agreement-check input {
        margin-top: 3px;
        width: 18px;
        height: 18px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .agreement-check span {
        flex: 1;
    }

    .agreement-check a {
        color: #60a5fa;
        font-weight: 600;
        text-decoration: none;
    }

        .agreement-check a:hover {
            color: #93c5fd;
        }

@media (max-width:480px) {

    .agreement-check {
        gap: 8px;
        font-size: 13px;
    }
}

    .agreement-check input {
        margin-top: 3px;
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

    .agreement-check a {
        color: #60a5fa;
        font-weight: 600;
        text-decoration: none;
    }

        .agreement-check a:hover {
            color: #93c5fd;
        }
.btn-primary,
.btn-ghost,
.nav-demo,
.price-primary,
.price-outline,
.contact-form button,
.feature-card a {
    transition: all .25s ease;
    cursor: pointer;
}

    .btn-primary:hover,
    .nav-demo:hover,
    .price-primary:hover,
    .contact-form button:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 45px rgba(23,105,255,.35);
        filter: brightness(1.05);
    }

    .btn-ghost:hover,
    .price-outline:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,.12);
        border-color: #60a5fa;
    }

.menu a:hover {
    color: #ffffff;
}

.feature-card a:hover {
    color: #0d5eff;
    padding-left: 4px;
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-icon i {
        font-size: 30px;
        line-height: 1;
    }

    .feature-icon.blue i {
        color: #2563eb;
    }

    .feature-icon.green i {
        color: #16a34a;
    }

    .feature-icon.purple i {
        color: #7c3aed;
    }

    .feature-icon.orange i {
        color: #ea580c;
    }

    .feature-icon.cyan i {
        color: #0891b2;
    }
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

    .image-modal img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 12px;
    }

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 99999;
    pointer-events: auto;
}

#prevImage {
    left: 30px;
}

#nextImage {
    right: 30px;
}

#modalImage {
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {

    .hero {
        padding: 30px 0 50px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content {
        margin-left: 0 !important;
        padding-left: 0;
    }

        .hero-content h1 {
            font-size: 48px !important;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero-content p {
            font-size: 16px;
            line-height: 1.7;
            margin-left: auto;
            margin-right: auto;
        }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

        .hero-actions .btn {
            width: 100%;
        }

    .hero-badges {
        justify-content: center;
        gap: 10px;
    }

    .hero-visual {
        margin-right: 0 !important;
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
        border-radius: 16px;
    }
    @media (max-width:768px){

    .screen-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .screen-card{
        width:100%;
    }

    .screen-image-wrap{
        height:220px;
    }

}
}
.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 380px;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    z-index: 999999;
    box-shadow: 0 15px 50px rgba(0,0,0,.18);
    border: 1px solid #e5e7eb;
    display: none;
    flex-direction: column;
}

    .cookie-banner strong {
        font-size: 16px;
        color: #111827;
        margin-bottom: 10px;
    }

    .cookie-banner p {
        margin: 0;
        margin-bottom: 15px;
        color: #6b7280;
        font-size: 14px;
        line-height: 1.6;
    }

.cookie-actions {
    display: flex;
    gap: 10px;
}

    .cookie-actions button {
        flex: 1;
        height: 42px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 600;
    }

#rejectCookies {
    background: #f3f4f6;
    color: #374151;
}

#acceptCookies {
    background: #1769ff;
    color: white;
}

@media (max-width:768px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
    }
}
.cookie-banner a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

    .cookie-banner a:hover {
        color: #1d4ed8;
        text-decoration: underline;
    }
.cookie-banner a {
    color: #1769ff;
    font-weight: 700;
}

    .cookie-banner a:hover {
        color: #3b82f6;
        text-decoration: underline;
    }

/* AYLIK / YILLIK SEÇİMİ */
.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 25px auto 45px;
    width: 100%;
}

    .billing-toggle > span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 16px;
        font-weight: 700;
        color: #64748b;
        transition: color 0.25s ease;
    }

        .billing-toggle > span.active {
            color: #2563eb;
        }

    .billing-toggle b {
        display: inline-block;
        padding: 5px 9px;
        border-radius: 999px;
        background: #dcfce7;
        color: #16a34a;
        font-size: 12px;
        font-weight: 800;
    }

    /* Toggle dış kutusu */
    .billing-toggle .switch {
        position: relative;
        display: inline-block;
        width: 58px;
        height: 32px;
        flex-shrink: 0;
    }

        /* Gerçek checkbox'ı gizler */
        .billing-toggle .switch input {
            position: absolute;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

    /* Toggle arka planı */
    .billing-toggle .slider {
        position: absolute;
        inset: 0;
        cursor: pointer;
        background: #dbeafe;
        border: 1px solid #bfdbfe;
        border-radius: 999px;
        transition: 0.25s ease;
    }

        /* Toggle yuvarlağı */
        .billing-toggle .slider::before {
            content: "";
            position: absolute;
            width: 24px;
            height: 24px;
            left: 3px;
            top: 3px;
            background: #2563eb;
            border-radius: 50%;
            box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3);
            transition: transform 0.25s ease;
        }

    /* Yıllık seçildiğinde */
    .billing-toggle .switch input:checked + .slider {
        background: #bbf7d0;
        border-color: #86efac;
    }

        .billing-toggle .switch input:checked + .slider::before {
            transform: translateX(26px);
            background: #16a34a;
        }
.price {
    margin: 24px 0;
}

.current-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
}

.old-price {
    display: none;
    margin-bottom: 5px;
    color: #94a3b8;
    font-size: 18px;
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.price-value {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
}

.price-period {
    margin-bottom: 5px;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.save-badge {
    display: none;
    width: fit-content;
    margin: 18px auto 0;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #15803d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .2px;
    box-shadow: 0 6px 16px rgba(22, 163, 74, .14);
}