/* Header başlangıcı */

:root{
    --ks27ph-blue:#4285f4;
    --ks27ph-red:#ea4335;
    --ks27ph-yellow:#fbbc05;
    --ks27ph-green:#34a853;
    --ks27ph-dark:#07111f;
    --ks27ph-text:#111827;
    --ks27ph-muted:#526174;
    --ks27ph-border:rgba(15,23,42,.085);
    --ks27ph-shadow:0 16px 44px rgba(15,23,42,.075);
    --ks27ph-header-h:92px;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

.ks27ph-header,
.ks27ph-header *,
.ks27ph-mobile,
.ks27ph-mobile *,
.ks27ph-overlay,
.ks27ph-page-banner,
.ks27ph-page-banner *{
    box-sizing:border-box;
}

.ks27ph-header{
    position:sticky;
    top:0;
    left:0;
    right:0;
    z-index:9999;
    width:100%;
    min-height:var(--ks27ph-header-h);
    background:rgba(255,255,255,.985);
    border-bottom:1px solid rgba(15,23,42,.06);
    box-shadow:0 8px 28px rgba(15,23,42,.035);
    font-family:Arial,Helvetica,sans-serif;
}

.ks27ph-header::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--ks27ph-blue) 0%,
        var(--ks27ph-blue) 25%,
        var(--ks27ph-red) 25%,
        var(--ks27ph-red) 45%,
        var(--ks27ph-yellow) 45%,
        var(--ks27ph-yellow) 68%,
        var(--ks27ph-green) 68%,
        var(--ks27ph-green) 100%
    );
    pointer-events:none;
}

.ks27ph-inner{
    width:min(100% - 52px,1840px);
    min-height:var(--ks27ph-header-h);
    margin:0 auto;
    display:grid;
    grid-template-columns:270px minmax(0,1fr) auto;
    align-items:center;
    gap:28px;
}

.ks27ph-logo{
    min-width:0;
    display:flex;
    align-items:center;
}

.ks27ph-logo-link{
    position:relative;
    max-width:270px;
    min-width:0;
    display:inline-flex;
    align-items:center;
    justify-content:flex-start;
    color:var(--ks27ph-dark)!important;
    text-decoration:none!important;
    overflow:hidden;
}

.ks27ph-logo-link.has-image-logo img{
    max-width:250px;
    max-height:58px;
    display:block;
    object-fit:contain;
}

.ks27ph-logo-link.has-image-logo .ks27ph-text-logo{
    display:none!important;
}

.ks27ph-logo-link.is-text-logo{
    width:270px;
    height:62px;
    display:flex;
    align-items:center;
}

/* DB'den eski uzun başlık gelse bile görselde SEO Makinesi sabit görünür */
.ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
    position:relative;
    width:270px;
    min-width:270px;
    height:62px;
    display:block;
    overflow:hidden;
    color:transparent!important;
    font-size:0!important;
    line-height:0!important;
    white-space:nowrap;
}

.ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
    content:"SEO Makinesi";
    position:absolute;
    left:0;
    top:8px;
    display:block;
    color:var(--ks27ph-dark);
    font-size:35px;
    line-height:1;
    font-weight:950;
    letter-spacing:-.060em;
    white-space:nowrap;
}

.ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
    content:"";
    position:absolute;
    left:0;
    bottom:4px;
    width:258px;
    height:5px;
    border-radius:999px;
    background:linear-gradient(
        90deg,
        var(--ks27ph-blue) 0%,
        var(--ks27ph-blue) 25%,
        var(--ks27ph-red) 25%,
        var(--ks27ph-red) 45%,
        var(--ks27ph-yellow) 45%,
        var(--ks27ph-yellow) 68%,
        var(--ks27ph-green) 68%,
        var(--ks27ph-green) 100%
    );
}

.ks27ph-nav{
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    height:100%;
}

.ks27ph-nav-link,
.ks27ph-drop-trigger{
    position:relative;
    min-height:48px;
    padding:0 13px;
    border-radius:16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    color:#111827!important;
    background:transparent!important;
    text-decoration:none!important;
    font-size:17px;
    line-height:1;
    font-weight:900;
    letter-spacing:-.035em;
    white-space:nowrap;
    transition:.18s ease;
}

.ks27ph-nav-link::before,
.ks27ph-nav-link::after,
.ks27ph-drop-trigger::before,
.ks27ph-drop-trigger::after{
    display:none!important;
    content:none!important;
}

.ks27ph-nav-link:hover,
.ks27ph-drop-trigger:hover,
.ks27ph-nav-link.is-active,
.ks27ph-drop-trigger.is-active{
    color:#0b57d0!important;
}

