/* ============================================================
   Ankara Kreatif - Public CSS
   Theme: Purple / Black, modern & sleek
   ============================================================ */

:root {
    --ak-navy: #000000;
    --ak-navy-light: #0a0a0a;
    --ak-blue: #8b5cf6;
    --ak-blue-light: #a78bfa;
    --ak-purple: #7c3aed;
    --ak-purple-light: #a78bfa;
    --ak-accent: #7c3aed;
    --ak-gradient: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a78bfa 100%);
    --ak-gradient-dark: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a0a2e 100%);
    --ak-body-bg: #faf5ff;
    --ak-text: #0f172a;
    --ak-text-muted: #64748b;
    --ak-border: #ede9fe;
    --ak-card-bg: #ffffff;
    --ak-radius: 12px;
    --ak-radius-sm: 8px;
    --ak-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.03);
    --ak-shadow-lg: 0 10px 30px rgba(139, 92, 246, 0.08), 0 3px 10px rgba(0, 0, 0, 0.04);
    --ak-transition: all 0.3s ease;
}
[data-bs-theme="dark"] {
    --ak-body-bg: #000000;
    --ak-text: #e2e8f0;
    --ak-text-muted: #94a3b8;
    --ak-border: #1e293b;
    --ak-card-bg: #0a0a0a;
}

/* ---------- Base ---------- */

body.ak-public {
    background-color: var(--ak-body-bg);
    color: var(--ak-text);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

.ak-brand-accent {
    color: var(--ak-blue-light);
    font-weight: 700;
}

.ak-gradient-text {
    background: var(--ak-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-ak-primary {
    background: var(--ak-gradient);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: var(--ak-radius-sm);
    transition: var(--ak-transition);
}

.btn-ak-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

/* ---------- Top info bar ---------- */

.ak-topbar-info {
    background: var(--ak-navy);
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ak-topbar-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ak-topbar-contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--ak-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.ak-topbar-contact a:hover {
    color: #fff;
}

.ak-topbar-actions-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ak-whatsapp {
    color: #25d366 !important;
    text-decoration: none;
    font-weight: 500;
}

.ak-topbar-social {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ak-topbar-social a {
    color: #64748b;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--ak-transition);
}

.ak-topbar-social a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* ---------- Navbar ---------- */

.ak-navbar {
    background: #fff;
    box-shadow: 0 1px 0 var(--ak-border);
    padding: 0;
    transition: var(--ak-transition);
}

.ak-navbar.scrolled {
    box-shadow: var(--ak-shadow);
}

[data-bs-theme="dark"] .ak-navbar {
    background: var(--ak-navy-light);
    box-shadow: 0 1px 0 var(--ak-border);
}

[data-bs-theme="dark"] .ak-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ak-brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ak-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 0;
    letter-spacing: -0.3px;
}

[data-bs-theme="dark"] .ak-brand {
    color: #fff;
}

.ak-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--ak-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

/* Nav links */

.ak-navbar .navbar-nav {
    padding: 0;
    gap: 0.15rem;
}

.ak-navbar .nav-link {
    color: var(--ak-text);
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--ak-transition);
    position: relative;
    padding: 0.62rem 0.82rem;
    margin: 0.48rem 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ak-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--ak-gradient);
    border-radius: 2px;
    transition: all 0.25s ease;
    transform: translateX(-50%);
}

.ak-navbar .nav-link:hover::after,
.ak-navbar .nav-link.active::after {
    width: calc(100% - 1.7rem);
}

.ak-navbar .nav-link:hover,
.ak-navbar .nav-link.active {
    color: var(--ak-blue);
    background: rgba(139, 92, 246, 0.06);
}

/* Dropdown toggle arrow */
.ak-navbar .dropdown-toggle::after {
    margin-left: 0.2rem;
    font-size: 0.7rem;
    opacity: 0.6;
}

/* Dropdown menus */
.ak-megamenu-sm {
    min-width: 265px;
    padding: 0.65rem;
    border: none;
    box-shadow: var(--ak-shadow-lg);
    border-radius: var(--ak-radius);
    border: 1px solid var(--ak-border);
    animation: ak-dropdown-in 0.2s ease;
}

@keyframes ak-dropdown-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ak-megamenu-sm .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ak-text);
    border-radius: var(--ak-radius-sm);
    transition: var(--ak-transition);
    text-decoration: none;
}

.ak-megamenu-sm .dropdown-item i {
    font-size: 1rem;
    color: var(--ak-blue);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.ak-megamenu-sm .dropdown-item span { display: grid; gap: .08rem; }
.ak-megamenu-sm .dropdown-item strong { font-size: .88rem; font-weight: 750; }
.ak-megamenu-sm .dropdown-item small { color: var(--ak-text-muted); font-size: .7rem; font-weight: 500; }
.ak-megamenu-sm .dropdown-divider { margin: .4rem .25rem; border-color: var(--ak-border); }
.ak-megamenu-sm .ak-menu-featured { padding-block: .7rem; background: linear-gradient(135deg,rgba(124,58,237,.09),rgba(59,130,246,.06)); }
.ak-megamenu-sm .ak-menu-featured i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--ak-gradient); }

.ak-megamenu-sm .dropdown-item:hover,
.ak-megamenu-sm .dropdown-item:focus {
    background: rgba(139, 92, 246, 0.06);
    color: var(--ak-blue);
}

[data-bs-theme="dark"] .ak-megamenu-sm .dropdown-item:hover,
[data-bs-theme="dark"] .ak-megamenu-sm .dropdown-item:focus {
    background: rgba(167, 139, 250, 0.12);
}

/* Nav actions (theme toggle + CTA) */

.ak-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ak-theme-toggle {
    background: none;
    border: 1px solid var(--ak-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ak-text-muted);
    transition: var(--ak-transition);
    font-size: 0.9rem;
}

.ak-theme-toggle:hover {
    border-color: var(--ak-blue);
    color: var(--ak-blue);
    background: rgba(139, 92, 246, 0.04);
}

/* Navbar toggler (mobile) */

.ak-navbar .navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.25rem;
}

.ak-navbar .navbar-toggler:focus {
    box-shadow: none;
}

/* ---------- Hero ---------- */

.ak-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.ak-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--ak-gradient-dark);
    z-index: 0;
}

.ak-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ak-gradient);
    opacity: 0.85;
}

.ak-hero .container {
    position: relative;
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

.ak-badge-hero {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.ak-hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.ak-hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ak-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ak-hero-stats {
    display: flex;
    gap: 2.5rem;
}

.ak-stat-num {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
}

.ak-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.ak-hero-visual {
    text-align: center;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.12);
}

/* ---------- Sections ---------- */

.ak-section {
    padding: 4rem 0;
}

.ak-section-muted {
    background: var(--ak-body-bg);
}

.ak-section-tag {
    display: inline-block;
    color: var(--ak-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.ak-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ak-text);
    margin-bottom: 0.75rem;
}

.ak-section-desc {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Service cards ---------- */

.ak-service-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 2rem;
    height: 100%;
    transition: var(--ak-transition);
}

.ak-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak-shadow-lg);
    border-color: var(--ak-blue);
}

.ak-service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--ak-radius-sm);
    background: var(--ak-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.ak-service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ak-service-card p {
    color: var(--ak-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ---------- Coming soon banner ---------- */

.ak-coming-soon-banner {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 2.5rem;
    display: inline-block;
}

.ak-coming-soon-banner i {
    font-size: 3rem;
    color: var(--ak-blue);
    display: block;
    margin-bottom: 1rem;
}

.ak-coming-soon-banner h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ak-coming-soon-banner p {
    color: var(--ak-text-muted);
    margin: 0;
}

/* ---------- Coming soon page ---------- */

.ak-coming-soon {
    padding: 6rem 0;
}

.ak-coming-soon-icon {
    font-size: 5rem;
    color: var(--ak-blue);
}

.ak-coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.ak-coming-soon-desc {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ---------- CTA ---------- */

.ak-cta {
    background: var(--ak-gradient);
    padding: 3.5rem 0;
    color: #fff;
}

.ak-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ak-cta-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ak-cta-text p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.ak-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.ak-footer {
    background: var(--ak-navy);
    color: #cbd5e1;
    padding-top: 0;
}

.ak-footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ak-footer-brand i {
    color: var(--ak-blue-light);
}

.ak-footer-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.ak-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    text-decoration: none;
    margin-right: 0.5rem;
    transition: var(--ak-transition);
}

.ak-footer-social a:hover {
    background: var(--ak-blue);
    color: #fff;
}

.ak-footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ak-footer-links,
.ak-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ak-footer-links li {
    margin-bottom: 0.5rem;
}

.ak-footer-links a,
.ak-footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--ak-transition);
}

.ak-footer-links a:hover,
.ak-footer-contact a:hover {
    color: var(--ak-blue-light);
}

.ak-footer-contact li {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ak-footer-contact li i {
    color: var(--ak-blue-light);
}

.ak-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    font-size: 0.85rem;
    color: #64748b;
}

.ak-footer-legal {
    display: flex;
    gap: 1.25rem;
}

.ak-footer-legal a {
    color: #64748b;
    text-decoration: none;
    transition: var(--ak-transition);
}

.ak-footer-legal a:hover {
    color: #cbd5e1;
}

/* ---------- Cookie bar ---------- */

.ak-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ak-navy);
    color: #cbd5e1;
    padding: 1rem 0;
    z-index: 1050;
    border-top: 2px solid var(--ak-blue);
}

