/* ═══════════════════════════════════════════════════
   BudRun Theme — Main Stylesheet
════════════════════════════════════════════════════ */

:root {
    --bg:          #06100a;
    --bg-card:     rgba(255,255,255,0.04);
    --bg-card-hov: rgba(255,255,255,0.08);
    --border:      rgba(61,220,132,0.15);
    --primary:     #3ddc84;
    --primary-dk:  #2ab86a;
    --accent:      #c8f500;
    --gold:        #f5c842;
    --text:        #e8f5e9;
    --text-muted:  #7aab87;
    --grad:        linear-gradient(135deg, #3ddc84, #c8f500);
    --glow:        0 0 40px rgba(61,220,132,0.25);
    --radius:      16px;
    --radius-sm:   10px;
    --transition:  0.25s ease;
    --header-h:    72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.BudRun-fullwidth .entry-content,
body.BudRun-fullwidth .page-content,
body.BudRun-fullwidth .site-content,
body.BudRun-fullwidth .content-area {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Container ── */
.bf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Gradient text ── */
.bf-gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Pill label ── */
.bf-pill-label {
    display: inline-block;
    background: rgba(61,220,132,0.12);
    color: var(--primary);
    border: 1px solid rgba(61,220,132,0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.bf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.bf-btn-lg { padding: 16px 32px; font-size: 16px; }
.bf-btn-primary {
    background: var(--primary);
    color: #050f07;
    border-color: var(--primary);
}
.bf-btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #050f07;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61,220,132,0.35);
}
.bf-btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.bf-btn-outline:hover { background: var(--primary); color: #050f07; }
.bf-btn-outline-light {
    background: transparent;
    color: var(--text);
    border-color: rgba(255,255,255,0.3);
}
.bf-btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    transform: translateY(-2px);
}
.bf-btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: transparent;
}
.bf-btn-ghost:hover { color: var(--text); }
.bf-btn-gold {
    background: var(--gold);
    color: #1a1000;
    border-color: var(--gold);
    font-weight: 800;
}
.bf-btn-gold:hover {
    background: #ffd85a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,200,66,0.35);
    color: #1a1000;
}

/* ═══════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.bf-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background var(--transition), box-shadow var(--transition);
}
.bf-header.scrolled {
    background: rgba(6,16,10,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}
.bf-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}
.bf-logo { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-decoration: none; }
.bf-logo img { max-height: 36px; width: auto; display: block; }
.bf-logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}
.bf-logo-name { display: block; font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.bf-logo-accent { color: var(--primary); }
.bf-logo-tagline { font-size: 9px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; display: block; }
.bf-nav { flex: 1; }
.bf-nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
}
.bf-nav-list li a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
}
.bf-nav-list li a:hover,
.bf-nav-list li.current-menu-item > a {
    color: var(--text);
    background: var(--bg-card);
}
.bf-header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.bf-header-greeting { font-size: 13px; color: var(--text-muted); white-space: nowrap; margin-right: 4px; }
.bf-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.bf-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ═══════════════════════════════════════
   HERO
════════════════════════════════════════ */
.bf-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-h);
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(61,220,132,0.15) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 80% 80%, rgba(200,245,0,0.08) 0%, transparent 60%),
                var(--bg);
}
.bf-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.bf-particle {
    position: absolute;
    border-radius: 50%;
    animation: bf-float-particle linear infinite;
    opacity: 0;
}
@keyframes bf-float-particle {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.2; }
    100% { transform: translateY(-20px) scale(1); opacity: 0; }
}
.bf-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.bf-hero-glow-1 {
    width: 500px; height: 500px;
    background: rgba(61,220,132,0.12);
    top: -100px; left: -100px;
    animation: bf-pulse 6s ease-in-out infinite;
}
.bf-hero-glow-2 {
    width: 400px; height: 400px;
    background: rgba(200,245,0,0.08);
    bottom: 0; right: 200px;
    animation: bf-pulse 8s ease-in-out infinite reverse;
}
@keyframes bf-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}
.bf-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 80px;
    width: 100%;
}
.bf-hero-content { flex: 1; max-width: 580px; }
.bf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(61,220,132,0.1);
    border: 1px solid rgba(61,220,132,0.25);
    color: var(--primary);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: bf-fade-up 0.6s ease both;
}
.bf-hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 24px;
    animation: bf-fade-up 0.6s 0.1s ease both;
}
.bf-hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    animation: bf-fade-up 0.6s 0.2s ease both;
}
.bf-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: bf-fade-up 0.6s 0.3s ease both;
}
.bf-hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: bf-fade-up 0.6s 0.4s ease both;
}
.bf-hero-trust span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
@keyframes bf-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Phone mockup */
.bf-hero-visual {
    flex: 0 0 380px;
    position: relative;
    animation: bf-fade-up 0.8s 0.2s ease both;
}
.bf-hero-phone {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}
.bf-hero-phone-inner { display: flex; flex-direction: column; gap: 12px; }
.bf-mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.bf-mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px var(--primary); }
.bf-mock-title { font-weight: 700; font-size: 14px; color: #fff; }
.bf-mock-badge { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-left: auto; }
.bf-mock-badge.open { background: rgba(61,220,132,0.2); color: var(--primary); }
.bf-mock-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    transition: all var(--transition);
}
.bf-mock-img {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1b5e20, #388e3c);
    flex-shrink: 0;
}
.bf-mock-img-2 { background: linear-gradient(135deg, #2d4a1e, #4caf50); }
.bf-mock-name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.bf-mock-sub { font-size: 11px; color: var(--text-muted); }
.bf-mock-track {
    background: rgba(61,220,132,0.08);
    border: 1px solid rgba(61,220,132,0.2);
    border-radius: var(--radius-sm);
    padding: 12px;
}
.bf-mock-track-bar {
    height: 6px;
    background: var(--bg-card);
    border-radius: 3px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}
.bf-mock-track-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 65%;
    background: var(--grad);
    border-radius: 3px;
    animation: bf-track-progress 3s ease-in-out infinite alternate;
}
@keyframes bf-track-progress {
    from { width: 55%; }
    to   { width: 80%; }
}
.bf-mock-car {
    position: absolute;
    right: 35%;
    top: -8px;
    font-size: 16px;
    animation: bf-track-progress 3s ease-in-out infinite alternate;
}
.bf-mock-track-label { font-size: 11px; color: var(--primary); font-weight: 600; }

.bf-hero-mascot {
    position: absolute;
    bottom: -20px;
    right: -40px;
    width: 180px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: bf-mascot-float 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes bf-mascot-float {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50%       { transform: translateY(-12px) rotate(2deg); }
}

/* Scroll hint */
.bf-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
    animation: bf-fade-up 1s 1s ease both;
}
.bf-hero-scroll span { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
.bf-scroll-arrow {
    width: 24px; height: 24px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    animation: bf-scroll-bounce 2s ease-in-out infinite;
}
@keyframes bf-scroll-bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50%       { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ═══════════════════════════════════════
   STATS STRIP
════════════════════════════════════════ */
.bf-stats {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.bf-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.bf-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 48px;
    text-align: center;
}
.bf-stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.bf-stat-plus { font-size: 28px; }
.bf-stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; }
.bf-stat-divider { width: 1px; height: 60px; background: var(--border); }

/* ═══════════════════════════════════════
   SECTIONS
════════════════════════════════════════ */
.bf-section {
    padding: 100px 0;
}
.bf-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.bf-section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.1;
}
.bf-section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* ── How it works ── */
.bf-steps {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.bf-step {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}
.bf-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity var(--transition);
}
.bf-step:hover { border-color: rgba(61,220,132,0.4); transform: translateY(-6px); box-shadow: var(--glow); }
.bf-step-icon {
    font-size: 40px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.bf-step-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
}
.bf-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.bf-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.bf-step-arrow {
    font-size: 24px;
    color: var(--text-muted);
    flex-shrink: 0;
}
.bf-how-cta { text-align: center; }

/* ── Feature split ── */
.bf-split {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}
.bf-split-reverse { flex-direction: row-reverse; }
.bf-split-content, .bf-split-visual { flex: 1; min-width: 280px; }
.bf-split-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.1;
}
.bf-feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}
.bf-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}
.bf-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(61,220,132,0.15);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(61,220,132,0.3);
}

