/* Kobi CMS — Public Frontend Theme (Bootstrap 5) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --fe-primary: #6366f1;
    --fe-primary-dark: #4f46e5;
    --fe-primary-light: #818cf8;
    --fe-accent: #f97316;
    --fe-accent-soft: #ffedd5;
    --fe-cyan: #06b6d4;
    --fe-dark: #0f172a;
    --fe-text: #1e293b;
    --fe-muted: #64748b;
    --fe-border: rgba(226, 232, 240, 0.9);
    --fe-bg: #f8fafc;
    --fe-surface: #ffffff;
    --fe-radius: 20px;
    --fe-radius-sm: 12px;
    --fe-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --fe-shadow-lg: 0 20px 50px rgba(99, 102, 241, 0.12);
    --fe-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --fe-gradient-dark: linear-gradient(145deg, #0f172a 0%, #1e1b4b 45%, #312e81 100%);
    --fe-navbar-height: 76px;
}

.kobi-frontend {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--fe-text);
    background: var(--fe-bg);
    background-image:
        radial-gradient(ellipse 80% 60% at 10% -10%, rgba(99, 102, 241, 0.08), transparent),
        radial-gradient(ellipse 60% 50% at 95% 20%, rgba(249, 115, 22, 0.06), transparent);
    min-height: 100vh;
}

.kobi-frontend .fe-page {
    overflow-x: clip;
    overflow-x: hidden;
}

/* ——— Navbar ——— */
.kobi-frontend .fe-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid var(--fe-border);
    padding: 0.4rem 0;
    min-height: var(--fe-navbar-height);
    transition: box-shadow 0.3s;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

@media (max-width: 991.98px) {
    .kobi-frontend .fe-navbar,
    .kobi-frontend .fe-navbar.sticky-top {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: #ffffff !important;
    }
}

@media (min-width: 992px) {
    .kobi-frontend .fe-navbar {
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
    }
}

.kobi-frontend .fe-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.06);
}

.kobi-frontend .fe-brand {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    color: var(--fe-dark) !important;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.kobi-frontend .fe-brand-logo {
    text-decoration: none;
    line-height: 0;
}

.kobi-frontend .fe-brand-img {
    height: 60px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
}

.kobi-frontend .fe-navbar .fe-brand-logo .fe-brand-img {
    height: 56px;
}

.kobi-frontend .fe-brand-img--on-dark {
    filter: brightness(0) invert(1);
}

.kobi-frontend .fe-auth-logo {
    display: flex;
    justify-content: center;
}

.kobi-frontend .fe-auth-logo .fe-brand-img {
    height: 60px;
}

.kobi-frontend .fe-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--fe-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.kobi-frontend .fe-navbar .nav-link {
    color: var(--fe-muted) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem !important;
    border-radius: 10px;
    transition: all 0.2s;
}

.kobi-frontend .fe-navbar .nav-link:hover,
.kobi-frontend .fe-navbar .nav-link.active {
    color: var(--fe-primary) !important;
    background: rgba(99, 102, 241, 0.08);
}

/* Navbar CTA — nav-link ile karıştırılmamalı */
.kobi-frontend .fe-navbar .fe-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.25rem;
    padding: 0.55rem 1.15rem !important;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.kobi-frontend .fe-nav-toggler {
    padding: 0.35rem 0.5rem;
}

.kobi-frontend .fe-nav-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* ——— Mobile offcanvas menu ——— */
.kobi-frontend .fe-offcanvas {
    width: min(300px, 88vw);
    border-right: 1px solid var(--fe-border);
    box-shadow: 8px 0 32px rgba(15, 23, 42, 0.12);
}

.kobi-frontend .fe-offcanvas .offcanvas-header {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.kobi-frontend .fe-offcanvas .offcanvas-title {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--fe-dark);
}

.kobi-frontend .fe-offcanvas .offcanvas-body {
    padding: 1rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.kobi-frontend .fe-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.kobi-frontend .fe-mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    color: var(--fe-muted);
    font-weight: 500;
    font-size: 0.925rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.kobi-frontend .fe-mobile-menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.kobi-frontend .fe-mobile-menu-link.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.08));
    color: var(--fe-primary-dark);
    font-weight: 600;
}

.kobi-frontend .fe-mobile-menu-link.active .fe-mobile-menu-icon {
    background: var(--fe-gradient);
    color: #fff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.kobi-frontend .fe-mobile-menu-link:hover {
    background: rgba(99, 102, 241, 0.06);
    color: var(--fe-primary);
}

.kobi-frontend .fe-mobile-menu-link:hover .fe-mobile-menu-icon {
    background: rgba(99, 102, 241, 0.12);
    color: var(--fe-primary);
}

.kobi-frontend .fe-mobile-menu-link.is-danger {
    color: #dc2626;
}

.kobi-frontend .fe-mobile-menu-link.is-danger .fe-mobile-menu-icon {
    background: #fef2f2;
    color: #dc2626;
}

.kobi-frontend .fe-offcanvas-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: var(--fe-gradient);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.925rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.kobi-frontend .fe-offcanvas-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.42);
    color: #fff !important;
}

