/* Genel Stiller */
:root {
    --primary-color: #0074FF;
    --secondary-color: #00A3FF;
    --hero-blue: #0057CD;
    --dark-blue: #001F3F;
    --text-primary: #1A2D51;
    --text-secondary: #4F5B76;
    --ghost-color: #E8ECF2;
    --white: #FFFFFF;
    --bg-gradient: #F6F8FB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--bg-gradient);
}

h1,
h2,
h3 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-direction: row;
    flex-wrap: nowrap;
}

.btn i {
    margin-left: 8px;
}

.btn-primary {
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.top-bar .container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    place-items: center;
}

.top-bar p {
    font-size: 14px;
    color: #FFF;
}

.link-arrow {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    padding: 5px 15px;
    border-radius: 999px;
}

.link-arrow i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.link-arrow:hover i {
    transform: translateX(4px);
}

/* Header */
.main-header {
    background-color: #FFFFFF;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 25px;
    display: block;
}

.logo span {
    font-size: 11px;
    line-height: 1.3;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #eeeeef;
    color: #6c757d;
    /* Fallback for --bs-gray */
    font-weight: 500;
}

.main-menu ul {
    display: flex;
    gap: 10px;
}

.main-menu li {
    background: rgba(0, 116, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.main-menu li:hover {
    background: rgba(0, 116, 255, 0.05);
    color: var(--primary-color);
}

.main-header .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    /* background-color: #202641; */
    position: relative;
    padding: 60px 0 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQwIDQwSDBWMEg0MFY0MFoiIGZpbGw9IiMwMDQ3QUIiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPgo8cGF0aCBkPSJNMCAwSDQwVjQwSDAiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1vcGFjaXR5PSIwLjEiIHN0cm9rZS13aWR0aD0iMC41Ii8+Cjwvc3ZnPg==');
    opacity: 0.15;
}

.hero-section .container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    color: #333e72;
    /* margin-bottom: 0px; */
}

.hero-features span {
    color: #ffffff;
    font-weight: 500;
}

.badge {
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: #2b3665;
    margin-bottom: 16px;
}

.hero-section h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    /* margin-bottom: 30px; */
}

.btn-dark {
    background-color: #a7ff19;
    color: #000000;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #00162E;
    transform: translateY(-2px);
}

.btn-light {
    background: #FFFFFF;
    color: #0057CD;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    background: #202741;
    border-radius: 26px;
    padding: 15px;
    box-shadow: 4px 3px 8px -5px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon i {
    color: #0057CD;
    font-size: 12px;
}

.browser-preview {
    width: 100%;
    max-width: 1160px;
    margin-top: 20px;
    margin-bottom: -16px;
}

.browser-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



/* Responsive iÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§in */
@media (max-width: 992px) {

    .main-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .main-header .btn-primary {
        display: none;
    }

    .main-header .container {
        justify-content: space-between;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 576px) {
    .top-bar {
        padding: 8px 0;
    }

    .top-bar p {
        font-size: 13px;
    }

    .main-header {
        padding: 12px 0;
    }

    .logo img {
        height: 28px;
    }

    .mobile-menu-toggle {
        margin-left: auto;
    }

    .hero-section h1 {
        font-size: 45px;
        font-weight: 800 !important;
        letter-spacing: -1px !important;
    }

    .browser-preview {
        margin-top: 30px;
    }


    .badge {
        font-size: 15px;
        font-family: 'Inter';
    }

    .promo .kicker {
        letter-spacing: .01em !important;
        font-size: 10px !important;
        font-family: 'Inter' !important;
    }

    .promo h3 {
        font-size: 24px !important;
    }

    .pack-header {
        font-size: 10px !important;
        color: #666;

    }

    .pack-vat {
        font-size: 8px !important;

    }

    .pack-price {
        display: block;
        font-size: 12px !important;
        color: #333;
        font-weight: 700;
    }


}





/* ------------------------------------------ */

/* MozPanel Section */
.mozpanel-section {
    padding: 20px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin: 40px auto;
}

.section-badge {
    display: inline-block;
    color: #00A3FF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333e72;
    margin: 0px 0 0px;
    line-height: 1.2;
}

.testimonial-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #e5e5e5;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.section-header p {
    font-size: 16px;
    color: #4F5B76;
    line-height: 1.6;
    margin: 10px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 20px;
}

.feature-icon.blue {
    background-color: rgba(0, 116, 255, 0.1);
    color: #0074FF;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0A2559;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #4F5B76;
    line-height: 1.6;
}

/* Responsive TasarÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±m */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .mozpanel-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    .section-header h2 {
        font-size: 30px !important;
        margin: 0 0 26px;
    }

    .mozpanel-section {
        padding: 40px 0;
    }
}



/* ------------------------------------ */
.dinamik-sayfalar-section {
    background-color: #f0f8ff;
    padding: 20px 0;
}

.dinamik-sayfalar-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.dinamik-sayfalar-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.dinamik-sayfalar-section .section-header h2 {
    color: #333e72;
    /* font-size: 24px; */
    font-weight: bold;
    margin-bottom: 10px;
}

.dinamik-sayfalar-section .section-header p {
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.dinamik-sayfalar-section .grid {
    display: grid;
    gap: 24px;
}

.dinamik-sayfalar-section .feature-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.dinamik-sayfalar-section .feature-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #e6f2ff;
    color: #2563eb;
}

.dinamik-sayfalar-section .feature-card h3 {
    color: #2563eb;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dinamik-sayfalar-section .feature-card p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
}

.dinamik-sayfalar-section .feature-card img {
    max-width: 100%;
    height: auto;
    margin-top: auto;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}











/* Toggle butonu gÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¶rÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼nÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ */
.mobile-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: #111;
    transition: transform .2s, opacity .2s;
}

/* MasaÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼stÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ menÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼yÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ bozmayalÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±m */
.main-menu {
    position: static;
    right: auto;
    height: auto;
    box-shadow: none;
}