/* Feature card stack */
.bf-feature-card-stack { display: flex; flex-direction: column; gap: 14px; }
.bf-fcard {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    position: relative;
}
.bf-fcard:hover { transform: translateX(6px); border-color: rgba(61,220,132,0.3); }
.bf-fcard-1 { animation: bf-fade-up 0.5s 0.1s ease both; }
.bf-fcard-2 { animation: bf-fade-up 0.5s 0.25s ease both; }
.bf-fcard-3 { animation: bf-fade-up 0.5s 0.4s ease both; }
.bf-fcard-icon { font-size: 28px; flex-shrink: 0; }
.bf-fcard-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.bf-fcard-sub { font-size: 12px; color: var(--text-muted); }
.bf-fcard-pulse {
    position: absolute;
    right: 16px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 rgba(61,220,132,0.4);
    animation: bf-ripple 2s infinite;
}
@keyframes bf-ripple {
    0%   { box-shadow: 0 0 0 0 rgba(61,220,132,0.4); }
    70%  { box-shadow: 0 0 0 12px rgba(61,220,132,0); }
    100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); }
}

/* Dashboard mock */
.bf-dashboard-mock {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.bf-dash-header {
    background: rgba(61,220,132,0.1);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
}
.bf-dash-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
}
.bf-dash-tabs span {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.bf-dash-tabs span.active { color: var(--primary); border-bottom-color: var(--primary); }
.bf-dash-order {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
    color: var(--text-muted);
}
.bf-dash-order-new { background: rgba(61,220,132,0.04); }
.bf-dash-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.bf-dash-badge.new { background: rgba(61,220,132,0.2); color: var(--primary); }
.bf-dash-badge.out { background: rgba(245,200,66,0.2); color: var(--gold); }
.bf-dash-badge.done { background: rgba(255,255,255,0.1); color: var(--text-muted); }
.bf-dash-action { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--primary); }
.bf-dash-action.done { color: var(--text-muted); }