.ak-cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ak-cookie-content span {
    font-size: 0.9rem;
}

/* ---------- Auth ---------- */

.ak-auth-body {
    min-height: 100vh;
    margin: 0;
    background: #09060f;
    color: var(--ak-text);
}

.ak-auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
}

.ak-auth-visual {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 500px at 10% 10%, rgba(167, 139, 250, 0.28), transparent 55%),
        radial-gradient(700px 400px at 90% 90%, rgba(124, 58, 237, 0.35), transparent 50%),
        linear-gradient(160deg, #12081d 0%, #09060f 55%, #1a0a2e 100%);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 3.5rem;
}

.ak-auth-visual::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    right: -60px;
    bottom: -40px;
    transform: rotate(24deg);
}

.ak-auth-visual-inner {
    position: relative;
    z-index: 1;
    max-width: 460px;
}

.ak-auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.ak-auth-visual h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.ak-auth-visual p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.ak-auth-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.ak-auth-points li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

.ak-auth-points i {
    color: #c4b5fd;
    font-size: 1.15rem;
}

.ak-auth-main {
    background: var(--ak-body-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
}

.ak-auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: 24px;
    padding: 2.1rem 2rem 1.6rem;
    box-shadow: 0 24px 60px rgba(91, 33, 182, 0.08);
}

.ak-auth-logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ak-text);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.ak-auth-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.35);
}

.ak-auth-title {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
}

.ak-auth-subtitle {
    color: var(--ak-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.ak-auth-field {
    margin-bottom: 1rem;
}

.ak-auth-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.ak-auth-input {
    position: relative;
}

.ak-auth-input > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ak-blue);
}

.ak-auth-input input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--ak-border);
    border-radius: 14px;
    background: var(--ak-card-bg);
    color: var(--ak-text);
    padding: 0.7rem 2.6rem 0.7rem 2.4rem;
    outline: none;
    font-size: 0.95rem;
}

.ak-auth-input input:focus {
    border-color: var(--ak-blue);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.ak-auth-eye {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--ak-text-muted);
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.ak-auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.4rem 0 1.2rem;
}

.ak-auth-remember {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: var(--ak-text-muted);
    cursor: pointer;
}

.ak-auth-remember input {
    accent-color: #7c3aed;
}

.ak-auth-submit {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ak-auth-footer {
    text-align: center;
    margin-top: 1.35rem;
}

.ak-auth-footer a {
    color: var(--ak-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.ak-auth-footer a:hover {
    color: var(--ak-blue);
}

@media (max-width: 991.98px) {
    .ak-auth-shell {
        grid-template-columns: 1fr;
    }

    .ak-auth-visual {
        display: none;
    }

    .ak-auth-main {
        min-height: 100vh;
        background:
            radial-gradient(700px 280px at 50% -10%, rgba(124, 58, 237, 0.18), transparent 60%),
            var(--ak-body-bg);
    }
}

/* ---------- Breadcrumb ---------- */

.ak-breadcrumb-wrapper {
    background: var(--ak-gradient-dark);
    padding: 0.85rem 0 0;
    border-bottom: none;
}

.ak-breadcrumb-wrapper .breadcrumb {
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.ak-breadcrumb-wrapper .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
}

.ak-breadcrumb-wrapper .breadcrumb-item a:hover {
    color: #fff;
}

.ak-breadcrumb-wrapper .breadcrumb-item.active {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

.ak-breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
    content: '\203A';
    font-weight: 600;
}

/* ---------- Responsive ---------- */

/* Tablet (992px altı) */
@media (max-width: 991.98px) {
    /* Navbar mobil menü */
    .ak-navbar .navbar-collapse {
        background: #fff;
        border-top: 1px solid var(--ak-border);
        margin-top: 0.5rem;
        padding: 0.75rem 1rem;
        border-radius: 0 0 var(--ak-radius) var(--ak-radius);
        box-shadow: var(--ak-shadow-lg);
    }

    [data-bs-theme="dark"] .ak-navbar .navbar-collapse {
        background: var(--ak-navy-light);
    }

    .ak-navbar .nav-link {
        padding: 0.7rem 0;
        font-size: 0.95rem;
    }

    .ak-navbar .nav-link::after {
        display: none;
    }

    .ak-megamenu-sm {
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--ak-border);
        margin-left: 0.75rem;
        padding: 0.25rem 0;
    }

    .ak-megamenu-sm .dropdown-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.88rem;
    }

    .ak-nav-actions {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--ak-border);
        justify-content: space-between;
    }

    /* Hero section tablet */
    .ak-hero-title {
        font-size: 2.25rem;
    }

    .ak-hero-stats {
        gap: 1.5rem;
    }

    .ak-stat-num {
        font-size: 1.75rem;
    }

    /* Footer tablet */
    .ak-footer .row > div {
        margin-bottom: 1rem;
    }

    .ak-footer-brand {
        font-size: 1.25rem;
    }

    /* CTA tablet */
    .ak-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .ak-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .ak-cta-actions .btn {
        width: 100%;
    }

    /* İç sayfa hero */
    .ak-page-hero {
        padding: 2.5rem 0 2rem;
    }

    .ak-page-hero-title {
        font-size: 1.75rem;
    }

    /* Kartlar tablet */
    .ak-service-card,
    .ak-sector-card,
    .ak-team-card,
    .ak-testimonial-card {
        padding: 1.5rem 1rem;
    }

    /* Formlar tablet */
    .ak-contact-form-wrapper,
    .ak-quote-form-wrapper {
        padding: 1.5rem;
    }
}

