/* =====================================================
   FONPURE — Global Paylaşımlı CSS
   Tüm sayfalarda ortak kullanılan stiller
   ===================================================== */

/* CSS Değişkenleri */
:root {
    --fp-bg: #07071a;
    --fp-bg-2: #0b0a23;
    --fp-panel: #0f0e2a;
    --fp-panel-2: #131233;
    --fp-border: rgba(255, 255, 255, 0.08);
    --fp-border-soft: rgba(255, 255, 255, 0.05);
    --fp-text: #e8e9f3;
    --fp-muted: #a4a6c1;
    --fp-teal: #2dd4bf;
    --fp-teal-soft: rgba(45, 212, 191, 0.12);
    --fp-purple: #8b5cf6;
    --fp-purple-2: #a78bfa;
    --fp-cyan: #38bdf8;
    --fp-warn: #fbbf24;
    --fp-danger: #f87171;
    --fp-success: #4ade80;
    --fp-grad: linear-gradient(90deg, #ffffff 0%, #c084fc 35%, #8b5cf6 60%, #38bdf8 100%);
}

/* ---- Reset & Temel ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--fp-bg);
    color: var(--fp-text);
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- Animasyon ---- */
@keyframes fp-blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.8);
    }
}

/* ---- Badge / Tag ---- */
.fp-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--fp-teal-soft);
    border: 1px solid rgba(45, 212, 191, 0.4);
    border-radius: 999px;
    color: var(--fp-teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.fp-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fp-teal);
    box-shadow: 0 0 10px var(--fp-teal);
    animation: fp-blink 2s infinite;
}

/* ---- Gradient Metin ---- */
.fp-grad {
    background: var(--fp-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---- Kapsayıcılar ---- */
.fp-container {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.fp-container-wide {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---- Section Dolgusu ---- */
.fp-section {
    padding: 90px 0;
}

.fp-section.tight {
    padding: 60px 0;
}

/* ---- Bölücü ---- */
.fp-divider {
    height: 1px;
    background: var(--fp-border-soft);
    max-width: 880px;
    margin: 0 auto;
}

/* ---- Sayfa Arkaplan Degradesi ---- */
.fp-page {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(800px 500px at 80% -10%, rgba(139, 92, 246, 0.18), transparent 60%),
        radial-gradient(700px 400px at 0% 30%, rgba(56, 189, 248, 0.10), transparent 60%),
        radial-gradient(900px 600px at 50% 100%, rgba(45, 212, 191, 0.10), transparent 60%),
        var(--fp-bg);
    min-height: 100vh;
}

/* ---- Metin Vurguları ---- */
.fp-hl {
    color: var(--fp-teal);
    font-weight: 600;
}

.fp-hl-purple {
    color: var(--fp-purple-2);
    font-weight: 600;
}

.fp-hl-cyan {
    color: var(--fp-cyan);
    font-weight: 600;
}

/* ---- CTA Butonu ---- */
.fp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: linear-gradient(135deg, var(--fp-purple), #7c3aed);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    transition: transform .2s ease, box-shadow .2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.fp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(139, 92, 246, 0.55);
    color: #fff;
}

.fp-cta-btn.outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.fp-cta-btn.outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Navbar CTA - animated gradient */
.fp-nav-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #14b8a6, #0ea5e9, #6366f1, #a855f7, #14b8a6);
    background-size: 260% 260%;
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.30), 0 8px 20px rgba(139, 92, 246, 0.28);
    animation: fp-nav-cta-gradient 6s ease infinite;
}

.fp-nav-cta::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 45%);
    opacity: 0.45;
    pointer-events: none;
}

.fp-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(20, 184, 166, 0.26), 0 12px 28px rgba(139, 92, 246, 0.36);
    filter: saturate(1.12) brightness(1.04);
}

.fp-nav-cta:active {
    transform: translateY(0);
}

@keyframes fp-nav-cta-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* =====================================================
   NAVBAR
   ===================================================== */
.fp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 7, 26, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--fp-border);
}

.fp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.fp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.fp-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 60%, #0891b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 20px;
    font-style: italic;
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.35);
}

.fp-logo b {
    color: #fff;
}

