/* ==========================================================================
   Solohab Ana Sayfa Özel Stil Dosyası (home.css)
   ========================================================================== */

/* Global Renk ve Geçiş Sabitleri (Temsili Değerler) */
.text-brand-color {
    color: #dc2626; /* Marka Ana Kırmızı */
}

/* 1. HERO SECTION */
.hero-section {
    position: relative;
    padding: 4rem 1.5rem 6rem 1.5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 8rem;
        padding-bottom: 10rem;
    }
}

.hero-container {
    max-width: 56rem; /* 900px (max-w-4xl) */
    margin-left: auto;
    margin-right: auto;
    text-center: center;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Rozet */
.badge-mini {
    display: inline-block;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #dc2626;
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
    border-radius: 9999px;
}

/* Ana Başlık */
.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 2rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Açıklama Metni */
.hero-description {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

/* Buton ve Alt Metin Yapısı */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 3rem;
    background-color: #dc2626;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
    .btn-primary-lg {
        width: auto;
    }
}

.btn-primary-lg:hover {
    background-color: #991b1b;
    transform: translateY(-2px) scale(1.03);
}

.whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: #ffffff;
}

.cta-notice {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Entegrasyon Logoları */
.integrations-wrapper {
    margin-top: 5rem;
}

.integrations-title {
    color: #94a3b8;
    font-bold: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    font-size: 10px;
}

.integrations-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity 0.5s ease;
}

.integrations-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item {
    font-weight: 800;
    font-size: 1.25rem;
    font-style: italic;
    color: #334155;
}

/* Arka Plan Bulanık Balonlar (Blobs) */
.hero-bg-blobs {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 9999px;
}

.blob-1 {
    top: -5%;
    right: 15%;
    width: 300px;
    height: 300px;
    background-color: #dc2626;
    filter: blur(120px);
}

.blob-2 {
    bottom: 10%;
    left: 10%;
    width: 250px;
    height: 250px;
    background-color: #fdba74;
    filter: blur(100px);
}

/* 2. FEATURES SECTION */
.features-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.container-center {
    max-width: 80rem; /* 1280px */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    color: #475569;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Yapısı */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Özellik Kartları (Cards) */
.feature-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.05);
    transform: translateY(-4px);
}

/* Kart İkonları */
.card-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: #fef2f2;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.card-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #dc2626;
    transition: color 0.3s ease;
}

.feature-card:hover .card-icon-wrapper {
    background-color: #dc2626;
}

.feature-card:hover .card-icon {
    color: #ffffff;
}

/* Öne Çıkarılan Tedarikçi Kartı Tasarımı */
.card-highlighted {
    border-color: rgba(220, 38, 38, 0.2);
    background-color: rgba(254, 242, 242, 0.5);
}

.card-highlighted .card-icon-wrapper {
    background-color: #dc2626;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.2);
}

.card-highlighted .card-icon {
    color: #ffffff;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.card-text {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.625;
}

/* 3. CTA SECTION */
.inline-cta-section {
    padding: 5rem 1.5rem;
}

.cta-box {
    max-width: 64rem; /* 1024px */
    margin-left: auto;
    margin-right: auto;
    background-color: #dc2626;
    border-radius: 2.5rem;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.25);
}

@media (min-width: 768px) {
    .cta-box {
        padding: 4rem;
    }
}

.cta-bg-blur {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    width: 16rem;
    height: 16rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    filter: blur(40px);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.br-desktop {
    display: none;
}

@media (min-width: 768px) {
    .br-desktop {
        display: block;
    }
}

.cta-subtitle {
    color: #fee2e2;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
}

.btn-white-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background-color: #ffffff;
    color: #dc2626;
    font-bold: 700;
    font-weight: 700;
    border-radius: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.btn-white-lg:hover {
    background-color: #f8fafc;
    transform: scale(1.05);
}

.whatsapp-icon-dark {
    width: 1.5rem;
    height: 1.5rem;
    fill: #dc2626;
    transition: transform 0.3s ease;
}

.btn-white-lg:hover .whatsapp-icon-dark {
    transform: rotate(12deg);
}

/* 4. FAQ SECTION */
.faq-section {
    padding: 6rem 0;
    background-color: #f8fafc; /* Hafif kırık beyaz / slate-50 */
}

.faq-container {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

/* SSS Özel Belirgin Kart (Tedarikçi Sorusu İçin) */
.faq-item-highlighted {
    border-color: rgba(220, 38, 38, 0.3);
}

.faq-item-highlighted:hover {
    border-color: #dc2626;
}

.faq-box-layout {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-question-badge {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background-color: #fef2f2;
    color: #dc2626;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.625;
}