/* ——— Buttons (unified) ——— */
.kobi-frontend .btn-fe-primary,
.kobi-frontend .btn-primary {
    background: var(--fe-gradient);
    border: none;
    color: #fff !important;
    font-weight: 700;
    padding: 0.55rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.kobi-frontend .btn-fe-primary i,
.kobi-frontend .btn-primary i,
.kobi-frontend .fe-nav-cta i {
    color: inherit;
}

.kobi-frontend .btn-fe-primary:hover,
.kobi-frontend .btn-fe-primary:focus,
.kobi-frontend .btn-primary:hover,
.kobi-frontend .btn-primary:focus,
.kobi-frontend .fe-nav-cta:hover,
.kobi-frontend .fe-nav-cta:focus {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.42);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border: none;
    color: #fff !important;
}

.kobi-frontend .btn-fe-outline,
.kobi-frontend .btn-outline-primary,
.kobi-frontend .btn-outline-secondary {
    border: 2px solid rgba(99, 102, 241, 0.28);
    color: var(--fe-primary) !important;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    transition: all 0.2s;
}

.kobi-frontend .btn-fe-outline:hover,
.kobi-frontend .btn-outline-primary:hover,
.kobi-frontend .btn-outline-secondary:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: var(--fe-primary);
    color: var(--fe-primary-dark) !important;
}

.kobi-frontend .btn-fe-ghost {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff !important;
    font-weight: 600;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.kobi-frontend .btn-fe-ghost:hover,
.kobi-frontend .btn-fe-ghost:focus {
    background: rgba(255, 255, 255, 0.25);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.5);
}

.kobi-frontend .btn-fe-light,
.kobi-frontend .fe-cta .btn-light {
    background: #fff;
    border: none;
    color: var(--fe-primary-dark) !important;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
}

.kobi-frontend .btn-fe-light:hover,
.kobi-frontend .fe-cta .btn-light:hover {
    background: #f8fafc;
    color: var(--fe-primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.16);
}

.kobi-frontend .btn-fe-success,
.kobi-frontend .btn-success {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border: none;
    color: #fff !important;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.kobi-frontend .btn-fe-success:hover,
.kobi-frontend .btn-success:hover {
    background: linear-gradient(135deg, #15803d, #16a34a);
    color: #fff !important;
    border: none;
}

.kobi-frontend .btn-outline-success {
    border: 2px solid rgba(34, 197, 94, 0.45);
    color: #16a34a !important;
    font-weight: 600;
    border-radius: 12px;
    background: #fff;
}

.kobi-frontend .btn-outline-success:hover {
    background: rgba(34, 197, 94, 0.08);
    color: #15803d !important;
    border-color: #22c55e;
}

.kobi-frontend .btn-fe-primary.btn-sm,
.kobi-frontend .btn-primary.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    border-radius: 10px;
}

.kobi-frontend .btn-fe-outline.btn-sm,
.kobi-frontend .btn-outline-primary.btn-sm,
.kobi-frontend .btn-outline-secondary.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    border-radius: 10px;
}

.kobi-frontend .btn-fe-primary.btn-lg,
.kobi-frontend .btn-primary.btn-lg,
.kobi-frontend .btn-fe-outline.btn-lg,
.kobi-frontend .btn-fe-light.btn-lg,
.kobi-frontend .btn-fe-ghost.btn-lg {
    padding: 0.6rem 1.25rem;
    font-size: 0.9375rem;
}

/* ——— Hero ——— */
.kobi-frontend .fe-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: var(--fe-gradient-dark);
    color: #fff;
}

.kobi-frontend .fe-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.25), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.2), transparent 35%);
    pointer-events: none;
}

.kobi-frontend .fe-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.kobi-frontend .fe-hero-content {
    position: relative;
    z-index: 1;
}

.kobi-frontend .fe-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.kobi-frontend .fe-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.kobi-frontend .fe-hero .lead {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 520px;
    line-height: 1.7;
}

.kobi-frontend .fe-hero-visual {
    position: relative;
    min-height: 320px;
}

.kobi-frontend .fe-float-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 12px;
    padding: 0.55rem 0.85rem 0.55rem 0.6rem;
    box-shadow: var(--fe-shadow-lg);
    color: var(--fe-text);
    animation: fe-float 6s ease-in-out infinite;
}

.kobi-frontend .fe-float-card-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fe-primary);
    font-size: 0.9rem;
}

.kobi-frontend .fe-float-card-icon-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.1));
    color: #16a34a;
}

.kobi-frontend .fe-float-card-text {
    line-height: 1.25;
}

.kobi-frontend .fe-float-card-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.kobi-frontend .fe-float-card-text span {
    display: block;
    font-size: 0.72rem;
    color: var(--fe-muted);
    white-space: nowrap;
}

.kobi-frontend .fe-float-card-1 { top: 8%; right: 0; animation-delay: 0s; }
.kobi-frontend .fe-float-card-2 { bottom: 12%; left: -2%; animation-delay: -2s; }