.ks27ph-icon{
    width:15px;
    height:15px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.ks27ph-icon svg,
.ks27ph-cta svg,
.ks27ph-menu-btn svg,
.ks27ph-close svg,
.ks27ph-mobile-toggle svg,
.ks27ph-contact-card svg{
    width:100%;
    height:100%;
    fill:none;
    stroke:currentColor;
    stroke-width:2.4;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.ks27ph-drop{
    position:relative;
    display:inline-flex;
    align-items:center;
}

.ks27ph-drop-panel{
    position:absolute;
    left:50%;
    top:calc(100% + 14px);
    width:max-content;
    min-width:260px;
    max-width:340px;
    padding:10px;
    border-radius:22px;
    background:#ffffff;
    border:1px solid rgba(15,23,42,.09);
    box-shadow:0 22px 60px rgba(15,23,42,.16);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translate(-50%,8px);
    transition:.18s ease;
}

.ks27ph-drop:hover .ks27ph-drop-panel,
.ks27ph-drop:focus-within .ks27ph-drop-panel{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translate(-50%,0);
}

.ks27ph-drop-panel a{
    min-height:42px;
    padding:0 13px;
    border-radius:14px;
    display:flex;
    align-items:center;
    color:#172033!important;
    text-decoration:none!important;
    font-size:14px;
    line-height:1.25;
    font-weight:800;
    white-space:normal;
    transition:.16s ease;
}

.ks27ph-drop-panel a:hover{
    color:#0b57d0!important;
    background:#f3f7ff;
}

.ks27ph-actions{
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
}

.ks27ph-ghost,
.ks27ph-cta{
    min-height:58px;
    padding:0 22px;
    border-radius:19px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none!important;
    font-size:17px;
    line-height:1;
    font-weight:950;
    letter-spacing:-.030em;
    white-space:nowrap;
    transition:.2s ease;
}

.ks27ph-ghost{
    color:#111827!important;
    background:#ffffff;
    border:1px solid rgba(15,23,42,.10);
    box-shadow:0 12px 30px rgba(15,23,42,.045);
}

.ks27ph-ghost:hover{
    color:#0b57d0!important;
    border-color:rgba(66,133,244,.28);
    box-shadow:0 16px 36px rgba(66,133,244,.11);
}

.ks27ph-cta{
    color:#ffffff!important;
    background:linear-gradient(135deg,#1a73e8 0%,#0b57d0 100%);
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 16px 36px rgba(26,115,232,.22);
}

.ks27ph-cta:hover{
    transform:translateY(-1px);
    box-shadow:0 22px 46px rgba(26,115,232,.30);
}

.ks27ph-cta span{
    width:19px;
    height:19px;
    display:inline-flex;
}

.ks27ph-menu-btn{
    width:62px;
    height:62px;
    min-width:62px;
    border:1px solid rgba(15,23,42,.09);
    border-radius:20px;
    display:none;
    align-items:center;
    justify-content:center;
    color:#07111f;
    background:#ffffff;
    box-shadow:0 12px 30px rgba(15,23,42,.08);
    cursor:pointer;
}

.ks27ph-menu-btn svg{
    width:34px;
    height:34px;
    stroke-width:2.75;
}

.ks27ph-nav-link:focus,
.ks27ph-drop-trigger:focus{
    outline:none!important;
}

.ks27ph-nav-link:focus-visible,
.ks27ph-drop-trigger:focus-visible,
.ks27ph-ghost:focus-visible,
.ks27ph-cta:focus-visible,
.ks27ph-menu-btn:focus-visible,
.ks27ph-close:focus-visible,
.ks27ph-mobile-toggle:focus-visible{
    outline:3px solid rgba(66,133,244,.32)!important;
    outline-offset:4px!important;
}

/* Mobil menü */

.ks27ph-overlay{
    position:fixed;
    inset:0;
    z-index:9998;
    display:none;
    background:rgba(2,8,23,.52);
    backdrop-filter:blur(4px);
}

.ks27ph-overlay.is-active{
    display:block;
}

.ks27ph-mobile{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    z-index:9999;
    width:min(92vw,430px);
    display:flex;
    flex-direction:column;
    background:#ffffff;
    box-shadow:-24px 0 70px rgba(15,23,42,.22);
    transform:translateX(110%);
    visibility:hidden;
    transition:.24s ease;
    font-family:Arial,Helvetica,sans-serif;
}

.ks27ph-mobile.is-active{
    transform:translateX(0);
    visibility:visible;
}

html.ks27ph-menu-open,
body.ks27ph-menu-open{
    overflow:hidden!important;
}

.ks27ph-mobile-head{
    min-height:92px;
    padding:18px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    border-bottom:1px solid rgba(15,23,42,.08);
}

.ks27ph-mobile-logo{
    min-width:0;
}

.ks27ph-mobile-logo .ks27ph-logo-link.is-text-logo{
    width:220px;
    height:56px;
}

.ks27ph-mobile-logo .ks27ph-text-logo{
    width:220px!important;
    min-width:220px!important;
    height:56px!important;
}

.ks27ph-mobile-logo .ks27ph-text-logo::before{
    font-size:30px!important;
    top:7px!important;
}

.ks27ph-mobile-logo .ks27ph-text-logo::after{
    width:220px!important;
    height:4px!important;
    bottom:3px!important;
}

.ks27ph-close{
    width:52px;
    height:52px;
    min-width:52px;
    border:1px solid rgba(15,23,42,.09);
    border-radius:17px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#07111f;
    background:#ffffff;
    box-shadow:0 12px 28px rgba(15,23,42,.08);
    cursor:pointer;
}

.ks27ph-close svg{
    width:27px;
    height:27px;
}

.ks27ph-mobile-body{
    flex:1 1 auto;
    min-height:0;
    overflow-y:auto;
    padding:18px 18px 24px;
}

.ks27ph-mobile-list{
    display:grid;
    gap:10px;
}

.ks27ph-mobile-item{
    border:1px solid rgba(15,23,42,.08);
    border-radius:20px;
    background:#f8fbff;
    overflow:hidden;
}

.ks27ph-mobile-row{
    min-height:62px;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:10px;
}

.ks27ph-mobile-row > a{
    min-width:0;
    min-height:62px;
    padding:0 18px;
    display:flex;
    align-items:center;
    color:#07111f!important;
    text-decoration:none!important;
    font-size:18px;
    line-height:1.15;
    font-weight:950;
    letter-spacing:-.035em;
}

.ks27ph-mobile-row > a.is-active{
    color:#0b57d0!important;
}

.ks27ph-mobile-toggle{
    width:48px;
    height:48px;
    margin-right:8px;
    border:0;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#07111f;
    background:#ffffff;
    cursor:pointer;
    transition:.18s ease;
}

.ks27ph-mobile-toggle svg{
    width:22px;
    height:22px;
}

.ks27ph-mobile-toggle.is-active{
    color:#0b57d0;
    transform:rotate(90deg);
}

.ks27ph-mobile-sub{
    display:none;
    padding:0 12px 12px;
    gap:7px;
}

.ks27ph-mobile-sub.is-open{
    display:grid;
}

.ks27ph-mobile-sub a{
    min-height:44px;
    padding:0 14px;
    border-radius:14px;
    display:flex;
    align-items:center;
    color:#334155!important;
    background:#ffffff;
    text-decoration:none!important;
    font-size:14.5px;
    line-height:1.25;
    font-weight:800;
}

.ks27ph-mobile-sub a:hover{
    color:#0b57d0!important;
}

.ks27ph-mobile-contact{
    margin-top:18px;
    display:grid;
    gap:10px;
}

.ks27ph-mobile-primary{
    min-height:56px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff!important;
    background:linear-gradient(135deg,#1a73e8 0%,#0b57d0 100%);
    text-decoration:none!important;
    font-size:16px;
    font-weight:950;
}

.ks27ph-contact-card{
    min-height:52px;
    padding:0 15px;
    border-radius:17px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#07111f!important;
    background:#f8fbff;
    border:1px solid rgba(15,23,42,.08);
    text-decoration:none!important;
    font-size:14px;
    font-weight:850;
}

.ks27ph-contact-card .ks27ph-icon{
    width:18px;
    height:18px;
    color:#0b57d0;
}

.ks27ph-sr-only{
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    padding:0!important;
    margin:-1px!important;
    overflow:hidden!important;
    clip:rect(0,0,0,0)!important;
    white-space:nowrap!important;
    border:0!important;
}

/* İç sayfa breadcrumb */

.ks27ph-page-banner{
    width:100%;
    background:#f7fbff;
    border-bottom:1px solid rgba(15,23,42,.06);
}

.ks27ph-page-banner-inner{
    width:min(100% - 52px,1500px);
    margin:0 auto;
    padding:16px 0;
}

.ks27ph-page-breadcrumb{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    align-items:center;
    gap:9px;
    color:#64748b;
    font-size:13px;
    font-weight:800;
}

.ks27ph-page-breadcrumb a{
    color:#0b57d0!important;
    text-decoration:none!important;
}

/* Responsive */

@media (max-width:1550px){
    :root{
        --ks27ph-header-h:88px;
    }

    .ks27ph-inner{
        width:min(100% - 42px,1840px);
        grid-template-columns:250px minmax(0,1fr) auto;
        gap:18px;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:250px;
        max-width:250px;
        min-width:250px;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        font-size:33px;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:242px;
    }

    .ks27ph-nav-link,
    .ks27ph-drop-trigger{
        padding:0 10px;
        font-size:16px;
    }

    .ks27ph-ghost,
    .ks27ph-cta{
        min-height:56px;
        padding:0 18px;
        font-size:16px;
    }
}

@media (max-width:1280px){
    .ks27ph-inner{
        grid-template-columns:250px minmax(0,1fr) auto;
        gap:14px;
    }

    .ks27ph-nav{
        gap:2px;
    }

    .ks27ph-nav-link,
    .ks27ph-drop-trigger{
        padding:0 8px;
        font-size:15px;
    }

    .ks27ph-ghost{
        display:none;
    }
}

@media (max-width:1199px){
    :root{
        --ks27ph-header-h:104px;
    }

    .ks27ph-inner{
        width:min(100% - 32px,900px);
        min-height:104px;
        grid-template-columns:minmax(0,1fr) auto;
        gap:18px;
    }

    .ks27ph-nav,
    .ks27ph-ghost,
    .ks27ph-cta{
        display:none!important;
    }

    .ks27ph-menu-btn{
        display:flex;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:260px;
        max-width:260px;
        min-width:260px;
        height:64px;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        top:8px;
        font-size:34px;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:252px;
        bottom:4px;
    }
}

@media (max-width:767px){
    :root{
        --ks27ph-header-h:104px;
    }

    .ks27ph-inner{
        width:100%;
        min-height:104px;
        padding:0 26px;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:245px;
        max-width:245px;
        min-width:245px;
        height:60px;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        top:8px;
        font-size:31px;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:238px;
        height:4px;
        bottom:4px;
    }

    .ks27ph-menu-btn{
        width:62px;
        height:62px;
        min-width:62px;
        border-radius:20px;
    }

    .ks27ph-mobile{
        width:100%;
    }
}

@media (max-width:420px){
    .ks27ph-inner{
        padding:0 22px;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:220px;
        max-width:220px;
        min-width:220px;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        font-size:29px;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:216px;
    }

    .ks27ph-menu-btn{
        width:58px;
        height:58px;
        min-width:58px;
    }

    .ks27ph-menu-btn svg{
        width:32px;
        height:32px;
    }
}

@media (max-width:380px){
    .ks27ph-inner{
        padding:0 18px;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:205px;
        max-width:205px;
        min-width:205px;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        font-size:27px;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:202px;
    }
}

/* Header bitişi */
/* Header dropdown hover sabitleme başlangıcı */

.ks27ph-drop{
    position:relative!important;
}

/* Menü ile açılır panel arasına görünmez köprü */
.ks27ph-drop::after{
    content:""!important;
    position:absolute!important;
    left:-10px!important;
    right:-10px!important;
    top:100%!important;
    height:24px!important;
    display:block!important;
    background:transparent!important;
    z-index:9998!important;
}

.ks27ph-drop-panel{
    top:calc(100% + 8px)!important;
    z-index:9999!important;
    pointer-events:none!important;
}

.ks27ph-drop:hover .ks27ph-drop-panel,
.ks27ph-drop:focus-within .ks27ph-drop-panel,
.ks27ph-drop-panel:hover{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:translate(-50%,0)!important;
}

/* Açılır menünün üst kısmını daha rahat yakalasın */
.ks27ph-drop-panel::before{
    content:""!important;
    position:absolute!important;
    left:0!important;
    right:0!important;
    top:-14px!important;
    height:14px!important;
    background:transparent!important;
}

/* Dropdown linkleri tıklanabilir kalsın */
.ks27ph-drop-panel a{
    position:relative!important;
    z-index:2!important;
}

/* Header dropdown hover sabitleme bitişi */
/* Header kibar premium final başlangıcı */

:root{
    --ks27ph-header-h:76px!important;
}

/* Genel header inceltme */
.ks27ph-header{
    min-height:76px!important;
    box-shadow:0 8px 24px rgba(15,23,42,.035)!important;
}

.ks27ph-header::after{
    height:3px!important;
}

.ks27ph-inner{
    min-height:76px!important;
    width:min(100% - 44px,1840px)!important;
    grid-template-columns:230px minmax(0,1fr) auto!important;
    gap:22px!important;
}

/* Logo daha zarif */
.ks27ph-logo-link,
.ks27ph-logo-link.is-text-logo,
.ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
    width:230px!important;
    max-width:230px!important;
    min-width:230px!important;
    height:52px!important;
}

.ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
    top:6px!important;
    font-size:29px!important;
    line-height:1!important;
    letter-spacing:-.060em!important;
}

.ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
    width:222px!important;
    height:4px!important;
    bottom:3px!important;
}

/* Menü yazıları daha kibar */
.ks27ph-nav{
    gap:5px!important;
}

.ks27ph-nav-link,
.ks27ph-drop-trigger{
    min-height:42px!important;
    padding:0 10px!important;
    border-radius:13px!important;
    font-size:15.5px!important;
    font-weight:850!important;
    letter-spacing:-.030em!important;
}

/* Sağ butonlar inceltme */
.ks27ph-actions{
    gap:10px!important;
}

.ks27ph-ghost,
.ks27ph-cta{
    min-height:48px!important;
    padding:0 18px!important;
    border-radius:16px!important;
    font-size:15.5px!important;
    font-weight:900!important;
}

.ks27ph-cta span{
    width:17px!important;
    height:17px!important;
}

/* Dropdown daha zarif */
.ks27ph-drop-panel{
    top:calc(100% + 7px)!important;
    min-width:250px!important;
    padding:9px!important;
    border-radius:18px!important;
    box-shadow:0 18px 48px rgba(15,23,42,.14)!important;
}

.ks27ph-drop-panel a{
    min-height:38px!important;
    padding:0 12px!important;
    border-radius:12px!important;
    font-size:13.5px!important;
    font-weight:760!important;
}

/* Hover kopmasın */
.ks27ph-drop::after{
    content:""!important;
    position:absolute!important;
    left:-10px!important;
    right:-10px!important;
    top:100%!important;
    height:22px!important;
    display:block!important;
    background:transparent!important;
    z-index:9998!important;
}

.ks27ph-drop-panel::before{
    content:""!important;
    position:absolute!important;
    left:0!important;
    right:0!important;
    top:-12px!important;
    height:12px!important;
    background:transparent!important;
}

/* 1440 altı desktop */
@media (max-width:1440px){
    .ks27ph-inner{
        width:min(100% - 36px,1840px)!important;
        grid-template-columns:220px minmax(0,1fr) auto!important;
        gap:16px!important;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:220px!important;
        max-width:220px!important;
        min-width:220px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        font-size:28px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:214px!important;
    }

    .ks27ph-nav-link,
    .ks27ph-drop-trigger{
        padding:0 8px!important;
        font-size:14.8px!important;
    }

    .ks27ph-ghost,
    .ks27ph-cta{
        min-height:46px!important;
        padding:0 15px!important;
        font-size:14.8px!important;
    }
}

/* Tablet / mobil header */
@media (max-width:1199px){
    :root{
        --ks27ph-header-h:86px!important;
    }

    .ks27ph-header{
        min-height:86px!important;
    }

    .ks27ph-inner{
        min-height:86px!important;
        width:100%!important;
        padding:0 24px!important;
        grid-template-columns:minmax(0,1fr) auto!important;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:230px!important;
        max-width:230px!important;
        min-width:230px!important;
        height:56px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        top:8px!important;
        font-size:29px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:222px!important;
        height:4px!important;
        bottom:4px!important;
    }

    .ks27ph-menu-btn{
        width:56px!important;
        height:56px!important;
        min-width:56px!important;
        border-radius:18px!important;
        box-shadow:0 10px 24px rgba(15,23,42,.075)!important;
    }

    .ks27ph-menu-btn svg{
        width:31px!important;
        height:31px!important;
        stroke-width:2.55!important;
    }
}

/* Mobil daha narin */
@media (max-width:767px){
    :root{
        --ks27ph-header-h:82px!important;
    }

    .ks27ph-header{
        min-height:82px!important;
    }

    .ks27ph-inner{
        min-height:82px!important;
        padding:0 22px!important;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:218px!important;
        max-width:218px!important;
        min-width:218px!important;
        height:52px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        top:7px!important;
        font-size:27px!important;
        letter-spacing:-.055em!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:210px!important;
        height:3.5px!important;
        bottom:4px!important;
    }

    .ks27ph-menu-btn{
        width:52px!important;
        height:52px!important;
        min-width:52px!important;
        border-radius:17px!important;
    }

    .ks27ph-menu-btn svg{
        width:29px!important;
        height:29px!important;
    }

    .ks27ph-mobile-head{
        min-height:82px!important;
        padding:15px 18px!important;
    }

    .ks27ph-mobile-logo .ks27ph-logo-link.is-text-logo,
    .ks27ph-mobile-logo .ks27ph-text-logo{
        width:210px!important;
        max-width:210px!important;
        min-width:210px!important;
        height:52px!important;
    }

    .ks27ph-mobile-logo .ks27ph-text-logo::before{
        font-size:27px!important;
        top:7px!important;
    }

    .ks27ph-mobile-logo .ks27ph-text-logo::after{
        width:204px!important;
        height:3.5px!important;
    }

    .ks27ph-close{
        width:50px!important;
        height:50px!important;
        min-width:50px!important;
        border-radius:16px!important;
    }
}

/* Küçük mobil */
@media (max-width:420px){
    .ks27ph-inner{
        padding:0 18px!important;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:198px!important;
        max-width:198px!important;
        min-width:198px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        font-size:25.5px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:192px!important;
    }

    .ks27ph-menu-btn{
        width:50px!important;
        height:50px!important;
        min-width:50px!important;
    }
}

/* Header kibar premium final bitişi */
/* Header narin premium son düzenleme başlangıcı */

:root{
    --ks27ph-header-h:70px!important;
}

/* Header genel inceltme */
.ks27ph-header{
    min-height:70px!important;
    background:rgba(255,255,255,.992)!important;
    box-shadow:0 5px 18px rgba(15,23,42,.025)!important;
}

.ks27ph-header::after{
    height:3px!important;
}

.ks27ph-inner{
    min-height:70px!important;
    width:min(100% - 48px,1840px)!important;
    grid-template-columns:205px minmax(0,1fr) auto!important;
    gap:24px!important;
}

/* Logo daha küçük ve zarif */
.ks27ph-logo-link,
.ks27ph-logo-link.is-text-logo,
.ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
    width:205px!important;
    max-width:205px!important;
    min-width:205px!important;
    height:48px!important;
}

.ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
    content:"SEO Makinesi"!important;
    top:5px!important;
    font-size:25.5px!important;
    line-height:1!important;
    font-weight:850!important;
    letter-spacing:-.050em!important;
}

.ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
    width:198px!important;
    height:3px!important;
    bottom:4px!important;
}

/* Menüleri siyah / sade yap */
.ks27ph-nav{
    gap:8px!important;
}

.ks27ph-nav-link,
.ks27ph-drop-trigger{
    min-height:38px!important;
    padding:0 9px!important;
    border-radius:12px!important;
    color:#111827!important;
    background:transparent!important;
    font-size:14.5px!important;
    line-height:1!important;
    font-weight:760!important;
    letter-spacing:-.020em!important;
}

/* Aktif menü mavi görünmesin */
.ks27ph-nav-link.is-active,
.ks27ph-drop-trigger.is-active{
    color:#111827!important;
    background:transparent!important;
}

/* Sadece hover hafif mavi */
.ks27ph-nav-link:hover,
.ks27ph-drop-trigger:hover{
    color:#0b57d0!important;
    background:rgba(66,133,244,.055)!important;
}

/* Alt çizgi / eski aktif efekt tamamen kapalı */
.ks27ph-nav-link::before,
.ks27ph-nav-link::after,
.ks27ph-drop-trigger::before,
.ks27ph-drop-trigger::after{
    display:none!important;
    content:none!important;
}

