/* ============================================
   CAREERFLUENCER — Main Stylesheet
   Font: DM Sans + DM Serif Display
   Theme: Light, elegant, minimal media agency
   ============================================ */

:root {
    --black:       #0E0E0E;
    --white:       #FFFFFF;
    --blue:        #1D4ED8;
    --blue-light:  #EFF6FF;
    --blue-mid:    #DBEAFE;
    --grey-bg:     #F8F9FA;
    --grey-border: #E8E8E8;
    --grey-text:   #6B7280;
    --grey-muted:  #9CA3AF;
    --grey-light:  #F3F4F6;

    --font-main:    'DM Sans', sans-serif;
    --font-display: 'DM Serif Display', serif;

    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
    --radius-xl:  24px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.07);

    --max-w: 1140px;
    --nav-h: 68px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
.display-heading {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--black);
}
.display-heading em {
    font-style: italic;
    color: var(--blue);
}
h2.section-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 500;
    letter-spacing: -0.4px;
    color: var(--black);
    line-height: 1.25;
}
h3 { font-size: 16px; font-weight: 500; color: var(--black); }
p { color: var(--grey-text); line-height: 1.75; }
.eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
    display: block;
}

/* ---- LAYOUT ---- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue); border-color: var(--blue); }
.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--grey-border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-blue {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn-blue:hover { background: #1a44c8; }

/* ---- NAVIGATION ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey-border);
    height: var(--nav-h);
    display: flex;
    align-items: center;
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:1px;
    line-height: 1;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 17px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.3px;
}
.logo span { color: var(--blue); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.nav-links a {
    font-size: 14px;
    color: var(--grey-text);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
    background: var(--blue-light);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.btn-nav-outline {
    font-size: 13px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--grey-border);
    color: var(--black);
    transition: all 0.15s;
}
.btn-nav-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-nav-primary {
    font-size: 13px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    background: var(--black);
    color: var(--white);
    font-weight: 500;
    transition: background 0.15s;
}
.btn-nav-primary:hover { background: var(--blue); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--black);
    transition: all 0.2s;
}

/* ---- HERO ---- */
.hero {
    padding: 96px 0 80px;
    background: var(--white);
    overflow: hidden;
    position: relative;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--blue);
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-weight: 500;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero-desc {
    font-size: 16px;
    color: var(--grey-text);
    margin: 20px 0 36px;
    max-width: 460px;
    line-height: 1.75;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-right { display: flex; flex-direction: column; gap: 12px; }
.hero-stat-card {
    background: var(--grey-bg);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    transition: border-color 0.2s;
}
.hero-stat-card:hover { border-color: var(--blue); }
.hero-stat-card.blue {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}
.hero-stat-card.blue .stat-lbl { color: rgba(255,255,255,0.65); }
.stat-num {
    font-size: 26px;
    font-weight: 500;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-card.blue .stat-num { color: var(--white); }
.stat-lbl { font-size: 12px; color: var(--grey-muted); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ---- BRANDS STRIP ---- */
.brands-strip {
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
    padding: 28px 0;
    background: var(--grey-bg);
    overflow: hidden;
}
.brands-strip-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}
.brands-label {
    font-size: 11px;
    color: var(--grey-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
}
.brands-scroll {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.brand-chip {
    padding: 7px 16px;
    border: 1px solid var(--grey-border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--grey-text);
    background: var(--white);
    white-space: nowrap;
    font-weight: 500;
    transition: border-color 0.15s;
}
.brand-chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ---- NICHES ---- */
.niches-section { background: var(--white); }
.section-header { margin-bottom: 48px; }
.section-header p { margin-top: 12px; max-width: 480px; font-size: 15px; }
.niche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}
.niche-card {
    background: var(--grey-bg);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    transition: all 0.2s ease;
    cursor: default;
}
.niche-card:hover {
    border-color: var(--blue);
    background: var(--blue-light);
    transform: translateY(-2px);
}
.niche-card:hover .niche-title { color: var(--blue); }
.niche-icon {
    width: 38px;
    height: 38px;
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.niche-title { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.niche-sub { font-size: 12px; color: var(--grey-muted); line-height: 1.5; }

/* ---- CREATORS SECTION ---- */
.creators-section { background: var(--grey-bg); }
.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 40px;
}
.creator-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 20px 18px;
    transition: all 0.2s ease;
}
.creator-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.creator-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
    flex-shrink: 0;
}
.creator-name { font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 2px; }
.creator-handle { font-size: 12px; color: var(--grey-muted); margin-bottom: 10px; }
.creator-followers { font-size: 13px; color: var(--blue); font-weight: 500; margin-bottom: 10px; }
.creator-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.ctag {
    font-size: 11px;
    padding: 3px 9px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 20px;
    font-weight: 500;
}
.creators-cta { text-align: center; margin-top: 40px; }
.creators-cta p { font-size: 14px; color: var(--grey-muted); margin-top: 12px; }

/* ---- WHY SECTION ---- */
.why-section { background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 40px;
}
.why-card {
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--blue); }
.why-num {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 12px;
}
.why-title { font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--grey-muted); line-height: 1.65; }