@keyframes fe-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.kobi-frontend .fe-stat-pill {
    text-align: center;
    padding: 1rem;
    border-radius: var(--fe-radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.kobi-frontend .fe-stat-pill strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.kobi-frontend .fe-stat-pill span {
    font-size: 0.8rem;
    opacity: 0.75;
}

/* ——— Sections ——— */
.kobi-frontend .fe-section {
    padding: 2rem 0;
}

.kobi-frontend .fe-section-tight-top {
    padding-top: 3rem;
}

.kobi-frontend .fe-section-alt {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.04) 0%, transparent 100%);
}

.kobi-frontend .fe-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--fe-primary);
    margin-bottom: 0.75rem;
}

.kobi-frontend .fe-section-title {
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.kobi-frontend .fe-section-desc {
    color: var(--fe-muted);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ——— Cards ——— */
.kobi-frontend .kobi-card {
    background: var(--fe-surface);
    border: 1px solid var(--fe-border);
    border-radius: var(--fe-radius);
    box-shadow: var(--fe-shadow);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.kobi-frontend .kobi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fe-shadow-lg);
    border-color: rgba(99, 102, 241, 0.2);
}

.kobi-frontend .template-card .template-thumb {
    height: 200px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fe-primary-light);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.kobi-frontend .template-thumb-wrap { position: relative; }

.kobi-frontend .template-demo-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    border-radius: 999px !important;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.35rem 0.8rem !important;
    background: #fff !important;
    border: none;
    color: var(--fe-primary-dark) !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.kobi-frontend .template-demo-badge:hover {
    background: #fff !important;
    color: var(--fe-primary) !important;
    transform: translateY(-1px);
}

.kobi-frontend .template-card .card-body {
    padding: 1.35rem;
}

.kobi-frontend .template-card .card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.kobi-frontend .template-price {
    font-weight: 800;
    font-size: 1.15rem;
    background: var(--fe-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kobi-frontend .template-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--fe-primary);
}

/* ——— Steps (How it works) ——— */
.kobi-frontend .fe-step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    border-radius: var(--fe-radius);
    background: var(--fe-surface);
    border: 1px solid var(--fe-border);
    transition: all 0.25s;
    position: relative;
}

.kobi-frontend .fe-step-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--fe-shadow);
}

.kobi-frontend .fe-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.08));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--fe-primary);
    margin-bottom: 1rem;
}

.kobi-frontend .fe-step-num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--fe-accent-soft);
    color: var(--fe-accent);
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ——— Package cards ——— */
.kobi-frontend .package-card {
    border: 2px solid var(--fe-border);
    border-radius: var(--fe-radius);
    background: var(--fe-surface);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s;
    height: 100%;
}

.kobi-frontend .fe-hosting-option {
    cursor: pointer;
}

.kobi-frontend .fe-hosting-card {
    position: relative;
    overflow: hidden;
}

.kobi-frontend .fe-hosting-card .fe-pkg-select-mark,
.kobi-frontend .fe-hosting-card .fe-pkg-selected-label {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.2s, transform 0.2s;
}

.kobi-frontend .fe-hosting-card .fe-pkg-select-mark {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--fe-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
    z-index: 2;
}

.kobi-frontend .fe-hosting-card .fe-pkg-selected-label {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--fe-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.kobi-frontend .fe-hosting-option:hover .fe-hosting-card:not(.selected) {
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.kobi-frontend .fe-hosting-card.selected {
    border-color: var(--fe-primary);
    border-width: 3px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, rgba(255, 255, 255, 1) 55%);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), 0 12px 32px rgba(99, 102, 241, 0.18);
    transform: translateY(-3px);
}

.kobi-frontend .fe-hosting-card.selected .fe-pkg-select-mark,
.kobi-frontend .fe-hosting-card.selected .fe-pkg-selected-label {
    opacity: 1;
    transform: scale(1);
}

/* Öne çıkan paket — seçimden bağımsız vurgu */
.kobi-frontend .package-card.recommended,
.kobi-frontend .fe-hosting-card.recommended {
    border-color: #c4b5fd;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.04) 0%, var(--fe-surface) 100%);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.12);
}

.kobi-frontend .fe-hosting-card.recommended::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    border-radius: var(--fe-radius) var(--fe-radius) 0 0;
}

.kobi-frontend .fe-hosting-card.recommended:not(.selected) {
    transform: translateY(-1px);
}

/* Öne çıkan + seçili */
.kobi-frontend .fe-hosting-card.recommended.selected {
    border-color: var(--fe-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18), 0 14px 36px rgba(99, 102, 241, 0.22);
}

/* Ana sayfa paket kartları (seçim yok) */
.kobi-frontend .package-card.recommended:not(.fe-hosting-card) {
    position: relative;
    overflow: hidden;
}

.kobi-frontend .package-card.recommended:not(.fe-hosting-card)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    border-radius: var(--fe-radius) var(--fe-radius) 0 0;
}