/* Ok ikonları daha ince */
.ks27ph-icon{
    width:13px!important;
    height:13px!important;
}

.ks27ph-icon svg{
    stroke-width:2!important;
}

/* Sağ butonlar daha narin */
.ks27ph-actions{
    gap:10px!important;
}

.ks27ph-ghost,
.ks27ph-cta{
    min-height:44px!important;
    padding:0 16px!important;
    border-radius:15px!important;
    font-size:14.5px!important;
    line-height:1!important;
    font-weight:820!important;
    letter-spacing:-.018em!important;
}

.ks27ph-ghost{
    box-shadow:0 8px 20px rgba(15,23,42,.035)!important;
}

.ks27ph-cta{
    box-shadow:0 10px 26px rgba(26,115,232,.18)!important;
}

.ks27ph-cta span{
    width:16px!important;
    height:16px!important;
}

/* Dropdown daha kibar */
.ks27ph-drop-panel{
    top:calc(100% + 7px)!important;
    min-width:238px!important;
    padding:8px!important;
    border-radius:17px!important;
    box-shadow:0 16px 42px rgba(15,23,42,.13)!important;
}

.ks27ph-drop-panel a{
    min-height:36px!important;
    padding:0 11px!important;
    border-radius:11px!important;
    color:#172033!important;
    font-size:13.2px!important;
    line-height:1.25!important;
    font-weight:720!important;
}

