/* ===========================
   BRAND PAGE — ADDITIONAL STYLES
   (Extends style.css)
   =========================== */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* Brand Hero */
.brand-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.brand-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0d2347 50%, #0a3060 100%);
    z-index: 0;
}
.brand-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(124,58,237,.15) 0%, transparent 70%);
}
.brand-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.brand-logo-wrap {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}
.brand-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--font-display);
    color: #fff;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
}
.brand-hero h1 .highlight {
    background: linear-gradient(135deg, var(--cyan), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 32px;
}
.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.85);
    font-size: .9rem;
}
.trust-check {
    color: var(--cyan);
    font-weight: 700;
}

/* Section title left-aligned variant */
.section-title.left {
    text-align: left;
}

/* Brand Intro */
.brand-intro { background: var(--bg); }
.brand-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.brand-intro-text p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}
.brand-intro-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.mini-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    transition: var(--t);
}
.mini-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(124,58,237,.1);
}
.mini-card > span { font-size: 1.8rem; flex-shrink: 0; }
.mini-card strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: 4px; }
.mini-card small { color: var(--text-muted); font-size: .78rem; line-height: 1.4; }

/* Brand Models */
.brand-models { background: var(--bg-white); }
.table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.brand-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}
.brand-table th {
    background: var(--navy);
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}
.brand-table th:first-child { border-radius: 0; }
.brand-table td {
    padding: 13px 18px;
    border-bottom: 1px solid #eef2f9;
    color: var(--text);
    vertical-align: top;
}
.brand-table tbody tr:hover { background: #f7faff; }
.brand-table tbody tr:last-child td { border-bottom: none; }

/* Error Table */
.brand-errors { background: var(--bg); }
.error-table .err-code {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    background: rgba(124,58,237,.08);
    border-radius: 6px;
    padding: 8px 14px;
    white-space: nowrap;
}
.error-note {
    margin-top: 24px;
    background: #fff8e6;
    border: 1.5px solid #f6c94e;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: .9rem;
    color: #8a6300;
}
.error-note a { color: var(--cyan-dark); font-weight: 700; }

/* Tips */
.brand-tips { background: var(--bg-white); }
.tips-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}
.tips-list li {
    background: linear-gradient(135deg, rgba(124,58,237,.04), rgba(99,102,241,.04));
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 18px 22px;
    padding-left: 50px;
    position: relative;
    font-size: .92rem;
    line-height: 1.7;
    color: var(--text);
    transition: var(--t);
}
.tips-list li::before {
    content: '💡';
    position: absolute;
    left: 16px;
    top: 18px;
    font-size: 1.1rem;
}
.tips-list li:hover {
    border-color: var(--cyan);
    background: rgba(124,58,237,.05);
}

/* CTA Section on brand pages */
.cta {
    background: linear-gradient(135deg, var(--navy), #0d2347);
    color: #fff;
}
.cta-container h2 { color: #fff; margin-bottom: 12px; }
.cta-container p { color: rgba(255,255,255,.8); margin-bottom: 32px; }
.contact-info {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .brand-intro-cards { grid-template-columns: 1fr; }
    .tips-list { grid-template-columns: 1fr; }
    .brand-table { font-size: .8rem; }
    .brand-table th, .brand-table td { padding: 10px 12px; }
    .contact-info { flex-direction: column; align-items: center; }
}