.kobi-frontend .package-card.selected {
    border-color: var(--fe-primary);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.06), rgba(255, 255, 255, 1));
    box-shadow: var(--fe-shadow-lg);
}

.kobi-frontend .package-card .pkg-price {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--fe-dark);
}

/* ——— Wizard ——— */
.kobi-frontend .fe-wizard {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: 640px;
    margin: 0 auto 2rem;
    padding: 0;
    list-style: none;
}

.kobi-frontend .fe-wizard-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.kobi-frontend .fe-wizard-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 3px;
    background: #e2e8f0;
    border-radius: 2px;
    z-index: 0;
}

.kobi-frontend .fe-wizard-step.is-done:not(:last-child)::after {
    background: linear-gradient(90deg, #22c55e, #86efac);
}

.kobi-frontend .fe-wizard-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

.kobi-frontend .fe-wizard-step.is-pending .fe-wizard-dot {
    background: #f1f5f9;
    color: var(--fe-muted);
    border: 2px solid #e2e8f0;
}

.kobi-frontend .fe-wizard-step.is-active .fe-wizard-dot {
    background: var(--fe-gradient);
    color: #fff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.kobi-frontend .fe-wizard-step.is-done .fe-wizard-dot {
    background: #22c55e;
    color: #fff;
}

.kobi-frontend .fe-wizard-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--fe-muted);
    display: block;
}

.kobi-frontend .fe-wizard-step.is-active .fe-wizard-label {
    color: var(--fe-primary);
    font-weight: 700;
}

/* ——— Category pills ——— */
.kobi-frontend .fe-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.kobi-frontend .fe-pill {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.kobi-frontend .fe-pill-inactive {
    background: var(--fe-surface);
    color: var(--fe-muted);
    border-color: var(--fe-border);
}

.kobi-frontend .fe-pill-inactive:hover {
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--fe-primary);
}

