/* Genel arka plan ve font ayarları */
body {
    background: #eaf3fb;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #22324c;
}

h1 {
    text-align: center;
    margin-top: 32px;
    font-size: 2.5em;
    color: #2071d1;
    letter-spacing: .04em;
}

h2 {
    margin: 40px 0 20px 0;
    color: #22324c;
    font-size: 1.4em;
    text-align: left;
    padding-left: 20px;
}

/* Kullanıcı listesi */
.user-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 20px 40px 20px;
}

/* Kullanıcı kartı */
.user-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(32,113,209,0.08), 0 1.5px 1.5px 0 rgba(0,0,0,0.03);
    padding: 22px 24px 18px 24px;
    min-width: 260px;
    max-width: 315px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    transition: box-shadow 0.2s;
    position: relative;
}

.user-card:hover {
    box-shadow: 0 6px 32px 0 rgba(32,113,209,0.18), 0 2px 2px 0 rgba(0,0,0,0.04);
}

/* Profil fotoğrafı ve doğrulama tiki */
.avatar-wrap {
    position: relative;
    margin-right: 18px;
}

.avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #b4d5f5;
    background: #edf5fb;
    display: block;
}

/* Doğrulama Rozeti (Tick) */
.tick {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #2071d1;
    color: #fff;
    width: 28px;
    height: 28px;
    font-size: 1.2em;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.tick-large {
    bottom: 8px;
    right: 2px;
    width: 32px;
    height: 32px;
    font-size: 1.5em;
}

/* Kullanıcı bilgileri */
.user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-fullname {
    font-weight: 700;
    font-size: 1.09em;
    letter-spacing: .01em;
    margin-bottom: 2px;
    color: #22324c;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-username {
    font-size: .98em;
    color: #6e7b9c;
    margin-bottom: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-contact {
    font-size: .99em;
    color: #475370;
    margin-bottom: 7px;
}
.user-contact .contact-item {
    margin-bottom: 2px;
}

.user-socials {
    margin-top: 5px;
    display: flex;
    gap: 9px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f8fd;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    transition: background 0.15s;
    box-shadow: 0 0 2px #b4d5f5;
    border: none;
    text-decoration: none;
    /* SVG'lerin ortada olması için */
}

.social-link:hover {
    background: #d6e9fa;
    box-shadow: 0 0 8px #6bb3f9;
}

.social-link svg {
    display: block;
    margin: auto;
}

/* Responsive - mobil görünüm */
@media (max-width: 800px) {
    .user-list {
        flex-direction: column;
        gap: 18px;
        padding: 0 8px 32px 8px;
    }
    .user-card {
        max-width: 100%;
        min-width: 0;
        padding: 18px 14px 14px 14px;
    }
}

/* Doğrulama tiki için animasyon opsiyonel */
@keyframes tick-pop {
    0% {transform: scale(0);}
    80% {transform: scale(1.15);}
    100% {transform: scale(1);}
}
.tick {
    animation: tick-pop 0.5s;
}

.site-header {
    background: #dbeefd;
    border-bottom: 1.5px solid #b4d5f5;
    padding: 0 0 10px 0;
    margin-bottom: 20px;
}
.logo-bar {
    text-align: center;
    padding: 12px 0 5px 0;
}
.logo-img {
    max-width: 250px;
    max-height: 100px;
    width: auto;
    height: auto;
}

.site-footer {
    background: #dbeefd;
    border-top: 1.5px solid #b4d5f5;
    text-align: center;
    font-size: 1em;
    color: #22324c;
    padding: 14px 0 10px 0;
    margin-top: 30px;
}
.footer-content {
    letter-spacing: 0.02em;
}
main {
    min-height: 65vh;
    display: block;
}

/* Profil linki kopyala butonu */
.profile-link-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: #eaf3fb;
    border: none;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.93em;
    color: #2071d1;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 1px 4px rgba(32,113,209,0.07);
    transition: background 0.13s;
}
.profile-link-btn:hover {
    background: #dbeefd;
}

/* Kopyalandı bildirimi */
.copy-alert {
    position: absolute;
    top: 45px;
    right: 30px;
    background: #2071d1;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.98em;
    box-shadow: 0 2px 8px rgba(32,113,209,0.12);
    z-index: 10;
    animation: fadeOut 1.8s forwards;
}
@keyframes fadeOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

.profile-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 60vh;
    padding: 36px 0 60px 0;
}
.profile-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 28px 0 rgba(32,113,209,0.11), 0 2px 4px 0 rgba(0,0,0,0.04);
    padding: 38px 40px 32px 40px;
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.avatar-large img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #b4d5f5;
    object-fit: cover;
    background: #edf5fb;
}
.tick-large {
    width: 32px;
    height: 32px;
    font-size: 1.6em;
    right: -8px;
    bottom: 12px;
    background: #2071d1;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-main {
    margin-top: 16px;
    width: 100%;
    text-align: center;
}
.profile-name-link {
    font-size: 1.4em;
    font-weight: 700;
    color: #2071d1;
    text-decoration: none;
    cursor: default;
}
.profile-username {
    font-size: 1.1em;
    color: #6e7b9c;
    margin-bottom: 14px;
}
.profile-contact {
    margin-bottom: 16px;
}
.profile-contact .contact-item {
    display: block;
    color: #475370;
    font-size: 1.07em;
    margin-bottom: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.13s, background 0.13s;
    border-radius: 4px;
    padding: 2px 7px;
}
.profile-contact .contact-item:hover {
    background: #eaf3fb;
    color: #2071d1;
}
.profile-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    align-items: center;
}
.profile-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f8fd;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: background 0.13s;
    margin-left: 7px;
}
.profile-share:hover {
    background: #d6e9fa;
}
.copy-alert {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    background: #2071d1;
    color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 1em;
    white-space: nowrap;
    z-index: 10;
    animation: fadeOut 1.6s forwards;
}
@media (max-width: 600px) {
    .profile-card {
        max-width: 98vw;
        padding: 10vw 2vw 10vw 2vw;
    }
}