/* Mobil büyük (768px altı) */
@media (max-width: 767.98px) {
    /* Hero mobil */
    .ak-hero {
        padding: 3rem 0;
    }

    .ak-hero-title {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .ak-hero-desc {
        font-size: 1rem;
    }

    .ak-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        width: 100%;
    }

    .ak-stat {
        text-align: center;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        padding: 0.85rem 0.4rem;
    }

    /* İç sayfa hero mobil */
    .ak-page-hero {
        padding: 2rem 0 1.5rem;
    }

    .ak-page-hero-title {
        font-size: 1.5rem;
    }

    .ak-page-hero-desc {
        font-size: 0.92rem;
    }

    /* Kartlar mobil - tek sütun */
    .row.g-4 > [class*="col-"] {
        margin-bottom: 0.5rem;
    }

    .ak-service-card,
    .ak-sector-card,
    .ak-theme-card,
    .ak-ref-card,
    .ak-blog-card,
    .ak-pricing-card {
        margin-bottom: 1rem;
    }

    /* Fiyat kartları mobil */
    .ak-pricing-amount {
        font-size: 1.8rem;
    }

    .ak-pricing-card {
        padding: 1.5rem 1rem;
    }

    /* İş ilanları mobil */
    .ak-job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .ak-job-meta {
        flex-direction: column;
        gap: 0.25rem;
    }

    /* Süreç timeline mobil */
    .ak-process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ak-process-step {
        padding: 1rem;
    }

    /* İstatistik kartları mobil */
    .ak-counter {
        padding: 1rem;
    }

    .ak-counter-num {
        font-size: 2rem;
    }

    .ak-counter-label {
        font-size: 0.82rem;
    }

    /* MVV kartları mobil */
    .ak-mvv-card {
        padding: 1.5rem 1rem;
    }

    /* Hakkımızda görsel mobil */
    .ak-about-visual {
        height: 200px;
        font-size: 3rem;
    }

    /* Footer mobil */
    .ak-footer {
        text-align: center;
    }

    .ak-footer-brand {
        justify-content: center;
        font-size: 1.15rem;
    }

    .ak-footer-social {
        justify-content: center;
    }

    .ak-footer-title {
        margin-top: 1rem;
        font-size: 1rem;
    }

    .ak-footer-links,
    .ak-footer-contact {
        text-align: center;
    }

    .ak-footer-bottom {
        text-align: center;
    }

    .ak-footer-bottom > div {
        flex-direction: column;
        gap: 0.75rem;
    }

    .ak-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    /* CTA mobil */
    .ak-cta {
        padding: 2.5rem 0;
    }

    .ak-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .ak-cta h2 {
        font-size: 1.35rem;
    }

    .ak-cta p {
        font-size: 0.92rem;
    }

    .ak-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .ak-cta-actions .btn {
        width: 100%;
        font-size: 0.95rem;
    }

    /* Formlar mobil */
    .ak-contact-form-wrapper,
    .ak-quote-form-wrapper {
        padding: 1.25rem;
    }

    .ak-contact-form-wrapper h3,
    .ak-quote-form-wrapper h3 {
        font-size: 1.15rem;
    }

    .form-label {
        font-size: 0.88rem;
    }

    .form-control,
    .form-select {
        font-size: 0.92rem;
    }

    /* Harita placeholder mobil */
    .ak-map-placeholder {
        height: 180px;
        font-size: 0.85rem;
    }

    /* Yasal sayfalar mobil */
    .ak-legal-content h2 {
        font-size: 1.05rem;
        margin-top: 1.5rem;
    }

    .ak-legal-content p {
        font-size: 0.9rem;
    }

    /* Cookie bar mobil */
    .ak-cookie-bar {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }

    .ak-cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .ak-cookie-actions .btn {
        width: 100%;
    }

    /* Breadcrumb mobil */
    .ak-breadcrumb {
        font-size: 0.82rem;
        padding: 0.65rem 0;
    }

    .ak-breadcrumb-list {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    /* Section başlıkları mobil */
    .ak-section-title {
        font-size: 1.35rem;
    }

    .ak-section-tag {
        font-size: 0.7rem;
    }
}

/* Mobil küçük (576px altı) */
@media (max-width: 575.98px) {
    /* Hero çok küçük mobil */
    .ak-hero-title {
        font-size: 1.5rem;
    }

    .ak-hero-desc {
        font-size: 0.92rem;
    }

    .ak-hero-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Navbar brand mobil */
    .ak-brand {
        font-size: 1.1rem;
    }

    .ak-brand-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    /* Kartlar çok küçük mobil */
    .ak-service-card h3,
    .ak-sector-card h3,
    .ak-theme-card h3,
    .ak-blog-card h3 {
        font-size: 1rem;
    }

    .ak-service-card p,
    .ak-sector-card p,
    .ak-blog-card p {
        font-size: 0.85rem;
    }

    /* Team kartları mobil */
    .ak-team-card h4 {
        font-size: 0.88rem;
    }

    .ak-team-role {
        font-size: 0.75rem;
    }

    .ak-team-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    /* Testimonial mobil */
    .ak-testimonial-text {
        font-size: 0.88rem;
    }

    .ak-testimonial-avatar {
        width: 36px;
        height: 36px;
    }

    /* İstatistikler mobil */
    .ak-counter-num {
        font-size: 1.75rem;
    }

    /* Footer çok küçük mobil */
    .ak-footer .row > div {
        padding: 0.5rem 0;
    }

    .ak-footer-desc {
        font-size: 0.88rem;
    }

    .ak-footer-title {
        font-size: 0.95rem;
    }

    .ak-footer-links li a,
    .ak-footer-contact li {
        font-size: 0.85rem;
    }

    /* CTA çok küçük mobil */
    .ak-cta h2 {
        font-size: 1.2rem;
    }

    .ak-cta p {
        font-size: 0.88rem;
    }

    /* Button mobil */
    .btn-ak-primary,
    .btn-outline-primary {
        font-size: 0.88rem;
        padding: 0.5rem 1rem;
    }

    /* Dropdown mobil */
    .ak-megamenu-sm .dropdown-item {
        font-size: 0.85rem;
        padding: 0.45rem 0.65rem;
    }

    .ak-megamenu-sm .dropdown-item i {
        font-size: 0.9rem;
    }

    /* Pricing mobil */
    .ak-pricing-amount {
        font-size: 1.6rem;
    }

    .ak-pricing-features li {
        font-size: 0.82rem;
    }

    /* FAQ mobil */
    #faqAccordion .accordion-button {
        font-size: 0.88rem;
        padding: 0.85rem 1rem;
    }

    .accordion-body {
        font-size: 0.88rem;
        padding: 0.85rem 1rem;
    }

    /* Contact info mobil */
    .ak-contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .ak-contact-icon {
        width: 38px;
        height: 38px;
    }

    /* Theme preview mobil */
    .ak-theme-preview {
        height: 140px;
        font-size: 2.5rem;
    }

    /* Blog thumb mobil */
    .ak-blog-thumb {
        height: 130px;
        font-size: 2rem;
    }

    /* Reference preview mobil */
    .ak-ref-preview {
        height: 110px;
        font-size: 2rem;
    }

    /* Tech card mobil */
    .ak-tech-card {
        padding: 1rem 0.75rem;
    }

    .ak-tech-icon {
        font-size: 1.5rem;
    }

    .ak-tech-card h4 {
        font-size: 0.82rem;
    }

    /* Partner card mobil */
    .ak-partner-card {
        padding: 1.5rem 0.75rem;
    }

    .ak-partner-icon {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    /* Benefit items mobil */
    .ak-benefit-item {
        padding: 1rem 0.5rem;
    }

    .ak-benefit-item i {
        font-size: 1.25rem;
    }

    .ak-benefit-item span {
        font-size: 0.78rem;
    }
}

/* ============================================================
   Inner Page Components
   ============================================================ */

/* ---------- Page Hero ---------- */
.ak-page-hero {
    background: var(--ak-gradient-dark);
    padding: 3rem 0 2.5rem;
}

.ak-page-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.ak-page-hero-desc {
    color: rgba(255,255,255,0.7) !important;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

[data-bs-theme="dark"] .ak-page-hero {
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    border-bottom: 1px solid var(--ak-border);
}

/* ---------- Section helpers ---------- */
.ak-section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ak-blue);
    margin-bottom: 0.5rem;
}

.ak-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.ak-section-muted {
    background: var(--ak-body-bg);
}

/* ---------- About Visual ---------- */
.ak-about-visual {
    background: var(--ak-gradient);
    border-radius: var(--ak-radius);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 5rem;
}

/* ---------- MVV Cards ---------- */
.ak-mvv-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: var(--ak-transition);
}

.ak-mvv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak-shadow-lg);
}

.ak-mvv-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed20, #8b5cf620);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--ak-blue);
}

/* ---------- Counters ---------- */
.ak-counter {
    padding: 1.5rem;
}

.ak-counter-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--ak-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ak-counter-label {
    font-size: 0.9rem;
    color: var(--ak-text-muted);
    font-weight: 500;
}

/* ---------- Service Cards ---------- */
.ak-service-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: var(--ak-transition);
}

.ak-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak-shadow-lg);
    border-color: var(--ak-blue);
}

.ak-service-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed15, #8b5cf615);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--ak-blue);
    margin-bottom: 1rem;
}

.ak-service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ak-service-card p {
    font-size: 0.9rem;
}

.ak-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ak-blue);
    text-decoration: none;
    transition: var(--ak-transition);
}

.ak-card-link:hover {
    color: var(--ak-blue-light);
    gap: 0.6rem;
}

/* ---------- Team Cards ---------- */
.ak-team-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 2rem 1rem;
    transition: var(--ak-transition);
}

.ak-team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak-shadow-lg);
}

.ak-team-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--ak-gradient);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem; color: #fff;
}

.ak-team-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.ak-team-role {
    font-size: 0.8rem;
    color: var(--ak-text-muted);
}

.ak-team-social {
    margin-top: 0.75rem;
    display: flex; gap: 0.5rem; justify-content: center;
}

.ak-team-social a {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--ak-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--ak-text-muted);
    font-size: 0.85rem;
    transition: var(--ak-transition);
}

.ak-team-social a:hover {
    background: var(--ak-blue);
    color: #fff;
    border-color: var(--ak-blue);
}

/* ---------- Process Timeline ---------- */
.ak-process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.ak-process-step {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.ak-process-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--ak-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.ak-process-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed15, #8b5cf615);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem; color: var(--ak-blue);
}

.ak-process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ak-process-step p {
    font-size: 0.85rem;
}

/* ---------- Testimonial Cards ---------- */
.ak-testimonial-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 1.75rem;
    height: 100%;
    transition: var(--ak-transition);
}

.ak-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ak-shadow-lg);
}

.ak-testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: flex; gap: 2px;
}

.ak-testimonial-text {
    font-size: 0.92rem;
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.ak-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ak-testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--ak-gradient);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
    flex-shrink: 0;
}

.ak-testimonial-author strong {
    display: block;
    font-size: 0.88rem;
}

.ak-testimonial-author span {
    font-size: 0.78rem;
    color: var(--ak-text-muted);
}

/* ---------- FAQ Accordion ---------- */
#faqAccordion .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
}

#faqAccordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #7c3aed10, #8b5cf610);
    color: var(--ak-blue);
    box-shadow: none;
}

#faqAccordion .accordion-button:focus {
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

/* ---------- Career / Jobs ---------- */
.ak-benefit-item {
    padding: 1.25rem 0.75rem;
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    background: var(--ak-card-bg);
    box-shadow: var(--ak-shadow);
    height: 100%;
}

.ak-benefit-item i {
    display: block;
    font-size: 1.5rem;
    color: var(--ak-blue);
    margin-bottom: 0.5rem;
}

.ak-benefit-item span {
    font-size: 0.85rem;
    font-weight: 600;
}

.ak-job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    margin-bottom: 0.75rem;
    background: var(--ak-card-bg);
    transition: var(--ak-transition);
}

.ak-job-card:hover {
    border-color: var(--ak-blue);
    box-shadow: var(--ak-shadow);
}