.kobi-frontend .fe-pill-active {
    background: var(--fe-gradient);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* ——— Page header ——— */
.kobi-frontend .fe-page-header {
    padding: 3rem 0 2rem;
    text-align: center;
}

.kobi-frontend .fe-page-header h1,
.kobi-frontend .fe-page-header h2 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ——— Detail page ——— */
.kobi-frontend .fe-detail-panel {
    padding: 1.5rem;
    border-radius: var(--fe-radius);
    background: var(--fe-surface);
    border: 1px solid var(--fe-border);
    box-shadow: var(--fe-shadow);
}

.kobi-frontend .fe-detail-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.kobi-frontend .fe-detail-price {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--fe-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kobi-frontend .fe-detail-actions .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.kobi-frontend .fe-features-box {
    border-radius: var(--fe-radius-sm);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(6, 182, 212, 0.04));
    border: 1px solid rgba(99, 102, 241, 0.12);
    padding: 1.25rem;
}

.kobi-frontend .fe-features-box h6 {
    font-size: 0.9rem;
}

.kobi-frontend .fe-features-box li {
    font-size: 0.875rem;
}

.kobi-frontend .fe-detail-content-title {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.kobi-frontend .fe-formatted-text {
    color: var(--fe-text);
    font-size: 0.9375rem;
    line-height: 1.75;
}

.kobi-frontend .fe-formatted-text p {
    margin-bottom: 1rem;
    color: var(--fe-muted);
}

.kobi-frontend .fe-formatted-text p:last-child {
    margin-bottom: 0;
}

/* ——— Auth ——— */
.kobi-frontend .fe-auth-wrap {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.kobi-frontend .fe-auth-card {
    border-radius: var(--fe-radius);
    border: 1px solid var(--fe-border);
    box-shadow: var(--fe-shadow-lg);
    overflow: hidden;
}

.kobi-frontend .fe-auth-card-header {
    background: var(--fe-gradient-dark);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.kobi-frontend .fe-auth-card-header h3 {
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.kobi-frontend .fe-auth-card-body {
    padding: 2rem;
    background: var(--fe-surface);
}

.kobi-frontend .fe-auth-card .form-control {
    border-radius: 10px;
    padding: 0.65rem 1rem;
    border-color: var(--fe-border);
}

.kobi-frontend .fe-auth-card .form-control:focus {
    border-color: var(--fe-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.kobi-frontend .fe-form-card .card-body {
    background: var(--fe-surface);
}

.kobi-frontend .fe-contact-form .form-control,
.kobi-frontend .fe-form-card .form-control {
    border-radius: 10px;
    padding: 0.65rem 1rem;
    border-color: var(--fe-border);
    font-size: 0.9375rem;
}

.kobi-frontend .fe-contact-form .form-control:focus,
.kobi-frontend .fe-form-card .form-control:focus {
    border-color: var(--fe-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.kobi-frontend .fe-contact-info-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.kobi-frontend .fe-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.kobi-frontend .fe-contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-radius: var(--fe-radius-sm);
    background: var(--fe-surface);
    border: 1px solid var(--fe-border);
    box-shadow: var(--fe-shadow);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.kobi-frontend .fe-contact-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: var(--fe-shadow-lg);
    transform: translateY(-1px);
}

.kobi-frontend .fe-contact-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    color: var(--fe-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.kobi-frontend .fe-contact-card-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 1.125rem;
    font-size: 1.05rem;
    line-height: 1;
}

.kobi-frontend .fe-contact-card-body {
    min-width: 0;
    flex: 1;
}

.kobi-frontend .fe-contact-card strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fe-primary);
    margin-bottom: 0.25rem;
}

.kobi-frontend .fe-contact-card a,
.kobi-frontend .fe-contact-card .fe-contact-card-body > span {
    display: block;
    color: var(--fe-text);
    font-size: 0.9375rem;
    line-height: 1.55;
    text-decoration: none;
}

.kobi-frontend .fe-contact-card a:hover {
    color: var(--fe-primary);
}

/* ——— Order / form cards ——— */
.kobi-frontend .fe-order-section {
    padding: 3rem 0 5rem;
}

.kobi-frontend .fe-form-card {
    border-radius: var(--fe-radius);
    border: 1px solid var(--fe-border);
    box-shadow: var(--fe-shadow);
    background: var(--fe-surface);
    overflow: hidden;
}

.kobi-frontend .fe-form-card .card-header {
    background: transparent;
    border-bottom: 1px solid var(--fe-border);
    font-weight: 700;
    padding: 1.1rem 1.5rem;
}

.kobi-frontend .fe-form-card .card-body {
    padding: 1.5rem;
}

.kobi-frontend .nav-tabs .nav-link {
    font-weight: 600;
    border-radius: 10px 10px 0 0;
    color: var(--fe-muted);
}

.kobi-frontend .nav-tabs .nav-link.active {
    color: var(--fe-primary);
    border-color: var(--fe-border) var(--fe-border) var(--fe-surface);
}

/* ——— CTA band ——— */
.kobi-frontend .fe-cta {
    padding: 4rem 0;
    background: var(--fe-gradient);
    color: #fff;
    border-radius: var(--fe-radius);
    margin: 0 1rem 5rem;
    max-width: calc(1320px - 2rem);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kobi-frontend .fe-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.2), transparent 50%);
}

.kobi-frontend .fe-cta .container {
    position: relative;
    z-index: 1;
}

.kobi-frontend .fe-cta h2 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.kobi-frontend .fe-cta p {
    font-size: 0.95rem;
}

/* ——— Footer ——— */
.kobi-frontend .fe-footer {
    position: relative;
    background: linear-gradient(165deg, #0b1120 0%, #0f172a 40%, #1e1b4b 100%);
    color: #94a3b8;
    padding: 3.5rem 0 2rem;
    overflow: hidden;
}

.kobi-frontend .fe-footer-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 40% at 15% 0%, rgba(99, 102, 241, 0.18), transparent 55%),
        radial-gradient(ellipse 40% 35% at 85% 100%, rgba(6, 182, 212, 0.1), transparent 50%);
}

.kobi-frontend .fe-footer-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 0;
    margin-bottom: 3rem;
    padding: 1.75rem 2rem;
    border-radius: var(--fe-radius);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.kobi-frontend .fe-footer-cta-text strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.kobi-frontend .fe-footer-cta-text span {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
}

.kobi-frontend .fe-footer-main {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kobi-frontend .fe-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: #fff !important;
    text-decoration: none;
    margin-bottom: 1rem;
}

.kobi-frontend .fe-footer-brand.fe-brand-logo {
    display: inline-flex;
    margin-bottom: 1rem;
}

.kobi-frontend .fe-footer-brand .fe-brand-img {
    height: 34px;
}

.kobi-frontend .fe-footer-brand:hover {
    color: #fff !important;
    opacity: 0.9;
}

.kobi-frontend .fe-footer-brand .fe-brand-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
}

.kobi-frontend .fe-footer-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    max-width: 320px;
}

.kobi-frontend .fe-footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.15rem;
}

.kobi-frontend .fe-footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.kobi-frontend .fe-footer a:hover {
    color: #fff;
}

.kobi-frontend .fe-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kobi-frontend .fe-footer-links li {
    margin-bottom: 0.65rem;
}

.kobi-frontend .fe-footer-links a {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.kobi-frontend .fe-footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--fe-primary-light);
    transition: width 0.2s;
    border-radius: 1px;
}

.kobi-frontend .fe-footer-links a:hover::before {
    width: 12px;
}

.kobi-frontend .fe-footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.55rem 0.9rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #e2e8f0 !important;
    transition: background 0.2s, border-color 0.2s;
}

.kobi-frontend .fe-footer-contact:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
    color: #fff !important;
}

.kobi-frontend .fe-footer-contact i {
    color: var(--fe-primary-light);
}

.kobi-frontend .fe-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.75rem;
    font-size: 0.82rem;
}

.kobi-frontend .fe-footer-copy {
    color: #64748b;
}

.kobi-frontend .fe-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.kobi-frontend .fe-footer-bottom-links a {
    color: #94a3b8;
    font-size: 0.82rem;
}

.kobi-frontend .fe-footer-bottom-links a:hover {
    color: #fff;
}