/* ── CTA Banner ── */
.bf-cta-banner {
    background: linear-gradient(135deg, rgba(61,220,132,0.12) 0%, rgba(200,245,0,0.06) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.bf-cta-banner-glow {
    position: absolute;
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(61,220,132,0.15), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.bf-cta-banner-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.bf-cta-banner-content { flex: 1; min-width: 280px; }
.bf-cta-banner-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 12px;
    line-height: 1.1;
}
.bf-cta-banner-content p { font-size: 17px; color: var(--text-muted); margin-bottom: 28px; }
.bf-cta-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.bf-cta-banner-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}
.bf-cta-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}
.bf-cta-stat strong { color: var(--primary); }

/* ═══════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.bf-footer { background: #030a05; }
.bf-footer-top {
    padding: 80px 0 60px;
    border-top: 1px solid var(--border);
}
.bf-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    flex-wrap: wrap;
}
.bf-footer-brand .bf-logo-text { font-size: 22px; margin-bottom: 16px; display: block; }
.bf-footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.bf-footer-socials { display: flex; gap: 12px; }
.bf-footer-socials a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: all var(--transition);
    text-decoration: none;
}
.bf-footer-socials a:hover { background: rgba(61,220,132,0.15); border-color: var(--primary); }
.bf-footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.bf-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.bf-footer-col ul li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}
.bf-footer-col ul li a:hover { color: var(--primary); }
.bf-footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
}
.bf-footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.7;
}
.bf-footer-disclaimer {
    font-size: 11px !important;
    opacity: 0.6;
    margin-top: 8px;
}

/* ═══════════════════════════════════════
   PLUGIN PAGES (full-width)
════════════════════════════════════════ */
.bf-page-fullwidth {
    padding-top: var(--header-h);
    min-height: 80vh;
}
.bf-page-content {
    padding: 0;
    max-width: 100%;
}
/* Give BudRun plugin content breathing room */
.bf-page-content .budrun-wrap,
.bf-page-content > * {
    padding-top: 40px;
}
/* Features page — hero starts flush against header, no extra top gap */
.bf-page-fullwidth .bf-page-content > * {
    padding-top: 0;
}

/* Standard pages */
.bf-page {
    padding-top: calc(var(--header-h) + 40px);
    min-height: 80vh;
    padding-bottom: 80px;
}
.bf-page-article h1 {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}
.bf-page-content { color: var(--text-muted); line-height: 1.8; }
.bf-page-content h2,h3,h4 { color: #fff; margin: 24px 0 12px; }
.bf-page-content p { margin-bottom: 16px; }

/* ═══════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
    .bf-hero-inner { flex-direction: column; text-align: center; padding-top: 40px; padding-bottom: 60px; }
    .bf-hero-content { max-width: 100%; }
    .bf-hero-ctas { justify-content: center; }
    .bf-hero-trust { justify-content: center; }
    .bf-hero-visual { flex: none; width: 100%; max-width: 380px; }
    .bf-split, .bf-split-reverse { flex-direction: column !important; }
    .bf-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    :root { --header-h: 60px; }
    .bf-container { padding: 0 20px; }
    .bf-nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; background: #0a1f0a; padding: 16px 20px; z-index: 999; border-top: 1px solid rgba(255,255,255,0.08); }
    .bf-nav.bf-nav-open { display: block; }
    .bf-nav .bf-nav-list { flex-direction: column; gap: 4px; }
    .bf-nav .bf-nav-list li a { display: block; padding: 12px 16px; border-radius: 8px; font-size: 16px; }
    .bf-hamburger { display: flex; }
    .bf-hero { min-height: auto; padding-top: var(--header-h); }
    .bf-hero-title { font-size: 44px; letter-spacing: -1px; }
    .bf-section { padding: 60px 0; }
    .bf-stat { padding: 12px 24px; }
    .bf-stat-divider { display: none; }
    .bf-stat-number { font-size: 30px; }
    .bf-steps { flex-direction: column; }
    .bf-step-arrow { transform: rotate(90deg); }
    .bf-step { max-width: 100%; width: 100%; }
    .bf-cta-banner-inner { flex-direction: column; text-align: center; }
    .bf-cta-banner-btns { justify-content: center; }
    .bf-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .bf-hero-mascot { display: none; }
    .bf-hero-phone { width: 100%; }
    .bf-header-actions .bf-btn-ghost { display: none; }
}
