/* ===== BRAND PAGE STYLES ===== */
body { padding-bottom: 0; }

/* Hero */
.brand-hero {
    background: var(--gradient-hero);
    padding: 80px 0 70px;
    color: white;
    position: relative;
    overflow: hidden;
}
.brand-hero::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.brand-hero .container { position: relative; z-index: 1; }
.brand-hero-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.brand-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.4);
    color: #ff9e00; font-size: 0.85rem; font-weight: 700;
    padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 1px;
}
.brand-hero h1 { font-size: 3rem; font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.brand-hero h1 span { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.brand-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin-bottom: 28px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.brand-stat-box {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 30px 28px; text-align: center; min-width: 200px;
}
.brand-stat-box .stat { font-size: 2.6rem; font-weight: 900; color: var(--accent-color); display: block; }
.brand-stat-box .stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 4px; }
@media (max-width: 768px) {
    .brand-hero-inner { grid-template-columns: 1fr; }
    .brand-stat-box { display: none; }
    .brand-hero h1 { font-size: 2.1rem; }
}

/* Breadcrumb */
.breadcrumb {
    background: #f0f4f8; padding: 12px 0;
    font-size: 0.88rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--accent-color); text-decoration: none; }
.breadcrumb span { margin: 0 6px; }

/* Intro Section */
.brand-intro { padding: 70px 0; }
.brand-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.brand-intro-text h2 { font-size: 2.1rem; font-weight: 800; color: var(--primary-color); margin-bottom: 16px; line-height: 1.3; }
.brand-intro-text p { color: #555; line-height: 1.8; margin-bottom: 14px; }
.brand-info-card {
    background: var(--primary-color); color: white;
    border-radius: 20px; padding: 32px;
    position: sticky; top: 100px;
}
.brand-info-card h3 { color: var(--accent-color); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.brand-info-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.95rem; }
.brand-info-row:last-child { border-bottom: none; }
.brand-info-row .label { color: rgba(255,255,255,0.5); }
.brand-info-row .value { color: white; font-weight: 600; text-align: right; }
.call-now-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--gradient-accent); color: white;
    padding: 16px; border-radius: 12px; text-decoration: none;
    font-weight: 700; font-size: 1.05rem; margin-top: 24px;
    transition: all 0.3s ease;
}
.call-now-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
@media (max-width: 900px) {
    .brand-intro-grid { grid-template-columns: 1fr; }
    .brand-info-card { position: static; }
}

/* Problems Section */
.problems-section { background: #f7f9fc; padding: 80px 0; }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.problem-card {
    background: white; border-radius: 16px; padding: 28px 24px;
    box-shadow: var(--shadow-sm); border-top: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.problem-icon { font-size: 2rem; margin-bottom: 14px; }
.problem-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary-color); margin-bottom: 8px; }
.problem-card p { color: #666; font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 768px) { .problems-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .problems-grid { grid-template-columns: 1fr; } }

/* Services Section */
.brand-services { padding: 80px 0; }
.services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.service-item {
    display: flex; align-items: flex-start; gap: 16px;
    background: white; border-radius: 14px; padding: 22px;
    box-shadow: var(--shadow-sm); border: 1px solid #e8edf2;
    transition: all 0.3s ease;
}
.service-item:hover { border-color: var(--accent-color); box-shadow: var(--shadow-md); }
.service-item .si-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,158,0,0.1));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--accent-color); font-size: 1.2rem;
}
.service-item h4 { font-size: 1rem; font-weight: 700; color: var(--primary-color); margin-bottom: 4px; }
.service-item p { font-size: 0.875rem; color: #666; margin: 0; line-height: 1.5; }
@media (max-width: 640px) { .services-list { grid-template-columns: 1fr; } }

/* Why Us */
.brand-why { background: var(--primary-color); padding: 80px 0; }
.brand-why .section-header h2 { color: white; }
.brand-why .subtitle { color: var(--accent-color); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.why-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 28px 20px; text-align: center;
    transition: all 0.3s ease;
}
.why-card:hover { background: rgba(255,107,53,0.1); border-color: rgba(255,107,53,0.3); transform: translateY(-5px); }
.why-card .wc-icon { font-size: 2.2rem; margin-bottom: 14px; color: var(--accent-color); }
.why-card h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.5; }
@media (max-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .why-grid { grid-template-columns: 1fr; } }

/* FAQ */
.brand-faq { padding: 80px 0; background: #f7f9fc; }
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item {
    background: white; border-radius: 14px; margin-bottom: 12px;
    box-shadow: var(--shadow-sm); overflow: hidden;
    border: 1px solid #e8edf2;
}
.faq-question {
    width: 100%; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; cursor: pointer; text-align: left;
    font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
    color: var(--primary-color); transition: all 0.3s ease;
}
.faq-question:hover { color: var(--accent-color); }
.faq-question .fq-icon { font-size: 1.1rem; color: var(--accent-color); flex-shrink: 0; margin-left: 12px; transition: transform 0.3s ease; }
.faq-question.open .fq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-answer.open { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { color: #555; line-height: 1.7; margin: 0; font-size: 0.95rem; }

/* CTA Banner */
.brand-cta { background: var(--gradient-accent); padding: 70px 0; text-align: center; }
.brand-cta h2 { color: white; font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.brand-cta p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 28px; }
.brand-cta .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white-solid { background: white; color: var(--primary-color); padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.btn-white-solid:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* SEO Makale Bölümü */
.seo-article-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #e8edf2;
}
.seo-article-section article {
    max-width: 900px;
    margin: 0 auto;
}
.seo-article-section h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--accent-color);
    line-height: 1.3;
}
.seo-article-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 34px 0 12px;
}
.seo-article-section p {
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 0.97rem;
}
.seo-article-section ul {
    padding-left: 22px;
    margin-bottom: 16px;
    color: #555;
}
.seo-article-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 0.97rem;
}
.seo-article-section .article-lead {
    background: #f7f9fc;
    border-left: 4px solid var(--accent-color);
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 28px;
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
}
@media (max-width: 768px) {
    .seo-article-section { padding: 60px 0; }
    .seo-article-section h2 { font-size: 1.5rem; }
    .seo-article-section h3 { font-size: 1.08rem; }
}

/* Other brands */
.other-brands { padding: 60px 0; }
.other-brands-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 30px; }
.brand-pill {
    background: #f0f4f8; border-radius: 50px; padding: 10px 16px;
    text-align: center; font-size: 0.85rem; font-weight: 600;
    color: var(--primary-color); text-decoration: none;
    transition: all 0.3s ease; border: 1px solid #e0e7ef;
}
.brand-pill:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); }
.brand-pill.active { background: var(--primary-color); color: white; border-color: var(--primary-color); }
@media (max-width: 768px) { .other-brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 400px) { .other-brands-grid { grid-template-columns: repeat(2, 1fr); } }