/* ... (Önceki tüm kodların altına ekle, profil kartı için) ... */

/* Profil sayfası */
.profile-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 60vh;
    padding: 36px 0 60px 0;
}
.profile-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 28px 0 rgba(32,113,209,0.11), 0 2px 4px 0 rgba(0,0,0,0.04);
    padding: 38px 40px 32px 40px;
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.avatar-large img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #b4d5f5;
    object-fit: cover;
    background: #edf5fb;
}
.tick-large {
    width: 32px;
    height: 32px;
    font-size: 1.6em;
    right: -8px;
    bottom: 12px;
    background: #2071d1;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-main {
    margin-top: 16px;
    width: 100%;
    text-align: center;
}
.profile-name {
    font-size: 1.4em;
    font-weight: 700;
    color: #2071d1;
    margin-bottom: 2px;
}
.profile-username {
    font-size: 1.1em;
    color: #6e7b9c;
    margin-bottom: 14px;
}
.profile-contact {
    margin-bottom: 16px;
}
.profile-contact .contact-item {
    display: block;
    color: #475370;
    font-size: 1.07em;
    margin-bottom: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.13s, background 0.13s;
    border-radius: 4px;
    padding: 2px 7px;
}
.profile-contact .contact-item:hover {
    background: #eaf3fb;
    color: #2071d1;
}
.profile-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    align-items: center;
}
.profile-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f8fd;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: background 0.13s;
    margin-left: 7px;
}
.profile-share:hover {
    background: #d6e9fa;
}
.copy-alert {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    background: #2071d1;
    color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 1em;
    white-space: nowrap;
    z-index: 10;
    animation: fadeOut 1.2s forwards;
}
@keyframes fadeOut {
    0% { opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; }
}
@media (max-width: 600px) {
    .profile-card {
        max-width: 98vw;
        padding: 10vw 2vw 10vw 2vw;
    }
}

/* Footer Navigasyon Menüsü */
.footer-nav {
    padding: 10px 0 25px 0;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Mobil için */
    gap: 15px 25px; /* Dikey ve yatay boşluk */
}

.footer-nav a {
    text-decoration: none;
    color: #22324c;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #2071d1;
}

/* Header'ı tekrar eski haline getirelim */
.site-header {
    background: #dbeefd;
    border-bottom: 1.5px solid #b4d5f5;
    padding: 0 0 10px 0;
    margin-bottom: 20px; /* Boşluğu geri ekledik */
}

/* Header Kullanıcı Giriş Linkleri */
.header-container {
    position: relative;
    max-width: 1200px; /* Ana içerikle aynı genişlik */
    margin: 0 auto;   /* Konteyneri sayfanın ortasına hizala */
    padding: 0 20px;  /* Kenar boşlukları */
}

