/* =====================================
   HERO — Minimal (Apple-style Advanced)
===================================== */

.brand-hero {
    padding: 140px 0 100px;
    text-align: left;

    /* Soft Light Gradient Background */
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 90, 0, 0.08),
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 120, 40, 0.06),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fafbfc 100%
        );
}

/* Container Limit */
.brand-hero .container-fluid-inner {
    max-width: var(--container-max);
}

/* =============================
   HEADLINE
============================= */

.brand-hero-content h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 600;
    letter-spacing: var(--letter-tighter);
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 20px;
}

.brand-hero-content h1 span,
.brand-hero-content h1 .hero-highlight {
    color: var(--primary);
}

.brand-hero-tagline {
    font-size: 18px;
    font-weight: 600;
    margin: -8px 0 16px;
}

.brand-hero-content p.brand-hero-tagline {
    color: var(--primary) !important;
}

.brand-hero-tagline-dark {
    color: var(--text) !important;
}

.brand-hero-content p {
    font-size: 19px;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 32px;
}

/* Slider görsel kaldırıldı — tek sütun, mobil / Instagram ekran görüntüsü için uyumlu */
.brand-hero--centered .brand-hero-content {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.brand-hero--centered .brand-hero-content p {
    margin-left: auto;
    margin-right: auto;
}

.brand-hero--centered .brand-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================
   ACTIONS
============================= */

.brand-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Primary Button */
.brand-hero-actions .btn-brand {
    min-width: auto;
}

/* =============================
   DEMO BUTTON (LIGHT STYLE)
============================= */

.brand-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;
    border-radius: 10px;

    background: #ffffff;
    border: 1px solid #e5e7eb;

    font-size: 16px;
    font-weight: 500;

    color: var(--primary);
    text-decoration: none;

    transition: all 0.25s ease;
}

/* Icon alignment */
.brand-hero-secondary i {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effect */
.brand-hero-secondary:hover {
    background: rgba(255, 90, 0, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none;
}

/* =============================
   VISUAL
============================= */

/* =============================
   RESPONSIVE — Mobil / Instagram ekran görüntüsü
============================= */

@media (max-width: 992px) {
    .brand-hero {
        padding: 130px 0 64px;
    }

    .brand-hero--centered .brand-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .brand-hero {
        padding: 110px 0 56px;
    }

    .brand-hero-content h1 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .brand-hero-content p {
        font-size: 16px;
    }

    .brand-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .brand-hero-actions .btn-brand,
    .brand-hero-actions .brand-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}