.ks27ph-drop-panel a:hover{
    color:#0b57d0!important;
    background:#f4f8ff!important;
}

/* Dropdown kapanmasın */
.ks27ph-drop::after{
    content:""!important;
    position:absolute!important;
    left:-10px!important;
    right:-10px!important;
    top:100%!important;
    height:22px!important;
    background:transparent!important;
    display:block!important;
    z-index:9998!important;
}

.ks27ph-drop-panel::before{
    content:""!important;
    position:absolute!important;
    left:0!important;
    right:0!important;
    top:-12px!important;
    height:12px!important;
    background:transparent!important;
}

/* 1440 altı */
@media (max-width:1440px){
    .ks27ph-inner{
        grid-template-columns:200px minmax(0,1fr) auto!important;
        gap:18px!important;
        width:min(100% - 36px,1840px)!important;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:200px!important;
        max-width:200px!important;
        min-width:200px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        font-size:25px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:194px!important;
    }

    .ks27ph-nav-link,
    .ks27ph-drop-trigger{
        font-size:14px!important;
        padding:0 7px!important;
        font-weight:760!important;
    }

    .ks27ph-ghost,
    .ks27ph-cta{
        min-height:43px!important;
        padding:0 14px!important;
        font-size:14px!important;
    }
}

/* Mobil header daha zarif */
@media (max-width:1199px){
    :root{
        --ks27ph-header-h:76px!important;
    }

    .ks27ph-header{
        min-height:76px!important;
    }

    .ks27ph-inner{
        min-height:76px!important;
        width:100%!important;
        padding:0 22px!important;
        grid-template-columns:minmax(0,1fr) auto!important;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:205px!important;
        max-width:205px!important;
        min-width:205px!important;
        height:48px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        top:5px!important;
        font-size:25.5px!important;
        font-weight:850!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:198px!important;
        height:3px!important;
        bottom:4px!important;
    }

    .ks27ph-menu-btn{
        width:50px!important;
        height:50px!important;
        min-width:50px!important;
        border-radius:16px!important;
        box-shadow:0 8px 22px rgba(15,23,42,.07)!important;
    }

    .ks27ph-menu-btn svg{
        width:28px!important;
        height:28px!important;
        stroke-width:2.35!important;
    }
}