/* Mobil */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: inline-block !important;
    }

    /* Mobilde menÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ slide-panel olsun */
    .main-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 78% !important;
        max-width: 360px !important;
        height: 100vh !important;
        background: #fff !important;
        box-shadow: -8px 0 24px rgba(0, 0, 0, .08) !important;
        padding: 24px 20px !important;
        transition: right .25s ease !important;
        z-index: 9999 !important;
    }

    .main-menu.open {
        right: 0 !important;
    }

    .main-menu ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    .main-menu a {
        font-size: 16px;
        padding: 10px 4px;
        display: block;
    }

    body.menu-open {
        overflow: hidden !important;
    }

    /* Toggle animasyonu (opsiyonel) */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* === ACÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â°L OVERRIDE: MenÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ mobilde kesin gÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¶rÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼nsÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼n === */
@media (max-width: 1200px) {

    /* Panelin kapalÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± hali (ekrandan dÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸arÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±da) */
    #site-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        bottom: 0 !important;
        width: 78% !important;
        max-width: 360px !important;
        background: #fff !important;
        box-shadow: -8px 0 24px rgba(0, 0, 0, .1) !important;
        padding: 24px 20px !important;
        z-index: 9999 !important;
        transition: right .25s ease !important;
        display: block !important;
        /* baÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€¦Ã‚Â¸ka yerden display:none gelirse kÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±rar */
        overflow-y: auto !important;
    }

    /* AÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±k hali: body.menu-open varsa her tÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼rlÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ gÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¶ster */
    body.menu-open #site-menu {
        right: 0 !important;
    }

    /* (Varsa) .open sÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±nÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±fÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â±nÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚Â± da destekle */
    #site-menu.open {
        right: 0 !important;
    }


    /* MenÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¼ ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¶ÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€¦Ã‚Â¸eleri dikey */
    #site-menu ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    #site-menu a {
        display: block !important;
        padding: 10px 4px !important;
        font-size: 16px !important;
    }
}


/* ------------------------------------ */
/* Referanslar SayfasÄ± Stilleri */
.reference-section {
    padding: 40px 0;
    text-align: center;
    background-color: #fff;
}

.reference-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.reference-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.reference-header p {
    font-size: 16px;
    color: #4F5B76;
    line-height: 1.6;
    margin: 10px auto;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.reference-item {
    border: 1px solid #eef1f5;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    /* Uniform height */
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.reference-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #e0e6ed;
}

.reference-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 992px) {
    .reference-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .reference-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reference-header h1 {
        font-size: 28px;
    }
}


/* ------------------------------------ */

.ref-strip-section {
    padding: 20px 0 0px;

    background-color: transparent;

}

.ref-strip-wrapper {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.ref-strip-scroll {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: auto;

    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-grow: 1;
    cursor: grab;
    /* Mouse ile tutup Ã§ekme imleci */
    user-select: none;
    /* Metin seÃ§imini engelle */
    -webkit-user-drag: none;
}

.ref-strip-scroll img {
    pointer-events: none;
    /* Resimlerin sÃ¼rÃ¼klenmesini engelle, container drag Ã§alÄ±ÅŸsÄ±n */
}

.ref-strip-scroll:active {
    cursor: grabbing;
}

.ref-strip-scroll::-webkit-scrollbar {
    display: none;
}

.ref-strip-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 8px 15px;
    width: 130px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.ref-strip-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
}

.ref-strip-item:hover {
    transform: translateY(-2px);
}

.ref-strip-item:hover img {
    filter: none;
    opacity: 1;
}

.ref-strip-link {
    white-space: nowrap;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 20px;
    border-left: 2px solid #e1e1e1;
    font-size: 14px;
    transition: color 0.3s;
}

.ref-strip-link:hover {
    color: var(--primary-color);
}

/* Biz Kimiz Metni */
.biz-kimiz-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.biz-kimiz-text .sub-title {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.biz-kimiz-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333e72;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.biz-kimiz-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ref-strip-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .ref-strip-link {
        border-left: none;
        padding-left: 0;
        justify-content: center;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }

    .biz-kimiz-text h2 {
        font-size: 24px;
    }
}


/* ------------------------------------ */
/* FAQ Section */
.faq-section {
    padding: 0px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 15px 0;
    cursor: pointer;
    text-align: left;
}

.faq-title {
    font-size: 18px;
    font-weight: 600;
    color: #1A2D51;
}

.faq-button .icon {
    display: inline-block;
    position: relative;
    width: 15px;
    height: 15px;
}

.faq-button .icon::before,
.faq-button .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-button .icon::before {
    width: 15px;
    height: 2px;
}

.faq-button .icon::after {
    width: 2px;
    height: 15px;
}

.faq-button[aria-expanded="true"] .icon::after {
    height: 0;
}

.faq-button[aria-expanded="true"] .icon::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.faq-button[aria-expanded="true"]+.faq-content {
    opacity: 1;
    max-height: 200px;
    /* Yaklasik yukseklik */
    padding: 10px 0 20px;
}

.faq-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
}

.faq-content p {
    color: #4F5B76;
    line-height: 1.6;
    font-size: 15px;
}


/* ------------------------------------ */
/* FOOTER STYLES (Moved from mozw.html) */