/* ---- TESTIMONIAL PREVIEW ---- */
.testimonial-section { background: var(--grey-bg); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 40px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
}
.t-quote {
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    flex-shrink: 0;
}
.t-name { font-size: 13px; font-weight: 500; color: var(--black); }
.t-handle { font-size: 11px; color: var(--grey-muted); }
.t-brands { display: flex; gap: 5px; margin-top: 14px; flex-wrap: wrap; }
.t-brand {
    font-size: 11px;
    padding: 3px 9px;
    background: var(--grey-light);
    color: var(--grey-text);
    border-radius: 20px;
}

/* ---- CTA SECTION ---- */
.cta-section { background: var(--white); }
.cta-box {
    background: var(--black);
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    color: var(--white);
    line-height: 1.25;
    max-width: 420px;
}
.cta-box p { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 10px; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cta-white {
    padding: 13px 28px;
    background: var(--white);
    color: var(--black);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.15s;
}
.btn-cta-white:hover { opacity: 0.9; }
.btn-cta-ghost {
    padding: 13px 28px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: border-color 0.15s;
}
.btn-cta-ghost:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.85); }

/* ---- FOOTER ---- */
.site-footer {
    background: var(--grey-bg);
    border-top: 1px solid var(--grey-border);
}
.footer-top {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 56px 32px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
}
.footer-logo {
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}
.footer-logo span { color: var(--blue); }
.footer-tagline { font-size: 13px; color: var(--grey-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-tagline a { color: var(--blue); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--grey-border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-muted);
    transition: all 0.15s;
}
.footer-social a:hover { border-color: var(--blue); color: var(--blue); }
.footer-links-group h4 {
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a { font-size: 13px; color: var(--grey-muted); transition: color 0.15s; }
.footer-links-group a:hover { color: var(--blue); }
.footer-contact h4 {
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}
.footer-email {
    display: block;
    font-size: 14px;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 12px;
    word-break: break-all;
}
.footer-niches { font-size: 12px; color: var(--grey-muted); }
.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 20px 32px;
    border-top: 1px solid var(--grey-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--grey-muted);
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom a { color: var(--blue); }

/* ---- FORMS ---- */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.15s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-top: 14px;
}
.alert-success { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }
.alert-error { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }

/* ---- PAGE HERO ---- */
.page-hero {
    padding: 64px 0 48px;
    background: var(--white);
    border-bottom: 1px solid var(--grey-border);
}
.page-hero h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 500; letter-spacing: -0.5px; margin-top: 10px; }
.page-hero p { font-size: 15px; color: var(--grey-text); margin-top: 12px; max-width: 500px; }