.user-auth {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-auth a {
    text-decoration: none;
    color: #22324c;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1.5px solid #b4d5f5;
    transition: all 0.2s;
}

.user-auth a:hover {
    background-color: #2071d1;
    border-color: #2071d1;
    color: #fff;
}

.user-auth span {
    font-weight: 600;
    color: #22324c;
}

/* Mobilde gizle veya daha iyi bir düzen sağla */
@media (max-width: 768px) {
    .user-auth {
        display: none; /* Şimdilik mobilde gizleyelim, ileride daha iyi bir mobil menü yapılabilir */
    }
}

/* Anasayfa Genel Düzeni */
.homepage-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Bölüm Başlıkları */
.section-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #22324c;
    margin-bottom: 25px;
    margin-top: 50px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dde8f3;
    text-align: left;
}
.homepage-content h2:first-of-type {
    margin-top: 20px;
}

/* Öne Çıkan Profiller Listesi */
.user-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px; /* Bu değeri 25px'den 30px'e yükselttik */
    padding: 0;
}

/* Kart Tiplerine Göre Renkler */
/* Bireysel Kart (Mavi Vurgu) */
.user-type-bireysel .avatar {
    border-color: #b4d5f5; /* Mevcut Mavi */
}
.user-type-bireysel .tick {
    background-color: #2071d1; /* Mevcut Mavi */
}

/* Marka Kart (Altın/Sarı Vurgu) */
.user-type-marka .avatar {
    border-color: #f0e68c; /* Açık Altın */
}
.user-type-marka .tick {
    background-color: #daa520; /* Altın */
}

/* Responsive Grid Düzenlemesi */
@media (max-width: 600px) {
    .user-list {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
}

/* CTA (Call to Action) Bölümü */
.cta-section {
    background-color: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 4px 28px 0 rgba(32,113,209,0.08);
}

.cta-section h1 {
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #22324c;
}

.cta-section p {
    font-size: 1.2em;
    color: #6e7b9c;
    margin-top: 0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #2071d1;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.2s;
    display: inline-block;
}

.cta-button:hover {
    background-color: #1a5dab;
    transform: translateY(-2px);
}

/* KART İÇİ METİN TAŞMASINI ENGELLEME */

/* Genel Kısaltma Stili */
.user-fullname,
.user-username,
.user-contact .contact-item {
    white-space: nowrap;      /* Metnin alt satıra inmesini engelle */
    overflow: hidden;         /* Taşan kısmı gizle */
    text-overflow: ellipsis;  /* Gizlenen kısmın sonuna "..." ekle */
    max-width: 100%;          /* Genişliğin kartı aşmamasını sağla */
}

/* E-posta gibi uzun metinlerin daha iyi görünmesi için ek ayar */
.user-contact .contact-item {
    direction: ltr; /* E-posta gibi metinlerin soldan sağa hizalanmasını garanti et */
    text-align: left;
}

/* Kullanıcı bilgileri alanının esnekliğini koru */
.user-info {
    min-width: 0; /* Bu, flexbox içindeki text-overflow'un doğru çalışması için kritik bir ayardır */
}

/* QR Kod Butonu */
.qr-code-btn {
    background-color: #eaf3fb;
}
.qr-code-btn:hover {
    background-color: #dbeefd;
}

/* QR Kod Popup (Modal) */
.qr-modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(34, 50, 76, 0.7);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.qr-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    max-width: 360px;
    width: 90%;
    position: relative;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.qr-modal-content h3 {
    margin-top: 0;
    color: #22324c;
    font-size: 1.5em;
}
.qr-modal-content p {
    color: #6e7b9c;
    margin-bottom: 20px;
}
.qr-modal-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid #dde8f3;
    border-radius: 8px;
}

.qr-modal-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.qr-modal-close:hover,
.qr-modal-close:focus {
    color: #22324c;
}

/* Blog Yazısı Stilleri */
.blog-post {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.8;
}
.blog-post h1 {
    font-size: 2.4em;
    text-align: left;
    margin-bottom: 20px;
    color: #22324c;
}
.blog-post h2 {
    font-size: 1.8em;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-left: 0;
    border-bottom: 2px solid #dde8f3;
    padding-bottom: 5px;
}
.blog-post .post-intro {
    font-size: 1.2em;
    color: #6e7b9c;
    margin-bottom: 30px;
    font-style: italic;
}
.blog-post p {
    font-size: 1.1em;
    margin-bottom: 20px;
}
.blog-post ul {
    font-size: 1.1em;
    padding-left: 20px;
}
.blog-post li {
    margin-bottom: 15px;
}