@media (max-width:767px){
    :root{
        --ks27ph-header-h:74px!important;
    }

    .ks27ph-header{
        min-height:74px!important;
    }

    .ks27ph-inner{
        min-height:74px!important;
        padding:0 20px!important;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:195px!important;
        max-width:195px!important;
        min-width:195px!important;
        height:46px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        top:5px!important;
        font-size:24.5px!important;
        font-weight:850!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:188px!important;
        height:3px!important;
        bottom:4px!important;
    }

    .ks27ph-menu-btn{
        width:48px!important;
        height:48px!important;
        min-width:48px!important;
        border-radius:16px!important;
    }

    .ks27ph-menu-btn svg{
        width:27px!important;
        height:27px!important;
    }

    .ks27ph-mobile-head{
        min-height:76px!important;
    }
}

@media (max-width:420px){
    .ks27ph-inner{
        padding:0 17px!important;
    }

    .ks27ph-logo-link,
    .ks27ph-logo-link.is-text-logo,
    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo{
        width:185px!important;
        max-width:185px!important;
        min-width:185px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::before{
        font-size:23.5px!important;
    }

    .ks27ph-logo-link.is-text-logo .ks27ph-text-logo::after{
        width:180px!important;
    }

    .ks27ph-menu-btn{
        width:46px!important;
        height:46px!important;
        min-width:46px!important;
    }
}

/* Header narin premium son düzenleme bitişi */
* Header mobil final rötuş başlangıcı */

/* Desktop son denge */
@media (min-width:1200px){
    .ks27ph-header{
        min-height:70px!important;
    }

    .ks27ph-inner{
        min-height:70px!important;
    }

    .ks27ph-nav-link,
    .ks27ph-drop-trigger{
        color:#07111f!important;
        font-weight:780!important;
    }

    .ks27ph-nav-link.is-active,
    .ks27ph-drop-trigger.is-active{
        color:#07111f!important;
        background:transparent!important;
    }

    .ks27ph-nav-link:hover,
    .ks27ph-drop-trigger:hover{
        color:#0b57d0!important;
        background:rgba(66,133,244,.045)!important;
    }
}

/* Mobil menü daha narin final */
@media (max-width:1199px){

    .ks27ph-mobile{
        background:#ffffff!important;
    }

    .ks27ph-mobile-body{
        padding:20px 22px 26px!important;
    }

    .ks27ph-mobile-list{
        gap:10px!important;
    }

    .ks27ph-mobile-item{
        border-radius:18px!important;
        background:#f8fbff!important;
        border:1px solid rgba(15,23,42,.075)!important;
        box-shadow:none!important;
        overflow:hidden!important;
    }

    .ks27ph-mobile-row{
        min-height:58px!important;
        padding:0 16px!important;
    }

    .ks27ph-mobile-row > a{
        color:#07111f!important;
        font-size:17px!important;
        line-height:1.1!important;
        font-weight:850!important;
        letter-spacing:-.030em!important;
    }

    .ks27ph-mobile-row > a.is-active{
        color:#07111f!important;
    }

    .ks27ph-mobile-row > a:hover{
        color:#0b57d0!important;
    }

    .ks27ph-mobile-toggle{
        width:42px!important;
        height:42px!important;
        min-width:42px!important;
        border-radius:14px!important;
        background:#ffffff!important;
        box-shadow:0 8px 18px rgba(15,23,42,.035)!important;
    }

    .ks27ph-mobile-toggle svg{
        width:21px!important;
        height:21px!important;
        stroke-width:2.25!important;
    }

    .ks27ph-mobile-sub{
        padding:0 14px 14px!important;
        gap:8px!important;
    }

    .ks27ph-mobile-sub a{
        min-height:42px!important;
        padding:0 14px!important;
        border-radius:14px!important;
        color:#334155!important;
        background:#ffffff!important;
        font-size:14px!important;
        font-weight:760!important;
    }

    .ks27ph-mobile-sub a:hover{
        color:#0b57d0!important;
        background:#f1f6ff!important;
    }

    .ks27ph-mobile-contact{
        margin-top:16px!important;
        gap:10px!important;
    }

    .ks27ph-mobile-primary{
        min-height:56px!important;
        border-radius:17px!important;
        font-size:16px!important;
        font-weight:900!important;
        box-shadow:0 14px 32px rgba(26,115,232,.18)!important;
    }
}

@media (max-width:420px){
    .ks27ph-mobile-body{
        padding:18px 18px 24px!important;
    }

    .ks27ph-mobile-row{
        min-height:56px!important;
        padding:0 15px!important;
    }

    .ks27ph-mobile-row > a{
        font-size:16.5px!important;
    }

    .ks27ph-mobile-toggle{
        width:40px!important;
        height:40px!important;
        min-width:40px!important;
    }
}

/* Header mobil final rötuş bitişi */
/* Header sabit kalma ve yazı belirginlik final başlangıcı */

/* Sayfa aşağı kayınca header kesinlikle kaybolmasın */
html{
    scroll-padding-top:var(--ks27ph-header-h,74px)!important;
}

body{
    padding-top:var(--ks27ph-header-h,74px)!important;
}

.ks27ph-header{
    position:fixed!important;
    top:0!important;
    left:0!important;
    right:0!important;
    z-index:2147482000!important;
    width:100%!important;
    transform:translateY(0)!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    will-change:auto!important;
}

/* Header scroll sırasında gizlenmesin */
.ks27ph-header.ks27ph-scrolled,
body .ks27ph-header,
html body .ks27ph-header{
    transform:translateY(0)!important;
    opacity:1!important;
    visibility:visible!important;
    top:0!important;
}

/* Menü yazıları biraz daha belirgin ama kaba değil */
@media (min-width:1200px){
    .ks27ph-nav-link,
    .ks27ph-drop-trigger{
        color:#07111f!important;
        font-size:14.8px!important;
        font-weight:830!important;
        letter-spacing:-.022em!important;
    }

    .ks27ph-nav-link.is-active,
    .ks27ph-drop-trigger.is-active{
        color:#07111f!important;
        font-weight:860!important;
    }

    .ks27ph-nav-link:hover,
    .ks27ph-drop-trigger:hover{
        color:#0b57d0!important;
        background:rgba(66,133,244,.055)!important;
    }

    .ks27ph-icon{
        color:#07111f!important;
    }

    .ks27ph-drop-trigger:hover .ks27ph-icon{
        color:#0b57d0!important;
    }

    .ks27ph-ghost,
    .ks27ph-cta{
        font-weight:880!important;
    }
}

/* Mobilde header sabit, menü butonu net */
@media (max-width:1199px){
    body{
        padding-top:var(--ks27ph-header-h,76px)!important;
    }

    .ks27ph-header{
        position:fixed!important;
        top:0!important;
    }

    .ks27ph-mobile{
        z-index:2147482100!important;
    }

    .ks27ph-overlay{
        z-index:2147482050!important;
    }

    .ks27ph-mobile-row > a{
        color:#07111f!important;
        font-weight:880!important;
    }

    .ks27ph-mobile-row > a.is-active{
        color:#07111f!important;
        font-weight:900!important;
    }

    .ks27ph-mobile-sub a{
        font-weight:800!important;
    }
}

/* Admin bar / tarayıcı zoom farklarında header boşluk dengesini koru */
.sm27-main{
    margin-top:0!important;
}

/* Header sabit kalma ve yazı belirginlik final bitişi */
/* Mobil menü font inceltme final başlangıcı */

@media (max-width:1199px){

    .ks27ph-mobile-body{
        padding:18px 20px 24px!important;
    }

    .ks27ph-mobile-list{
        gap:9px!important;
    }

    .ks27ph-mobile-item{
        border-radius:17px!important;
        background:#f8fbff!important;
    }

    .ks27ph-mobile-row{
        min-height:56px!important;
        padding:0 14px!important;
    }

    .ks27ph-mobile-row > a{
        min-height:56px!important;
        padding:0 16px!important;
        color:#07111f!important;
        font-size:16px!important;
        line-height:1.12!important;
        font-weight:740!important;
        letter-spacing:-.020em!important;
    }

    .ks27ph-mobile-row > a.is-active{
        color:#07111f!important;
        font-weight:780!important;
    }

    .ks27ph-mobile-row > a:hover{
        color:#0b57d0!important;
    }

    .ks27ph-mobile-toggle{
        width:40px!important;
        height:40px!important;
        min-width:40px!important;
        border-radius:13px!important;
    }

    .ks27ph-mobile-toggle svg{
        width:19px!important;
        height:19px!important;
        stroke-width:2.15!important;
    }

    .ks27ph-mobile-sub a{
        min-height:40px!important;
        font-size:13.8px!important;
        font-weight:720!important;
        letter-spacing:-.010em!important;
    }

    .ks27ph-mobile-primary{
        min-height:54px!important;
        border-radius:16px!important;
        font-size:15.5px!important;
        font-weight:820!important;
        letter-spacing:-.015em!important;
    }
}

@media (max-width:420px){
    .ks27ph-mobile-row > a{
        font-size:15.6px!important;
        font-weight:730!important;
    }

    .ks27ph-mobile-row > a.is-active{
        font-weight:770!important;
    }

    .ks27ph-mobile-primary{
        font-size:15px!important;
        font-weight:800!important;
    }
}

/* Mobil menü font inceltme final bitişi */