.ak-job-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.ak-job-meta {
    display: flex; gap: 1rem;
    font-size: 0.82rem;
    color: var(--ak-text-muted);
}

.ak-job-meta i {
    margin-right: 0.25rem;
}

/* ---------- Theme Cards ---------- */
.ak-theme-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    overflow: hidden;
    transition: var(--ak-transition);
}

.ak-theme-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak-shadow-lg);
}

.ak-theme-preview {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.ak-theme-info {
    padding: 1.25rem;
}

.ak-theme-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ak-blue);
}

.ak-theme-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.25rem 0 0.75rem;
}

.ak-theme-actions {
    display: flex; gap: 0.5rem;
}

/* ---------- Sector Cards ---------- */
.ak-sector-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 2rem 1.25rem;
    height: 100%;
    transition: var(--ak-transition);
}

.ak-sector-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak-shadow-lg);
    border-color: var(--ak-blue);
}

.ak-sector-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed15, #8b5cf615);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem; color: var(--ak-blue);
}

.ak-sector-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ak-sector-card p {
    font-size: 0.85rem;
}

/* ---------- Reference Cards ---------- */
.ak-ref-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    overflow: hidden;
    transition: var(--ak-transition);
}

.ak-ref-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ak-shadow-lg);
}

.ak-ref-preview {
    height: 140px;
    background: linear-gradient(135deg, #7c3aed10, #8b5cf620);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--ak-blue);
}

.ak-ref-body {
    padding: 1rem 1.25rem;
}

.ak-ref-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.ak-ref-type {
    font-size: 0.78rem;
    color: var(--ak-text-muted);
}

.ak-ref-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.7rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ak-purple);
    text-decoration: none;
}

.ak-ref-link:hover {
    color: #6d28d9;
}

/* ---------- Pricing Cards ---------- */
.ak-pricing-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--ak-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ak-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak-shadow-lg);
}

.ak-pricing-popular {
    border-color: var(--ak-blue);
    box-shadow: 0 0 0 1px var(--ak-blue);
}

.ak-pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--ak-gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ak-pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ak-pricing-price {
    margin-bottom: 0.75rem;
}

.ak-pricing-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ak-blue);
    vertical-align: top;
}

.ak-pricing-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ak-blue);
}

.ak-pricing-period {
    font-size: 0.82rem;
    color: var(--ak-text-muted);
}

.ak-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    flex: 1;
}

.ak-pricing-features li {
    font-size: 0.88rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--ak-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ak-pricing-features li i {
    color: var(--ak-blue);
    font-size: 0.9rem;
}

/* ---------- Blog Cards ---------- */
.ak-blog-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--ak-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ak-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak-shadow-lg);
    border-color: rgba(124, 58, 237, .28);
}

.ak-blog-thumb {
    height: 168px;
    background:
        radial-gradient(circle at 20% 0, rgba(167,139,250,.35), transparent 45%),
        linear-gradient(160deg, #1c1230, #0c0814);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: #c4b5fd;
    position: relative;
    text-decoration: none;
}

.ak-blog-cat {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    background: var(--ak-gradient);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.ak-blog-body {
    padding: 1.25rem;
}

.ak-blog-date {
    font-size: 0.75rem;
    color: var(--ak-text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.ak-blog-date i {
    margin-right: 0.25rem;
}

.ak-blog-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ak-blog-body h3 a {
    color: var(--ak-text);
    text-decoration: none;
}

.ak-blog-body h3 a:hover {
    color: var(--ak-blue);
}

.ak-blog-body p {
    font-size: 0.85rem;
}

/* ---------- Contact Page ---------- */
.ak-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ak-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ak-contact-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed15, #8b5cf615);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--ak-blue);
    flex-shrink: 0;
}

.ak-contact-item strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.15rem;
}

.ak-contact-item a {
    color: var(--ak-blue);
    text-decoration: none;
}

.ak-contact-social {
    display: flex; gap: 0.5rem;
}

.ak-contact-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--ak-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--ak-text-muted);
    transition: var(--ak-transition);
}

.ak-contact-social a:hover {
    background: var(--ak-blue);
    color: #fff;
    border-color: var(--ak-blue);
}

.ak-contact-form-wrapper {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 2rem;
}

.ak-map-placeholder {
    height: 250px;
    border: 2px dashed var(--ak-border);
    border-radius: var(--ak-radius);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--ak-text-muted);
    font-size: 0.9rem;
}

.ak-map-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--ak-blue);
}

/* ---------- Quote Form ---------- */
.ak-quote-form-wrapper {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 2.5rem;
}

/* ---------- Legal Content ---------- */
.ak-legal-content h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

/* ---------- Tech Cards ---------- */
.ak-tech-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 1.5rem 1rem;
    transition: var(--ak-transition);
}

.ak-tech-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ak-shadow-lg);
    border-color: var(--ak-blue);
}

.ak-tech-icon {
    font-size: 2rem;
    color: var(--ak-blue);
    margin-bottom: 0.75rem;
}

.ak-tech-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.ak-tech-cat {
    font-size: 0.72rem;
    color: var(--ak-text-muted);
}

/* ---------- Partner Cards ---------- */
.ak-partner-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: var(--ak-radius);
    padding: 2rem 1rem;
    transition: var(--ak-transition);
}

.ak-partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ak-shadow-lg);
}

.ak-partner-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed10, #8b5cf620);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem; color: var(--ak-blue);
}

.ak-partner-card span {
    font-size: 0.88rem;
    font-weight: 600;
}

/* ============================================================
   Icerik sayfalari - Bootstrap + eksik bilesen stilleri
   ============================================================ */

.ak-public {
    --bs-primary: #7c3aed;
    --bs-primary-rgb: 124, 58, 237;
    --bs-link-color: #7c3aed;
    --bs-link-hover-color: #8b5cf6;
    --bs-link-color-rgb: 124, 58, 237;
    --bs-link-hover-color-rgb: 139, 92, 246;
    --bs-focus-ring-color: rgba(124, 58, 237, 0.25);
}

.ak-page-hero.py-5 {
    padding-top: 1.35rem !important;
    padding-bottom: 2.75rem !important;
}

.ak-section a:not(.btn):not(.ak-card-link):not(.nav-link) {
    color: var(--ak-blue);
    font-weight: 600;
    text-decoration: none;
}

.ak-section a:not(.btn):not(.ak-card-link):hover {
    text-decoration: underline;
}

.ak-mvv-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.ak-process-step {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: 18px;
}

.ak-career-benefits {
    margin-bottom: 2rem;
}

.ak-job-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ak-job-card {
    margin-bottom: 0;
}

.ak-legal-content {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: 18px;
    padding: 2rem 2.1rem;
}

.ak-legal-content p {
    line-height: 1.75;
    margin-bottom: 1rem;
}

.ak-legal-content a {
    color: var(--ak-blue);
    font-weight: 600;
    text-decoration: none;
}

.ak-legal-content a:hover {
    text-decoration: underline;
}

.ak-legal-note {
    margin-top: 1.75rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: var(--ak-body-bg);
    border: 1px solid var(--ak-border);
}

.ak-legal-note i {
    color: var(--ak-blue);
    margin-right: 0.35rem;
}

.ak-public .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ak-text);
}

.ak-public .form-control,
.ak-public .form-select {
    border-color: var(--ak-border);
    background: var(--ak-card-bg);
    color: var(--ak-text);
    border-radius: 12px;
}

.ak-public .form-control:focus,
.ak-public .form-select:focus {
    border-color: var(--ak-blue);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.16);
}

.ak-public .form-check-input {
    border-color: var(--ak-border);
}

.ak-public .form-check-input:checked {
    background-color: var(--ak-blue);
    border-color: var(--ak-blue);
}

.ak-public .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.16);
}

.ak-public .form-check-label a {
    color: var(--ak-blue);
    font-weight: 600;
}

.ak-public .btn-outline-primary {
    --bs-btn-color: #7c3aed;
    --bs-btn-border-color: #7c3aed;
    --bs-btn-hover-bg: #7c3aed;
    --bs-btn-hover-border-color: #7c3aed;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: #6d28d9;
    --bs-btn-active-border-color: #6d28d9;
    --bs-btn-active-color: #fff;
    --bs-btn-focus-shadow-rgb: 124, 58, 237;
}

#faqAccordion .accordion-item {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 0.7rem;
}

#faqAccordion .accordion-item:first-of-type,
#faqAccordion .accordion-item:last-of-type,
#faqAccordion .accordion-item:not(:first-of-type) {
    border: 1px solid var(--ak-border);
}

#faqAccordion .accordion-button {
    background: var(--ak-card-bg);
    color: var(--ak-text);
    box-shadow: none;
}

#faqAccordion .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237c3aed'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#faqAccordion .accordion-body {
    background: var(--ak-card-bg);
}

.ak-contact-form-wrapper h3,
.ak-quote-form-wrapper h3 {
    font-size: 1.2rem;
    font-weight: 800;
}

.ak-quote-form-wrapper .btn-ak-primary,
.ak-contact-form-wrapper .btn-ak-primary {
    padding: 0.7rem 1.4rem;
}