.kobi-frontend .fe-footer-dot {
    color: #475569;
    user-select: none;
}

.kobi-frontend .fe-footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.kobi-frontend .fe-footer-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
}

.kobi-frontend .fe-footer-trust span i {
    font-size: 0.68rem;
    color: var(--fe-primary-light);
}

.kobi-frontend .fe-footer-ns-hint {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0 0 0.65rem;
    line-height: 1.4;
}

.kobi-frontend .fe-footer-ns {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.kobi-frontend .fe-footer-ns-code {
    display: inline-block;
    font-size: 0.76rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.35rem;
    padding: 0.2rem 0.45rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.kobi-frontend .fe-footer-ns-code:hover,
.kobi-frontend .fe-footer-ns-code.is-copied {
    color: #fff;
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(129, 140, 248, 0.45);
}

@media (max-width: 767.98px) {
    .kobi-frontend .fe-footer {
        margin-top: 3.5rem;
        padding-top: 2rem;
    }

    .kobi-frontend .fe-footer-cta {
        margin-top: 0;
        padding: 1.5rem;
        text-align: center;
        justify-content: center;
    }

    .kobi-frontend .fe-footer-cta-text {
        width: 100%;
    }

    .kobi-frontend .fe-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ——— Toast notifications (fixed, no layout shift) ——— */
.fe-toast-stack {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: min(420px, calc(100vw - 2rem));
    pointer-events: none;
}

.fe-toast-stack--panel {
    top: 5.25rem;
}

.fe-toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(99, 102, 241, 0.04);
    backdrop-filter: blur(10px);
    animation: feToastIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--fe-toast-delay, 0ms);
}

.fe-toast.is-hiding {
    animation: feToastOut 0.28s ease forwards;
}

.fe-toast-icon {
    flex-shrink: 0;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.fe-toast-body {
    flex: 1;
    min-width: 0;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.45;
    color: #1e293b;
    padding-top: 0.15rem;
}

.fe-toast-close {
    flex-shrink: 0;
    border: 0;
    background: transparent;
    color: #94a3b8;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.fe-toast-close:hover {
    background: rgba(148, 163, 184, 0.15);
    color: #64748b;
}

.fe-toast--success .fe-toast-icon {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.fe-toast--error .fe-toast-icon {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.fe-toast--info .fe-toast-icon {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}

.fe-toast--warning .fe-toast-icon {
    background: rgba(245, 158, 11, 0.14);
    color: #d97706;
}

.fe-toast--success {
    border-left: 4px solid #10b981;
}

.fe-toast--error {
    border-left: 4px solid #ef4444;
}

.fe-toast--info {
    border-left: 4px solid #6366f1;
}

.fe-toast--warning {
    border-left: 4px solid #f59e0b;
}

@keyframes feToastIn {
    from {
        opacity: 0;
        transform: translateX(1.25rem) translateY(-0.25rem);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes feToastOut {
    to {
        opacity: 0;
        transform: translateX(1rem) scale(0.98);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fe-toast {
        animation: none;
    }

    .fe-toast.is-hiding {
        animation: none;
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .fe-toast-stack {
        left: 1rem;
        right: 1rem;
        width: auto;
    }

    .fe-toast-stack--frontend {
        top: 4.75rem;
    }
}

/* ——— Bootstrap misc overrides ——— */
.kobi-frontend .text-primary {
    color: var(--fe-primary) !important;
}

.kobi-frontend .badge.bg-secondary {
    background: rgba(99, 102, 241, 0.12) !important;
    color: var(--fe-primary);
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .kobi-frontend .fe-hero { padding: 3.5rem 0 3rem; }
    .kobi-frontend .fe-hero-visual { display: none; }
    .kobi-frontend .fe-wizard-label { display: none; }
    .kobi-frontend .template-thumb-overlay { display: none; }
}

/* ——— Scroll reveal ——— */
.kobi-frontend .fe-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.kobi-frontend .fe-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.kobi-frontend .fe-reveal-delay-1 { transition-delay: 0.05s; }
.kobi-frontend .fe-reveal-delay-2 { transition-delay: 0.12s; }
.kobi-frontend .fe-reveal-delay-3 { transition-delay: 0.19s; }
.kobi-frontend .fe-reveal-delay-4 { transition-delay: 0.26s; }

/* ——— Hero extras ——— */
.kobi-frontend .fe-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6);
    animation: fe-pulse 2s infinite;
}

@keyframes fe-pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.kobi-frontend .fe-browser-mockup {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.kobi-frontend .fe-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kobi-frontend .fe-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.kobi-frontend .fe-browser-bar span:first-child { background: #f87171; }
.kobi-frontend .fe-browser-bar span:nth-child(2) { background: #fbbf24; }
.kobi-frontend .fe-browser-bar span:nth-child(3) { background: #4ade80; }

.kobi-frontend .fe-browser-url {
    flex: 1;
    margin-left: 8px;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.kobi-frontend .fe-browser-screen {
    padding: 1.5rem;
    min-height: 220px;
}

.kobi-frontend .fe-browser-content {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    min-height: 180px;
}

.kobi-frontend .fe-browser-line {
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, #e0e7ff, #f1f5f9);
    margin-bottom: 12px;
}

.kobi-frontend .fe-browser-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 1rem;
}

.kobi-frontend .fe-browser-blocks div {
    height: 64px;
    border-radius: 8px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}

/* ——— Highlights (below hero) ——— */
.kobi-frontend .fe-highlights {
    padding: 3.5rem 0;
    background: var(--fe-surface);
    border-bottom: 1px solid var(--fe-border);
}

.kobi-frontend .fe-highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.kobi-frontend .fe-highlights-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--fe-radius);
    border: 1px solid var(--fe-border);
    background: var(--fe-bg);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.kobi-frontend .fe-highlights-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--fe-shadow-lg);
    border-color: rgba(99, 102, 241, 0.25);
}

.kobi-frontend .fe-highlights-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--fe-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.28);
}

.kobi-frontend .fe-highlights-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fe-dark);
    margin-bottom: 0.5rem;
}

.kobi-frontend .fe-highlights-item span {
    display: block;
    font-size: 0.92rem;
    color: var(--fe-muted);
    line-height: 1.55;
    max-width: 240px;
}

@media (min-width: 768px) {
    .kobi-frontend .fe-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .kobi-frontend .fe-highlights-item {
        padding: 2.25rem 1.75rem;
    }
}

@media (min-width: 992px) {
    .kobi-frontend .fe-highlights {
        padding: 4rem 0;
    }

    .kobi-frontend .fe-highlights-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .kobi-frontend .fe-highlights-item {
        padding: 2.5rem 1.5rem;
    }

    .kobi-frontend .fe-highlights-icon {
        width: 72px;
        height: 72px;
        font-size: 1.65rem;
    }
}

/* ——— Page banner ——— */
.kobi-frontend .fe-page-banner {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.07) 0%, transparent 100%);
    border-bottom: 1px solid var(--fe-border);
}

.kobi-frontend .fe-page-banner-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.kobi-frontend .fe-page-banner-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--fe-primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.kobi-frontend .fe-page-banner-title {
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.kobi-frontend .fe-page-banner-desc {
    color: var(--fe-muted);
    font-size: 0.95rem;
}

/* ——— Breadcrumb ——— */
.kobi-frontend .fe-breadcrumb-bar {
    padding: 1rem 0;
    background: var(--fe-surface);
    border-bottom: 1px solid var(--fe-border);
}

.kobi-frontend .fe-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    font-size: 0.85rem;
}

.kobi-frontend .fe-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.35rem;
    color: #cbd5e1;
}

