
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue: #3a8dde; --navy: #002169; --navy-light: #0a3a8a; --blue-light: #5ba3e8;
      --cream: #f4f7ff; --white: #ffffff;
      --text-dark: #0a1a3d; --text-mid: #4a5a80; --text-light: #8a9bbf;
      --border: rgba(0,33,105,0.08); --border-strong: rgba(0,33,105,0.15);
      --shadow-sm: 0 1px 4px rgba(0,33,105,0.06); --shadow-md: 0 4px 20px rgba(0,33,105,0.10);
      --shadow-lg: 0 12px 40px rgba(0,33,105,0.15);
      --r: 10px; --r-lg: 14px; --r-xl: 20px;
    }
    html { scroll-behavior: smooth; }
    /* Yapışkan footer: içerik kısa olduğunda (örneğin boş ilan listesi) footer’ın altında
       krem renkli boşluk kalmasın diye body dikey flex; footer margin-top:auto ile dibe iner. */
    body { font-family: 'Manrope', sans-serif; background: var(--cream); color: var(--text-dark); font-size: 14px; line-height: 1.6; -webkit-font-smoothing: antialiased; min-height: 100vh; display: flex; flex-direction: column; }

    /* ── HEADER ── */
    .header { background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 64px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 200; }
    .header-logo { display: flex; align-items: center; text-decoration: none; }
    .header-logo img { height: 64px; width: auto; }
    .header-actions { display: flex; align-items: center; gap: 8px; }
    .btn-ghost { background: transparent; border: 1.5px solid var(--border-strong); color: var(--text-mid); font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 8px; cursor: pointer; transition: all 0.18s; letter-spacing: -0.01em; }
    .btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: rgba(0,33,105,0.03); }
    .btn-primary { background: var(--navy); border: none; color: #fff; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: 8px; cursor: pointer; transition: all 0.18s; letter-spacing: -0.01em; }
    .btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,33,105,0.25); }
    .mobile-btn { display: none; background: transparent; border: 1.5px solid var(--border-strong); color: var(--text-mid); width: 38px; height: 38px; border-radius: 8px; cursor: pointer; align-items: center; justify-content: center; font-size: 16px; }

    /* ── SECTIONS ── */

    

    /* ── LAYOUT ── */
    .section-layout { display: grid; grid-template-columns: 220px minmax(0,1fr) 200px; gap: 20px; padding: 24px 5% 72px; align-items: start; width: 100%; box-sizing: border-box; }

    /* ── FILTER BAR ── */
    .sidebar-filters { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 16px 14px; display: flex; flex-direction: column; gap: 4px; position: sticky; top: 82px; }
    .sf-heading { font-size: 10px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
    .sidebar-filters h3 { display: none; }
    .sidebar-group { display: flex; flex-direction: column; gap: 2px; margin-bottom: 0; border-right: none; padding-right: 0; }
    .sidebar-group:last-child { border-right: none; }
    .sidebar-group-title { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-light); margin: 8px 0 4px; }
    .sf { display: flex; align-items: center; gap: 8px; width: 100%; background: transparent; border: none; color: var(--text-mid); font-family: 'Manrope', sans-serif; font-size: 12.5px; font-weight: 400; padding: 6px 8px; border-radius: 8px; cursor: pointer; transition: all 0.13s; white-space: nowrap; text-align: left; }
    .sf:hover { background: var(--cream); color: var(--navy); }
    .sf.active { background: rgba(0,33,105,0.07); color: var(--navy); font-weight: 600; }
    .sf-cb { width: 14px; height: 14px; border: 1.5px solid var(--border-strong); border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.13s; background: var(--white); }
    .sf.active .sf-cb { background: var(--navy); border-color: var(--navy); }
    .sf.active .sf-cb::after { content: ''; display: block; width: 7px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) translateY(-1px); }
    .sf-label { flex: 1; }
    .sf-count { font-size: 10px; color: var(--text-light); margin-left: auto; }
    .sf.active .sf-count { color: var(--navy); opacity: 0.6; }

    /* ── INFO BAR ── */
    .ilan-info-bar { display: flex; align-items: center; gap: 8px; background: rgba(58,141,222,0.06); border: 1px solid rgba(58,141,222,0.18); border-radius: 10px; padding: 9px 14px; margin-bottom: 14px; }
    .ilan-info-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
    @keyframes pulse-dot { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.45; transform:scale(0.65); } }
    .ilan-info-label { font-size: 12px; font-weight: 600; color: var(--navy); }
    .ilan-info-sep { font-size: 12px; color: var(--text-light); }
    .ilan-info-link { font-size: 12px; font-weight: 600; color: var(--blue); text-decoration: none; cursor: pointer; margin-left: auto; white-space: nowrap; transition: opacity 0.15s; }
    .ilan-info-link:hover { opacity: 0.75; }
    .il-count { font-size: 10.5px; font-weight: 700; color: var(--blue); background: rgba(58,141,222,0.1); border-radius: 6px; padding: 1px 6px; flex-shrink: 0; }
    .il-count-tr { background: transparent; font-size: 13px; }

    /* ── CARD GRID ── */
    .card-grid { display: flex; flex-direction: column; gap: 8px; width: 100%; }
    .center-col { min-width: 0; overflow: hidden; }

    /* ── ILAN CARD ── */
    .ilan-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 16px 18px; cursor: pointer; transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s; display: flex; flex-direction: column; gap: 12px; position: relative; width: 100%; box-sizing: border-box; min-width: 0; }
    .ilan-card:hover { border-color: rgba(58,141,222,0.4); box-shadow: var(--shadow-md); transform: translateY(-1px); }
    .ilan-card::before { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px; background: linear-gradient(180deg, var(--navy), var(--blue)); border-radius: 0 3px 3px 0; opacity: 0; transition: opacity 0.18s; }
    .ilan-card:hover::before { opacity: 1; }
    .cozum-ortagi-card::before { background: linear-gradient(180deg, #d97706, #f59e0b) !important; }
    .ilan-top { display: flex; align-items: center; gap: 13px; }
    .co-logo { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
    .co-logo img { width: 38px; height: 38px; object-fit: contain; border-radius: 7px; }
    .co-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
    .ilan-title { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.2; }
    .co-name { font-size: 11.5px; font-weight: 400; color: var(--text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .ilan-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
    .ilan-loc { font-size: 11.5px; color: var(--text-mid); font-weight: 400; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .btn-basvur-ilan { background: var(--navy); color: #fff; border: none; font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; padding: 7px 16px; border-radius: 8px; cursor: pointer; transition: all 0.18s; white-space: nowrap; letter-spacing: -0.01em; }
    .btn-basvur-ilan:hover { background: var(--navy-light); box-shadow: 0 3px 10px rgba(0,33,105,0.22); }

    /* ── SHOW MORE ── */
    .show-more-wrap { text-align: center; margin-top: 24px; }
    .btn-show-more { background: transparent; border: 1.5px solid var(--border-strong); color: var(--text-mid); font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; padding: 11px 36px; border-radius: 25px; cursor: pointer; transition: all 0.2s; }
    .btn-show-more:hover { border-color: var(--navy); color: var(--navy); background: rgba(0,33,105,0.02); }

    /* ── FOOTER ── */
    .site-footer { background: #1a2540; margin-top: auto; flex-shrink: 0; }
    .footer-main { padding: 44px 6% 36px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 32px; align-items: start; }
    .footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
    .footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 400; text-decoration: none; margin-bottom: 10px; transition: color 0.15s; }
    .footer-col a:hover { color: rgba(255,255,255,0.95); }
    .footer-social { display: flex; flex-direction: column; gap: 8px; }
    .social-btn { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 8px 14px; text-decoration: none; transition: all 0.18s; }
    .social-btn:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.18); }
    .social-icon { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .social-icon svg { width: 14px; height: 14px; }
    .si-linkedin { background: #0077B5; }
    .si-instagram { background: linear-gradient(135deg,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888); }
    .si-youtube { background: #FF0000; }
    .social-label { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.8); }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); }
    .footer-copy-bar { padding: 16px 6%; text-align: center; }
    .footer-copy-main { font-size: 12.5px; color: rgba(255,255,255,0.45); font-weight: 400; }
    .footer-copy-main strong { font-weight: 600; color: rgba(255,255,255,0.6); }
    .footer-legal-bar { display: flex; align-items: flex-start; gap: 12px; padding: 14px 6% 20px; }
    .footer-legal-icon { width: 36px; height: 36px; flex-shrink: 0; opacity: 0.5; }
    .footer-legal-text { font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 300; line-height: 1.65; }

    /* ── POPUP ── */
    .popup-overlay { display: none; position: fixed; inset: 0; background: rgba(5,15,40,0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 9000; align-items: center; justify-content: center; padding: 20px; }
    .popup-overlay.open { display: flex; animation: fo 0.18s ease; }
    @keyframes fo { from{opacity:0;} to{opacity:1;} }
    .popup-box { background: var(--white); border-radius: var(--r-xl); width: 100%; max-width: 400px; overflow: hidden; box-shadow: var(--shadow-lg); animation: pi 0.22s cubic-bezier(0.34,1.56,0.64,1); }
    @keyframes pi { from{opacity:0;transform:scale(0.9) translateY(10px);} to{opacity:1;transform:scale(1) translateY(0);} }
    .popup-head { background: linear-gradient(135deg,#001550 0%,#002d90 100%); padding: 22px 22px 18px; position: relative; display: flex; align-items: center; gap: 13px; }

    .popup-head-text { flex: 1; min-width: 0; }
    .popup-close-btn { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.75); width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 12px; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
    .popup-close-btn:hover { background: rgba(255,255,255,0.2); }
    .popup-site { font-size: 9.5px; font-weight: 700; color: var(--blue-light); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 2px; }
    .popup-title { font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 700; color: #fff; line-height: 1.2; }
    .popup-sub { font-size: 11.5px; color: rgba(255,255,255,0.45); font-weight: 300; margin-top: 2px; }
    .popup-tabrow { display: flex; background: #f8faff; border-bottom: 1px solid var(--border); }
    .ptab { flex: 1; background: transparent; border: none; border-bottom: 2.5px solid transparent; font-family: 'Manrope', sans-serif; font-size: 13.5px; font-weight: 500; color: var(--text-light); padding: 13px 12px; cursor: pointer; transition: all 0.18s; margin-bottom: -1px; }
    .ptab.active { color: var(--navy); border-bottom-color: var(--blue); font-weight: 700; background: var(--white); }
    .popup-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 14px; }
    #pf-giris { display: flex; flex-direction: column; gap: 13px; }
    #pf-kayit { display: none; flex-direction: column; gap: 13px; }
    .fg { display: flex; flex-direction: column; gap: 5px; }
    .fl { font-size: 11px; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.05em; }
    .fi { border: 1.5px solid var(--border-strong); border-radius: 10px; padding: 11px 14px; font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--text-dark); outline: none; width: 100%; transition: border-color 0.18s, box-shadow 0.18s; background: var(--white); }
    .fi:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58,141,222,0.12); }
    .btn-sub { width: 100%; background: var(--navy); border: none; color: #fff; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; padding: 13px; border-radius: 10px; cursor: pointer; transition: all 0.2s; margin-top: 2px; letter-spacing: -0.01em; }
    .btn-sub:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,33,105,0.25); }
    .fnote { font-size: 12px; color: var(--text-light); text-align: center; }
    .fnote a { color: var(--blue); cursor: pointer; font-weight: 600; text-decoration: none; }
    .fnote a:hover { text-decoration: underline; }

    /* ── İLAN VER POPUP ── */
    .info-popup-overlay { display: none; position: fixed; inset: 0; background: rgba(5,15,40,0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 9500; align-items: center; justify-content: center; padding: 20px; }
    .info-popup-overlay.open { display: flex; animation: fo 0.18s ease; }
    .info-popup-box { background: var(--white); border-radius: var(--r-xl); width: 100%; max-width: 400px; overflow: hidden; box-shadow: var(--shadow-lg); animation: pi 0.22s cubic-bezier(0.34,1.56,0.64,1); }
    .info-popup-head { background: linear-gradient(135deg,#001550 0%,#002d90 100%); padding: 22px 22px 18px; display: flex; align-items: center; gap: 13px; position: relative; }
    .info-popup-icon { width: 40px; height: 40px; background: rgba(58,141,222,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
    .info-popup-head-txt h3 { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 2px; }
    .info-popup-head-txt p { font-size: 11.5px; color: rgba(255,255,255,0.45); font-weight: 300; }
    .info-popup-close { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.75); width: 26px; height: 26px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 12px; }
    .info-popup-body { padding: 20px 22px 22px; }
    .info-popup-body p { font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
    .info-steps { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
    .info-step { display: flex; align-items: flex-start; gap: 11px; background: var(--cream); border-radius: 9px; padding: 10px 12px; }
    .info-step-num { width: 22px; height: 22px; background: var(--navy); color: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10.5px; font-weight: 700; flex-shrink: 0; }
    .info-step-txt { font-size: 12.5px; color: var(--text-dark); line-height: 1.5; }
    .btn-ilan-kayit { width: 100%; background: var(--navy); border: none; color: #fff; font-family: 'Manrope', sans-serif; font-size: 13.5px; font-weight: 700; padding: 12px; border-radius: 10px; cursor: pointer; transition: all 0.2s; }
    .btn-ilan-kayit:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,33,105,0.25); }


    /* REG BANNER */
    .reg-banner { position: sticky; top: 82px; }
    .reg-banner-inner { background: var(--navy); border-radius: var(--r-lg); padding: 20px 16px; display: flex; flex-direction: column; gap: 10px; }
    .reg-banner-icon { font-size: 28px; line-height: 1; }
    .reg-banner-title { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: #fff; line-height: 1.25; }
    .reg-banner-sub { font-size: 11.5px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.55; }
    .reg-banner-list { list-style: none; display: flex; flex-direction: column; gap: 5px; margin: 2px 0; }
    .reg-banner-list li { font-size: 11.5px; color: rgba(255,255,255,0.75); font-weight: 400; }
    .reg-banner-btn { width: 100%; background: var(--blue); border: none; color: #fff; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; padding: 11px; border-radius: 9px; cursor: pointer; transition: all 0.18s; margin-top: 4px; }
    .reg-banner-btn:hover { background: var(--blue-light); transform: translateY(-1px); }


    /* İL DROPDOWN */
    .il-dropdown { position: relative; width: 100%; }
    .il-dropdown-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; min-width: 150px; background: var(--cream); border: 1.5px solid var(--border-strong); border-radius: 8px; padding: 7px 10px; font-family: 'Manrope', sans-serif; font-size: 12.5px; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all 0.15s; text-align: left; }
    .il-dropdown-btn:hover { border-color: var(--navy); color: var(--navy); }
    .il-dropdown-btn.open { border-color: var(--blue); color: var(--navy); background: var(--white); }
    .il-dropdown-btn svg { flex-shrink: 0; transition: transform 0.2s; opacity: 0.5; }
    .il-dropdown-btn.open svg { transform: rotate(180deg); opacity: 1; }
    .il-dropdown-list { display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--white); border: 1.5px solid var(--border-strong); border-radius: 10px; box-shadow: var(--shadow-md); z-index: 200; max-height: 220px; overflow-y: auto; padding: 6px 0; }
    .il-dropdown-list.open { display: block; animation: sIn 0.15s ease; }
    .il-opt { display: flex; align-items: center; gap: 8px; padding: 6px 12px; font-size: 12.5px; color: var(--text-mid); cursor: pointer; transition: background 0.12s; }
    .il-opt:hover { background: var(--cream); color: var(--navy); }
    .il-opt input[type=checkbox] { width: 14px; height: 14px; accent-color: var(--navy); cursor: pointer; flex-shrink: 0; }
    .il-dropdown-label-selected { color: var(--navy); font-weight: 600; }


    .no-ilan-msg { padding: 16px 0 8px; }
    .no-ilan-inner { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 28px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .no-ilan-icon { font-size: 32px; }
    .no-ilan-title { font-size: 14px; font-weight: 700; color: var(--navy); }
    .no-ilan-sub { font-size: 12.5px; color: var(--text-light); line-height: 1.6; max-width: 260px; }
    .no-ilan-btn { background: transparent; border: 1.5px solid var(--border-strong); color: var(--text-mid); font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 600; padding: 7px 18px; border-radius: 20px; cursor: pointer; transition: all 0.15s; margin-top: 4px; }
    .no-ilan-btn:hover { border-color: var(--navy); color: var(--navy); }




    /* KURUMSAL KAYIT MODAL */
    .kf-modal-box { background: var(--cream); border-radius: 20px; width: 100%; max-width: 680px; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 20px 60px rgba(0,15,50,0.3); animation: pi 0.22s cubic-bezier(0.34,1.56,0.64,1); }
    .kf-modal-close { position: absolute; top: 14px; right: 14px; z-index: 10; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
    .kf-modal-close:hover { background: rgba(255,255,255,0.25); }
    .page-footer { text-align: center; font-size: 11.5px; color: var(--text-light); line-height: 1.8; }
    .page-footer a { color: var(--blue); text-decoration: none; font-weight: 500; }
    .form-card { background: var(--white); border-radius: 20px; box-shadow: 0 4px 32px rgba(0,33,105,0.10); overflow: hidden; }
    .form-head { background: linear-gradient(135deg, #001550 0%, #002d90 100%); padding: 28px 32px; display: flex; align-items: center; gap: 16px; }
    .form-head-icon { width: 48px; height: 48px; background: rgba(58,141,222,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .form-head-icon img { width: 30px; height: 30px; object-fit: contain; }
    .form-head-text h1 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
    .form-head-text p { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 300; }
    .form-body { padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 18px; }
    .form-section-title { font-size: 10px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; padding-bottom: 10px; border-bottom: 1px solid var(--border); margin-bottom: 2px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
    .form-full { grid-column: 1 / -1; }
    .field { display: flex; flex-direction: column; gap: 5px; }
    .field label { font-size: 11.5px; font-weight: 700; color: var(--text-mid); }
    .field input, .field select { border: 1.5px solid var(--border-strong); border-radius: 10px; padding: 10px 14px; font-family: 'Manrope', sans-serif; font-size: 13.5px; color: var(--text-dark); background: var(--white); outline: none; width: 100%; transition: border-color 0.18s, box-shadow 0.18s; appearance: none; -webkit-appearance: none; }
    .field select { background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238a9bbf' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
    .field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(58,141,222,0.12); }
    .field input::placeholder { color: var(--text-light); }
    .check-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-mid); line-height: 1.55; cursor: pointer; }
    .check-label input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--navy); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
    .kf-link { color: var(--blue); font-weight: 600; text-decoration: none; }
    .kf-link:hover { text-decoration: underline; }
    .btn-submit { width: 100%; background: var(--blue); border: none; color: #fff; font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; padding: 15px; border-radius: 12px; cursor: pointer; transition: all 0.2s; letter-spacing: -0.01em; }
    .btn-submit:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,33,105,0.25); }
    .form-note { font-size: 12.5px; color: var(--text-light); text-align: center; }
    .form-note a { color: var(--blue); font-weight: 600; text-decoration: none; }
    .success-screen { display: none; flex-direction: column; align-items: center; gap: 14px; padding: 48px 20px; text-align: center; }
    .success-icon { width: 64px; height: 64px; background: #e8f5e9; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #1b5e20; font-weight: 800; }
    .success-title { font-size: 20px; font-weight: 800; color: var(--navy); }
    .success-sub { font-size: 14px; color: var(--text-light); max-width: 360px; line-height: 1.65; }
    .btn-back { background: transparent; border: 1.5px solid var(--border-strong); color: var(--text-mid); font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600; padding: 10px 28px; border-radius: 25px; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
    .btn-back:hover { border-color: var(--navy); color: var(--navy); }
    .page-footer { text-align: center; font-size: 11.5px; color: var(--text-light); margin-top: 28px; line-height: 1.8; }
    .page-footer a { color: var(--blue); text-decoration: none; font-weight: 500; }
      .form-head { padding: 22px 20px; }
      .form-body { padding: 20px 20px 24px; gap: 16px; }
      .form-grid { grid-template-columns: 1fr; }
      .form-full { grid-column: 1; }
    @media (max-width: 600px) {
      .kf-modal-box { max-height: 100vh; border-radius: 20px 20px 0 0; }
      .info-popup-overlay { align-items: flex-end; padding: 0; }
      .form-head { padding: 22px 20px; }
      .form-body { padding: 18px 18px 22px; gap: 14px; }
      .form-grid { grid-template-columns: 1fr; }
      .form-full { grid-column: 1; }
    }


    .mobile-menu-wrap { position: relative; display: none; }
    .mobile-dropdown { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: var(--white); border: 1.5px solid var(--border-strong); border-radius: 12px; box-shadow: 0 8px 24px rgba(0,33,105,0.12); min-width: 160px; padding: 6px; z-index: 300; animation: sIn 0.15s ease; }
    .mobile-dropdown.open { display: flex; flex-direction: column; gap: 2px; }
    .mob-item { background: transparent; border: none; font-family: 'Manrope', sans-serif; font-size: 13.5px; font-weight: 500; color: var(--text-mid); padding: 10px 14px; border-radius: 8px; cursor: pointer; text-align: left; width: 100%; transition: background 0.12s; }
    .mob-item:hover { background: var(--cream); color: var(--navy); }
    .mob-item-primary { color: var(--navy); font-weight: 700; border-top: 1px solid var(--border); margin-top: 2px; padding-top: 12px; }
    .mob-item-primary:hover { background: rgba(0,33,105,0.05); }


    /* KAYIT CHECKS */
    .kayit-checks { display: flex; flex-direction: column; gap: 8px; }
    .kayit-check-row { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: var(--text-mid); line-height: 1.5; cursor: pointer; }
    .kayit-check-row input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--navy); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
    .kayit-check-row.error span { color: #c62828; }
    .popup-legal-link { color: var(--blue); font-weight: 600; text-decoration: none; cursor: pointer; }
    .popup-legal-link:hover { text-decoration: underline; }

    /* LEGAL MODAL */
    .legal-overlay { display: none; position: fixed; inset: 0; background: rgba(5,15,40,0.7); backdrop-filter: blur(4px); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
    .legal-overlay.open { display: flex; animation: fo 0.18s ease; }
    .legal-box { background: var(--white); border-radius: 16px; width: 100%; max-width: 480px; max-height: 82vh; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,15,50,0.3); animation: pi 0.22s cubic-bezier(0.34,1.56,0.64,1); }
    .legal-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
    .legal-title { font-size: 14px; font-weight: 700; color: var(--navy); }
    .legal-close { background: var(--cream); border: none; color: var(--text-mid); width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.15s; }
    .legal-close:hover { background: var(--border); }
    .legal-body { padding: 18px 20px; overflow-y: auto; flex: 1; font-size: 13px; color: var(--text-mid); line-height: 1.75; }
    .legal-body h4 { font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin: 16px 0 6px; }
    .legal-body p { margin-bottom: 10px; }
    .legal-foot { padding: 12px 20px; border-top: 1px solid var(--border); }
    .legal-back { background: transparent; border: 1.5px solid var(--border-strong); color: var(--text-mid); font-family: 'Manrope', sans-serif; font-size: 12.5px; font-weight: 600; padding: 8px 20px; border-radius: 20px; cursor: pointer; transition: all 0.15s; }
    .legal-back:hover { border-color: var(--navy); color: var(--navy); }
    @media (max-width: 768px) {
      .legal-overlay { align-items: flex-end; padding: 0; }
      .legal-box { max-width: 100%; border-radius: 20px 20px 0 0; max-height: 85vh; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .section-layout { grid-template-columns: 160px 1fr; }
      .reg-banner { display: none; }
    }
    @media (max-width: 768px) {
      .header { padding: 0 4%; height: 58px; }
      .header-logo img { height: 30px; }
      .header-actions { display: none; }
      .mobile-menu-wrap { display: block; }
      .mobile-btn { display: flex; }
      .section-layout { grid-template-columns: 1fr; padding: 0 4% 56px; gap: 0; }
      .sidebar-filters { position: sticky; top: 58px; z-index: 50; border-radius: 0; border-left: none; border-right: none; border-top: none; padding: 10px 0; flex-direction: row; gap: 6px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; background: var(--cream); }
      .sidebar-filters::-webkit-scrollbar { display: none; }
      .sf-heading { display: none; }
      .sidebar-group-title { display: none; }
      .sf { flex-direction: row; width: auto; background: var(--white); border: 1.5px solid var(--border-strong); border-radius: 20px; padding: 5px 13px; font-size: 12px; white-space: nowrap; }
      .sf.active { background: var(--navy); color: #fff; }
      .sf-cb { display: none; }
      .reg-banner { display: none; }
      .ilan-card { padding: 14px 15px; gap: 10px; border-radius: 12px; }
      .ilan-title { font-size: 14px; }
      .co-logo { width: 38px; height: 38px; }
      .ilan-info-bar { margin-top: 12px; }
      .popup-overlay { align-items: flex-end; padding: 0; }
      .popup-box { max-width: 100%; border-radius: 20px 20px 0 0; }
      .info-popup-overlay { align-items: flex-end; padding: 0; }
      .info-popup-box { max-width: 100%; border-radius: 20px 20px 0 0; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 24px; padding: 36px 5% 28px; }
      .footer-social { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    }
    @media (max-width: 480px) {
      .header { padding: 0 4%; }
      .section-layout { padding: 0 3.5% 48px; }
      .sf { font-size: 11.5px; padding: 5px 11px; }
      .ilan-card { padding: 13px 14px; border-radius: 11px; }
      .ilan-foot { gap: 8px; }
      .ilan-loc { font-size: 10.5px; }
      .btn-basvur-ilan { font-size: 11px; padding: 6px 12px; border-radius: 7px; }
      .btn-show-more { font-size: 12.5px; padding: 10px 28px; }
      .footer-main { grid-template-columns: 1fr; padding: 28px 4% 24px; }
      .footer-social { flex-direction: row; }
    }

  
    /* ── Hukuki metin sayfaları ── */
    .legal-page { max-width: 820px; margin: 0 auto; padding: 48px 6% 72px; }
    .legal-page h1 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
    .legal-page .legal-updated { font-size: 12.5px; color: var(--text-light); margin-bottom: 32px; }
    .legal-page h2 { font-size: 17px; font-weight: 800; color: var(--navy); margin: 32px 0 10px; }
    .legal-page h3 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin: 20px 0 6px; }
    .legal-page p { font-size: 14px; color: var(--text-mid); line-height: 1.85; margin-bottom: 12px; }
    .legal-page ul { margin: 0 0 14px 20px; }
    .legal-page li { font-size: 14px; color: var(--text-mid); line-height: 1.85; margin-bottom: 5px; }
    .legal-page a { color: var(--blue); font-weight: 600; }
    .legal-page table { width: 100%; border-collapse: collapse; margin: 12px 0 18px; font-size: 13.5px; }
    .legal-page th, .legal-page td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; color: var(--text-mid); }
    .legal-page th { background: var(--cream); color: var(--navy); font-weight: 700; }
    .legal-callout { background: var(--cream); border-left: 3px solid var(--blue); border-radius: 8px; padding: 16px 18px; margin: 18px 0; }
    .legal-callout p:last-child { margin-bottom: 0; }

    /* ── Footer ödeme logoları (iyzico üye işyeri kriteri) ── */
    .footer-payment { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; padding: 20px 6% 4px; border-top: 1px solid rgba(255,255,255,0.1); }
    .footer-payment-label { font-size: 11.5px; color: rgba(255,255,255,0.45); font-weight: 600; letter-spacing: 0.02em; }
    .footer-payment-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
    .footer-payment-logos img { height: 26px; width: auto; max-width: 110px; background: #fff; border-radius: 6px; padding: 4px 8px; }
    .footer-payment-ssl { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: rgba(255,255,255,0.35); }

    /* Resmi logo dosyalari yoksa kullanilan gomulu rozetler */
    .pay-badge { display: inline-flex; align-items: center; gap: 5px; border-radius: 6px; padding: 6px 10px; }
    .pay-badge-visa { background: #1a1f71; }
    .pay-badge-mc { background: #252525; }
    .pay-badge-iyzico { background: #00c4b4; padding: 6px 12px; }
    .pay-badge-text { color: #fff; font-size: 10.5px; font-weight: 600; letter-spacing: 0.3px; }
    .pay-badge-wordmark { color: #fff; font-size: 13.5px; font-weight: 800; letter-spacing: -0.5px; }