/* Footer Blog Linkleri */
.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer-blog-links {
    border-top: 1px solid #b4d5f5;
    padding-top: 20px;
}

/* BETA Etiketi */
.logo-bar {
    position: relative;
    display: inline-block; /* Konumlandırma için gerekli */
}
.beta-badge {
    position: absolute;
    top: 5px;
    right: -15px;
    background-color: #2071d1;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    transform: rotate(15deg);
}
/* YENİ FOOTER TASARIMI */
.site-footer {
    background-color: #dbeefd;
    border-top: 1.5px solid #b4d5f5;
    padding: 40px 20px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: left;
}

.footer-column .footer-heading {
    font-size: 1.1em;
    font-weight: 700;
    color: #22324c;
    margin-top: 0;
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #475370;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #2071d1;
}

.footer-bottom {
    text-align: center;
    font-size: 0.95em;
    color: #6e7b9c;
    border-top: 1.5px solid #cce0f3;
    padding-top: 20px;
    margin-top: 20px;
}

/* =========================================== */
/* KURUMSAL ANA SAYFA (Minimal Stil Seti)      */
/* =========================================== */

:root{
  --primary: #2071d1;
  --primary-600:#1a5dab;
  --text:#1f2a44;
  --muted:#5b6786;
  --border:#e7edf5;
  --surface:#f6f8fb;
  --radius:14px;
  --shadow:0 6px 20px rgba(15, 23, 42, 0.06);
}