.fp-logo span {
    color: var(--fp-purple-2);
    font-weight: 700;
}

.fp-nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fp-nav-links a {
    color: var(--fp-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
    transition: color .2s ease;
}

.fp-nav-links a:hover {
    color: #fff;
}

.fp-nav-links a.active {
    color: #fff;
    border-bottom: 2px solid #fff;
}

/* Hamburger (mobil) */
.fp-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--fp-text);
    cursor: pointer;
    padding: 6px;
}

.fp-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 32px 20px;
    border-top: 1px solid var(--fp-border);
    background: rgba(7, 7, 26, 0.95);
}

.fp-nav-mobile.open {
    display: flex;
}

.fp-nav-mobile a {
    color: var(--fp-muted);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid var(--fp-border-soft);
    transition: color .2s;
}

.fp-nav-mobile a:last-child {
    border-bottom: none;
}

.fp-nav-mobile a:hover {
    color: #fff;
}

.fp-nav-mobile a.active {
    color: #fff;
}

/* Logo resim */
.fp-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

/* Submenu — desktop */
.fp-nav-has-sub {
    position: relative;
}

.fp-nav-sub-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--fp-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color .2s ease;
}

.fp-nav-sub-toggle:hover {
    color: #fff;
}

.fp-nav-sub-toggle.active {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.fp-nav-chevron {
    width: 14px;
    height: 14px;
    transition: transform .25s ease;
    flex-shrink: 0;
}

.fp-nav-has-sub:hover .fp-nav-chevron {
    transform: rotate(180deg);
}

.fp-nav-sub {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 260px;
    padding-top: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 200;
}

.fp-nav-sub-inner {
    background: rgba(15, 14, 42, 0.97);
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(139, 92, 246, .05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

.fp-nav-sub-inner::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: rgba(15, 14, 42, 0.97);
    border-left: 1px solid rgba(139, 92, 246, 0.22);
    border-top: 1px solid rgba(139, 92, 246, 0.22);
    transform: translateX(-50%) rotate(45deg);
}

.fp-nav-has-sub:hover .fp-nav-sub {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.fp-nav-sub a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    color: var(--fp-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background .15s, color .15s;
}

.fp-nav-sub a:hover {
    background: rgba(139, 92, 246, .1);
    color: #fff;
}

.fp-nav-sub a.active {
    background: rgba(139, 92, 246, .13);
    color: var(--fp-purple-2);
}

.fp-nav-sub-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(139, 92, 246, .12);
    color: var(--fp-purple-2);
    transition: background .15s;
}

.fp-nav-sub a:hover .fp-nav-sub-icon {
    background: rgba(139, 92, 246, .22);
}

.fp-nav-sub-text {
    flex: 1;
}

.fp-nav-sub-text small {
    display: block;
    font-size: 11.5px;
    color: var(--fp-muted);
    opacity: .7;
    margin-top: 1px;
}

/* Hide desktop CTA on mobile */
@media (max-width: 900px) {
    .fp-nav-cta {
        display: none !important;
    }
}

/* Mobile submenu accordion */
.fp-mobile-sub-wrap {
    border-bottom: 1px solid var(--fp-border-soft);
}

.fp-mobile-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: var(--fp-muted);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    font-family: inherit;
    transition: color .2s;
}

.fp-mobile-sub-toggle:hover,
.fp-mobile-sub-toggle.open {
    color: #fff;
}

.fp-mobile-sub-toggle.open .fp-nav-chevron {
    transform: rotate(180deg);
}

.fp-mobile-sub {
    display: none;
    flex-direction: column;
    padding: 4px 0 10px 16px;
}

.fp-mobile-sub.open {
    display: flex;
}

.fp-mobile-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--fp-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: none !important;
    transition: color .2s;
}

.fp-mobile-sub a:hover {
    color: #fff;
}

.fp-mobile-sub a.active {
    color: var(--fp-purple-2);
}

.fp-mobile-sub .fp-nav-sub-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
}