/* ---- CREATOR FILTER ---- */
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.filter-btn {
    padding: 7px 16px;
    border: 1px solid var(--grey-border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--grey-text);
    background: var(--white);
    cursor: pointer;
    transition: all 0.15s;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

/* ---- PORTFOLIO ---- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.portfolio-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s;
}
.portfolio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--blue); }
.portfolio-card-header {
    padding: 24px 22px 18px;
    border-bottom: 1px solid var(--grey-border);
}
.portfolio-brand { font-size: 16px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.portfolio-niche {
    display: inline-block;
    font-size: 11px;
    padding: 3px 9px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 20px;
}
.portfolio-card-body { padding: 18px 22px; }
.portfolio-stat { display: flex; justify-content: space-between; margin-bottom: 8px; }
.portfolio-stat-label { font-size: 12px; color: var(--grey-muted); }
.portfolio-stat-value { font-size: 13px; font-weight: 500; color: var(--black); }

/* ---- TESTIMONIAL VIDEO GRID ---- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.video-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.2s;
}
.video-card:hover { box-shadow: var(--shadow-md); }
.video-thumb {
    width: 100%;
    aspect-ratio: 9/16;
    background: var(--grey-bg);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    transition: background 0.15s;
}
.video-play-btn:hover { background: rgba(0,0,0,0.35); }
.video-play-btn svg { width: 48px; height: 48px; color: white; }
.video-card-info { padding: 16px; }
.video-creator { font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.video-brands { display: flex; gap: 5px; flex-wrap: wrap; }
.video-brand {
    font-size: 11px;
    padding: 2px 8px;
    background: var(--grey-light);
    color: var(--grey-text);
    border-radius: 20px;
}

/* ---- FAQ ---- */
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    text-align: left;
    background: var(--white);
    cursor: pointer;
    transition: background 0.15s;
}
.faq-question:hover { background: var(--blue-light); color: var(--blue); }
.faq-question svg { flex-shrink: 0; transition: transform 0.2s; color: var(--grey-muted); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.7;
    background: var(--white);
}
.faq-item.open .faq-answer { display: block; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .cta-box { flex-direction: column; padding: 40px 28px; text-align: center; }
    .cta-actions { justify-content: center; }
}
@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .nav-inner { padding: 0 20px; }
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--grey-border);
        padding: 16px 20px;
        gap: 4px;
    }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 56px 0; }
    .brands-strip-inner { flex-direction: column; align-items: flex-start; }
}


/* ════════════════════════════════════════
   BRANDS PAGE
════════════════════════════════════════ */