/* Temel reset */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{color:var(--text); background:#fff;}

/* Yardımcılar */
.container{max-width:1120px; margin:0 auto; padding:0 24px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.6rem; text-decoration:none; font-weight:700; border-radius:12px;
  padding:14px 24px; transition:.25s ease; border:1px solid transparent
}
.btn:focus-visible{outline:none; box-shadow:0 0 0 3px rgba(32,113,209,.25)}
.btn-primary{background:var(--primary); color:#fff}
.btn-primary:hover{background:var(--primary-600); transform:translateY(-2px); box-shadow:var(--shadow)}
.btn-ghost{background:#fff; color:var(--primary); border-color:var(--border)}
.btn-ghost:hover{background:#f9fbff; border-color:#cfe3fb; transform:translateY(-2px)}

/* HERO */
.hero{
  background: radial-gradient(1200px 600px at 50% -10%, #eef5fd 0%, transparent 60%) , #fff;
  padding: min(12vh,120px) 0;
  text-align:center;
}
.hero h1{
  font-size: clamp(32px, 4.2vw, 52px);
  line-height:1.15; margin:0 0 16px 0; font-weight:800; letter-spacing:-.015em;
  color:#22324c;
}
.hero p{
  font-size: clamp(16px, 1.6vw, 20px);
  color:var(--muted); max-width:720px; margin:0 auto 28px auto; line-height:1.7;
}
.hero .actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap}

/* HIGHLIGHTS (3 kolon) */
.highlights{padding:72px 0; background:#fff}
.high-grid{
  display:grid; gap:26px; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.card{
  border:1px solid var(--border); border-radius:var(--radius); background:#fff;
  padding:24px; box-shadow:none; transition:.25s ease;
}
.card:hover{transform:translateY(-2px); box-shadow:var(--shadow)}
.card h3{font-size:20px; margin:0 0 8px 0; color:#22324c}
.card p{margin:0; color:var(--muted); line-height:1.75}

/* DEĞER ÖNERİLERİ ( şerit ) */
.strip{
  background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:56px 0;
}
.strip .items{
  display:grid; gap:22px; grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.item{
  display:flex; gap:12px; align-items:flex-start;
}
.item .dot{
  width:10px; height:10px; border-radius:999px; background:var(--primary); margin-top:8px
}
.item p{margin:0; color:var(--muted); line-height:1.7}

/* CTA */
.cta{padding:80px 0; text-align:center}
.cta h2{font-size: clamp(26px,3.2vw,40px); margin:0 0 10px 0; color:#22324c}
.cta p{font-size:18px; color:#475370; margin:0 0 22px 0}

/* Mobil iyileştirme */
@media (max-width: 768px){
  .hero{padding:64px 0}
}

/* =========================================== */
/* YENİ ANASAYFA STİLLERİ                      */
/* =========================================== */

/* BÖLÜM 1: HERO ALANI */
.hero-section {
    background: linear-gradient(45deg, #eaf3fb, #f8faff);
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5em; /* 56px */
    font-weight: 800;
    color: #22324c;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25em; /* 20px */
    color: #6e7b9c;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 32px;
    font-size: 1.1em; /* 18px */
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn.primary {
    background-color: #2071d1;
    color: #fff;
}
.hero-btn.primary:hover {
    background-color: #1a5dab;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(32, 113, 209, 0.2);
}

.hero-btn.secondary {
    background-color: #fff;
    color: #2071d1;
    border-color: #dde8f3;
}
.hero-btn.secondary:hover {
    background-color: #f8faff;
    border-color: #b4d5f5;
    transform: translateY(-3px);
}

/* BÖLÜM 2: VİTRİN ALANI */
.showcase-section {
    padding: 80px 20px;
    background-color: #fff;
}
.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}
.showcase-title {
    text-align: center;
    font-size: 2.5em;
    color: #22324c;
    margin-bottom: 50px;
}
.showcase-section .user-list {
    padding: 0; /* Ekstra boşlukları sıfırla */
}

/* BÖLÜM 3: ÖZELLİKLER ALANI */
.features-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}
.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}
.feature-item h3 {
    font-size: 1.4em;
    color: #22324c;
    margin-bottom: 10px;
}
.feature-item p {
    color: #6e7b9c;
    line-height: 1.7;
}


/* BÖLÜM 4: SON ÇAĞRI ALANI */
.final-cta-section {
    background-color: #dbeefd;
    padding: 80px 20px;
    text-align: center;
}
.final-cta-section h2 {
    font-size: 2.5em;
    color: #22324c;
    margin-bottom: 15px;
}
.final-cta-section p {
    font-size: 1.2em;
    color: #475370;
    margin-bottom: 30px;
}
.final-cta-section .hero-btn { /* Buton stilini yeniden kullanıyoruz */
    font-size: 1.2em;
    padding: 18px 40px;
}

/* Mobil Cihazlar İçin İyileştirmeler */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    .hero-subtitle {
        font-size: 1.1em;
    }
    .hero-section, .showcase-section, .features-section, .final-cta-section {
        padding: 60px 15px;
    }
}

/* =========================================== */
/* YENİ KURUMSAL ANASAYFA STİLLERİ             */
/* =========================================== */

/* BÖLÜM 1: YENİ HERO ALANI */
.new-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 20px;
    overflow: hidden; /* Animasyonlar için */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-text .hero-title {
    font-size: 3.8em; /* 60px */
    font-weight: 800;
    color: #1c2a48;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-text .hero-subtitle {
    font-size: 1.25em; /* 20px */
    color: #485b79;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-visual img {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(3deg) scale(1.05);
}

/* BÖLÜM 2: GÜVEN BARİ */
.trust-bar {
    background-color: #eaf3fb;
    text-align: center;
    padding: 20px;
    font-size: 1.1em;
    font-weight: 500;
    color: #485b79;
    border-bottom: 1px solid #dde8f3;
}

/* BÖLÜM 3: YENİ ÖZELLİKLER ALANI */
.new-features {
    background-color: #fff;
    padding: 100px 20px;
}
.section-title.text-center {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-item {
    text-align: center;
}
.feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #eaf3fb, #f8faff);
    border-radius: 18px;
    margin-bottom: 25px;
    border: 1px solid #dde8f3;
}
.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #2071d1;
}
.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.feature-item p {
    color: #6e7b9c;
    line-height: 1.7;
}

/* BÖLÜM 4: YENİ SON ÇAĞRI ALANI */
.new-cta {
    background-color: #1c2a48;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}
.new-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.new-cta h2 {
    font-size: 2.8em;
    line-height: 1.3;
    margin-bottom: 30px;
}
.new-cta .hero-btn.large {
    padding: 20px 45px;
    font-size: 1.2em;
}


/* RESPONSIVE AYARLAR */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        margin-top: 60px;
    }
    .hero-visual img {
        transform: rotate(0) scale(1);
    }
    .hero-text .hero-title {
        font-size: 3em;
    }
}