/* Mobile CTA */
.fp-nav-mobile a.fp-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 12px 24px;
    background: linear-gradient(120deg, #14b8a6, #0ea5e9, #6366f1, #a855f7, #14b8a6);
    background-size: 260% 260%;
    border-radius: 10px;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    border-bottom: none !important;
    border: none;
    text-align: center;
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.30), 0 8px 20px rgba(139, 92, 246, 0.28);
    animation: fp-nav-cta-gradient 6s ease infinite;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.fp-nav-mobile a.fp-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(20, 184, 166, 0.26), 0 12px 28px rgba(139, 92, 246, 0.36);
    filter: saturate(1.12) brightness(1.04);
}

/* =====================================================
   FOOTER
   ===================================================== */
.fp-footer {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(700px 360px at 80% 0%, rgba(139, 92, 246, 0.10), transparent 60%),
        radial-gradient(560px 240px at 0% 100%, rgba(45, 212, 191, 0.08), transparent 60%),
        linear-gradient(180deg, #0b0a23 0%, #07071a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--fp-muted);
    overflow: hidden;
}

.fp-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(420px 240px at 88% 50%, rgba(239, 64, 96, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.fp-footer-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 32px 0;
}

.fp-footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fp-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 18px;
}

.fp-footer-slogan {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
    max-width: 320px;
}

.fp-footer-slogan .accent {
    background: linear-gradient(90deg, #ffffff 0%, #c084fc 35%, #8b5cf6 60%, #38bdf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fp-footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fp-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
}

.fp-footer-badge.teal {
    background: rgba(45, 212, 191, 0.10);
    border-color: rgba(45, 212, 191, 0.28);
    color: var(--fp-teal);
}

.fp-footer-badge.purple {
    background: rgba(139, 92, 246, 0.10);
    border-color: rgba(139, 92, 246, 0.30);
    color: var(--fp-purple-2);
}

.fp-footer-badge .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 6px currentColor;
}

.fp-footer-col h4,
.fp-footer-contact h4 {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 12px;
}

.fp-footer-col h4::after,
.fp-footer-contact h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #2dd4bf);
    border-radius: 2px;
}

.fp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fp-footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color .2s, transform .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fp-footer-col ul li a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background .2s, transform .2s;
}

.fp-footer-col ul li a:hover {
    color: #fff;
}

.fp-footer-col ul li a:hover::before {
    background: var(--fp-teal);
    box-shadow: 0 0 8px var(--fp-teal);
    transform: scale(1.4);
}

.fp-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.fp-footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.10);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: var(--fp-purple-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-footer-contact-label {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.fp-footer-contact-value {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.fp-footer-contact-value a {
    color: #fff;
    text-decoration: none;
    transition: color .2s;
}

.fp-footer-contact-value a:hover {
    color: var(--fp-teal);
}

.fp-footer-social-wrap {
    margin-top: 18px;
}

.fp-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.fp-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all .25s ease;
}

.fp-footer-social a:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.20), rgba(45, 212, 191, 0.16));
    border-color: rgba(139, 92, 246, 0.40);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(139, 92, 246, 0.22);
}

.fp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 26px;
    flex-wrap: wrap;
    gap: 14px;
}

.fp-footer-melon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin: 0 4px;
    filter: drop-shadow(0 2px 4px rgba(239, 64, 96, 0.35));
    transform: translateY(-1px);
}

.fp-footer-copy {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.fp-footer-copy strong {
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.fp-footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.fp-footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}

.fp-footer-legal a:hover {
    color: var(--fp-teal);
}

.fp-footer-legal-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

/* =====================================================
   RESPONSIVE — Ortak Breakpointlar
   ===================================================== */
@media (max-width: 1000px) {
    .fp-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .fp-footer-top>div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .fp-nav-links {
        display: none;
    }

    .fp-nav-toggle {
        display: flex;
    }

    .fp-section {
        padding: 60px 0;
    }

    .fp-container,
    .fp-container-wide {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .fp-footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 36px;
    }

    .fp-footer-inner {
        padding: 56px 22px 0;
    }

    .fp-footer-bottom {
        justify-content: flex-start;
    }

    .fp-footer-legal {
        gap: 10px;
    }

    .fp-footer-legal a {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    .fp-cta-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .fp-logo {
        font-size: 20px;
    }
}