.kobi-frontend .fe-breadcrumb a {
    color: var(--fe-muted);
    text-decoration: none;
}

.kobi-frontend .fe-breadcrumb a:hover {
    color: var(--fe-primary);
}

.kobi-frontend .fe-breadcrumb li:last-child {
    color: var(--fe-text);
    font-weight: 600;
}

/* ——— Template card enhancements ——— */
.kobi-frontend .template-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.25s;
}

.kobi-frontend .template-card:hover .template-thumb-overlay {
    opacity: 1;
}

.kobi-frontend .template-featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.kobi-frontend .template-card-footer {
    border-top: 1px solid var(--fe-border);
    padding-top: 1rem;
    margin-top: 0.25rem;
}

/* ——— Package badge ——— */
.kobi-frontend .fe-pkg-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: var(--fe-gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* ——— FAQ ——— */
.kobi-frontend .fe-faq-item {
    border: 1px solid var(--fe-border);
    border-radius: var(--fe-radius-sm) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--fe-surface);
}

.kobi-frontend .fe-faq .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.1rem 1.25rem;
    background: transparent;
    box-shadow: none !important;
}

.kobi-frontend .fe-faq .accordion-button:not(.collapsed) {
    color: var(--fe-primary);
    background: rgba(99, 102, 241, 0.05);
}

.kobi-frontend .fe-faq .accordion-body {
    padding: 0 1.25rem 1.15rem;
    line-height: 1.65;
}

/* ——— Empty state ——— */
.kobi-frontend .fe-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--fe-primary);
    margin-bottom: 1rem;
}

/* ——— Blog ——— */
.kobi-frontend .fe-blog-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kobi-frontend .fe-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12);
}

.kobi-frontend .fe-blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.kobi-frontend .fe-blog-card-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(99, 102, 241, 0.06);
}

.kobi-frontend .fe-blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.kobi-frontend .fe-blog-card:hover .fe-blog-card-thumb img {
    transform: scale(1.04);
}

.kobi-frontend .fe-blog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 180px;
    font-size: 2.5rem;
    color: var(--fe-primary);
    opacity: 0.45;
}

.kobi-frontend .fe-blog-card-body {
    padding: 1.35rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kobi-frontend .fe-blog-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fe-primary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.kobi-frontend .fe-blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0.5rem 0 0.75rem;
    color: var(--fe-text);
}