/* ============================================================
   Mobil deneyim (drawer, dock, dokunma, safe-area)
   ============================================================ */

html {
    -webkit-text-size-adjust: 100%;
}

body.ak-public {
    -webkit-tap-highlight-color: rgba(124, 58, 237, 0.18);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.ak-mobile-tools {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ak-hamburger {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    border-radius: 12px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.ak-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ak-text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.ak-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ak-hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.ak-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.ak-hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.ak-hero-pills span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
}

.ak-drawer {
    position: fixed;
    inset: 0;
    z-index: 1080;
    pointer-events: none;
    visibility: hidden;
}

.ak-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.ak-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.ak-drawer.is-open .ak-drawer-backdrop {
    opacity: 1;
}

.ak-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 380px);
    height: 100%;
    background: var(--ak-card-bg);
    color: var(--ak-text);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    transform: translateX(104%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

.ak-drawer.is-open .ak-drawer-panel {
    transform: translateX(0);
}

.ak-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--ak-border);
}

.ak-drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.05rem;
}

.ak-drawer-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.08);
    color: var(--ak-text);
}

.ak-drawer-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 0.85rem 1rem;
    -webkit-overflow-scrolling: touch;
}

.ak-drawer-link,
.ak-drawer-group summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    color: var(--ak-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
}

.ak-drawer-link i,
.ak-drawer-group summary i {
    width: 22px;
    color: var(--ak-blue);
    text-align: center;
}

.ak-drawer-link:active,
.ak-drawer-group summary:active {
    background: rgba(139, 92, 246, 0.08);
}

.ak-drawer-group {
    border-radius: 14px;
}

.ak-drawer-group summary {
    list-style: none;
    cursor: pointer;
}

.ak-drawer-group summary::-webkit-details-marker {
    display: none;
}

.ak-drawer-group summary::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--ak-text-muted);
}

.ak-drawer-group[open] summary::after {
    content: '\F286';
}

.ak-drawer-sub {
    display: grid;
    gap: 0.2rem;
    padding: 0 0.4rem 0.55rem 2.4rem;
}

.ak-drawer-sub a {
    color: var(--ak-text-muted);
    text-decoration: none;
    padding: 0.55rem 0.4rem;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
}

.ak-drawer-foot {
    padding: 0.9rem 1rem calc(1rem + env(safe-area-inset-bottom));
    border-top: 1px solid var(--ak-border);
    background: var(--ak-card-bg);
}

.ak-drawer-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 0.7rem;
}

.ak-drawer-quick a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid var(--ak-border);
    color: var(--ak-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

body.ak-drawer-open {
    overflow: hidden;
}

.ak-dock {
    display: none;
}

@media (max-width: 991.98px) {
    body.ak-public {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .ak-navbar {
        padding-top: env(safe-area-inset-top);
        backdrop-filter: blur(16px);
        background: rgba(255, 255, 255, 0.92);
    }

    [data-bs-theme="dark"] .ak-navbar {
        background: rgba(10, 10, 10, 0.88);
    }

    .ak-navbar .container {
        min-height: 60px;
    }

    .ak-brand {
        padding: 0.55rem 0;
        font-size: 1.12rem;
    }

    .ak-navbar .navbar-collapse {
        display: none !important;
    }

    .ak-hero {
        padding: 2.25rem 0 2.75rem;
        min-height: auto;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .ak-hero-title {
        font-size: clamp(1.7rem, 7vw, 2.15rem);
        letter-spacing: -0.5px;
    }

    .ak-hero-actions {
        justify-content: center;
    }

    .ak-hero-actions .btn {
        min-height: 48px;
        border-radius: 14px;
        font-weight: 700;
        flex: 1 1 100%;
    }

    .ak-section {
        padding: 2.5rem 0;
    }

    .ak-section.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .ak-page-hero.py-5 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.25rem !important;
    }

    .ak-service-card,
    .ak-sector-card,
    .ak-theme-card,
    .ak-ref-card,
    .ak-blog-card,
    .ak-pricing-card,
    .ak-team-card,
    .ak-testimonial-card {
        border-radius: 18px;
        box-shadow: 0 8px 24px rgba(124, 58, 237, 0.06);
    }

    .ak-contact-item {
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.9rem !important;
        padding: 0.85rem 0;
    }

    .ak-contact-form-wrapper,
    .ak-quote-form-wrapper {
        border-radius: 20px;
        padding: 1.25rem !important;
    }

    .form-control,
    .form-select {
        min-height: 48px;
        border-radius: 12px;
        font-size: 16px;
    }

    textarea.form-control {
        min-height: 120px;
    }

    .ak-cta {
        padding: 2.25rem 0;
        border-radius: 0;
    }

    .ak-cta-actions .btn {
        min-height: 48px;
        border-radius: 14px;
        font-weight: 700;
    }

    .ak-footer {
        padding-bottom: 0.5rem;
    }

    .ak-footer-bottom {
        text-align: center;
        font-size: 0.8rem;
    }

    .ak-footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .ak-cookie-bar {
        bottom: calc(72px + env(safe-area-inset-bottom));
        border-radius: 18px 18px 0 0;
        padding: 0.85rem 0;
    }

    .ak-dock {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 1040;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(139, 92, 246, 0.12);
        box-shadow: 0 12px 40px rgba(15, 23, 42, 0.16);
        border-radius: 22px;
        padding: 0.35rem 0.25rem 0.45rem;
        align-items: end;
    }

    [data-bs-theme="dark"] .ak-dock {
        background: rgba(15, 15, 18, 0.92);
        border-color: rgba(167, 139, 250, 0.18);
    }

    .ak-dock-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.15rem;
        color: var(--ak-text-muted);
        text-decoration: none;
        font-size: 0.68rem;
        font-weight: 600;
        min-height: 52px;
        border-radius: 14px;
    }

    .ak-dock-item i {
        font-size: 1.2rem;
        line-height: 1;
    }

    .ak-dock-item.is-active {
        color: var(--ak-blue);
    }

    .ak-dock-cta {
        transform: translateY(-10px);
    }

    .ak-dock-cta-icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        background: var(--ak-gradient);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 18px rgba(124, 58, 237, 0.4);
        font-size: 1.2rem;
    }

    .ak-dock-cta span:last-child {
        color: var(--ak-blue);
        font-weight: 700;
    }

    .btn-ak-primary,
    .btn-outline-primary,
    .btn-outline-light {
        min-height: 46px;
        border-radius: 12px;
    }
}

@media (max-width: 575.98px) {
    .ak-hero-stats .ak-stat-num {
        font-size: 1.2rem;
    }

    .ak-hero-stats .ak-stat-label {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .ak-hero-pills {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        margin-inline: -0.5rem;
        padding-inline: 0.5rem;
        scrollbar-width: none;
    }

    .ak-hero-pills::-webkit-scrollbar {
        display: none;
    }

    .ak-hero-pills span {
        flex: 0 0 auto;
    }
}

/* ============================================================
   Home - teknoloji stüdyosu
   ============================================================ */

.ak-home-hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 4rem;
    color: #fff;
}

.ak-home-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 400px at 15% 20%, rgba(139, 92, 246, 0.35), transparent 55%),
        radial-gradient(600px 320px at 90% 80%, rgba(124, 58, 237, 0.28), transparent 50%),
        linear-gradient(180deg, #07040d 0%, #12081d 55%, #09060f 100%);
}

.ak-home-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.ak-home-hero .container { position: relative; z-index: 1; }

.ak-home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.06);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.ak-home-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.12;
    margin-bottom: 1.1rem;
}

.ak-home-title span {
    background: linear-gradient(90deg, #c4b5fd, #a78bfa 40%, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ak-home-lead {
    color: rgba(255,255,255,0.72);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 34rem;
    margin-bottom: 1.6rem;
}

.ak-home-metrics {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.ak-home-metrics strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
}

.ak-home-metrics span {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
}

.ak-code-window {
    background: #0b0714;
    border: 1px solid rgba(167,139,250,0.2);
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35);
    overflow: hidden;
}

.ak-code-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ak-code-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