/* Shared section base */
.br-section { padding: 64px 0; position: relative; overflow: hidden; }
.br-section--white { background: #fff; }
.br-section--grey { background: linear-gradient(135deg, #f8faff 0%, #f3f0ff 100%); }
.br-section--grad { background: linear-gradient(135deg, #f0f5ff 0%, #faf5ff 40%, #f0f9ff 100%); }
.br-section--form { background: linear-gradient(135deg, #0d1b3e 0%, #1a1060 40%, #0a1628 100%); }

.br-section__head { margin-bottom: 40px; }
.br-section__head--center { text-align: center; }
.br-section__head--center .br-section__sub { max-width: 520px; margin: 0 auto; }

.br-eyebrow {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--blue); background: rgba(29,78,216,0.07);
    border: 1px solid rgba(29,78,216,0.15); padding: 6px 16px; border-radius: 20px; margin-bottom: 16px;
}
.br-eyebrow--light { color: rgba(165,180,252,0.9); background: rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.3); }

.br-section__title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: #0d1b3e; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 12px; }
.br-section__title-accent {
    background: linear-gradient(90deg, var(--blue), #7c3aed);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.br-section__sub { font-size: 15px; color: #6b7280; line-height: 1.7; }

/* Reveal animations */
.br-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.br-reveal.is-visible { opacity: 1; transform: translateY(0); }
.br-reveal-item { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.br-reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.br-reveal-item:nth-child(1) { transition-delay: 0.05s; }
.br-reveal-item:nth-child(2) { transition-delay: 0.10s; }
.br-reveal-item:nth-child(3) { transition-delay: 0.15s; }
.br-reveal-item:nth-child(4) { transition-delay: 0.20s; }
.br-reveal-item:nth-child(5) { transition-delay: 0.25s; }
.br-reveal-item:nth-child(6) { transition-delay: 0.30s; }

/* ── HERO ── */
.br-hero {
    background: linear-gradient(145deg, #0d1b3e 0%, #0a1628 60%, #111827 100%);
    padding: 80px 0 72px; position: relative; overflow: hidden;
}
.br-hero__bg-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(29,78,216,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(29,78,216,0.07) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
}
.br-hero__bg-blobs { position: absolute; inset: 0; pointer-events: none; }
.br-hero__blob { position: absolute; border-radius: 50%; filter: blur(80px); animation: cfBlobFloat 10s ease-in-out infinite; }
.br-hero__blob--1 { width: 500px; height: 500px; background: rgba(29,78,216,0.12); top: -150px; right: -100px; animation-delay: 0s; }
.br-hero__blob--2 { width: 350px; height: 350px; background: rgba(124,58,237,0.10); bottom: -80px; left: -60px; animation-delay: 4s; }

.br-hero__inner { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; }

.br-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500;
    color: #a5b4fc; background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.30);
    padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.br-hero__heading { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -1px; margin-bottom: 20px; }
.br-hero__heading-accent { background: linear-gradient(90deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.br-hero__sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 480px; margin-bottom: 32px; }
.br-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.br-hero__trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.br-hero__trust-item { display: flex; flex-direction: column; }
.br-hero__trust-num { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.br-hero__trust-lbl { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 3px; }
.br-hero__trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.12); }

.br-hero__card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px; padding: 28px; backdrop-filter: blur(12px);
}
.br-hero__card-badge {
    display: inline-block; font-size: 11px; font-weight: 600; color: #a5b4fc;
    background: rgba(99,102,241,0.2); border: 1px solid rgba(99,102,241,0.3);
    padding: 5px 12px; border-radius: 20px; margin-bottom: 20px;
}
.br-hero__card-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.br-hero__card-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: rgba(255,255,255,0.04); border-radius: 10px; border: 1px solid rgba(255,255,255,0.06); }
.br-hero__card-label { font-size: 12px; color: rgba(255,255,255,0.45); }
.br-hero__card-val { font-size: 13px; font-weight: 600; color: #fff; }
.br-hero__card-val--blue { color: #60a5fa; }
.br-hero__card-val--green { color: #34d399; }
.br-hero__card-val--live { display: flex; align-items: center; gap: 6px; color: #34d399; }
.br-hero__card-footer { font-size: 11px; color: rgba(255,255,255,0.25); text-align: center; }

/* ── COMPARE ── */
.br-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; max-width: 900px; margin: 0 auto; }
.br-compare__vs { font-size: 13px; font-weight: 700; color: #9ca3af; background: #f3f4f6; border: 1px solid #e5e7eb; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.br-compare__card { background: #fff; border-radius: 20px; padding: 28px; border: 1px solid #e5e7eb; position: relative; }
.br-compare__card--good { border-color: rgba(29,78,216,0.2); border-width: 2px; }
.br-compare__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }

.br-compare__head { margin-bottom: 20px; }
.br-compare__label { font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 20px; display: inline-block; }
.br-compare__label--bad { background: #fef2f2; color: #dc2626; }
.br-compare__label--good { background: #f0fdf4; color: #059669; }

.br-compare__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.br-compare__list li { font-size: 14px; color: #4b5563; display: flex; align-items: flex-start; gap: 10px; }
.br-compare__x { color: #ef4444; font-weight: 700; flex-shrink: 0; }
.br-compare__check { color: #059669; font-weight: 700; flex-shrink: 0; }

/* ── OFFER CARDS ── */
.br-offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.br-offer-card { background: #fff; border-radius: 20px; padding: 28px 24px; border: 1px solid #e5e7eb; border-top: 3px solid; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.br-offer-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.br-offer-card--blue { border-top-color: #3b82f6; }
.br-offer-card--purple { border-top-color: #7c3aed; }
.br-offer-card--pink { border-top-color: #ec4899; }
.br-offer-card--green { border-top-color: #10b981; }
.br-offer-card--amber { border-top-color: #f59e0b; }
.br-offer-card--teal { border-top-color: #14b8a6; }

.br-offer-card__icon { font-size: 28px; margin-bottom: 16px; display: block; }
.br-offer-card__title { font-size: 15px; font-weight: 700; color: #0d1b3e; margin-bottom: 8px; }
.br-offer-card__desc { font-size: 13px; color: #6b7280; line-height: 1.65; }

/* ── NICHES ROW ── */
.br-niches-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.br-niche-pill { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 16px; padding: 16px 20px; border: 1px solid #e5e7eb; border-left: 4px solid; transition: transform 0.25s, box-shadow 0.25s; flex: 1; min-width: 160px; }
.br-niche-pill:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.br-niche-pill--blue { border-left-color: #3b82f6; }
.br-niche-pill--purple { border-left-color: #7c3aed; }
.br-niche-pill--teal { border-left-color: #14b8a6; }
.br-niche-pill--amber { border-left-color: #f59e0b; }
.br-niche-pill--green { border-left-color: #10b981; }
.br-niche-pill__emoji { font-size: 24px; flex-shrink: 0; }
.br-niche-pill__label { font-size: 14px; font-weight: 700; color: #0d1b3e; }
.br-niche-pill__sub { font-size: 11px; color: #9ca3af; margin-top: 2px; }

/* ── STATS ── */
.br-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.br-stat-card { background: #fff; border-radius: 24px; padding: 32px 24px; text-align: center; border: 1px solid rgba(29,78,216,0.08); border-top: 3px solid; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.br-stat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.br-stat-card__glow { position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 100px; height: 100px; border-radius: 50%; filter: blur(40px); opacity: 0.4; }
.br-stat-card--1 { border-top-color: #bfdbfe; } .br-stat-card--1 .br-stat-card__glow { background: #3b82f6; } .br-stat-card--1 .br-stat-card__num { color: #1d4ed8; }
.br-stat-card--2 { border-top-color: #ddd6fe; } .br-stat-card--2 .br-stat-card__glow { background: #7c3aed; } .br-stat-card--2 .br-stat-card__num { color: #7c3aed; }
.br-stat-card--3 { border-top-color: #a7f3d0; } .br-stat-card--3 .br-stat-card__glow { background: #10b981; } .br-stat-card--3 .br-stat-card__num { color: #059669; }
.br-stat-card--4 { border-top-color: #fde68a; } .br-stat-card--4 .br-stat-card__glow { background: #f59e0b; } .br-stat-card--4 .br-stat-card__num { color: #d97706; }
.br-stat-card__icon { font-size: 28px; margin-bottom: 10px; display: block; }
.br-stat-card__num { font-size: 44px; font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 6px; display: block; }
.br-stat-card__label { font-size: 13px; font-weight: 700; color: #0d1b3e; margin-bottom: 6px; }
.br-stat-card__desc { font-size: 12px; color: #6b7280; line-height: 1.55; }

/* ── FORM SECTION ── */
.br-form-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.br-form-blob { position: absolute; border-radius: 50%; filter: blur(80px); animation: cfBlobFloat 10s ease-in-out infinite; }
.br-form-blob--1 { width: 500px; height: 500px; background: rgba(29,78,216,0.15); top: -150px; left: -100px; }
.br-form-blob--2 { width: 350px; height: 350px; background: rgba(124,58,237,0.12); bottom: -80px; right: -60px; animation-delay: 4s; }

.br-form-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }

.br-form-left__title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 14px; }
.br-form-left__sub { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 28px; }
.br-form-left__points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.br-form-left__point { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.65); }
.br-form-left__check { width: 22px; height: 22px; border-radius: 50%; background: rgba(29,78,216,0.3); border: 1px solid rgba(29,78,216,0.5); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; color: #93c5fd; flex-shrink: 0; }
.br-form-left__contacts { display: flex; flex-direction: column; gap: 12px; }
.br-form-left__contact { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 16px; text-decoration: none; transition: background 0.2s; }
.br-form-left__contact:hover { background: rgba(255,255,255,0.10); }
.br-form-left__contact-icon { font-size: 20px; flex-shrink: 0; }
.br-form-left__contact-label { font-size: 11px; color: rgba(255,255,255,0.4); }
.br-form-left__contact-val { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); }

.br-form-right { background: #fff; border-radius: 24px; padding: 36px 32px; }
.br-form-right__badge { display: inline-block; font-size: 11px; font-weight: 600; color: var(--blue); background: rgba(29,78,216,0.07); border: 1px solid rgba(29,78,216,0.15); padding: 5px 14px; border-radius: 20px; margin-bottom: 12px; }
.br-form-right__title { font-size: 20px; font-weight: 800; color: #0d1b3e; margin-bottom: 6px; }
.br-form-right__sub { font-size: 13px; color: #6b7280; margin-bottom: 24px; line-height: 1.6; }

.br-form { display: flex; flex-direction: column; gap: 16px; }
.br-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.br-form__group { display: flex; flex-direction: column; gap: 6px; }
.br-form__label { font-size: 12px; font-weight: 600; color: #374151; }
.br-form__input {
    padding: 11px 14px; border: 1.5px solid #e5e7eb; border-radius: 10px;
    font-size: 13px; color: #111; background: #fafafa; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s; width: 100%; box-sizing: border-box;
}
.br-form__input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,0.08); background: #fff; }
.br-form__textarea { min-height: 100px; resize: vertical; }
.br-form__submit {
    background: var(--blue); color: #fff; font-size: 15px; font-weight: 700;
    padding: 15px 28px; border-radius: 12px; border: none; cursor: pointer; width: 100%;
    transition: background 0.2s, transform 0.2s; margin-top: 4px;
}
.br-form__submit:hover { background: #1a44c8; transform: translateY(-1px); }

.br-alert { padding: 14px 16px; border-radius: 12px; font-size: 13px; font-weight: 500; margin-bottom: 16px; }
.br-alert--success { background: #f0fdf4; color: #065f46; border: 1px solid #a7f3d0; }
.br-alert--error { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── FAQ ── */
.br-faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid #e5e7eb; border-radius: 20px; overflow: hidden; }
.br-faq-item { border-bottom: 1px solid #e5e7eb; }
.br-faq-item:last-child { border-bottom: none; }
.br-faq-question {
    width: 100%; display: flex; align-items: center; gap: 14px; padding: 20px 24px;
    background: #fff; border: none; cursor: pointer; text-align: left;
    font-size: 14px; font-weight: 600; color: #0d1b3e; transition: background 0.2s;
}
.br-faq-question:hover { background: #f8faff; }
.br-faq-num { font-size: 11px; font-weight: 700; color: var(--blue); background: rgba(29,78,216,0.08); border: 1px solid rgba(29,78,216,0.15); padding: 3px 8px; border-radius: 6px; flex-shrink: 0; }
.br-faq-chevron { margin-left: auto; flex-shrink: 0; color: #9ca3af; transition: transform 0.25s; }
.br-faq-answer { font-size: 14px; color: #6b7280; line-height: 1.7; padding: 0 24px 20px 56px; display: none; }
.br-faq-item.open .br-faq-answer { display: block; }
.br-faq-item.open .br-faq-chevron { transform: rotate(180deg); }
.br-faq-item.open .br-faq-question { background: #f8faff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .br-offers-grid { grid-template-columns: repeat(2, 1fr); }
    .br-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .br-hero__inner { grid-template-columns: 1fr; }
    .br-compare { grid-template-columns: 1fr; }
    .br-compare__vs { display: none; }
    .br-form-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .br-offers-grid { grid-template-columns: 1fr; }
    .br-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .br-form__grid { grid-template-columns: 1fr; }
    .br-niches-row { flex-direction: column; }
    .br-section { padding: 48px 0; }
}