.kobi-frontend .fe-blog-card-excerpt {
    font-size: 0.925rem;
    color: var(--fe-muted);
    line-height: 1.6;
    flex: 1;
}

.kobi-frontend .fe-blog-read-more {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fe-primary);
}

.kobi-frontend .fe-blog-article-title {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--fe-text);
}

.kobi-frontend .fe-blog-article-hero {
    border-radius: var(--fe-radius-lg);
    overflow: hidden;
}

.kobi-frontend .fe-blog-article-hero img {
    display: block;
    border-radius: var(--fe-radius-lg);
}

.kobi-frontend .fe-blog-content {
    line-height: 1.75;
    color: var(--fe-text);
}

.kobi-frontend .fe-blog-content h2,
.kobi-frontend .fe-blog-content h3 {
    font-weight: 700;
    margin: 1.75rem 0 0.85rem;
    color: var(--fe-text);
}

.kobi-frontend .fe-blog-content h2 { font-size: 1.45rem; }
.kobi-frontend .fe-blog-content h3 { font-size: 1.2rem; }

.kobi-frontend .fe-blog-content p {
    margin-bottom: 1rem;
}

.kobi-frontend .fe-blog-content ul,
.kobi-frontend .fe-blog-content ol {
    margin-bottom: 1rem;
    padding-left: 1.35rem;
}

.kobi-frontend .fe-blog-content li {
    margin-bottom: 0.35rem;
}

.kobi-frontend .fe-blog-content a {
    color: var(--fe-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.kobi-frontend .fe-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--fe-radius);
    margin: 1rem 0;
}

.kobi-frontend .fe-blog-sidebar-title {
    color: var(--fe-text);
}

.kobi-frontend .fe-blog-sidebar-list li + li {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.kobi-frontend .fe-blog-sidebar-list a {
    font-weight: 600;
    color: var(--fe-text);
    text-decoration: none;
}

.kobi-frontend .fe-blog-sidebar-list a:hover {
    color: var(--fe-primary);
}

.kobi-frontend .fe-blog-pagination {
    padding-top: 0.5rem;
}

.kobi-frontend .fe-pagination-wrap {
    text-align: center;
}

.kobi-frontend .fe-pagination-summary {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--fe-muted);
}

.kobi-frontend .fe-pagination-summary strong {
    color: var(--fe-text);
}

.kobi-frontend .fe-blog-list-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(99, 102, 241, 0.06);
    border-radius: var(--fe-radius);
    font-size: 0.875rem;
    color: var(--fe-muted);
}

.kobi-frontend .fe-pagination {
    flex-wrap: wrap;
    gap: 0.35rem;
}

.kobi-frontend .fe-pagination .page-link {
    border-radius: 999px;
    min-width: 2.5rem;
    text-align: center;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--fe-primary);
    background: #fff;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.kobi-frontend .fe-pagination .page-item.active .page-link {
    background: var(--fe-primary);
    border-color: var(--fe-primary);
    color: #fff;
}

.kobi-frontend .fe-pagination .page-link:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.35);
    color: var(--fe-primary);
}

.kobi-frontend .fe-pagination .page-item.disabled .page-link {
    opacity: 0.45;
    pointer-events: none;
    background: #f8fafc;
}

.kobi-frontend .fe-pagination .fe-page-nav .page-link {
    min-width: auto;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .kobi-frontend .fe-pagination .fe-page-nav .page-link {
        font-size: 0;
    }

    .kobi-frontend .fe-pagination .fe-page-nav .page-link i {
        font-size: 0.875rem;
        margin: 0 !important;
    }
}

/* ——— Referanslar ——— */
.kobi-frontend .fe-ref-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kobi-frontend .fe-ref-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.12);
}

.kobi-frontend .fe-ref-thumb-wrap {
    position: relative;
}

.kobi-frontend .fe-ref-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(99, 102, 241, 0.06);
    position: relative;
}

.kobi-frontend .fe-ref-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.kobi-frontend .fe-ref-card:hover .fe-ref-thumb img {
    transform: scale(1.04);
}

.kobi-frontend .fe-ref-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 160px;
    font-size: 2.5rem;
    color: var(--fe-primary);
    opacity: 0.4;
}

.kobi-frontend .fe-ref-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.kobi-frontend .fe-ref-card:hover .fe-ref-overlay {
    opacity: 1;
}

.kobi-frontend .fe-ref-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.65rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fe-primary);
    z-index: 1;
}

.kobi-frontend .fe-ref-body {
    padding: 1.25rem 1.35rem 1.4rem;
}

.kobi-frontend .fe-ref-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.35rem;
    color: var(--fe-text);
}

.kobi-frontend .fe-ref-client {
    font-size: 0.85rem;
    color: var(--fe-muted);
}

.kobi-frontend .fe-ref-desc {
    font-size: 0.9rem;
    color: var(--fe-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ——— Smooth scroll ——— */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .kobi-frontend .fe-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .kobi-frontend .fe-pulse-dot { animation: none; }
    .kobi-frontend .fe-float-card { animation: none; }
}