.ak-code-bar span:nth-child(1) { background: #f87171; }
.ak-code-bar span:nth-child(2) { background: #fbbf24; }
.ak-code-bar span:nth-child(3) { background: #34d399; }

.ak-code-bar em {
    margin-left: 0.6rem;
    font-style: normal;
    font-size: 0.75rem;
    color: #94a3b8;
}

.ak-code-window pre {
    margin: 0;
    padding: 1.25rem 1.35rem 1.5rem;
    color: #e2e8f0;
    font-size: 0.88rem;
    line-height: 1.7;
    overflow: auto;
}

.ak-code-window .k { color: #c4b5fd; }
.ak-code-window .s { color: #86efac; }
.ak-code-window .fn { color: #93c5fd; }
.ak-code-window .c { color: #64748b; }

.ak-logo-strip {
    background: #0b0714;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1.1rem 0;
    color: #94a3b8;
}

.ak-logo-strip p {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.65rem;
    text-align: center;
}

.ak-logo-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem 1.4rem;
    font-weight: 700;
    color: #e2e8f0;
    font-size: 0.88rem;
}

.ak-home-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.ak-bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.ak-bento-card {
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: 20px;
    padding: 1.4rem 1.3rem;
    text-decoration: none;
    color: inherit;
    min-height: 160px;
    transition: var(--ak-transition);
}

.ak-bento-card:hover {
    border-color: var(--ak-blue);
    transform: translateY(-3px);
    box-shadow: var(--ak-shadow-lg);
    color: inherit;
}

.ak-bento-lg {
    grid-row: span 2;
    background: linear-gradient(160deg, #1a0a2e, #0b0714);
    color: #fff;
    border-color: transparent;
}

.ak-bento-lg:hover { color: #fff; }

.ak-bento-card i {
    font-size: 1.4rem;
    color: var(--ak-blue);
    display: block;
    margin-bottom: 0.7rem;
}

.ak-bento-lg i { color: #c4b5fd; }

.ak-bento-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.ak-bento-card p {
    margin: 0;
    color: var(--ak-text-muted);
    font-size: 0.9rem;
}

.ak-bento-lg p { color: rgba(255,255,255,0.7); }

.ak-section-dark {
    background: #09060f;
}

.ak-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.ak-steps > div {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    color: #fff;
}

.ak-steps span {
    display: block;
    color: #a78bfa;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.ak-steps p {
    margin: 0.25rem 0 0;
    color: #94a3b8;
    font-size: 0.85rem;
}

.ak-work-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: var(--ak-transition);
}

.ak-work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak-shadow-lg);
    color: inherit;
}

.ak-work-preview {
    height: 140px;
    background: linear-gradient(135deg, #1a0a2e, #4c1d95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    font-size: 2.4rem;
}

.ak-work-card span {
    display: inline-block;
    margin: 1rem 1.15rem 0;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ak-blue);
}

.ak-work-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0.25rem 1.15rem 0.35rem;
}

.ak-work-card p {
    margin: 0 1.15rem 1.15rem;
    color: var(--ak-text-muted);
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .ak-home-hero { padding: 2.5rem 0 2.75rem; }
    .ak-home-metrics { justify-content: center; }
    .ak-bento { grid-template-columns: 1fr 1fr; }
    .ak-bento-lg { grid-row: auto; }
}

@media (max-width: 575.98px) {
    .ak-bento,
    .ak-steps { grid-template-columns: 1fr; }
    .ak-home-title { font-size: 1.85rem; }
    .ak-code-window pre { font-size: 0.78rem; }
}

/* ============================================================
   Iletisim sayfasi
   ============================================================ */

.ak-contact-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 0 2.75rem;
    color: #fff;
    background: radial-gradient(1200px 420px at 12% -10%, rgba(124, 58, 237, 0.35), transparent 55%),
                var(--ak-gradient-dark);
}

.ak-contact-hero-glow {
    position: absolute;
    inset: auto -8% -40% auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.28), transparent 65%);
    pointer-events: none;
}

.ak-contact-hero-title {
    max-width: 16ch;
    margin: 0.85rem 0 0.75rem;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: #fff;
}

.ak-contact-hero-lead {
    max-width: 38rem;
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
}

.ak-contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.ak-contact-pills span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #ede9fe;
    font-size: 0.8rem;
    font-weight: 600;
}

.ak-contact-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.2fr);
    gap: 1.5rem;
    margin-top: -1.25rem;
    position: relative;
    z-index: 2;
}

.ak-contact-aside {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ak-contact-aside-label {
    margin: 0 0 0.15rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ak-text-muted);
}

.ak-contact-tile {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid var(--ak-border);
    background: var(--ak-card-bg);
    box-shadow: var(--ak-shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ak-contact-tile:hover {
    transform: translateY(-3px);
    border-color: #ddd6fe;
    box-shadow: var(--ak-shadow-lg);
    color: inherit;
}

.ak-contact-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #f5f3ff, #ede9fe);
    color: var(--ak-purple);
    font-size: 1.15rem;
}

.ak-contact-tile-wa .ak-contact-tile-icon {
    background: #ecfdf5;
    color: #16a34a;
}

.ak-contact-tile strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
}

.ak-contact-tile em {
    display: block;
    font-style: normal;
    color: var(--ak-text-muted);
    font-size: 0.84rem;
}

.ak-contact-tile-go {
    color: #c4b5fd;
    font-size: 0.95rem;
}

.ak-contact-meta {
    margin-top: 0.5rem;
    padding: 1.1rem;
    border-radius: 18px;
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
}

.ak-contact-meta > div {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.ak-contact-meta > div + div {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ak-border);
}

.ak-contact-meta i {
    color: var(--ak-purple);
}

.ak-contact-meta strong {
    display: block;
    font-size: 0.82rem;
}

.ak-contact-meta p {
    margin: 0.15rem 0 0;
    color: var(--ak-text-muted);
    font-size: 0.88rem;
}

.ak-contact-page .ak-contact-social {
    margin-top: 0.35rem;
}

.ak-contact-page .ak-contact-form-wrapper {
    padding: 1.75rem 1.8rem 1.9rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(88, 28, 135, 0.08);
}

.ak-contact-form-head {
    margin-bottom: 1.35rem;
}

.ak-contact-form-head h2 {
    margin: 0 0 0.3rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.ak-contact-form-head p {
    margin: 0;
    color: var(--ak-text-muted);
    font-size: 0.92rem;
}

.ak-field {
    position: relative;
}

.ak-field i {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a78bfa;
    pointer-events: none;
}

.ak-field .form-control,
.ak-field .form-select {
    padding-left: 2.45rem;
}

.ak-contact-page .form-control,
.ak-contact-page .form-select,
.ak-contact-page textarea.form-control {
    border-radius: 14px;
    border-color: #e9e0ff;
    background: #fcfbff;
    min-height: 48px;
}

.ak-contact-page textarea.form-control {
    min-height: 140px;
    padding-top: 0.85rem;
}

.ak-contact-page .form-control:focus,
.ak-contact-page .form-select:focus {
    border-color: #c4b5fd;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
    background: #fff;
}

.ak-contact-quote-link {
    color: var(--ak-purple);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.92rem;
}

.ak-contact-quote-link:hover {
    color: #6d28d9;
}

.ak-contact-map-wrap {
    padding: 0 1rem 3rem;
}

.ak-contact-map {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 320px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--ak-border);
    box-shadow: var(--ak-shadow-lg);
}

.ak-contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.25) contrast(1.05);
}

.ak-contact-map-card {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    padding: 0.95rem 1.1rem;
    width: min(260px, calc(100% - 2.2rem));
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.ak-contact-map-card strong {
    display: block;
    font-size: 0.95rem;
}

.ak-contact-map-card p {
    margin: 0.15rem 0 0.55rem;
    color: var(--ak-text-muted);
    font-size: 0.85rem;
}

.ak-contact-map-card a {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ak-purple);
    text-decoration: none;
}

[data-bs-theme="dark"] .ak-contact-tile-icon {
    background: #1a1028;
}

[data-bs-theme="dark"] .ak-contact-page .form-control,
[data-bs-theme="dark"] .ak-contact-page .form-select {
    background: #0d0814;
    border-color: #2a2038;
}

[data-bs-theme="dark"] .ak-contact-map-card {
    background: rgba(10, 6, 18, 0.88);
    border-color: #2a2038;
}

@media (max-width: 991.98px) {
    .ak-contact-shell {
        grid-template-columns: 1fr;
        margin-top: -0.5rem;
    }

    .ak-contact-hero-title {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .ak-contact-map {
        height: 240px;
        border-radius: 20px;
    }

    .ak-contact-page .ak-contact-form-wrapper {
        padding: 1.25rem !important;
    }
}

/* ============================================================
   SEO analiz araci
   ============================================================ */

.ak-seo-home {
    padding: 0 0 2.5rem;
}

.ak-seo-home-box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.6rem 1.8rem;
    border-radius: 24px;
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    box-shadow: var(--ak-shadow-lg);
}

.ak-seo-home-box h2 {
    margin: 0.2rem 0 0.4rem;
    font-size: 1.45rem;
    font-weight: 800;
}

.ak-seo-home-box p {
    margin: 0;
    color: var(--ak-text-muted);
}

.ak-seo-home-box form {
    display: flex;
    gap: 0.6rem;
}

.ak-seo-home-box input {
    flex: 1;
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid #e9e0ff;
    padding: 0 1rem;
    background: #fcfbff;
}

.ak-seo-form {
    margin-top: 1.4rem;
    max-width: 720px;
}

.ak-seo-form-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.45rem 0.45rem 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.ak-seo-form-row i { color: var(--ak-purple); }
.ak-seo-form-row input {
    flex: 1;
    border: 0;
    outline: none;
    min-height: 44px;
    background: transparent;
}

.ak-seo-form-hint {
    margin: 0.6rem 0 0;
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
}

.ak-seo-score-wrap {
    display: flex;
    gap: 1.4rem;
    align-items: center;
    padding: 1.4rem;
    border-radius: 24px;
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
    margin-bottom: 2rem;
}