.footer {
    background: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
    color: #1a1a1a;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==== ÃœST BLOK: 2+2 | 1+1+1+1 (toplam 8 kolon) ==== */
.footer-top {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 16px;
    align-items: start;
}

/* .footer-columns sarmalayÄ±cÄ±sÄ±nÄ± â€œÅŸeffafâ€ yap ki iÃ§indeki .footer-colâ€™lar gride otursun */
.footer-columns {
    display: contents;
}

/* LOGO: 2 kolon */
.footer-logo {
    grid-column: span 2;
}

.footer-logo img {
    height: 24px;
    width: auto;
}

.footer-logo p {
    color: #4f5b76;
    line-height: 1.5;
}

/* 1. kolon = Bize UlaÅŸÄ±n: 2 kolon */
.footer-columns .footer-col:nth-child(1) {
    grid-column: span 2;
}

/* Kalan 4 kolonun her biri: 1 kolon */
.footer-columns .footer-col:nth-child(n+2) {
    grid-column: span 1;
}

/* BaÅŸlÄ±klar & listeler */
.footer-col h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #001f3f;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #4f5b76;
    margin-bottom: 8px;
    line-height: 1.45;
    word-break: break-word;
}


/* Footer link styles */
.footer-col ul li a {
    color: inherit;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

/* Icons fix */
.footer-col ul li i {
    margin-top: 2px;
}

/* ==== ALT ÅžERÄ°T ==== */
.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4f5b76;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: #ccc;
}

/* ==== Tablet (â‰¤ 992px) ==== */
@media (max-width: 992px) {
    .footer {
        padding: 48px 0 26px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
        row-gap: 18px;
    }

    /* Logo ve Bize UlaÅŸÄ±n tam satÄ±r kaplasÄ±n */
    .footer-logo,
    .footer-columns .footer-col:nth-child(1) {
        grid-column: 1 / -1;
    }

    /* DiÄŸer 4 kolon 2â€™ÅŸer sÃ¼tun halinde */
    .footer-columns .footer-col:nth-child(n+2) {
        grid-column: span 1;
    }
}

/* ==== Telefon (â‰¤ 600px) ==== */
@media (max-width: 600px) {
    .footer {
        padding: 36px 0 22px;
    }

    /* Ãœst kÄ±sÄ±m: 1 + 1 + 2 kolon */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
        column-gap: 16px;
    }

    /* Logo + Bize UlaÅŸÄ±n tam geniÅŸlik */
    .footer-logo,
    .footer-columns .footer-col:nth-child(1) {
        grid-column: 1 / -1;
        /* tÃ¼m satÄ±rÄ± kapla */
    }

    /* DiÄŸer 4 kolon: 2 sÃ¼tunlu grid */
    .footer-columns .footer-col:nth-child(n+2) {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        /* istersen center */
        gap: 8px;
    }
}








/************* PROMO VÃƒâ€žÃ‚Â°TRÃƒâ€žÃ‚Â°N ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â SIFIRDAN *************/
.promo-section {
    --gap: 18px;
    /* kartlar arasÃƒâ€žÃ‚Â± boÃƒâ€¦Ã…Â¸luk */
    --tall: 560px;
    /* uzun kart yÃƒÆ’Ã‚Â¼ksekliÃƒâ€žÃ…Â¸i (masaÃƒÆ’Ã‚Â¼stÃƒÆ’Ã‚Â¼) */
    --radius: 14px;
    /* kart kÃƒÆ’Ã‚Â¶Ãƒâ€¦Ã…Â¸eleri */
    --shadow: 0 6px 18px rgba(16, 24, 40, .06);
    background: #f7f8fb;
    padding: 0px 0 0px;
}

.promo-section .container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

/* GRID: Solda 1 geniÃƒâ€¦Ã…Â¸ kolon, saÃƒâ€žÃ…Â¸da 2 kolon */
.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    gap: var(--gap);
}

/* Kart iskeleti */
.promo {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fcfcfc;
    border: 1px solid #eef1f5;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: inherit;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    isolation: isolate;
}

.promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(16, 24, 40, .10);
    border-color: #e6ecf3;
}

/* GÃƒÆ’Ã‚Â¶rsel alanÃƒâ€žÃ‚Â± kartÃƒâ€žÃ‚Â± tamamen doldursun */
.promo-media,
.promo-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* bottom: -94px; */
    /* position: relative; */
}

