@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-main: #0E85FB;
    --color-main2: #4EAAFF;
    --color-font: #181818;
    --color-font-gray: #6E6E6E;
    --color-heading: #03376a;
    --green: #00c753;
    --green2: #3DC07C;
    --bg-light: #F3F9FF;
    --border-color: #E2E2E2;
    --font: 'Urbanist', sans-serif;
    --radius: 10px;
    --radius-lg: 20px;
    --transition: .3s ease;
    --size-heading: 28px;
    --size-heading-line: 38px;
    --size-subheading: 24px;
    --size-subheading-line: 34px;
    --size-description: 20px;
    --size-description-line: 30px;
    --size-title: 18px;
    --size-title-line: 24px;
    --size-btn: 14px;
}
@media (max-width: 1200px) {
    :root {
        --size-heading: 28px; --size-heading-line: 38px;
        --size-description: 18px; --size-description-line: 28px;
        --size-subheading: 22px; --size-subheading-line: 32px;
        --size-title: 16px; --size-title-line: 22px;
    }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font) !important; background: #fff !important; color: var(--color-font); line-height: 1.8; overflow-x: hidden !important; -ms-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
::selection { background: var(--color-main); color: #fff; }
a { text-decoration: none; color: var(--color-main); }
a:hover { text-decoration: none; color: var(--color-main2); }
img { max-width: 100%; height: auto; }

/* PRELOADER */
.preloader { position: fixed; inset: 0; z-index: 99999; background: #fff; display: flex; align-items: center; justify-content: center; transition: opacity .5s, visibility .5s; }
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-spinner { width: 40px; height: 40px; border: 3px solid #e2e2e2; border-top-color: var(--color-main); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* NAVBAR */
.gsoft-navbar { background: #fff; position: sticky; top: 0; z-index: 999; border-bottom: 1px solid #f0f0f0; transition: all var(--transition); }
.gsoft-navbar.fixed { box-shadow: 0 2px 10px rgba(0,0,0,.1); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.navbar-logo img { max-height: 30px; }
.nav-menu { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav-menu > li > a { color: var(--color-heading); font-size: 15px; font-weight: 600; padding: 10px 14px; transition: all var(--transition); display: flex; align-items: center; height: 80px; border-bottom: 2px solid transparent; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--color-main); border-bottom-color: var(--color-main); }
.sizi-arayalim-btn { background: var(--green); color: #fff; padding: 12px 35px; font-weight: 600; font-size: 16px; border-radius: 5px; transition: all var(--transition); display: inline-flex; align-items: center; }
.sizi-arayalim-btn:hover { background: #00b348; color: #fff; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 8px; color: var(--color-heading); z-index: 1001; position: relative; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998; backdrop-filter: blur(2px); }
.mobile-overlay.active { display: block; }
body.menu-open { overflow: hidden; }
.mobile-cta-wrap { display: none; }
.mobile-menu-top { display: none !important; }
.nav-contact { display: flex; align-items: center; gap: 15px; }
.nav-contact .phone { color: var(--color-heading); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.nav-contact .phone:hover { color: var(--color-main); }

/* DROPDOWN MENU - GSoft Style */
.nav-dropdown { position: static; }
.nav-dropdown-toggle { gap: 4px; }
.nav-dropdown-toggle .bi-chevron-down { font-size: 10px; transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown-toggle .bi-chevron-down { transform: rotate(180deg); }

.mega-dropdown {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid var(--color-main);
    box-shadow: 0 15px 50px rgba(0,0,0,.12);
    z-index: 999;
    padding: 0;
}
.mega-dropdown.mini {
    left: auto;
    right: 0;
    position: absolute;
    width: 560px;
}
.nav-dropdown:has(.mega-dropdown.mini) { position: relative; }
.nav-dropdown:hover .mega-dropdown { display: block; }

/* Dropdown Body */
.mega-dropdown-body {
    display: flex;
    padding: 30px 40px;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}
.mega-section {
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid #f0f0f0;
}
.mega-section:last-child { border-right: 0; }
.mega-section:first-child { padding-left: 0; }
.mega-section:last-child { padding-right: 0; }

.mega-section h6 {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-main);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    padding-bottom: 0;
}
.mega-section ul { list-style: none; padding: 0; margin: 0; }
.mega-section ul li { padding: 0; }
.mega-section ul li a {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    color: var(--color-font);
    height: auto;
    border-bottom: none;
    transition: all .2s;
}
.mega-section ul li a:hover { padding-left: 6px; border-bottom: none; }

.dd-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-heading);
    line-height: 1.3;
    transition: color .2s;
}
.mega-section ul li a:hover .dd-title { color: var(--color-main); }

.dd-desc {
    font-size: 12px;
    font-weight: 300;
    color: var(--color-font-gray);
    margin-top: 2px;
    line-height: 1.4;
}

/* Corporate List (Kurumsal) */
.corporate-list { min-width: 200px; }

/* Dropdown Footer */
.mega-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: var(--bg-light);
    border-top: 1px solid #e8ecf1;
}
.mega-dropdown-footer div { display: flex; flex-direction: column; }
.mega-dropdown-footer strong { font-size: 14px; font-weight: 600; color: var(--color-heading); }
.mega-dropdown-footer span { font-size: 13px; font-weight: 300; color: var(--color-font-gray); margin-top: 2px; }
.mega-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--color-main);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: all .3s;
    white-space: nowrap;
    border-bottom: none;
    height: auto;
}
.mega-footer-btn:hover { background: #0a6fd4; color: #fff; border-bottom: none; }

/* HERO BANNER - Tek resim, tam genislik */
.hero-banner {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.hero-banner a {
    display: block;
    width: 100%;
}
.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ========================================
   PACKAGES SECTION - Orijinal gsoft.com.tr
   ======================================== */
.packages-section {
    padding: 60px 0;
    background: #fff;
}
.hero-pkg-title {
    text-align: center;
    margin-bottom: 36px;
}
.hero-pkg-title h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--color-heading);
}
.hero-pkg-title h2 span {
    color: var(--color-main);
}

/* Package Tabs */
.pkg-tabs {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto 40px;
    background: none;
    border: none;
    padding: 0;
    opacity: 1 !important;
    transform: none !important;
}
.pkg-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    border: 2px solid #c5c5c5;
    border-radius: 5px;
    width: 300px;
    height: 80px;
    color: #181818 !important;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    background: #fff !important;
    font-family: var(--font);
    transition: border-color var(--transition);
    text-align: center;
    position: relative;
    line-height: 1.3;
    box-sizing: border-box;
    flex-shrink: 0;
    opacity: 1 !important;
    transform: none !important;
}
.pkg-tab .tab-desc { color: #555 !important; font-weight: 400; font-size: 13px; margin-top: 3px; }
.pkg-tab .tab-check { position: absolute; left: -12px; top: -12px; width: 24px; height: 24px; background: #fff; border-radius: 50%; display: none; pointer-events: none; }
.pkg-tab .tab-check i { color: var(--color-main); font-size: 24px; line-height: 1; }
.pkg-tab:hover { border-color: #999; }
.pkg-tab.active { border-color: var(--color-main); color: #181818 !important; background: #fff !important; }
.pkg-tab.active .tab-check { display: flex; align-items: center; justify-content: center; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Package Cards */
.pkg-card {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 100%;
}
.pkg-card:hover {
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
}

/* Popular Card */
.pkg-card.popular {
    border-color: var(--color-main);
}
.pkg-favourite {
    display: none;
}
.pkg-card.popular .pkg-favourite {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 1px solid var(--color-main);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--color-main);
    font-weight: 500;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 30px;
    gap: 5px;
}

/* Package Header */
.pkg-header {
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 20px 20px;
    border: 0;
    height: 83px;
}
.pkg-name {
    font-size: 23px;
    font-weight: 600;
    color: var(--color-font);
}

/* Price Area */
.pkg-price-area {
    background: var(--bg-light);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #F4F4F4;
    border-bottom: 1px solid #F4F4F4;
}
.pkg-old-price {
    font-size: 18px;
    font-weight: 500;
    text-decoration: line-through;
    color: #767676;
    line-height: normal;
}
.pkg-price {
    margin-left: 15px;
    font-size: 25px;
    color: var(--color-font);
    font-weight: 500;
    line-height: normal;
}

/* Yearly */
.pkg-yearly {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    line-height: normal;
}
.pkg-yearly .yearly-icon {
    margin-right: 5px;
    color: var(--green);
    font-size: 18px;
}
.pkg-yearly .name {
    font-size: 14px;
    margin-right: 10px;
}
.pkg-yearly .price {
    font-size: 14px;
    font-weight: 500;
}

/* Buttons */
.pkg-buttons {
    padding: 0 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.pkg-btn {
    display: flex;
    width: 260px;
    max-width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-radius: var(--radius);
    transition: all .4s;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font);
    color: #fff;
}
.pkg-btn-green {
    background: linear-gradient(90deg, var(--green2) 0%, #2bab69 100%);
    border-color: var(--green2);
}
.pkg-btn-green:hover {
    background: #fff;
    color: var(--green2);
    border-color: var(--green2);
}
.pkg-btn-blue {
    background: linear-gradient(90deg, var(--color-main) 0%, var(--color-main2) 100%);
    border-color: var(--color-main);
}
.pkg-btn-blue:hover {
    background: #fff;
    color: var(--color-main);
    border-color: var(--color-main);
}

/* Features */
.pkg-features {
    border-top: 1px solid #F4F4F4;
    padding: 20px 25px;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.2px;
    font-weight: 300;
    color: var(--color-font);
    flex: 1;
}
.pkg-features .info-title {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #222;
}
.pkg-features .feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0;
    color: #2e2e2e;
    font-weight: 300;
    line-height: 21px;
    justify-content: flex-start;
}
.pkg-features .feat .feat-icon {
    color: var(--green);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* All Features Link */
.pkg-all-link {
    color: #474747;
    font-size: 16px;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 10px;
    transition: all .4s;
    border-top: 1px solid #F4F4F4;
}
.pkg-all-link:hover {
    color: var(--color-main);
}

/* ========================================
   FEATURE SECTIONS
   ======================================== */
.feature-section { padding: 50px 0; position: relative; }
.all-in-gsoft { margin-bottom: 50px; border-bottom: 1px solid #ebebeb; padding-bottom: 50px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature-grid.reverse { direction: rtl; } .feature-grid.reverse > * { direction: ltr; }
.feature-content .sub-icon img { height: 80px; margin-bottom: 20px; }
.feature-content .sub-title, .feature-sub-title { color: var(--color-main); font-size: var(--size-subheading); font-weight: 300; line-height: 30px; display: block; margin-bottom: 5px; }
.feature-content h2 { color: var(--color-font); font-weight: 500; font-size: var(--size-heading); line-height: var(--size-heading-line); margin: 5px 0 20px; }
.feature-content p { font-size: var(--size-description); line-height: var(--size-description-line); font-weight: 300; color: var(--color-font); margin-bottom: 30px; }
.feature-btn { border: 2px solid #0056B3; display: inline-flex; align-items: center; justify-content: center; font-weight: 500; color: #0056B3; font-size: 14px; border-radius: var(--radius); background: #fff; padding: 12px 24px; height: 50px; transition: all .4s; }
.feature-btn:hover { border-color: var(--color-main); color: #fff; background: var(--color-main); }
.feature-img img { border-radius: var(--radius); }
.feature-img .special-images { position: relative; }
.feature-img .special-images img.second { box-shadow: 0 8px 26px rgba(0,0,0,.1); border: 1px solid #E2E2E2; border-radius: 9px; padding: 8px; background: #fff; }

/* OZELLIKLER SAYFA KARTLARI */
.oz-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 40px 0; }
.oz-features-grid.three-col { grid-template-columns: repeat(3, 1fr); }
.oz-feature-card { background: #fff; border: 1.5px solid #e8ecf1; border-radius: var(--radius); padding: 30px; transition: all var(--transition); }
.oz-feature-card:hover { border-color: var(--color-main); box-shadow: 0 8px 30px rgba(14,133,251,.08); transform: translateY(-3px); }
.oz-icon { width: 50px; height: 50px; background: var(--bg-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--color-main); margin-bottom: 16px; }
.oz-feature-card h3 { font-size: 17px; font-weight: 600; color: var(--color-heading); margin-bottom: 10px; }
.oz-feature-card p { font-size: 14px; line-height: 1.7; color: var(--color-font-gray); font-weight: 300; margin: 0; }

/* APPS PAGE */
.apps-section { padding: 50px 0; }
.app-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 24px; }
.app-filter-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border: 1.5px solid var(--border-color); border-radius: 50px; background: #fff; color: var(--color-font); font-size: 13px; font-weight: 500; cursor: pointer; font-family: var(--font); transition: all .3s; }
.app-filter-btn:hover { border-color: var(--color-main); color: var(--color-main); }
.app-filter-btn.active { background: var(--color-main); color: #fff; border-color: var(--color-main); }
.app-filter-btn i { font-size: 15px; }
.app-count { text-align: center; color: var(--color-font-gray); font-size: 14px; font-weight: 300; margin-bottom: 24px; }
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.app-card { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: #fff; border: 1.5px solid #e8ecf1; border-radius: var(--radius); transition: all .3s; text-decoration: none; color: var(--color-font); }
.app-card:hover { border-color: var(--color-main); box-shadow: 0 4px 20px rgba(14,133,251,.08); transform: translateY(-2px); color: var(--color-font); }
.app-card-icon { width: 48px; height: 48px; min-width: 48px; background: var(--bg-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--color-main); }
.app-card:hover .app-card-icon { background: var(--color-main); color: #fff; }
.app-card-body { flex: 1; }
.app-card-body h3 { font-size: 15px; font-weight: 600; color: var(--color-heading); margin: 0 0 4px; }
.app-card-body p { font-size: 13px; font-weight: 300; color: var(--color-font-gray); margin: 0; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.app-card-arrow { color: #ccc; font-size: 16px; transition: all .3s; }
.app-card:hover .app-card-arrow { color: var(--color-main); transform: translateX(3px); }

/* MARKETPLACE LOGOS */
.marketplace-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 0 0 40px; }
.mp-logo { background: #fff; border: 1.5px solid #e8ecf1; border-radius: var(--radius); padding: 16px 12px; width: 140px; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: all var(--transition); }
.mp-logo:hover { border-color: var(--color-main); box-shadow: 0 4px 20px rgba(14,133,251,.1); transform: translateY(-2px); }
.mp-logo img { height: 40px; width: auto; object-fit: contain; }
.mp-logo span { font-size: 12px; font-weight: 500; color: var(--color-font-gray); text-align: center; }

/* PARTNERS SECTION */
.partners-section { padding: 60px 0; background: var(--bg-light); }
.partners-section .section-header h2 { font-size: var(--size-heading); font-weight: 700; color: var(--color-heading); margin-bottom: 8px; }
.partners-section .section-header p { color: var(--color-font-gray); font-size: var(--size-description); font-weight: 300; max-width: 600px; margin: 0 auto; }
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 40px; }
.partner-item { background: #fff; border: 1px solid #e3e8ef; border-radius: var(--radius); padding: 24px 16px; text-align: center; transition: all var(--transition); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.partner-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); border-color: var(--color-main); transform: translateY(-2px); }
.partner-item i { font-size: 28px; color: var(--color-main); }
.partner-item span { font-size: 14px; font-weight: 600; color: var(--color-heading); }
.partner-item small { font-size: 12px; color: var(--color-font-gray); font-weight: 400; }

/* TRIAL FORM */
.free-try { padding: 30px 0; }
.free-try-form { border: 2px solid var(--color-main); border-radius: var(--radius-lg); padding: 50px; background: rgba(255,255,255,.62); margin-bottom: 50px; }
.free-try-form .form-head { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.free-try-form .title { font-size: 16px; font-weight: 600; color: var(--color-main); margin-bottom: 10px; }
.free-try-form .description { font-weight: 500; font-size: var(--size-subheading); color: #000; margin-bottom: 15px; }
.free-try-form .form-control { border: 1.26px solid #E2E2E2 !important; color: #161616; font-size: 16px; font-weight: 300; border-radius: 12px; height: 65px; margin-bottom: 10px; font-family: var(--font); padding: 0 16px; width: 100%; }
.free-try-form .form-control:focus { border-color: var(--color-main) !important; outline: none; box-shadow: none; }
.free-try-form .form-control::placeholder { color: var(--color-font-gray); font-size: 16px; font-weight: 300; }
.free-try-form .btn-success { background: linear-gradient(90deg, #0E85FB 0%, #4EAAFF 100%); box-shadow: 0 20px 50px rgba(0,78,205,.2); border-radius: 12px; height: 60px; color: #fff; font-weight: 500; font-size: 18px; display: flex; justify-content: center; align-items: center; border: none; width: 100%; cursor: pointer; font-family: var(--font); }
.free-try-form .btn-success:hover { background: linear-gradient(90deg, #0a6fd4 0%, #4EAAFF 100%); }

/* FAQ */
.faq-section { padding: 70px 0; }
.faq-title { text-align: center; margin-bottom: 40px; }
.faq-title h2 { font-size: var(--size-heading); font-weight: 700; color: var(--color-heading); }
.faq-item { margin-bottom: 8px; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; cursor: pointer; background: #fff; border: 1px solid #F4F4F4; border-radius: var(--radius); width: 100%; text-align: left; color: var(--color-font); font-size: 16px; font-weight: 400; font-family: var(--font); min-height: 60px; }
.faq-q:hover { background: #fafafa; }
.faq-q .faq-icon { background: #fff; border-radius: 50%; width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; border: 1px solid #f4f4f4; flex-shrink: 0; margin-left: 12px; transition: all var(--transition); }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--color-main); border-color: var(--color-main); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 20px 18px; color: var(--color-font-gray); font-size: 16px; line-height: 2; border: 1px solid #F4F4F4; border-top: 0; border-radius: 0 0 var(--radius) var(--radius); }

/* REFERENCES */
.ref-section { padding: 50px 0; }
.ref-title { text-align: center; margin-bottom: 24px; }
.ref-title h2 { font-size: var(--size-heading); font-weight: 700; color: var(--color-heading); }
.ref-title p { color: var(--color-font-gray); font-size: var(--size-description); margin-top: 8px; max-width: 700px; margin-left: auto; margin-right: auto; font-weight: 300; }
.ref-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 24px; }
.ref-item { background: #fbfdff; border: 1px solid #e3e8ef; border-radius: 5px; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 160px; height: 90px; padding: 15px; transition: all var(--transition); }
.ref-item:hover { box-shadow: 0 10px 20px rgba(0,78,205,.12); }
.ref-item span { color: var(--color-font-gray); font-size: .8rem; font-weight: 500; text-align: center; }

/* REFERANS SAYFASI */
.ref-stats { padding: 40px 0; background: #fff; border-bottom: 1px solid #f0f0f0; }
.ref-stats-grid { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.ref-stat-item { display: flex; align-items: center; gap: 14px; }
.ref-stat-icon { width: 52px; height: 52px; background: var(--bg-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--color-main); }
.ref-stat-item strong { display: block; font-size: 22px; font-weight: 700; color: var(--color-heading); line-height: 1.2; }
.ref-stat-item span { font-size: 13px; font-weight: 300; color: var(--color-font-gray); }

.ref-page-section { padding: 50px 0 70px; }
.ref-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 20px; }
.ref-filter-btn { display: inline-flex; align-items: center; padding: 9px 20px; border: 1.5px solid var(--border-color); border-radius: 50px; background: #fff; color: var(--color-font); font-size: 13px; font-weight: 500; cursor: pointer; font-family: var(--font); transition: all .3s; }
.ref-filter-btn:hover { border-color: var(--color-main); color: var(--color-main); }
.ref-filter-btn.active { background: var(--color-main); color: #fff; border-color: var(--color-main); }
.ref-count { text-align: center; color: var(--color-font-gray); font-size: 14px; font-weight: 300; margin-bottom: 30px; }

.ref-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ref-page-card { display: flex; background: #fff; border: 1.5px solid #e8ecf1; border-radius: 14px; overflow: hidden; transition: all .3s; text-decoration: none; color: var(--color-font); }
.ref-page-card-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 20px; }
.ref-page-card-info { flex: 1; }
.ref-page-card:hover { border-color: var(--color-main); box-shadow: 0 8px 30px rgba(14,133,251,.1); transform: translateY(-4px); color: var(--color-font); }

.ref-page-initial { width: 48px; height: 48px; background: linear-gradient(135deg, var(--color-main), var(--color-main2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: #fff; }
.ref-page-arrow { font-size: 16px; color: #ccc; transition: all .3s; }
.ref-page-card:hover .ref-page-arrow { color: var(--color-main); transform: translate(3px, -3px); }

.ref-page-card-info h3 { font-size: 15px; font-weight: 600; color: var(--color-heading); margin: 0 0 4px; }
.ref-page-domain { display: block; font-size: 13px; font-weight: 300; color: var(--color-main); margin-bottom: 8px; }
.ref-page-cat { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 500; color: var(--color-font-gray); background: #f5f7fa; padding: 4px 10px; border-radius: 20px; }
.ref-page-cat i { font-size: 10px; }

/* FOOTER */
footer { margin-top: 150px; padding-top: 130px; position: relative; z-index: 2; color: #fff; background: linear-gradient(98.45deg, #020323 0%, #07093c 87.04%); }

/* Footer Contact 2 - GSoft Tarzı */
.footer-contact-2 {
    box-shadow: 0 -1px 40px 0px rgba(9,11,78,.05);
    width: 100%;
    max-width: 1230px;
    height: auto;
    min-height: 277px;
    position: absolute;
    top: -135px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    z-index: 1;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
}
.footer-contact-2 .row { width: 100%; }
.fc2-info {
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}
.fc2-top-title {
    color: #0056B3;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 15px;
}
.fc2-title {
    font-weight: 400;
    font-size: var(--size-heading);
    line-height: var(--size-heading-line);
    color: var(--color-font);
}
.fc2-title strong { font-weight: 600; }
.fc2-form-wrap {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fc2-form-wrap .form-control {
    background: #FBFBFB;
    border: 1px solid #E2E2E2;
    border-radius: var(--radius);
    color: #333;
    font-size: 14px;
    font-weight: 300;
    height: 52px;
    margin: 5px;
    padding: 0 14px;
    font-family: var(--font);
    width: 100%;
    transition: all .4s;
}
.fc2-form-wrap .form-control:focus,
.fc2-form-wrap .form-control:hover {
    border-color: var(--color-main) !important;
    outline: none;
    transition: all .4s;
}
.fc2-form-wrap .form-control::placeholder {
    color: var(--color-font-gray);
    font-size: 14px;
    font-weight: 300;
}
.fc2-submit {
    box-shadow: 0 16px 40px 0px rgba(0,78,205,.2);
    background: linear-gradient(90deg, #0E85FB 0%, #4EAAFF 100%);
    border: 0;
    width: 100%;
    height: 52px;
    margin: 5px;
    border-radius: var(--radius);
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    font-family: var(--font);
    transition: all .4s;
}
.fc2-submit:hover {
    background: linear-gradient(90deg, #0a6fd4 0%, #4EAAFF 100%);
    transition: all .4s;
}

/* Footer BB - Link Bölümü */
.footer-bb { padding: 40px 0 30px; }
.footer-heading {
    font-size: 17px;
    font-weight: 500;
    color: rgba(255,255,255,1);
    margin: 15px 0 10px;
    padding-bottom: 5px;
    display: inline-flex;
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to left, #08093d, #4da8ff);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 3px 0; transition: all .4s; }
.footer-links li:hover a { color: #fff; }
.footer-links a { display: block; font-size: 15px; font-weight: 300; color: rgb(215,215,215); margin-bottom: 5px; transition: all .4s; }
.footer-links a:hover { color: #fff; text-decoration: none; }

/* Footer İletişim Kutusu */
.footer-text-box {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 24px;
}
.footer-contact-block { display: flex; flex-direction: column; gap: 16px; }
.ftc-item { display: flex; align-items: flex-start; gap: 12px; }
.ftc-item i { font-size: 18px; color: var(--color-main2); margin-top: 2px; flex-shrink: 0; }
.ftc-item span { display: block; font-size: 12px; color: rgba(255,255,255,.5); font-weight: 400; margin-bottom: 2px; }
.ftc-item a { color: #fff; font-size: 15px; font-weight: 500; transition: all .3s; }
.ftc-item a:hover { color: var(--color-main2); }
.ftc-item p { color: rgb(215,215,215); font-size: 14px; font-weight: 300; margin: 0; line-height: 1.5; }

/* Footer Sosyal Medya */
.footer-social-block {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.footer-social-block a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
    transition: all .3s;
}
.footer-social-block a:hover { background: var(--color-main); color: #fff; }

/* Footer Bar (Alt Kısım) */
.footer-bar {
    padding: 20px 0;
    background: rgba(0,0,0,.15);
}
.footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bar p { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; font-weight: 300; }
.footer-bar-cards img { height: 28px; opacity: .6; transition: opacity .3s; }
.footer-bar-cards img:hover { opacity: 1; }

/* WhatsApp */
.wa-float { position: fixed; bottom: 80px; right: 20px; z-index: 9; }
.wa-float a { display: flex; align-items: center; gap: 8px; padding: 12px 22px; background: #25D366; color: #fff; border-radius: 50px; font-weight: 600; font-size: .85rem; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: all var(--transition); }
.wa-float a:hover { transform: translateY(-2px); color: #fff; }
.wa-float i { font-size: 1.3rem; }

/* Back to Top */
.up-scroll { position: fixed; width: 50px; height: 50px; text-align: center; line-height: 50px; z-index: 9; background: #0a8aff; bottom: 140px; right: 20px; cursor: pointer; display: none; color: #fff; font-size: 18px; border-radius: 50%; transition: all var(--transition); }
.up-scroll.visible { display: flex; align-items: center; justify-content: center; }
.up-scroll:hover { background: #1c6bb3; }

/* PAGE BANNER */
.page-banner { background: var(--bg-light); padding: 50px 0; text-align: center; }
.page-banner h1 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--color-heading); }
.page-banner-desc { color: var(--color-font-gray); font-size: 16px; font-weight: 300; margin-top: 8px; }
.promo-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(90deg, var(--green) 0%, var(--green2) 100%); color: #fff; padding: 10px 24px; border-radius: 50px; font-size: 15px; font-weight: 500; margin-top: 16px; }
.promo-badge i { font-size: 18px; }
.advantages-bar { padding: 30px 0; background: #fff; border-bottom: 1px solid #f0f0f0; }
.adv-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.adv-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--color-heading); }
.adv-item i { font-size: 20px; color: var(--color-main); }
.breadcrumb-nav { margin-top: 10px; }
.breadcrumb-nav a, .breadcrumb-nav span { font-size: .85rem; color: var(--color-font-gray); }
.breadcrumb-nav a:hover { color: var(--color-main); }
.breadcrumb-nav .sep { margin: 0 8px; }
.breadcrumb-nav .cur { color: var(--color-main); }

/* CONTENT */
.content-section { padding: 50px 0; }
.content-text { color: var(--color-font); font-size: .95rem; line-height: 1.9; }

/* CONTACT */
.contact-card { background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius); padding: 28px; text-align: center; height: 100%; transition: all var(--transition); }
.contact-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); border-color: var(--color-main); }
.contact-card .c-icon { width: 52px; height: 52px; background: var(--bg-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--color-main); font-size: 1.3rem; }
.contact-card:hover .c-icon { background: var(--color-main); color: #fff; }
.contact-card h4 { font-size: 15px; font-weight: 600; color: var(--color-heading); margin-bottom: 6px; }
.contact-card p { color: var(--color-font-gray); font-size: 14px; margin: 0; font-weight: 300; line-height: 1.5; }
.contact-card a { color: var(--color-main); font-weight: 500; }

/* BANK CARDS */
.bank-card { background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius); overflow: hidden; height: 100%; transition: all var(--transition); }
.bank-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.bank-card-header { background: var(--bg-light); padding: 16px 24px; font-size: 17px; font-weight: 600; color: var(--color-heading); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border-color); }
.bank-card-header i { font-size: 22px; color: var(--color-main); }
.bank-card-body { padding: 20px 24px; }
.bank-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
.bank-row:last-child { border-bottom: 0; }
.bank-row span { font-size: 14px; color: var(--color-font-gray); font-weight: 300; }
.bank-row strong { font-size: 14px; color: var(--color-font); font-weight: 500; }

/* FORMS */
.gsoft-form .form-control { border: 1.5px solid var(--border-color); border-radius: var(--radius); padding: 12px 16px; font-size: .9rem; font-family: var(--font); }
.gsoft-form .form-control:focus { border-color: var(--color-main); outline: none; box-shadow: 0 0 0 3px rgba(14,133,251,.12); }
.gsoft-form .form-label { font-weight: 600; font-size: .85rem; color: var(--color-font); margin-bottom: 5px; }
.gsoft-form textarea.form-control { min-height: 120px; resize: vertical; }

/* PRODUCTS / SERVICES */
.service-card { background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius); padding: 28px; height: 100%; transition: all var(--transition); box-shadow: 0 4px 44px -10px rgba(0,0,0,.05); }
.service-card:hover { box-shadow: 0 4px 30px rgba(0,0,0,.1); transform: translateY(-2px); }
.service-icon { width: 48px; height: 48px; background: var(--bg-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--color-main); margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--color-heading); margin-bottom: 8px; }
.service-card p { color: var(--color-font-gray); font-size: .88rem; }

.product-card { background: #fff; border: 1.5px solid var(--border-color); border-radius: 5px; overflow: hidden; height: 100%; transition: all var(--transition); box-shadow: 0 4px 44px -10px rgba(0,0,0,.05); }
.product-card:hover { box-shadow: 0 10px 35px rgba(56,71,109,.08); }
.product-card-img { height: 190px; background: #f9f9f9; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-placeholder-icon { font-size: 2.5rem; color: #ddd; }
.product-card-body { padding: 20px; }
.product-card-body h3 { font-size: 13px; font-weight: 600; color: var(--color-heading); margin-bottom: 6px; }
.product-card-body p { font-size: .83rem; color: var(--color-font-gray); }
.product-price { font-size: 17px; font-weight: 600; color: var(--color-heading); }

/* BUTTONS */
.btn-gsoft { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: 5px; font-weight: 600; font-size: .92rem; border: none; cursor: pointer; font-family: var(--font); transition: all var(--transition); }
.btn-gsoft-blue { background: linear-gradient(90deg, #0E85FB 0%, #4EAAFF 100%); color: #fff; box-shadow: 0 16px 40px rgba(0,78,205,.2); }
.btn-gsoft-blue:hover { background: #fff; color: var(--color-main); border: 1px solid var(--color-main); }

.alert { padding: 13px 18px; border-radius: var(--radius); margin-bottom: 14px; font-size: .88rem; }
.alert-success { background: #e8f8ef; color: #065f46; border: 1px solid #c6f0d6; }
.alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* GSAP */
.gsap-fade-up { opacity: 0; transform: translateY(40px); }
.gsap-fade-left { opacity: 0; transform: translateX(-40px); }
.gsap-fade-right { opacity: 0; transform: translateX(40px); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    :root {
        --size-heading: 20px; --size-heading-line: 30px;
        --size-description: 17px; --size-description-line: 24px;
        --size-subheading: 20px; --size-subheading-line: 30px;
        --size-title: 16px; --size-title-line: 20px;
    }
    .mobile-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 8px; transition: all var(--transition); }
    .mobile-toggle:hover { background: var(--bg-light); }

    .nav-menu {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: #fff; padding: 0 !important; margin: 0; flex-direction: column; z-index: 9999;
        overflow-y: auto; list-style: none;
        margin-left: -100%; transition: margin-left .3s ease;
        display: flex !important;
    }
    .nav-menu.open { margin-left: 0; }

    /* Mobile menu top bar */
    .mobile-menu-top { display: flex !important; align-items: center; justify-content: flex-end !important; padding: 15px 20px !important; border-bottom: 1px solid #f6f6f6 !important; width: 100% !important; box-sizing: border-box !important; }
    .mobile-menu-top .mmt-close { background: none; border: none; font-size: 20px; color: var(--color-font-gray); cursor: pointer; width: 40px; height: 40px; display: flex !important; align-items: center; justify-content: center; border-radius: 8px; }
    .mmt-close { background: none; border: none; font-size: 20px; color: var(--color-font-gray); cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: all var(--transition); }
    .mmt-close:hover { background: #f0f0f0; color: var(--color-heading); }

    .nav-menu > li:not(.mobile-menu-top):not(.mobile-cta-wrap) { border-bottom: 1px solid #f6f6f6; margin: 0 !important; padding: 0 !important; display: block !important; width: 100% !important; box-sizing: border-box !important; }
    .nav-menu > li:not(.mobile-menu-top):not(.mobile-cta-wrap) > a { height: auto; border-bottom: 0 !important; padding: 15px 20px; font-size: 15px; font-weight: 500; color: #181818; margin: 0; display: block !important; width: 100% !important; text-align: left !important; box-sizing: border-box !important; }
    .nav-menu > li > a:hover { background: #fafafa; color: var(--color-main); }
    .nav-menu > li > a.active { color: var(--color-main); }

    .nav-cta-wrap { display: none; }
    .nav-dropdown { position: relative; }
    .nav-dropdown:hover .mega-dropdown { display: none; }

    .nav-dropdown-toggle { justify-content: space-between !important; }
    .nav-dropdown-toggle .bi-chevron-down { transition: transform .3s ease; font-size: 12px; }
    .nav-dropdown.open > .nav-dropdown-toggle { background: var(--color-main); color: #fff !important; }
    .nav-dropdown.open > .nav-dropdown-toggle .bi-chevron-down { transform: rotate(180deg); color: #fff; }

    .nav-dropdown.open .mega-dropdown { display: block; position: static; width: 100%; box-shadow: none; border-top: 0; padding: 0; border-radius: 0; border-bottom: 1px solid #f6f6f6; }
    .nav-dropdown.open .mega-dropdown.mini { width: 100%; }

    .mega-dropdown-body { flex-direction: column; padding: 0; gap: 0; }
    .mega-section { padding: 0; border-right: 0; border-bottom: 0; }
    .mega-section h6 { padding: 12px 20px; font-size: 14px; color: #000; font-weight: 600; letter-spacing: 0; margin: 0; background: #f8f8f8; border-bottom: 1px solid #f0f0f0; border-top: 1px solid #f0f0f0; }
    .mega-section ul { margin: 0 !important; padding: 0 !important; list-style: none !important; }
    .mega-section ul li { border-bottom: 1px solid #f6f6f6; margin: 0 !important; padding: 0 !important; }
    .mega-section ul li:last-child { border-bottom: 0; }
    .mega-section ul li a { padding: 10px 20px !important; display: flex !important; flex-direction: column; gap: 0 !important; height: auto !important; border-bottom: 0 !important; margin: 0 !important; }
    .mega-section .dd-title { font-size: 14px; font-weight: 500; color: #131313; line-height: normal; }
    .mega-section .dd-desc { font-size: 12px; color: #616164; display: block; line-height: normal; }

    .mega-dropdown-footer { display: none !important; }

    /* Mobil CTA butonları */
    .mobile-cta-wrap { display: flex !important; flex-direction: row !important; gap: 10px; padding: 15px 20px !important; margin-top: 0 !important; list-style: none; border-top: 1px solid #f6f6f6; }
    .mobile-cta-phone { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 8px; border: 1px solid #e2e2e2; border-radius: 5px; color: #181818; font-weight: 500; font-size: 13px; text-align: center; flex: 1; white-space: nowrap; }
    .mobile-cta-phone:hover { color: var(--color-main); }
    .mobile-cta-btn { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 8px; background: var(--color-main); color: #fff; border: 1px solid var(--color-main); border-radius: 5px; font-weight: 500; font-size: 13px; text-align: center; flex: 1; white-space: nowrap; }
    .mobile-cta-btn:hover { color: #fff; }
    .feature-grid, .feature-grid.reverse { grid-template-columns: 1fr; gap: 24px; direction: ltr; }
    .all-in-gsoft .feature-content { padding: 0; }
    .footer-contact-2 { width: 90%; height: auto; min-height: auto; flex-direction: column; }
    .fc2-form-wrap { width: 100%; }
    .ref-page-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-stats-grid { gap: 30px; }
    .footer-bb { padding: 30px 0 20px; }
    .footer-bar-inner { justify-content: center; text-align: center; flex-direction: column; }
    .oz-features-grid, .oz-features-grid.three-col { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .packages-section { padding: 40px 0; }
    .pkg-btn { width: 100%; }
    .app-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .pkg-tabs { gap: 8px; }
    .pkg-tab { font-size: 13px; padding: 14px 8px; width: auto; flex: 1; height: 70px; }
    .pkg-tab .tab-desc { font-size: 11px; }
    .pkg-tab .tab-check { left: -8px; top: -8px; width: 20px; height: 20px; }
    .pkg-tab .tab-check i { font-size: 20px; }
    footer { margin-top: 100px; padding-top: 80px; }
    .footer-contact-2 { width: 95%; position: static; transform: none; margin: 20px auto; top: auto; height: auto; padding: 30px 20px; }
    .fc2-info { text-align: center; align-items: center; }
    .footer-bb { padding: 20px 0 15px; }
    .footer-text-box { margin-top: 20px; }
    .free-try-form { padding: 25px 15px; }
    .packages-section { padding: 30px 0; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .adv-grid { gap: 16px; justify-content: flex-start; }
    .adv-item { font-size: 12px; }
    .adv-item i { font-size: 16px; }
    .all-in-gsoft { margin-bottom: 30px; padding-bottom: 30px; }
    .faq-a-inner { font-size: 14px; }
    .app-grid { grid-template-columns: 1fr; }
    .app-filters { gap: 6px; }
    .app-filter-btn { padding: 8px 14px; font-size: 12px; }
    .ref-page-grid { grid-template-columns: 1fr; }
    .ref-stats-grid { gap: 20px; justify-content: flex-start; }
    .ref-stat-item strong { font-size: 18px; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-adv-grid { grid-template-columns: 1fr !important; }
    .pkg-tab { width: auto !important; flex: 1; font-size: 13px !important; padding: 12px 8px !important; }
    .compare-tab { font-size: 13px; padding: 12px 8px; width: auto; flex: 1; height: auto; }
    .order-step-card { padding: 24px 16px; }
    .order-summary-card { padding: 20px 16px; }
    .legal-content { padding: 24px 16px; }
    .bayilik-form-card { padding: 24px 16px; }
    .demo-form-card { padding: 28px 16px; }
}

/* ========================================
   SİPARİŞ - ÇOK ADIMLI WIZARD
   ======================================== */

/* STEPPER */
.order-stepper { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 40px; padding: 30px 0; }
.stepper-item { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 1; }
.stepper-circle { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border-color); background: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: var(--color-font-gray); transition: all var(--transition); }
.stepper-item.active .stepper-circle { border-color: var(--color-main); color: var(--color-main); background: var(--bg-light); }
.stepper-item.done .stepper-circle { border-color: var(--green); background: var(--green); color: #fff; }
.stepper-item span { font-size: 13px; font-weight: 600; color: var(--color-font-gray); }
.stepper-item.active span { color: var(--color-main); }
.stepper-item.done span { color: var(--green); }
.stepper-line { width: 80px; height: 2px; background: var(--border-color); margin-bottom: 22px; }
.stepper-line.active { background: var(--green); }

/* ORDER STEP CARD */
.order-step-card { background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px; box-shadow: 0 4px 44px -10px rgba(0,0,0,.05); }
.osc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; }
.osc-header > i { font-size: 28px; color: var(--color-main); background: var(--bg-light); width: 56px; height: 56px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.osc-header h3 { font-size: 20px; font-weight: 700; color: var(--color-heading); margin: 0; }
.osc-header p { font-size: 14px; color: var(--color-font-gray); margin: 2px 0 0; }
.osc-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid #f0f0f0; gap: 12px; }

/* STEP BUTTONS */
.btn-step { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: .92rem; border: none; cursor: pointer; font-family: var(--font); transition: all var(--transition); }
.btn-step-primary { background: linear-gradient(90deg, #0E85FB 0%, #4EAAFF 100%); color: #fff; box-shadow: 0 8px 25px rgba(14,133,251,.25); }
.btn-step-primary:hover { box-shadow: 0 12px 35px rgba(14,133,251,.35); transform: translateY(-1px); color: #fff; }
.btn-step-outline { background: #fff; color: var(--color-font-gray); border: 1.5px solid var(--border-color); }
.btn-step-outline:hover { border-color: var(--color-main); color: var(--color-main); }

/* DOMAIN OPTIONS */
.domain-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.domain-option { display: block; cursor: pointer; border: 1.5px solid var(--border-color); border-radius: var(--radius); padding: 18px 20px; transition: all var(--transition); }
.domain-option:hover { border-color: var(--color-main2); background: #fafcff; }
.domain-option.selected { border-color: var(--color-main); background: var(--bg-light); box-shadow: 0 0 0 3px rgba(14,133,251,.1); }
.domain-option input[type="radio"] { display: none; }
.do-content { display: flex; align-items: center; gap: 16px; }
.do-icon { width: 44px; height: 44px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--color-main); flex-shrink: 0; }
.domain-option.selected .do-icon { background: var(--color-main); color: #fff; border-color: var(--color-main); }
.do-text { display: flex; flex-direction: column; }
.do-text strong { font-size: 15px; color: var(--color-heading); font-weight: 600; }
.do-text span { font-size: 13px; color: var(--color-font-gray); margin-top: 2px; }

/* DOMAIN INPUT */
.domain-input-wrap { margin-top: 20px; padding: 20px; background: var(--bg-light); border-radius: var(--radius); border: 1px solid #e8f0fe; }
.domain-input-group { display: flex; align-items: center; border: 1.5px solid var(--border-color); border-radius: var(--radius); overflow: hidden; background: #fff; }
.dig-prefix { padding: 12px 14px; background: #f8f9fa; color: var(--color-font-gray); font-weight: 600; font-size: .9rem; border-right: 1px solid var(--border-color); white-space: nowrap; }
.domain-input-group .form-control { border: none !important; border-radius: 0 !important; box-shadow: none !important; padding: 12px 16px; }
.domain-input-wrap small { display: block; margin-top: 8px; color: var(--color-font-gray); font-size: .8rem; }

/* ADDON GRID */
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.addon-card { display: block; cursor: pointer; border: 1.5px solid var(--border-color); border-radius: var(--radius); padding: 20px; transition: all var(--transition); position: relative; }
.addon-card:hover { border-color: var(--color-main2); box-shadow: 0 4px 15px rgba(0,0,0,.06); }
.addon-card.selected { border-color: var(--color-main); background: var(--bg-light); box-shadow: 0 0 0 3px rgba(14,133,251,.1); }
.addon-card input[type="checkbox"] { display: none; }
.ac-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.ac-icon { width: 42px; height: 42px; border-radius: var(--radius); background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--color-main); }
.addon-card.selected .ac-icon { background: var(--color-main); color: #fff; }
.ac-check { width: 24px; height: 24px; border-radius: 6px; border: 2px solid var(--border-color); display: flex; align-items: center; justify-content: center; font-size: 14px; color: transparent; transition: all var(--transition); }
.addon-card.selected .ac-check { background: var(--color-main); border-color: var(--color-main); color: #fff; }
.addon-card h4 { font-size: 15px; font-weight: 600; color: var(--color-heading); margin: 0 0 4px; }
.addon-card p { font-size: 13px; color: var(--color-font-gray); margin: 0 0 12px; line-height: 1.4; }
.ac-price { display: flex; align-items: center; gap: 8px; }
.ac-old { font-size: 13px; color: #999; text-decoration: line-through; }
.ac-current { font-size: 16px; font-weight: 700; color: var(--color-main); }

/* ORDER SUMMARY CARD */
.order-summary-card { background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 100px; box-shadow: 0 4px 44px -10px rgba(0,0,0,.05); }
.order-summary-card > h3 { font-size: 18px; font-weight: 700; color: var(--color-heading); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.order-summary-card > h3 i { color: var(--color-main); }

.os-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.os-item.main { padding: 12px 0; }
.os-item-info { display: flex; flex-direction: column; }
.os-item-info strong { font-size: 14px; color: var(--color-heading); font-weight: 600; }
.os-item-info span { font-size: 12px; color: var(--color-font-gray); margin-top: 2px; }
.os-item-price { font-size: 15px; font-weight: 700; color: var(--color-heading); white-space: nowrap; }
.os-item.addon .os-item-info strong { font-size: 13px; font-weight: 500; }
.os-item.addon .os-item-price { font-size: 13px; font-weight: 600; color: var(--color-font-gray); }

.os-discount { display: flex; align-items: center; gap: 6px; padding: 8px 12px; background: #e8f8ef; border-radius: 6px; margin: 8px 0; }
.os-discount i { color: var(--green); font-size: 14px; }
.os-discount span { font-size: 13px; color: #065f46; flex: 1; }
.os-discount strong { font-size: 13px; color: var(--green); }

.os-divider { height: 1px; background: #f0f0f0; margin: 12px 0; }
.os-addon-title { font-size: 12px; font-weight: 600; color: var(--color-font-gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }

.os-domain { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--bg-light); border-radius: 6px; font-size: 13px; color: var(--color-main); font-weight: 500; }
.os-domain i { font-size: 16px; }

.os-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 0 0; margin-top: 12px; border-top: 2px solid var(--color-heading); }
.os-total span { font-size: 16px; font-weight: 600; color: var(--color-heading); }
.os-total strong { font-size: 22px; font-weight: 800; color: var(--color-main); }

.os-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.os-badge { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--color-font-gray); background: #f9f9f9; padding: 6px 10px; border-radius: 20px; }

/* ÖDEME FORMU */
.card-input-wrap { position: relative; }
.card-input-wrap .form-control { padding-right: 60px; }
.card-brand { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--color-font-gray); font-size: 18px; }

/* TAKSİT TABLOSU */
.inst-table-wrap { border: 1.5px solid var(--border-color); border-radius: var(--radius); overflow: hidden; }
.inst-table { width: 100%; border-collapse: collapse; }
.inst-table thead th { background: #f8f9fa; padding: 10px 14px; font-size: 12px; font-weight: 600; color: var(--color-font-gray); text-align: left; border-bottom: 1px solid var(--border-color); text-transform: uppercase; letter-spacing: .3px; }
.inst-table thead th:last-child { width: 36px; }
.inst-row { cursor: pointer; transition: background var(--transition); }
.inst-row:hover { background: #fafcff; }
.inst-row.active { background: var(--bg-light); }
.inst-row td { padding: 12px 14px; font-size: 14px; color: var(--color-font); border-bottom: 1px solid #f5f5f5; }
.inst-row:last-child td { border-bottom: 0; }
.inst-row td strong { color: var(--color-heading); font-weight: 600; }
.inst-row.active td { color: var(--color-main); }
.inst-row.active td strong { color: var(--color-main); }
.inst-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #ccc; transition: all var(--transition); position: relative; }
.inst-radio.checked { border-color: var(--color-main); }
.inst-radio.checked::after { content: ''; position: absolute; top: 3px; left: 3px; width: 10px; height: 10px; border-radius: 50%; background: var(--color-main); }

.payment-secure { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding: 14px 16px; background: #f0faf4; border-radius: var(--radius); border: 1px solid #c6f0d6; }
.payment-secure i { color: var(--green); font-size: 20px; flex-shrink: 0; }
.payment-secure span { font-size: 12px; color: #065f46; line-height: 1.5; }

@media (max-width: 576px) {
    .inst-table thead th { padding: 8px 10px; font-size: 11px; }
    .inst-row td { padding: 10px; font-size: 13px; }
}
.os-badge i { font-size: 13px; color: var(--green); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .order-stepper { gap: 0; }
    .stepper-line { width: 40px; }
    .addon-grid { grid-template-columns: 1fr; }
    .order-step-card { padding: 24px 18px; }
    .order-summary-card { position: static; margin-top: 20px; }
}
@media (max-width: 576px) {
    .osc-footer { flex-direction: column; }
    .osc-footer .btn-step { width: 100%; justify-content: center; }
    .osc-header { flex-direction: column; text-align: center; }
    .stepper-line { width: 24px; }
    .stepper-circle { width: 36px; height: 36px; font-size: 13px; }
    .stepper-item span { font-size: 11px; }
}

/* ========================================
   DEMO SAYFASI
   ======================================== */

/* HERO */
.demo-hero { padding: 60px 0 50px; background: linear-gradient(135deg, #f0f7ff 0%, #fff 50%, #f8fbff 100%); position: relative; overflow: hidden; }
.demo-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(14,133,251,.06) 0%, transparent 70%); border-radius: 50%; }

/* FORM CARD */
.demo-form-card { background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius-lg); padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,.08); position: relative; z-index: 1; }
.demo-form-head { margin-bottom: 28px; }
.demo-form-head h1 { font-size: 28px; font-weight: 800; color: var(--color-heading); margin: 0 0 6px; }
.demo-form-head p { font-size: 15px; color: var(--color-font-gray); margin: 0; }

/* INPUT WITH ICON */
.demo-input-wrap { position: relative; }
.demo-input-wrap i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--color-font-gray); font-size: 16px; z-index: 1; }
.demo-input-wrap .form-control { padding-left: 44px; height: 52px; border: 1.5px solid var(--border-color); border-radius: var(--radius); font-size: .92rem; }
.demo-input-wrap .form-control:focus { border-color: var(--color-main); box-shadow: 0 0 0 3px rgba(14,133,251,.12); }
.demo-input-wrap .form-control:focus + i, .demo-input-wrap:focus-within i { color: var(--color-main); }

/* KVKK */
/* KVKK Checkbox - Global */
.demo-kvkk { padding: 0; }
.form-check { display: flex; align-items: flex-start; gap: 8px; padding-left: 0; }
.form-check .form-check-input { flex-shrink: 0; margin-top: 3px; margin-left: 0; float: none; }
.form-check .form-check-label { font-size: 13px; color: var(--color-font-gray); line-height: 1.5; }
.form-check .form-check-label a, .demo-kvkk a { color: var(--color-main); font-weight: 600; }

/* SUBMIT BUTTON */
.demo-submit-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px; background: linear-gradient(90deg, #0E85FB 0%, #4EAAFF 100%); color: #fff; border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 700; font-family: var(--font); cursor: pointer; transition: all var(--transition); box-shadow: 0 12px 35px rgba(14,133,251,.3); }
.demo-submit-btn:hover { box-shadow: 0 16px 45px rgba(14,133,251,.4); transform: translateY(-2px); }

/* SUCCESS STATE */
.demo-success { text-align: center; padding: 20px 0; }
.ds-icon { font-size: 64px; color: var(--green); margin-bottom: 16px; }
.demo-success h2 { font-size: 24px; font-weight: 700; color: var(--color-heading); margin: 0 0 10px; }
.demo-success p { font-size: 15px; color: var(--color-font-gray); margin: 0; }

/* HERO CONTENT (RIGHT) */
.demo-hero-content { padding-left: 20px; }
.demo-hero-content h2 { font-size: 32px; font-weight: 800; color: var(--color-heading); margin: 0 0 12px; line-height: 1.3; }
.demo-hero-content h2 span { color: var(--color-main); }
.demo-hero-content > p { font-size: 16px; color: var(--color-font-gray); line-height: 1.7; margin: 0 0 30px; }

/* FEATURE LIST */
.demo-features { display: flex; flex-direction: column; gap: 18px; }
.demo-feat { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: #fff; border: 1px solid #f0f0f0; border-radius: var(--radius); transition: all var(--transition); }
.demo-feat:hover { border-color: var(--color-main2); box-shadow: 0 4px 15px rgba(0,0,0,.05); transform: translateX(4px); }
.df-icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--color-main); flex-shrink: 0; }
.demo-feat:hover .df-icon { background: var(--color-main); color: #fff; }
.demo-feat strong { display: block; font-size: 14px; color: var(--color-heading); font-weight: 600; }
.demo-feat span { font-size: 13px; color: var(--color-font-gray); }

/* ADVANTAGES */
.demo-advantages { padding: 50px 0; background: #fff; }
.demo-adv-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.demo-adv-item { text-align: center; padding: 28px 16px; border: 1.5px solid var(--border-color); border-radius: var(--radius); transition: all var(--transition); }
.demo-adv-item:hover { border-color: var(--color-main); box-shadow: 0 8px 25px rgba(0,0,0,.06); transform: translateY(-3px); }
.dai-icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--bg-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; color: var(--color-main); }
.demo-adv-item:hover .dai-icon { background: var(--color-main); color: #fff; }
.demo-adv-item h4 { font-size: 15px; font-weight: 700; color: var(--color-heading); margin: 0 0 6px; }
.demo-adv-item p { font-size: 13px; color: var(--color-font-gray); margin: 0; line-height: 1.5; }

/* CTA */
.demo-cta { padding: 60px 0; background: linear-gradient(135deg, #03376a 0%, #0E85FB 100%); }
.demo-cta h2 { font-size: 28px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.demo-cta p { font-size: 16px; color: rgba(255,255,255,.8); margin: 0 0 24px; }
.demo-cta .btn-step-primary { background: #fff !important; color: var(--color-main) !important; box-shadow: 0 8px 25px rgba(0,0,0,.2); }
.demo-cta .btn-step-primary:hover { background: rgba(255,255,255,.9) !important; color: var(--color-main) !important; }
.demo-cta .demo-cta-outline { background: transparent !important; color: #fff !important; border: 1.5px solid rgba(255,255,255,.4) !important; }
.demo-cta .demo-cta-outline:hover { background: rgba(255,255,255,.1) !important; color: #fff !important; border-color: #fff !important; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .demo-hero-content { padding-left: 0; margin-top: 20px; }
    .demo-adv-grid { grid-template-columns: repeat(3, 1fr); }
    .demo-hero { padding: 40px 0 30px; }
}
@media (max-width: 576px) {
    .demo-form-card { padding: 28px 20px; }
    .demo-adv-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-hero-content h2 { font-size: 24px; }
    .demo-cta h2 { font-size: 22px; }
}

/* ========================================
   BAYİLİK SAYFASI
   ======================================== */

/* GRID */
.bayilik-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bayilik-card { background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; transition: all var(--transition); }
.bayilik-card:hover { border-color: var(--color-main); box-shadow: 0 12px 35px rgba(0,0,0,.07); transform: translateY(-4px); }
.bc-icon { width: 60px; height: 60px; border-radius: var(--radius); background: var(--bg-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 24px; color: var(--color-main); transition: all var(--transition); }
.bayilik-card:hover .bc-icon { background: var(--color-main); color: #fff; }
.bayilik-card h3 { font-size: 16px; font-weight: 700; color: var(--color-heading); margin: 0 0 8px; }
.bayilik-card p { font-size: 14px; color: var(--color-font-gray); margin: 0; line-height: 1.6; }

/* CTA */
.bayilik-cta { padding: 50px 0; background: linear-gradient(135deg, #03376a 0%, #0E85FB 100%); }
.bayilik-cta h2 { font-size: 26px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.bayilik-cta p { font-size: 15px; color: rgba(255,255,255,.8); margin: 0; }

/* FORM CARD */
.bayilik-form-card { background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius-lg); padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,.06); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .bayilik-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .bayilik-grid { grid-template-columns: 1fr; }
    .bayilik-form-card { padding: 28px 20px; }
    .bayilik-cta h2 { font-size: 20px; }
}

/* ========================================
   PAKET KARŞILAŞTIRMA TABLOSU
   ======================================== */
/* INLINE COMPARE (accordion) */
.compare-inline { margin-top: 40px; }
.compare-toggle { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 16px 24px; background: #fff; border: 2px solid var(--color-main); border-radius: 5px; color: var(--color-main); font-size: 16px; font-weight: 700; font-family: var(--font); cursor: pointer; transition: all var(--transition); }
.compare-toggle:hover { background: var(--color-main); color: #fff; }
.compare-toggle i { transition: transform .3s ease; font-size: 14px; }
.compare-inline.open .compare-toggle { background: var(--color-main); color: #fff; border-radius: 5px 5px 0 0; }
.compare-inline.open .compare-toggle i { transform: rotate(180deg); }
.compare-inline-body { display: none; }
.compare-inline.open .compare-inline-body { display: block; }
.compare-inline-body .compare-table-wrap { border-top: 0; border-radius: 0 0 var(--radius) var(--radius); }

.compare-section { padding: 60px 0; background: #fff; }

.compare-tabs { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.compare-tab { padding: 18px 24px; border: 2px solid #c5c5c5; border-radius: 5px; width: 300px; height: 80px; color: #181818; font-weight: 600; font-size: 16px; cursor: pointer; background: #fff; font-family: var(--font); transition: border-color var(--transition); text-align: center; display: flex; align-items: center; justify-content: center; }
.compare-tab:hover { border-color: #999; }
.compare-tab.active { border-color: var(--color-main); }
.compare-content { display: none; }
.compare-content.active { display: block; }

.compare-table-wrap { overflow-x: auto; border: 1.5px solid var(--border-color); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 700px; }
.compare-table thead { position: sticky; top: 0; z-index: 2; }
.compare-table th { background: var(--color-heading); color: #fff; padding: 16px 14px; font-weight: 600; font-size: 15px; text-align: center; border: 1px solid rgba(255,255,255,.1); }
.compare-table th.ct-feature { text-align: left; width: 280px; }
.compare-table th.ct-popular { background: var(--color-main); }
.compare-table td { padding: 12px 14px; text-align: center; border-bottom: 1px solid #f0f0f0; color: var(--color-font); font-size: 14px; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--color-heading); background: #fafbfc; }
.compare-table tbody tr:hover td { background: var(--bg-light); }
.compare-table tbody tr:hover td:first-child { background: #edf2f7; }

.ct-section td { background: #f0f4f8 !important; font-weight: 700 !important; color: var(--color-main) !important; font-size: 13px !important; text-transform: uppercase; letter-spacing: .5px; padding: 10px 14px !important; }
.ct-yes { color: var(--green); font-size: 18px; font-weight: 700; }
.ct-no { color: #ddd; font-size: 14px; }
.ct-opt { background: #fff3cd; color: #856404; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; white-space: nowrap; }

.compare-scroll-hint { display: none; text-align: center; color: var(--color-font-gray); font-size: 13px; margin-bottom: 12px; }
.compare-scroll-hint i { animation: scrollHint 1.5s ease-in-out infinite; }
@keyframes scrollHint { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

@media (max-width: 767px) {
    .compare-section { padding: 40px 0; }
    .compare-tabs { gap: 8px; }
    .compare-tab { font-size: 13px; padding: 12px 8px; width: auto; flex: 1; height: auto; min-height: 50px; }
    .compare-scroll-hint { display: none; }
    .compare-table-wrap { overflow-x: hidden; width: 100%; }
    .compare-table { min-width: 0; width: 100%; table-layout: fixed; }
    .compare-table th, .compare-table td { font-size: 11px; padding: 7px 4px; white-space: normal; word-break: break-word; text-align: center; }
    .compare-table th.ct-feature { width: 28%; text-align: left; }
    .compare-table th:not(.ct-feature) { width: 18%; }
    .compare-table td:first-child { text-align: left; width: 28%; }
    .ct-section td { font-size: 10px !important; }
    .ct-opt { font-size: 8px; padding: 2px 4px; }
    .ct-yes { font-size: 14px; }
    .ct-no { font-size: 11px; }
}

/* ========================================
   HAKKIMIZDA SAYFASI
   ======================================== */

/* HERO */
.about-hero { padding: 50px 0 40px; }
.about-hero-text h2 { font-size: 30px; font-weight: 800; color: var(--color-heading); margin: 0 0 20px; line-height: 1.3; }
.about-hero-text p { font-size: 15px; color: var(--color-font-gray); line-height: 1.8; margin: 0 0 14px; }

/* STAT GRID */
.about-hero-visual { background: linear-gradient(135deg, #03376a 0%, #0E85FB 100%); border-radius: var(--radius-lg); padding: 36px; }
.ahv-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ahv-stat { text-align: center; }
.ahv-num { display: block; font-size: 32px; font-weight: 800; color: #fff; line-height: 1.2; }
.ahv-label { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 400; margin-top: 4px; display: block; }

/* TEXT BLOCK */
.about-text-block { max-width: 800px; margin: 0 auto; }
.about-text-block p { font-size: 15px; color: var(--color-font-gray); line-height: 1.8; margin: 0 0 14px; }

/* NEDEN GSOFT */
.about-why { padding: 60px 0; background: var(--bg-light); }
.about-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.aw-card { background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: all var(--transition); height: 100%; }
.aw-card:hover { border-color: var(--color-main); box-shadow: 0 12px 35px rgba(0,0,0,.07); transform: translateY(-4px); }
.aw-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 26px; color: var(--color-main); transition: all var(--transition); }
.aw-card:hover .aw-icon { background: var(--color-main); color: #fff; }
.aw-card h3 { font-size: 18px; font-weight: 700; color: var(--color-heading); margin: 0 0 10px; }
.aw-card p { font-size: 14px; color: var(--color-font-gray); margin: 0; line-height: 1.7; }

/* DEĞERLER */
.about-values { padding: 50px 0; }
.av-card { background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius); padding: 28px 20px; text-align: center; height: 100%; transition: all var(--transition); }
.av-card:hover { border-color: var(--color-main); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,.06); }
.av-icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--bg-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; color: var(--color-main); }
.av-card:hover .av-icon { background: var(--color-main); color: #fff; }
.av-card h4 { font-size: 15px; font-weight: 700; color: var(--color-heading); margin: 0 0 6px; }
.av-card p { font-size: 13px; color: var(--color-font-gray); margin: 0; line-height: 1.5; }

@media (max-width: 992px) {
    .about-why-grid { grid-template-columns: 1fr; }
    .about-hero-text h2 { font-size: 24px; }
}
@media (max-width: 576px) {
    .ahv-num { font-size: 26px; }
}

/* ========================================
   İNSAN KAYNAKLARI SAYFASI
   ======================================== */

/* IK POLİTİKA LİSTESİ */
.ik-policy-list { display: flex; flex-direction: column; gap: 14px; }
.ik-policy-item { display: flex; gap: 14px; align-items: flex-start; }
.ik-num { width: 28px; height: 28px; border-radius: 50%; background: var(--color-main); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.ik-policy-item p { font-size: 13.5px; color: var(--color-font-gray); margin: 0; line-height: 1.6; }

/* İŞ İLANI KARTLARI */
.job-card { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 12px; transition: all var(--transition); }
.job-card:hover { border-color: var(--color-main); box-shadow: 0 6px 20px rgba(0,0,0,.06); transform: translateX(4px); }
.jc-left { display: flex; align-items: center; gap: 16px; }
.jc-icon { width: 46px; height: 46px; border-radius: var(--radius); background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--color-main); flex-shrink: 0; }
.job-card:hover .jc-icon { background: var(--color-main); color: #fff; }
.jc-left h4 { font-size: 15px; font-weight: 600; color: var(--color-heading); margin: 0 0 2px; }
.jc-left span { font-size: 13px; color: var(--color-font-gray); }

@media (max-width: 576px) {
    .job-card { flex-direction: column; gap: 14px; text-align: center; }
    .jc-left { flex-direction: column; align-items: center; }
    .job-card .btn-step { width: 100%; justify-content: center; }
}

/* ========================================
   YASAL SAYFALAR (Gizlilik, KVKK, Kullanım)
   ======================================== */
.legal-content { background: #fff; border: 1.5px solid var(--border-color); border-radius: var(--radius-lg); padding: 44px 48px; box-shadow: 0 4px 30px rgba(0,0,0,.04); }
.legal-content h2 { font-size: 26px; font-weight: 800; color: var(--color-heading); margin: 0 0 6px; }
.legal-content h2 + p { margin-bottom: 28px; }
.legal-content h3 { font-size: 18px; font-weight: 700; color: var(--color-heading); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--bg-light); }
.legal-content p { font-size: 15px; color: var(--color-font); line-height: 1.8; margin: 0 0 14px; }
.legal-content ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
.legal-content ul li { position: relative; padding: 6px 0 6px 24px; font-size: 14.5px; color: var(--color-font); line-height: 1.7; }
.legal-content ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--color-main); }
.legal-content ul li strong { color: var(--color-heading); }
.legal-content table { border-radius: 8px; overflow: hidden; margin: 16px 0 20px; }
.legal-content table th { background: var(--color-heading) !important; color: #fff !important; font-weight: 600; font-size: 14px; }
.legal-content table td { font-size: 14px; }
.legal-content table tr:nth-child(even) td { background: #f9fbff; }
.legal-content em { color: var(--color-font-gray); font-size: 13px; }

@media (max-width: 576px) {
    .legal-content { padding: 28px 20px; }
    .legal-content h2 { font-size: 22px; }
    .legal-content h3 { font-size: 16px; }
}