.ak-seo-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 8px solid #ede9fe;
}

.ak-seo-good .ak-seo-ring { border-color: #86efac; }
.ak-seo-mid .ak-seo-ring { border-color: #fcd34d; }
.ak-seo-bad .ak-seo-ring { border-color: #fca5a5; }

.ak-seo-ring strong {
    font-size: 2rem;
    line-height: 1;
}

.ak-seo-ring span {
    font-size: 0.75rem;
    color: var(--ak-text-muted);
}

.ak-seo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.ak-seo-pills span {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: #f5f3ff;
    color: #5b21b6;
}

.ak-seo-pills .ok { background: #ecfdf5; color: #047857; }
.ak-seo-pills .warn { background: #fffbeb; color: #b45309; }
.ak-seo-pills .fail { background: #fef2f2; color: #b91c1c; }

.ak-seo-group {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.ak-seo-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ak-seo-check {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
}

.ak-seo-check-top {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.35rem;
}

.ak-seo-check-top em {
    margin-left: auto;
    font-style: normal;
    font-size: 0.78rem;
    color: var(--ak-text-muted);
}

.ak-seo-check p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--ak-text-muted);
}

.ak-seo-check.ak-seo-pass i { color: #16a34a; }
.ak-seo-check.ak-seo-warn i { color: #d97706; }
.ak-seo-check.ak-seo-fail i { color: #dc2626; }

.ak-seo-intro-card {
    height: 100%;
    padding: 1.25rem;
    border-radius: 18px;
    background: var(--ak-card-bg);
    border: 1px solid var(--ak-border);
}

.ak-seo-intro-card i { font-size: 1.4rem; color: var(--ak-purple); }
.ak-seo-intro-card h3 { font-size: 1.05rem; font-weight: 800; margin: 0.6rem 0 0.35rem; }
.ak-seo-intro-card p { margin: 0; color: var(--ak-text-muted); }

.ak-seo-cta {
    margin-top: 2rem;
    padding: 1.25rem 1.4rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.ak-seo-cta p { margin: 0; font-weight: 600; }

.ak-seo-loading[hidden] { display: none; }
.ak-seo-loading { position: fixed; inset: 0; z-index: 11000; display: grid; place-items: center; padding: 1rem; background: rgba(9, 5, 18, .82); backdrop-filter: blur(12px); }
.ak-seo-loading-card { width: min(600px, 100%); padding: 2rem; border-radius: 28px; text-align: center; background: var(--ak-card-bg); border: 1px solid var(--ak-border); box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.ak-seo-loading-card h2 { margin: .5rem 0 .35rem; font-size: 1.65rem; font-weight: 850; }
.ak-seo-loading-card > p { color: var(--ak-text-muted); min-height: 1.5rem; }
.ak-seo-radar { position: relative; width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 1rem; border-radius: 50%; overflow: hidden; color: #fff; background: radial-gradient(circle, #8b5cf6 0 22%, #6d28d9 23% 100%); }
.ak-seo-radar span { position: absolute; inset: 0; background: conic-gradient(from 0deg, transparent 0 68%, rgba(255,255,255,.7) 85%, transparent 100%); animation: akSeoRadar 1.5s linear infinite; }
.ak-seo-radar i { position: relative; z-index: 1; font-size: 1.45rem; }
@keyframes akSeoRadar { to { transform: rotate(360deg); } }
.ak-seo-progress { height: 9px; margin-top: 1.25rem; overflow: hidden; border-radius: 99px; background: #ede9fe; }
.ak-seo-progress span { display: block; width: 8%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#7c3aed,#a855f7); transition: width .65s ease; }
.ak-seo-loading-meta { display: flex; justify-content: space-between; margin-top: .45rem; font-size: .76rem; color: var(--ak-text-muted); }
.ak-seo-loading-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: .45rem; padding: 0; margin: 1.4rem 0 0; list-style: none; }
.ak-seo-loading-steps li { display: grid; justify-items: center; gap: .3rem; font-size: .7rem; color: var(--ak-text-muted); opacity: .55; }
.ak-seo-loading-steps i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #f5f3ff; }
.ak-seo-loading-steps li.is-active { opacity: 1; color: var(--ak-purple); font-weight: 700; }
.ak-seo-loading-steps li.is-active i { color: #fff; background: var(--ak-purple); box-shadow: 0 0 0 6px rgba(124,58,237,.12); }
.ak-seo-loading-steps li.is-done { opacity: 1; color: #15803d; }
.ak-seo-is-loading { overflow: hidden; }
.ak-seo-device-switch { display: flex; justify-content: center; gap: .65rem; margin: 0 auto 1.1rem; }
.ak-seo-device-switch button { display: inline-flex; align-items: center; gap: .55rem; padding: .75rem 1.1rem; border: 1px solid var(--ak-border); border-radius: 14px; color: var(--ak-text); background: var(--ak-card-bg); font-weight: 750; transition: .2s ease; }
.ak-seo-device-switch button strong { min-width: 35px; padding: .18rem .4rem; border-radius: 8px; color: var(--ak-purple); background: rgba(124,58,237,.1); }
.ak-seo-device-switch button.is-active { color: #fff; border-color: var(--ak-purple); background: var(--ak-purple); box-shadow: 0 10px 30px rgba(124,58,237,.22); }
.ak-seo-device-switch button.is-active strong { color: var(--ak-purple); background: #fff; }
.ak-seo-device-compare { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; max-width: 760px; margin: 0 auto 1.5rem; }
.ak-seo-device-compare > div { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .35rem .8rem; padding: 1rem 1.15rem; border: 1px solid var(--ak-border); border-radius: 18px; background: var(--ak-card-bg); }
.ak-seo-device-compare i { grid-row: span 2; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--ak-purple); background: rgba(124,58,237,.1); font-size: 1.2rem; }
.ak-seo-device-compare span { font-weight: 750; }
.ak-seo-device-compare strong { grid-row: span 2; font-size: 1.3rem; }
.ak-seo-device-compare small { color: var(--ak-text-muted); }
.ak-seo-device-panel { display: none; }
.ak-seo-device-panel.is-active { display: block; animation: akSeoPanelIn .25s ease; }
@keyframes akSeoPanelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.ak-seo-dashboard { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.ak-seo-panel, .ak-seo-priorities { padding: 1.25rem; border-radius: 20px; background: var(--ak-card-bg); border: 1px solid var(--ak-border); }
.ak-seo-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.ak-seo-panel-head span { display: block; color: var(--ak-text-muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.ak-seo-panel-head h3 { margin: .15rem 0 0; font-size: 1.08rem; font-weight: 800; }
.ak-seo-panel-head > i { color: var(--ak-purple); font-size: 1.35rem; }
.ak-seo-category-scores { display: grid; gap: .75rem; }
.ak-seo-category-row > div:first-child { display: flex; justify-content: space-between; font-size: .82rem; }
.ak-seo-category-row span { color: var(--ak-text-muted); }
.ak-seo-category-bar { height: 7px; margin-top: .3rem; overflow: hidden; border-radius: 99px; background: #f1f0f5; }
.ak-seo-category-bar span { display: block; height: 100%; border-radius: inherit; }
.ak-seo-category-bar .good { background: #22c55e; }.ak-seo-category-bar .mid { background: #f59e0b; }.ak-seo-category-bar .bad { background: #ef4444; }
.ak-seo-metrics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; }
.ak-seo-metrics-grid div { padding: .7rem; border-radius: 12px; text-align: center; background: #faf8ff; }
.ak-seo-metrics-grid strong,.ak-seo-metrics-grid span { display: block; }.ak-seo-metrics-grid span { margin-top: .15rem; font-size: .7rem; color: var(--ak-text-muted); }
.ak-seo-meta-list { margin: .85rem 0 0; }.ak-seo-meta-list div { display: grid; grid-template-columns: 90px 1fr; gap: .5rem; padding: .45rem 0; border-top: 1px solid var(--ak-border); font-size: .76rem; }.ak-seo-meta-list dt { color: var(--ak-text-muted); }.ak-seo-meta-list dd { margin: 0; overflow-wrap: anywhere; }
.ak-seo-priorities { margin-bottom: 1.5rem; }.ak-seo-priority-list { display: grid; gap: .65rem; }.ak-seo-priority-list article { display: grid; grid-template-columns: 36px 1fr; gap: .75rem; padding: .85rem; border-radius: 14px; background: #faf9fc; }.ak-seo-priority-number { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--ak-purple); font-weight: 800; }.ak-seo-priority-title { display: flex; justify-content: space-between; gap: .5rem; }.ak-seo-priority-title span { padding: .15rem .5rem; border-radius: 99px; font-size: .67rem; font-weight: 800; }.ak-seo-priority-title .fail { color: #b91c1c; background: #fee2e2; }.ak-seo-priority-title .warn { color: #a16207; background: #fef3c7; }.ak-seo-priority-list p { margin: .25rem 0; color: var(--ak-text-muted); font-size: .82rem; }.ak-seo-priority-list small { color: var(--ak-purple); font-weight: 700; }

@media (max-width: 767.98px) {
    .ak-seo-home-box,
    .ak-seo-checks,
    .ak-seo-cta,
    .ak-seo-score-wrap { grid-template-columns: 1fr; display: grid; }
    .ak-seo-home-box form,
    .ak-seo-form-row { flex-direction: column; align-items: stretch; }
    .ak-seo-score-wrap { justify-items: center; text-align: center; }
    .ak-seo-pills { justify-content: center; }
    .ak-seo-dashboard { grid-template-columns: 1fr; }
    .ak-seo-loading-steps { grid-template-columns: repeat(3,1fr); }
    .ak-seo-device-switch { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
    .ak-seo-device-switch button { justify-content: center; padding: .7rem .45rem; }
    .ak-seo-device-compare { grid-template-columns: 1fr; }
}

/* ============================================================
   Blog
   ============================================================ */
.ak-blog-hero {
    position: relative;
    overflow: hidden;
    padding: 2.4rem 0 2.6rem;
    color: #fff;
    background: radial-gradient(900px 360px at 12% -20%, rgba(124,58,237,.4), transparent 55%), var(--ak-gradient-dark);
}
.ak-blog-hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse at 30% 20%, #000 20%, transparent 70%);
    pointer-events: none;
}
.ak-blog-hero h1 {
    max-width: 14ch;
    margin: .7rem 0 .7rem;
    font-size: clamp(2rem, 5vw, 3.3rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.08;
}
.ak-blog-hero p { max-width: 38rem; margin: 0; color: rgba(255,255,255,.72); }
.ak-blog-page { margin-top: -1.1rem; position: relative; z-index: 2; }
.ak-blog-filters { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.25rem; }
.ak-blog-filters a {
    padding: .4rem .85rem; border-radius: 999px; border: 1px solid var(--ak-border);
    background: var(--ak-card-bg); color: var(--ak-text); text-decoration: none; font-size: .82rem; font-weight: 700;
}
.ak-blog-filters a.is-on { background: #0f0a18; color: #fff; border-color: #0f0a18; }
.ak-blog-feature {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
    margin-bottom: 1.5rem; overflow: hidden; border-radius: 24px;
    background: #11081c; color: #fff; text-decoration: none;
    border: 1px solid #2a2038;
}
.ak-blog-feature:hover { color: #fff; }
.ak-blog-feature-media {
    min-height: 260px; display: grid; place-items: center; position: relative;
    background: radial-gradient(circle at 30% 20%, rgba(167,139,250,.35), transparent 50%), linear-gradient(160deg, #1e1033, #0b0614);
    font-size: 4rem; color: #c4b5fd;
}
.ak-blog-feature-media span {
    position: absolute; top: 1rem; left: 1rem;
    padding: .25rem .7rem; border-radius: 999px; background: #7c3aed; font-size: .72rem; font-weight: 800;
}
.ak-blog-feature > div:last-child { padding: 1.6rem 1.7rem; }
.ak-blog-feature small { color: #c4b5fd; font-weight: 700; }
.ak-blog-feature h2 { margin: .5rem 0 .6rem; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.03em; }
.ak-blog-feature p { color: rgba(255,255,255,.7); }
.ak-blog-feature em { font-style: normal; font-weight: 800; color: #c4b5fd; }
.ak-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.ak-post-hero {
    padding: 2rem 0 2.2rem; color: #fff;
    background: radial-gradient(800px 300px at 80% 0, rgba(139,92,246,.28), transparent 50%), var(--ak-gradient-dark);
}
.ak-post-hero h1 { max-width: 18ch; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.04em; }
.ak-post-hero p { max-width: 40rem; color: rgba(255,255,255,.7); }
.ak-post-cat {
    display: inline-block; margin-bottom: .7rem; padding: .25rem .7rem; border-radius: 999px;
    background: rgba(255,255,255,.1); font-size: .75rem; font-weight: 800;
}
.ak-post-meta { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; color: #c4b5fd; font-size: .88rem; font-weight: 600; }
.ak-post-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 1.5rem; padding: 2rem 0 1rem; }
.ak-post-body { font-size: 1.08rem; line-height: 1.8; color: var(--ak-text); }
.ak-post-body p { margin-bottom: 1rem; }
.ak-post-aside { display: flex; flex-direction: column; gap: .85rem; position: sticky; top: 5.5rem; align-self: start; }
.ak-post-box {
    padding: 1.1rem; border-radius: 18px; border: 1px solid var(--ak-border); background: var(--ak-card-bg);
}
.ak-post-box p { color: var(--ak-text-muted); font-size: .9rem; }
.ak-post-box a { display: block; font-weight: 700; color: var(--ak-purple); text-decoration: none; margin-top: .35rem; }

@media (max-width: 991.98px) {
    .ak-blog-feature, .ak-blog-grid, .ak-post-wrap { grid-template-columns: 1fr; }
}

/* Hazir web siteleri katalog */
.ak-ready-hero {
    position: relative; overflow: hidden; padding: 2.4rem 0 2.5rem; color: #fff;
    background: radial-gradient(900px 340px at 10% -30%, rgba(124,58,237,.42), transparent 55%), var(--ak-gradient-dark);
}
.ak-ready-hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 42px 42px;
}
.ak-ready-hero h1 { max-width: 16ch; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -.04em; }
.ak-ready-hero p { max-width: 40rem; color: rgba(255,255,255,.72); }
.ak-ready-hero-sm { padding: 1.8rem 0 2rem; }
.ak-ready-search { display: flex; gap: .5rem; align-items: center; max-width: 640px; margin-top: 1.1rem; padding: .35rem .35rem .35rem .9rem; border-radius: 999px; background: #fff; }
.ak-ready-search input { border: 0; flex: 1; outline: none; }
.ak-ready-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.ak-ready-cat { display: grid; gap: .35rem; padding: 1.1rem; border-radius: 18px; border: 1px solid var(--ak-border); background: var(--ak-card-bg); text-decoration: none; color: inherit; }
.ak-ready-cat.is-soon { opacity: .7; }
.ak-ready-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.ak-ready-card { border: 1px solid var(--ak-border); border-radius: 20px; overflow: hidden; background: var(--ak-card-bg); }
.ak-ready-shots { position: relative; background: #11081c; min-height: 180px; }
.ak-ready-shots img { width: 100%; height: 180px; object-fit: cover; }
.ak-ready-mobile { position: absolute !important; right: .7rem; bottom: .7rem; width: 72px !important; height: 128px !important; border-radius: 10px; border: 2px solid #fff; object-fit: cover; }
.ak-ready-badge { position: absolute; top: .7rem; left: .7rem; padding: .15rem .55rem; border-radius: 999px; background: #7c3aed; color: #fff; font-size: .7rem; font-weight: 800; }
.ak-ready-badge.is-feat { left: auto; right: 5.5rem; background: #0f172a; }
.ak-ready-body { padding: 1rem 1.1rem 1.15rem; }
.ak-ready-body ul { padding-left: 1.1rem; color: var(--ak-text-muted); font-size: .85rem; }
.ak-ready-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin: .4rem 0; }
.ak-ready-tags span { padding: .15rem .5rem; border-radius: 999px; background: #f4f0ff; font-size: .72rem; font-weight: 700; }
.ak-ready-colors { display: flex; gap: .3rem; margin: .35rem 0; }
.ak-ready-colors i { width: 16px; height: 16px; border-radius: 50%; border: 1px solid #ddd; display: block; }
.ak-ready-actions { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .7rem; }
.ak-ready-filters { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.ak-ready-filters button { border: 1px solid var(--ak-border); background: #fff; border-radius: 999px; padding: .35rem .8rem; font-weight: 700; font-size: .8rem; }
.ak-ready-filters button.is-on { background: #0f0a18; color: #fff; }
.ak-ready-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ak-ready-list { padding-left: 1.1rem; }
.ak-ready-faq details { padding: .85rem 0; border-bottom: 1px solid var(--ak-border); }
.ak-ready-faq summary { font-weight: 800; cursor: pointer; }
.ak-ready-cta { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-top: 1.5rem; padding: 1.2rem; border-radius: 18px; background: #11081c; color: #fff; }
.ak-ready-detail { padding: 0 0 3rem; }
.ak-ready-detail-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.5rem; }
.ak-ready-hero-shot { width: 100%; border-radius: 20px; }
.ak-ready-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: .7rem; }
.ak-ready-gallery img { width: 100%; height: 110px; object-fit: cover; border-radius: 12px; }
.ak-ready-article h2 { margin-top: 1.4rem; font-size: 1.25rem; }
.ak-ready-live-search { max-width: 420px; margin-top: 1rem; }
.ak-ready-toast { position: fixed; right: 1rem; bottom: 1rem; z-index: 50; padding: .8rem 1rem; border-radius: 12px; background: #14532d; color: #fff; }
.ak-ready-toast.is-err { background: #7f1d1d; }
@media (max-width: 991.98px) {
    .ak-ready-split, .ak-ready-detail-grid, .ak-ready-gallery { grid-template-columns: 1fr; }
    .ak-ready-search, .ak-ready-cta { flex-direction: column; align-items: stretch; }
}