/* ÃƒÆ’Ã…â€œstte okunaklÃƒâ€žÃ‚Â±lÃƒâ€žÃ‚Â±k iÃƒÆ’Ã‚Â§in film kaplama */
.promo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(303deg, rgb(6 17 38 / 17%) 0%, rgba(6, 17, 38, 0%) 55%, rgba(6, 17, 38, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Metin katmanÃƒâ€žÃ‚Â± */
.promo-body {
    position: absolute;
    inset: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    color: #0f1e3a;
    max-width: 72%;
}

.promo .kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #1b223df0;
    padding-left: 1px;
}

.promo h3 {
    margin: 0;
    /* font-weight:800; */
    line-height: 1.15;
    font-size: 28px;
    color: #0f1e3a;
}

.promo h3 .hl {
    color: #ff5e00;
}

.promo p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.promo .cta {
    /* display:inline-block; */
    margin-top: 6px;
    font-weight: 600;
    color: #0f1e3a;
    /* border-bottom:2px solid #ff5e00; */
    /* background:rgba(255,255,255,.85); */
    /* padding:2px 6px; */
    /* border-radius:4px; */
}

/* YÃƒÆ’Ã‚Â¼kseklikler ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Piksel netlik */
.promo--xl {
    height: var(--tall);
}

/* sol bÃƒÆ’Ã‚Â¼yÃƒÆ’Ã‚Â¼k */
.promo--tall {
    height: var(--tall);
}

/* saÃƒâ€žÃ…Â¸ uzun */
.promo--md,
.promo--sm {
    height: calc((var(--tall) - var(--gap)) / 2);
}

/* iki yarÃƒâ€žÃ‚Â±m = tall - gap */

/* YerleÃƒâ€¦Ã…Â¸im */
.promo--xl {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.promo--md {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.promo--sm {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.promo--tall {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

/* BÃƒÆ’Ã‚Â¼yÃƒÆ’Ã‚Â¼k/tall kartlarda metin beyaz ve daha dar alanda */
.promo--xl .promo-body {
    color: #fff;
    max-width: 90%;
}

.promo--tall .promo-body {
    color: #fff;
    max-width: 80%;
}

/* SaÃƒâ€žÃ…Â¸daki orta/kÃƒÆ’Ã‚Â¼ÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â¼k kartlarda aÃƒÆ’Ã‚Â§Ãƒâ€žÃ‚Â±k film & koyu metin */
.promo--md::after,
.promo--sm::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, .35) 70%, rgba(255, 255, 255, 0) 100%);
}

.promo--md .promo-body,
.promo--sm .promo-body {
    color: #0f1e3a;
}

.promo--md p,
.promo--sm p {
    color: #4f5b76;
}

/* Alt 3'lÃƒÆ’Ã‚Â¼ bilgi Ãƒâ€¦Ã…Â¸eridi */
.promo-features {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.pf-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.pf-item i {
    font-size: 22px;
    color: #ff5e00;
    margin-top: 2px;
}

.pf-item h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #0f1e3a;
    font-weight: 700;
}

.pf-item p {
    margin: 0;
    color: #4f5b76;
    font-size: 14px;
    line-height: 1.5;
}

/************* Breakpoints *************/
/* GeniÃƒâ€¦Ã…Â¸ tablet */
@media (max-width: 1100px) {
    .promo-grid {
        grid-template-columns: 1.5fr 1fr;
        --tall: 520px;
    }

    .promo--xl {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .promo--tall {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }

    .promo--md {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .promo--sm {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
}

/* Tablet & Mobil */
@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo--xl,
    .promo--tall,
    .promo--md,
    .promo--sm {
        height: auto;
        min-height: 320px;
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .promo::after {
        background: linear-gradient(180deg, rgb(6 17 38 / 7%) 0%, rgba(6, 17, 38, 0) 60%)
    }

    .promo-body {
        max-width: 85%;
    }

    .promo-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .promo-features {
        grid-template-columns: 1fr;
    }
}


/* =========================
   3'lÃƒÆ’Ã‚Â¼ satÃƒâ€žÃ‚Â±r: 2 ikon + 1 banner
   ========================= */
.promo-features--v2 {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    /* iki kÃƒÆ’Ã‚Â¼ÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â¼k, bir geniÃƒâ€¦Ã…Â¸ */
    gap: var(--gap, 18px);
}

/* ortak kart */
.pf-card {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, .06);
    padding: 24px;
    color: #0f1e3a;
}

/* ikon kartlarÃƒâ€žÃ‚Â± */
.pf-card--icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.pf-card--icon i {
    font-size: 44px;
    color: #ff5e00;
    line-height: 1;
}

.pf-card--icon h4 {
    margin: 8px 0 6px;
    font-size: 18px;
    font-weight: 700;
}

.pf-card--icon p {
    margin: 0;
    color: #4f5b76;
    font-size: 14px;
}

/* geniÃƒâ€¦Ã…Â¸ banner */
.pf-card--banner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* sol metin, saÃƒâ€žÃ…Â¸ gÃƒÆ’Ã‚Â¶rsel */
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    padding: 0;
    /* iÃƒÆ’Ã‚Â§ boÃƒâ€¦Ã…Â¸luÃƒâ€žÃ…Â¸u alt katmanlara veriyoruz */
}

.pf-banner-body {
    padding: 26px 28px;
}

.pf-banner-body .kicker {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    color: #8c97a9;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pf-banner-body h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f1e3a;
}

.pf-banner-body h3 .hl {
    color: #ff5e00;
}

.pf-banner-body p {
    margin: 0;
    color: #4f5b76;
}

/* banner gÃƒÆ’Ã‚Â¶rseli */
.pf-banner-media {
    position: relative;
    height: 100%;
}

.pf-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

/* hover */
.pf-card--banner:hover {
    box-shadow: 0 10px 26px rgba(16, 24, 40, .10);
    border-color: #e6ecf3;
}

/* kÃƒâ€žÃ‚Â±rÃƒâ€žÃ‚Â±lÃƒâ€žÃ‚Â±mlar */
@media (max-width:1100px) {
    .promo-features--v2 {
        grid-template-columns: 1fr 1fr;
    }

    .pf-card--banner {
        grid-column: 1 / -1;
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (max-width:768px) {
    .promo-features--v2 {
        grid-template-columns: 1fr;
    }

    .pf-card--banner {
        grid-template-columns: 1fr;
    }

    .pf-banner-media img {
        border-radius: 0 0 14px 14px;
        /* mobilde gÃƒÆ’Ã‚Â¶rsel altta */
        max-height: 220px;
        /* orantÃƒâ€žÃ‚Â±yÃƒâ€žÃ‚Â± koru */
        object-fit: cover;
    }
}



/* === Pricing Card (Habersoft temasÃ„Â±yla uyumlu) === */
.pricing {
    --card-bg: #ffffff;
    --card-brd: #e9eef5;
    --shadow: 0 8px 28px rgba(16, 24, 40, .08);
    --title: #1762ff;
    /* baÃ…Å¸lÃ„Â±k mavi tonu */
    --text: #0f1e3a;
    /* koyu lacivert metin */
    --muted: #4f5b76;
    /* ikincil metin */
    --accent: #ff5e00;
    /* vurgu turuncu (isteÃ„Å¸e baÃ„Å¸lÃ„Â±) */
    --ok: #17b26a;
    /* tik rengi */
    --btn-grad-from: #1ea64a;
    /* satÃ„Â±n al butonu gradient */
    --btn-grad-to: #2ad36f;
    --btn-text: #fff;
    --radius: 16px;
    --pad: 22px;
    margin: 21px 0 0 0;
    /* display: grid; */
    /* grid-template-columns: repeat(3, 1fr); */
}

.pricing .pricing-card {
    /* max-width: 360px; */
    background: var(--card-bg);
    border: 1px solid var(--card-brd);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: var(--pad);
    /* margin-inline: auto; */
}

.pricing .pricing-head h3 {
    margin: 0 0 4px;
    font-weight: 800;
    font-size: 26px;
    text-align: center;
    background: linear-gradient(90deg, #0e8956, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.pricing .pricing-head .subtitle {
    margin: 0;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.pricing .sep {
    border: 0;
    border-top: 1px solid var(--card-brd);
    margin: 16px 0 14px;
}

.pricing .pricing-price {
    text-align: center;
}

.pricing .pricing-price .old {
    color: #9aa6bf;
    text-decoration: line-through;
    margin-bottom: 4px;
    font-weight: 600;
}

.pricing .pricing-price .now {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1;
    margin-bottom: 6px;
}

.pricing .pricing-price .amount {
    font-size: 44px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: .2px;
}

.pricing .pricing-price .currency {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

.pricing .pricing-price .note {
    font-size: 12px;
    color: #6e7b99;
}

/* SatÃ„Â±n Al butonu */
.pricing .btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 14px 0 12px;
    height: 46px;
    background: linear-gradient(90deg, var(--btn-grad-from), var(--btn-grad-to));
    color: var(--btn-text);
    text-decoration: none;
    font-weight: 800;
    border-radius: 10px;
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
    box-shadow: 0 10px 18px rgba(46, 204, 113, .25);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.pricing .btn-buy:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.pricing .btn-buy i {
    font-size: 18px;
}

/* Ãƒâ€“zellik listesi */
.pricing .features {
    list-style: none;
    padding: 8px 0 0;
    margin: 0 0 10px;
    display: grid;
    row-gap: 10px;
}

.pricing .features li {
    color: var(--muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.4;
    font-size: 14px;
}

.pricing .features i {
    color: var(--ok);
    margin-top: 2px;
}

/* Alt link */
.pricing .more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1762ff;
    font-weight: 700;
    text-decoration: none;
    margin-top: 6px;
}

.pricing .more:hover {
    text-decoration: underline;
}

/* Responsive ufak dokunuÃ…Å¸lar */
@media (max-width: 420px) {
    .pricing .pricing-card {
        max-width: 100%;
        width: 100%;
    }

    .pricing .pricing-price .amount {
        font-size: 40px;
    }

    .pricing .container {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}



* {
    box-sizing: border-box;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 90deg;
    inherits: true;
}

@property --gradX {
    syntax: '<percentage>';
    initial-value: 50%;
    inherits: true;
}

@property --gradY {
    syntax: '<percentage>';
    initial-value: 0%;
    inherits: true;
}



:root {
    --d: 2500ms;
    --angle: 90deg;
    --gradX: 100%;
    --gradY: 50%;
    --c1: rgba(168, 239, 255, 1);
    --c2: rgba(168, 239, 255, 0.1);
}

.wrapper {
    min-width: min(40rem, 100%);
}

.box {
    border: 0.35rem solid;
    border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
    animation: borderRotate var(--d) linear infinite forwards;
}

.box:nth-child(2) {
    border-image: radial-gradient(ellipse at var(--gradX) var(--gradY), var(--c1), var(--c1) 10%, var(--c2) 40%) 30;
    animation: borderRadial var(--d) linear infinite forwards;
}

@keyframes borderRotate {
    100% {
        --angle: 420deg;
    }
}

@keyframes borderRadial {
    20% {
        --gradX: 100%;
        --gradY: 50%;
    }

    40% {
        --gradX: 100%;
        --gradY: 100%;
    }

    60% {
        --gradX: 50%;
        --gradY: 100%;
    }

    80% {
        --gradX: 0%;
        --gradY: 50%;
    }

    100% {
        --gradX: 50%;
        --gradY: 0%;
    }
}

/* Contact Page Styles */
.contact-page-section {
    padding: 0 0;
    /* min-height: 80vh; */
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.contact-card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 500px;
}

/* Left Column - Info */
.contact-info {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #0074FF 0%, #0057CD 100%);
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info>p {
    font-size: 15px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    margin-right: 15px;
    margin-top: 4px;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-content p,
.info-content a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.info-content a:hover {
    text-decoration: underline;
}

/* Right Column - Form */
.contact-form-wrapper {
    flex: 1.5;
    min-width: 300px;
    padding: 40px;
    background: #fff;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.3s;
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 116, 255, 0.1);
}

.form-control::placeholder {
    color: #bbb;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.contact-form-wrapper .btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--hero-blue);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form-wrapper .btn-submit:hover {
    background-color: #0046a3;
}

.info-item--company {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.additional-contact-lines {
    margin-top: 28px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e7eaf1;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.additional-contact-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.additional-contact-heading > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #6d28ff;
    background: #f1ebff;
    border-radius: 10px;
}

.additional-contact-heading h3 {
    margin: 0 0 3px;
    color: #111827;
    font-size: 20px;
}

.additional-contact-heading p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.additional-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-line-group {
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
}

.contact-line-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: #18233d;
    font-size: 14px;
    font-weight: 700;
}

.contact-line-group--whatsapp .contact-line-title {
    color: #087b5b;
}

.contact-line-list {
    display: grid;
    gap: 8px;
}

.contact-line-list a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    color: #1f2937;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-line-list a:hover {
    color: #6525ff;
    border-color: #cbb9ff;
    transform: translateY(-1px);
}

.contact-line-list a i {
    color: #94a3b8;
    font-size: 11px;
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .additional-contact-lines {
        padding: 22px 18px;
    }

    .additional-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Page Redesign v2 */
.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .pricing-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid-v2 {
        grid-template-columns: 1fr;
    }
}

.pricing-card-v2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 24px;
    text-align: center;
    border-top: 5px solid transparent;
    /* Colored border placeholder */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    background-clip: padding-box;
    /* Ensures content doesn't overlap border */
}

.pricing-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Border Colors */
.pricing-card-v2.border-cyan {
    border-top-color: #00A3FF;
}

.pricing-card-v2.border-pink {
    border-top-color: #FF007A;
}

.pricing-card-v2.border-orange {
    border-top-color: #FF9900;
}

.pricing-card-v2.border-green {
    border-top-color: #A4C639;
}

.pricing-card-v2 h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.pricing-card-v2 .subtitle {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

.discount-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    background-color: #FF007A;
    /* Default pinkish red */
}

/* Price Block */
.price-block {
    margin-bottom: 20px;
}

.price-block .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.price-block .current-price {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.price-block .currency {
    font-size: 20px;
    vertical-align: top;
    margin-left: 2px;
}

.price-block .period {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.price-block .renewal-note {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.btn-buy-v2 {
    display: block;
    width: 100%;
    background-color: #FFC107;
    /* Gold/Yellow */
    color: #333;
    font-weight: 700;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 25px;
    transition: background 0.3s;
}

.btn-buy-v2:hover {
    background-color: #FFB300;
    color: #111;
}

/* Features List */
.features-v2 {
    list-style: none;
    width: 100%;
    text-align: center;
    /* Center align as per request image */
    padding: 0;
    margin: 0;
}

.features-v2 li {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
    font-weight: 600;
}

.features-v2 li.dim {
    color: #999;
    font-weight: 400;
}

.features-v2 li strong {
    color: #000;
}

/* Feature Slider Section */
.feature-slider-section {
    padding: 40px 0;
    background-color: #ffffff;
    /* Clean white background */
    overflow: hidden;
}

.feature-slider-section .section-header {
    margin-bottom: 60px;
}

.feature-slider-section .section-header h2 {
    color: #333e72;
}

.feature-slider-section .section-header p {
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slider-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
    touch-action: pan-y;
}

.slider-wrapper:active {
    cursor: grabbing;
}

.slide {
    flex: 0 0 85%;
    /* Center mode width */
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 30px;
    box-sizing: border-box;

    /* Center Mode Styles - Inactive State */
    opacity: 0.5;
    filter: blur(3px);
    transform: scale(0.9);
    transition: all 0.5s ease;
    background-color: transparent;
    border-radius: 15px;
}

/* Active Slide State */
.slide.active-slide {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    background-color: #fffeee;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.slide-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
}

.slide-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.slide-content {
    flex: 0.8;
}

.slide-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #333e72;
    font-weight: 800;
}

.slide-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    /* Blue tone */
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 116, 255, 0.3);
    transition: transform 0.2s, background-color 0.2s;
}

.slider-btn:hover {
    background-color: var(--dark-blue);
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 18px;
}

/* Pagination Dots Removed */

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
    /* Enable grab cursor */
    touch-action: pan-y;
    /* Allow vertical scroll but handle horizontal swipe in JS */
}

.slider-wrapper:active {
    cursor: grabbing;
}

@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        flex: 0 0 100%;
    }
}

/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    width: 100%;
    max-width: 1160px;
    margin: 20px auto -16px;
    overflow: hidden;
    border-radius: 8px;
    background: transparent;
    padding-bottom: 60px;
    /* Increased space for dots */
    /* or white if needed */
}

.hero-slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.hero-slide {
    min-width: 100%;
    /* flex-shrink: 0; */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
}

/* Slide Layouts */
.slide-full {
    width: 100%;
    padding: 0;
    /* Full slide has no internal padding usually */
}

.slide-full img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: none;
    /* Removed shadow per user request */
    display: block;
}

.slide-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;

    /* Border or shadow specifically for this card look */
    /* border: 1px solid #e1e4e8; */
    width: 100%;
}

.slide-split-content {
    flex: 1;
    text-align: left;
}

.slide-split-content h2 {
    font-size: 28px;
    color: #333e72;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide-split-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.slide-split-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.slide-split-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: none;
    /* Removed shadow per user request */
}

/* Reverse layout helper */
.slide-reverse {
    flex-direction: row-reverse;
}

/* Navigation Buttons */
.hero-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
}

.hero-nav-btn:hover {
    background: #0074FF;
    color: #fff;
    border-color: #0074FF;
}

.hero-prev {
    left: -10px;
}

.hero-next {
    right: -10px;
}

/* Responsive */
@media (max-width: 768px) {
    .slide-split {
        flex-direction: column-reverse;
        /* Stack image on top of text usually */
        padding: 20px;
        text-align: center;
    }

    .slide-reverse {
        flex-direction: column-reverse;
    }

    .slide-split-content {
        text-align: center;
        margin-top: 20px;
    }

    .hero-nav-btn {
        width: 36px;
        height: 36px;
    }
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    /* Moved up to avoid clipping */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background-color: #0074FF;
    transform: scale(1.2);
}

.hero-dot:hover {
    background-color: rgba(0, 116, 255, 0.5);
}

/* --- Pricing Table Styles --- */
.pricing-table-section {
    padding: 20px 0;
    background-color: #fff;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    margin-bottom: 30px;
    table-layout: fixed;
    /* Fix column widths */
}

.pricing-table th,
.pricing-table td {
    padding: 15px 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

/* Feature Name Column */
.pricing-table th:first-child,
.pricing-table td:first-child {
    text-align: left;
    width: 25%;
    background-color: #fcfcfc;
    border-right: 1px solid #eee;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Header Cells (Rich Pricing) */
.pricing-table thead th {
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    vertical-align: top;
}

/* Package Titles */
.pt-title {
    display: block;
    font-size: 18px;
    color: #1a2d51;
    font-weight: 700 !important;
    margin-bottom: 10px;
}

span.pt-title {
    border-bottom: 1px solid #e2e2e2;
}

/* Discount Badge */
.pt-discount {
    display: inline-block;
    background-color: #FF007A;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(255, 0, 122, 0.2);
}

/* Price Styling */
.pt-price-block {
    margin: 15px 0;
}

.pt-old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

.pt-price {
    font-size: 32px;
    font-weight: 800 !important;
    color: #333;
    line-height: 1;
}

.pt-currency {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    vertical-align: super;
}

.pt-period {
    display: block;
    font-size: 13px;
    color: #777;
    margin-top: 5px;
}

/* Buy Button */
.pt-btn {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    max-width: 160px;
    transition: all 0.2s;
}

.pt-btn:hover {
    background-color: #ffca2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Icons */
.pt-check {
    color: #28a745;
    font-size: 16px;
    margin-right: 5px;
}

.pt-cross {
    color: #dc3545;
    font-size: 16px;
    opacity: 0.3;
}

/* Mobile Tab Switcher */
.mobile-tabs {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    background: #f9f9f9;
    /* Match page bg */
    padding: 15px 0;
}

.tab-btn {
    padding: 10px 10px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    text-align: center;
}

.tab-btn.active {
    border-color: #0074FF;
    background-color: #e6f0ff;
    color: #0074FF;
    box-shadow: 0 2px 8px rgba(0, 116, 255, 0.1);
}

/* Responsive Table Logic */
@media (max-width: 768px) {
    .mobile-tabs {
        display: flex;
    }

    /* Hide generic column classes by default on mobile */
    .col-starter,
    .col-standard,
    .col-pro {
        display: none !important;
    }

    /* Force display of active columns */
    .col-starter.active-col,
    .col-standard.active-col,
    .col-pro.active-col {
        display: table-cell !important;
    }

    .pricing-table {
        table-layout: auto;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 5px;
    }

    .pricing-table th:first-child,
    .pricing-table td:first-child {
        width: 35%;
        font-size: 12px;
        padding: 5px;
    }

    /* Hide the empty top-left cell on mobile */
    .pricing-table thead th:first-child {
        display: none;
    }

    /* Minimal Header Styling */
    .pricing-table thead th.active-col {
        padding: 15px;
        text-align: center;
        /* Ensure it can span */
        display: table-cell;
        /* The JS will add colspan=2 */
    }

    .pt-title {
        font-size: 16px;
        display: inline-block;
        margin-right: 5px;
        margin-bottom: 5px;
    }

    .pt-discount {
        font-size: 10px;
        padding: 4px 6px;
        display: inline-block;
        /* margin-bottom: 18px; */
        vertical-align: middle;
        margin-top: 2px;
    }

    /* Flex layout for Price Block and Button on mobile */
    .pt-price-block {
        display: flex;
        justify-content: center;
        align-items: normal;
        gap: 10px;
        margin: 5px 0 2px;
    }

    .pt-old-price {
        font-size: 12px;
        margin-bottom: 0;
    }

    .pt-price {
        font-size: 44px;
    }

    .pt-currency {
        font-size: 14px;
    }

    /* .pt-period {
        display: none; 
        Hide 'Tek Seferlik' text on mobile minimal view to save space 
    } */

    .pt-btn {
        padding: 8px 20px;
        font-size: 13px;
        width: auto;
        /* Allow button to shrink */
        display: block;
        text-align: center;
        margin: 0px auto;
    }
}

/* --- Payment Toggle --- */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    /* Centered as per user feedback (arrow points to center) */
    align-items: center;
    padding: 10px 0 20px;
    gap: 15px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 700;
    color: #7ab51d;
    /* Greenish color from example image text */
    text-transform: uppercase;
}

.toggle-buttons {
    display: flex;
    gap: 5px;
}

.p-toggle-btn {
    padding: 8px 20px;
    border: none;
    background: #cbd5e1;
    /* Gray for inactive */
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    /* Slight radius */
    transition: all 0.2s;
}

.p-toggle-btn.active {
    background: #8dc63f;
    /* Green for active */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.p-toggle-btn:hover:not(.active) {
    background: #94a3b8;
}

/* --- Included Features Grid --- */
.included-features-section {
    padding: 20px 0;
    background-color: #fff;
}

.section-header h2 {
    font-size: 28px;
    color: #1a2d51;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.features-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: left;
    padding: 20px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 20px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* --- Solutions Section --- */
.solutions-section {
    padding: 20px 0;
    background-color: #fff;
}

.solutions-section .section-header h2 {
    font-size: 32px;
    color: #1a2d51;
    font-weight: 800;
    margin-bottom: 15px;
}

.solutions-section .section-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-card {
    background-color: #f5f9ff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.solution-content {
    flex: 1;
    z-index: 2;
    text-align: left;
}

.solution-content h3 {
    font-size: 26px;
    color: #1a2d51;
    margin-bottom: 15px;
    font-weight: 800;
}

.solution-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 280px;
}

.btn-yellow {
    background-color: #ffc107;
    color: #000;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    font-size: 14px;
}

.btn-yellow:hover {
    background-color: #ffb300;
}

.solution-media {
    flex: 1;
    position: relative;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card Visuals */
.media-domain .floating-tag {
    position: absolute;
    background: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    font-weight: 800;
    color: #1a2d51;
}

.tag-com {
    bottom: 20px;
    left: 20px;
    transform: rotate(-12deg);
    font-size: 22px;
    z-index: 3;
}

.tag-shop {
    top: 20px;
    right: 40px;
    transform: rotate(8deg);
    color: #99a5b9;
    font-size: 16px;
}

.tag-site {
    top: 10px;
    right: -10px;
    transform: rotate(-5deg);
    color: #cbd5e1;
    font-size: 18px;
}

.tag-online {
    bottom: 50px;
    right: 10px;
    transform: rotate(5deg);
    color: #94a3b8;
    font-size: 17px;
}

.media-wp .wp-logo-bg {
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 70px;
    color: #21759b;
    opacity: 0.9;
}

.media-wp .browser-mockup {
    width: 170px;
    height: 110px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-left: 40px;
}

.media-hazir .editor-mockup {
    width: 200px;
    height: 130px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(90deg, #f0f0f0 40px, transparent 40px);
}

.media-email .email-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-item {
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 180px;
}

.email-item .avatar {
    width: 28px;
    height: 28px;
    background: #e2e8f0;
    border-radius: 50%;
}

.email-item .text {
    font-size: 10px;
    color: #64748b;
}

.email-item .text b {
    color: #1e293b;
    display: block;
}

.solutions-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.dot {
    width: 40px;
    height: 4px;
    background-color: #e2e8f0;
    border-radius: 2px;
}

.dot.active {
    background-color: #334155;
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .solution-content {
        margin-bottom: 20px;
    }

    .solution-content p {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .features-grid-3col {
        grid-template-columns: 1fr;
    }
}

/* --- CTA Banner --- */
.cta-banner-section {
    padding: 40px 0;
}

.cta-banner {
    background: #121e36;
    background: linear-gradient(90deg, #10192b 0%, #1a2d51 100%);
    border-radius: 12px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-gradient-banner {
    background: #ff6a00;
    background: linear-gradient(90deg, #ff6a00 0%, #ee0979 100%);
    border-radius: 12px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(238, 9, 121, 0.2);
}

.cta-text h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.btn-cta-white {
    background-color: #fff;
    color: #1a2d51;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-cta-white.orange-btn {
    color: #ee0979;
}

.btn-cta-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {

    .cta-banner,
    .cta-gradient-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
}

.footer {
    background: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
    color: #1a1a1a;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==== ÜST BLOK: 2+2 | 1+1+1+1 (toplam 8 kolon) ==== */
.footer-top {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 16px;
    align-items: start;
}

.footer-columns {
    display: contents;
}

/* LOGO: 2 kolon */
.footer-logo {
    grid-column: span 2;
}

.footer-logo img {
    height: 24px;
    width: auto;
}

.footer-logo p {
    color: #4f5b76;
    line-height: 1.5;
}

/* 1. kolon = Bize Ulaşın: 2 kolon */
.footer-columns .footer-col:nth-child(1) {
    grid-column: span 2;
}

/* Kalan 4 kolonun her biri: 1 kolon */
.footer-columns .footer-col:nth-child(n+2) {
    grid-column: span 1;
}

/* Başlıklar & listeler */
.footer-col h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #001f3f;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #4f5b76;
    margin-bottom: 8px;
    line-height: 1.45;
    word-break: break-word;
}

.footer-col ul li i {
    margin-top: 2px;
}

/* ==== ALT ŞERİT ==== */
.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4f5b76;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: #ccc;
}

/* ==== Tablet (≤ 992px) ==== */
@media (max-width: 992px) {
    .footer {
        padding: 48px 0 26px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
        row-gap: 18px;
    }

    /* Logo ve Bize Ulaşın tam satır kaplasın */
    .footer-logo,
    .footer-columns .footer-col:nth-child(1) {
        grid-column: 1 / -1;
    }

    /* Diğer 4 kolon 2’şer sütun halinde */
    .footer-columns .footer-col:nth-child(n+2) {
        grid-column: span 1;
    }
}

/* ==== Telefon (≤ 600px) ==== */
@media (max-width: 600px) {
    .footer {
        padding: 36px 0 22px;
    }

    /* Üst kısım: 1 + 1 + 2 kolon */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
        column-gap: 16px;
    }

    /* Logo + Bize Ulaşın tam genişlik */
    .footer-logo,
    .footer-columns .footer-col:nth-child(1) {
        grid-column: 1 / -1;
        /* tüm satırı kapla */
    }

    /* Diğer 4 kolon: 2 sütunlu grid */
    .footer-columns .footer-col:nth-child(n+2) {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        /* istersen center */
        gap: 8px;
    }
}

/* Features Table Styles (Global) */
.features-page-section {
    padding: 10px 0;
}

.table-section-title {
    background-color: #eee;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
    margin-top: 0px;
    text-align: center;
    border: 1px solid #ddd;
    border-bottom: none;
}

.features-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.features-table th,
.features-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.features-table th {
    background-color: #f8fbff;
    color: #1A2D51;
    font-weight: 700;
    font-size: 16px;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 2px solid #e1e7f0;
}

.features-table th:first-child,
.features-table td:first-child {
    text-align: left;
    width: 35%;
    border-right: 1px solid #f0f0f0;
    font-weight: 600;
    color: #1A2D51;
}

.feature-name-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-icon {
    background-color: #5d9cec;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.info-icon:hover {
    transform: scale(1.1);
    background-color: #4a89dc;
}

.check-icon {
    color: #8cc152;
    font-size: 20px;
}

.cross-icon {
    color: #da4453;
    font-size: 20px;
}

.text-val {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    line-height: 1.4;
}

.desc-row {
    display: none;
}

.desc-row.active {
    display: table-row;
}

.desc-cell {
    background-color: #fbc02d;
    color: #333;
    text-align: left !important;
    padding: 20px 30px !important;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e0a800;
}

.pack-header {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    display: block;
    margin-bottom: 5px;
}

.pack-price {
    display: block;
    font-size: 25px;
    color: #333;
    font-weight: 800 !important;
}

.pack-vat {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

@media (max-width: 768px) {

    .features-table th,
    .features-table td {
        font-size: 12px;
        padding: 10px 5px;
        font-family: "Inter";
    }

    .info-icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .text-val {
        font-size: 11px;
    }
}

.responsive-picture {
    display: block;
    width: 100%;
}

.responsive-picture img {
    display: block;
    max-width: 100%;
}

.promo-media > .responsive-picture {
    position: absolute;
    inset: 0;
    height: 100%;
}

.promo-media > .responsive-picture img {
    position: static !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-split-image > .responsive-picture,
.slide-image > .responsive-picture,
.feature-image > .responsive-picture {
    width: 100%;
}
