:root {
  --orange: #D6451C;
  --orange-light: #FF7833;
  --orange-dark: #D13E00;
  --orange-glow: rgba(255,76,0,0.35);
  --black: #0F0F0F;
  --charcoal: #252525;
  --dark: #2B2B2B;
  --gray: #4B5563;
  --gray-light: #9CA3AF;
  --white: #FFFFFF;
  --cream: #FAFAF9;
  --cream-dark: #F5F5F4;
  --border: #E5E7EB;
  --border-dark: #2B2B2B;
  --success: #10B981;
  --toast-blue: #2B4FB9;
  --shadow-sm: 0 2px 8px rgba(15,15,15,0.06);
  --shadow-md: 0 12px 32px rgba(15,15,15,0.10);
  --shadow-lg: 0 24px 64px rgba(15,15,15,0.16);
  --shadow-orange: 0 8px 32px rgba(255,76,0,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; font-size: 16px; line-height: 1.65; color: var(--charcoal); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Inter', sans-serif; font-weight: 800; line-height: 1.1; color: var(--charcoal); letter-spacing: -0.025em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 1.875rem); }
p { margin-bottom: 1.25rem; color: var(--gray); }
a { color: var(--orange); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--orange-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.top-bar { background: var(--charcoal); color: rgba(255,255,255,0.9); padding: 10px 0; font-size: 0.8125rem; font-weight: 500; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.top-bar a { color: var(--orange-light); font-weight: 600; }

.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; height: 54px; }
.logo img { height: 54px; width: auto; }
.nav-menu { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-menu a { color: var(--charcoal); font-weight: 600; font-size: 0.9375rem; transition: color 0.15s; }
.nav-menu a:not(.btn):hover { color: var(--orange); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 0.9375rem; transition: all 0.2s ease; cursor: pointer; border: none; font-family: inherit; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255,76,0,0.4); color: var(--white); }
.btn-large { padding: 18px 36px; font-size: 1.0625rem; }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: var(--orange); color: var(--orange-light); }
.btn-secondary { background: var(--charcoal); color: var(--white); }
.btn-secondary:hover { background: var(--black); color: var(--white); }

/* HERO - 2 column with stat card right */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: var(--white); overflow: hidden; background: linear-gradient(135deg, rgba(40,20,5,0.82) 0%, rgba(196,88,23,0.25) 100%), url(/images/hero-bg.jpg) center center / cover no-repeat; }
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(13,7,5,0.80) 0%, rgba(80,20,5,0.65) 50%, rgba(80,20,5,0.40) 100%) 0%, rgba(26,26,26,0.85) 50%, rgba(26,26,26,0.55) 100%); z-index: 2; }
.hero-overlay::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 88% 35%, rgba(255,76,0,0.18) 0%, transparent 55%); }
.hero-content { position: relative; z-index: 3; width: 100%; padding: 88px 0; }
.hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }
.hero-text { max-width: 640px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,76,0,0.12); color: var(--orange-light); padding: 10px 20px; border-radius: 100px; font-size: 0.8125rem; font-weight: 700; letter-spacing: 1.5px; text-transform: none; letter-spacing: 0.3px; margin-bottom: 28px; border: 1px solid rgba(255,76,0,0.3); }
.hero-badge::before { content: '🍞'; font-size: 1rem; }
.hero h1 { color: var(--white); margin-bottom: 24px; font-size: clamp(2.5rem, 4.75vw, 4rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }
.hero h1 .accent { background: linear-gradient(135deg, var(--orange-light), var(--orange-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1875rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.55; font-weight: 400; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 600; }
.hero-trust-item .check { width: 22px; height: 22px; background: var(--orange); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.75rem; flex-shrink: 0; }

/* Hero comparison card on the right */
.hero-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(24px); border: 1px solid rgba(255,76,0,0.2); border-radius: 16px; padding: 32px; box-shadow: 0 24px 64px rgba(0,0,0,0.5); }
.hero-card-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.hero-card-title { font-size: 1.0625rem; color: var(--white); margin: 0; font-weight: 700; }
.hero-card-badge { background: var(--orange); color: var(--white); padding: 4px 10px; border-radius: 6px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 1px; text-transform: none; letter-spacing: 0.3px; }
.compare-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.compare-row:last-of-type { border-bottom: none; }
.compare-label { color: rgba(255,255,255,0.55); font-size: 0.8125rem; font-weight: 500; grid-column: 1/-1; margin-bottom: -8px; }
.compare-them { color: rgba(255,255,255,0.55); font-size: 0.9375rem; text-align: left; text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.3); }
.compare-vs { color: var(--gray-light); font-size: 0.6875rem; font-weight: 700; letter-spacing: 1px; }
.compare-us { color: var(--orange-light); font-size: 1.0625rem; font-weight: 700; text-align: right; }
.hero-card-footer { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.pulse-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); } 50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); } }

.stats-section { background: var(--charcoal); color: var(--white); padding: 64px 0; border-top: 1px solid rgba(255,76,0,0.2); border-bottom: 1px solid rgba(255,76,0,0.2); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; text-align: center; }
.stat-item .stat-number { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 8px; letter-spacing: -0.03em; }
.stat-item .stat-label { color: rgba(255,255,255,0.6); font-size: 0.875rem; letter-spacing: 0.5px; font-weight: 600; }

section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-eyebrow { display: inline-block; color: var(--orange); font-size: 0.8125rem; font-weight: 700; letter-spacing: 2px; text-transform: none; letter-spacing: 0.3px; margin-bottom: 16px; }
.section-eyebrow.center::before, .section-eyebrow.center::after { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--orange); vertical-align: middle; margin: 0 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.125rem; color: var(--gray); }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.split-image img { width: 100%; height: 540px; object-fit: cover; }
.split-content > p { font-size: 1.0625rem; line-height: 1.7; margin-bottom: 20px; }
.split-features { list-style: none; margin-top: 28px; }
.split-features li { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 14px; color: var(--charcoal); font-weight: 500; }
.split-features li:last-child { border-bottom: none; }
.split-features li::before { content: '✓'; width: 26px; height: 26px; background: var(--orange); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; font-size: 0.875rem; }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card { background: var(--white); padding: 32px; border-radius: 16px; border: 1px solid var(--border); transition: all 0.25s ease; position: relative; }
.card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--orange-light), var(--orange-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--white); margin-bottom: 20px; font-weight: 800; }
.card h3 { font-size: 1.375rem; margin-bottom: 12px; color: var(--charcoal); font-weight: 800; }
.card p { font-size: 0.9375rem; color: var(--gray); margin-bottom: 18px; line-height: 1.6; }
.card .card-link { color: var(--orange); font-weight: 700; font-size: 0.9375rem; display: inline-flex; align-items: center; gap: 6px; }
.card .card-link::after { content: '→'; transition: transform 0.15s; }
.card:hover .card-link::after { transform: translateX(4px); }

.process { background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.process-step { text-align: center; padding: 32px; background: var(--white); border-radius: 16px; border: 1px solid var(--border); transition: all 0.25s; }
.process-step:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.step-number { width: 64px; height: 64px; background: linear-gradient(135deg, var(--orange-light), var(--orange-dark)); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.875rem; font-weight: 900; margin-bottom: 20px; box-shadow: var(--shadow-orange); }
.process-step h3 { font-size: 1.375rem; margin-bottom: 12px; }
.process-step p { color: var(--gray); }

.compare-table { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--charcoal); color: var(--white); font-weight: 700; font-size: 0.9375rem; }
.compare-table th:last-child { color: var(--orange-light); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover { background: var(--cream); }
.compare-table .check { color: var(--success); font-weight: 700; }
.compare-table .x { color: var(--gray-light); }

.cta-banner { position: relative; color: var(--white); padding: 120px 0; text-align: center; overflow: hidden; background: var(--charcoal); }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,76,0,0.15) 0%, transparent 60%); }
.cta-banner > .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 20px; }
.cta-banner h2 .accent { color: var(--orange); }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1875rem; max-width: 680px; margin: 0 auto 32px; }

.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: all 0.2s; }
.faq-item:hover { border-color: var(--orange); }
.faq-question { padding: 22px 28px; cursor: pointer; font-weight: 700; display: flex; justify-content: space-between; align-items: center; color: var(--charcoal); font-size: 1.0625rem; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--orange); transition: transform 0.2s; font-weight: 600; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 28px; max-height: 0; overflow: hidden; transition: all 0.3s; color: var(--gray); }
.faq-item.open .faq-answer { padding: 0 28px 24px; max-height: 600px; }

.site-footer { background: var(--black); color: rgba(255,255,255,0.65); padding: 80px 0 32px; border-top: 2px solid var(--orange); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo { margin-bottom: 24px; height: auto; }
.footer-brand .logo img { height: 80px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9375rem; line-height: 1.7; }
.footer-col h4 { color: var(--orange-light); font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.9375rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; color: rgba(255,255,255,0.4); font-size: 0.8125rem; }

.page-hero { position: relative; color: var(--white); padding: 120px 0 80px; text-align: center; overflow: hidden; background: var(--charcoal); border-bottom: 1px solid rgba(255,76,0,0.2); }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,76,0,0.15) 0%, transparent 60%); }
.page-hero-bg { position: absolute; inset: 0; z-index: 1; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-hero > .container { position: relative; z-index: 3; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.1875rem; max-width: 760px; margin: 0 auto; }
.breadcrumb { padding: 16px 0; font-size: 0.875rem; color: var(--gray); border-bottom: 1px solid var(--border); background: var(--cream); font-weight: 500; }
.breadcrumb a { color: var(--orange); }

.article-content { padding: 80px 0; background: var(--white); }
.article-content h2 { margin: 48px 0 20px; color: var(--charcoal); }
.article-content h3 { margin: 32px 0 14px; color: var(--orange); font-weight: 700; }
.article-content p { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 20px; color: var(--charcoal); }
.article-content ul, .article-content ol { margin: 20px 0 20px 28px; color: var(--charcoal); }
.article-content li { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 10px; }
.article-content blockquote { border-left: 4px solid var(--orange); padding: 16px 0 16px 28px; margin: 32px 0; font-style: italic; font-size: 1.125rem; color: var(--gray); background: var(--cream); }
.callout { background: var(--charcoal); color: var(--white); border-left: 4px solid var(--orange); padding: 24px 28px; margin: 32px 0; border-radius: 8px; }
.callout strong { color: var(--orange-light); display: block; margin-bottom: 8px; font-size: 1.0625rem; }
.callout p { color: rgba(255,255,255,0.92); margin: 0; }
.related-pages { background: var(--cream); padding: 80px 0; }

/* Hero stat rows (alternate to compare-row) */
.hero-stat-row { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-stat-row:last-of-type { border-bottom: none; }
.hero-stat-label { color: rgba(255,255,255,0.7); font-size: 0.875rem; letter-spacing: 0.3px; }
.hero-stat-value { color: var(--orange-light); font-size: 1.25rem; font-weight: 800; letter-spacing: -0.015em; }
.hero-stat-value.small { font-size: 1rem; }

/* Photo cards */
.photo-card { position: relative; display: block; border-radius: 16px; overflow: hidden; min-height: 320px; box-shadow: var(--shadow-md); transition: all 0.25s; }
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.photo-card:hover img { transform: scale(1.06); }
.photo-card-overlay { position: absolute; inset: 0; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(180deg, transparent 30%, rgba(15,15,15,0.9) 100%); color: var(--white); }
.photo-card-overlay h3 { color: var(--white); margin-bottom: 6px; font-size: 1.375rem; }
.photo-card-overlay p { color: rgba(255,255,255,0.85); font-size: 0.9375rem; margin: 0; }

/* Quote section */
.quote-section { background: var(--cream); padding: 100px 0; }
.quote-content { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-content blockquote { font-size: clamp(1.5rem, 3vw, 2.125rem); line-height: 1.35; color: var(--charcoal); font-weight: 600; letter-spacing: -0.015em; margin-bottom: 28px; font-style: italic; }
.quote-author { display: flex; justify-content: center; align-items: center; gap: 16px; }
.quote-author-name { font-weight: 700; color: var(--orange); font-size: 0.9375rem; }
.quote-author-title { color: var(--gray); font-size: 0.875rem; }

/* CTA banner background image */
.cta-bg { position: absolute; inset: 0; z-index: 1; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,15,15,0.92), rgba(26,26,26,0.7)); z-index: 2; }
.cta-banner > .container { z-index: 3; }

/* Compatibility: btn-gold alias for sites copying CBL pattern */
.btn-gold { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-gold:hover { background: var(--orange-dark); transform: translateY(-2px); color: var(--white); }

/* Article layout extras */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.article-sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-card { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 28px; margin-bottom: 24px; }
.sidebar-card h4 { color: var(--orange); margin-bottom: 16px; font-size: 1.0625rem; text-transform: none; letter-spacing: 0.3px; letter-spacing: 1px; }
.sidebar-card ul { list-style: none; }
.sidebar-card li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card a { color: var(--charcoal); font-weight: 600; font-size: 0.9375rem; }
.sidebar-card a:hover { color: var(--orange); }
.sidebar-cta { background: var(--charcoal); color: var(--white); padding: 28px; border-radius: 16px; text-align: center; }
.sidebar-cta h4 { color: var(--orange-light); margin-bottom: 12px; }
.sidebar-cta p { color: rgba(255,255,255,0.85); margin-bottom: 16px; font-size: 0.9375rem; }

/* Blog index */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.25s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag { color: var(--orange); font-size: 0.75rem; font-weight: 700; text-transform: none; letter-spacing: 0.3px; letter-spacing: 1.5px; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.3; color: var(--charcoal); }
.blog-card p { color: var(--gray); font-size: 0.9375rem; flex: 1; margin-bottom: 16px; }
.blog-card-link { color: var(--orange); font-weight: 700; font-size: 0.875rem; }

@media (max-width: 968px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 968px) {
  .nav-menu { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 480px; }
  .split-section { grid-template-columns: 1fr; gap: 48px; }
  .split-image img { height: 400px; }
  section { padding: 64px 0; }
  .hero { min-height: 80vh; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 24px; }
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeInUp 0.6s ease-out backwards; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* TRUST BADGES SECTION */
.trust-badges-section { background: var(--white); padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-badges-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.trust-badge { display: flex; align-items: center; gap: 16px; padding: 4px 0; }
.trust-badge-icon { width: 48px; height: 48px; background: var(--cream); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 800; color: var(--charcoal); flex-shrink: 0; }
.trust-badge-content {}
.trust-badge-title { font-weight: 700; color: var(--charcoal); font-size: 0.9375rem; line-height: 1.2; margin-bottom: 2px; }
.trust-badge-sub { color: var(--gray); font-size: 0.8125rem; }

/* TESTIMONIALS SECTION */
.testimonials-section { background: var(--cream); padding: 96px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); padding: 32px; border-radius: 8px; border: 1px solid var(--border); transition: all 0.25s; box-shadow: var(--shadow-sm); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-rating { color: #FFB400; font-size: 1.0625rem; margin-bottom: 16px; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.rating-label { font-size: 0.75rem; color: var(--gray); font-weight: 600; letter-spacing: 0.5px; text-transform: none; letter-spacing: 0.3px; }
.testimonial-quote { font-size: 1rem; line-height: 1.6; color: var(--charcoal); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--charcoal), #4A5568); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.125rem; flex-shrink: 0; }
.testimonial-meta {}
.testimonial-name { font-weight: 700; color: var(--charcoal); font-size: 0.9375rem; }
.testimonial-biz { color: var(--gray); font-size: 0.8125rem; margin: 2px 0; }
.testimonial-amount { font-size: 0.8125rem; color: var(--charcoal); margin-top: 4px; }
.testimonial-amount strong { color: inherit; }

/* === Logo flush-left override (push logo to page edge, polished baseline) === */
.site-header .container { padding-left: 0 !important; padding-right: 16px !important; }
.site-header .header-inner { padding-left: 0 !important; }
.site-header .logo { margin-left: -8px !important; }
@media (max-width: 768px) {
  .site-header .container { padding-left: 8px !important; padding-right: 12px !important; }
  .site-header .logo { margin-left: 0 !important; }
}

/* === WOW-UPGRADE CSS START === */

/* ===== Funding Calculator ===== */
.calc-widget-section { padding: 80px 0; background: linear-gradient(135deg, #f8f9fb 0%, #eef1f6 100%); }
.calc-widget { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 80px rgba(10,20,40,0.10), 0 0 0 1px rgba(10,20,40,0.04); max-width: 1100px; margin: 0 auto; }
.calc-widget-left { padding: 48px 44px; }
.calc-widget-right { padding: 48px 44px; background: linear-gradient(135deg, #252525 0%, #252525 100%); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.calc-eyebrow { font-size: 0.75rem; font-weight: 800; letter-spacing: 3px; color: #252525; margin-bottom: 12px; }
.calc-title { font-size: 2rem; font-weight: 800; line-height: 1.15; margin: 0 0 12px; color: #252525; }
.calc-subtitle { color: #5a6678; line-height: 1.55; margin: 0 0 32px; font-size: 1rem; }
.calc-control { margin-bottom: 28px; }
.calc-control label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; font-size: 0.875rem; color: #5a6678; font-weight: 500; }
.calc-control label strong { color: #252525; font-size: 1.125rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.calc-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 4px; background: #e2e8f0; outline: none; cursor: pointer; transition: background 0.2s; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%; background: #D6451C; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 4px rgba(255,255,255,0.9); transition: transform 0.15s; }
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb { width: 28px; height: 28px; border-radius: 50%; background: #D6451C; cursor: pointer; border: none; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.calc-result-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 3px; color: rgba(255,255,255,0.7); text-transform: none; letter-spacing: 0.3px; margin-bottom: 16px; }
.calc-result-amount { font-size: 3.25rem; font-weight: 900; line-height: 1; letter-spacing: -0.02em; margin-bottom: 14px; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; color: #D6451C; font-variant-numeric: tabular-nums; }
.calc-result-sep { color: rgba(255,255,255,0.4); font-weight: 400; }
.calc-result-meta { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.5; }
.calc-cta { display: inline-block; padding: 16px 32px; background: #D6451C; color: #252525; font-weight: 800; text-decoration: none; border-radius: 10px; font-size: 1.05rem; letter-spacing: 0.3px; transition: transform 0.15s, box-shadow 0.15s; box-shadow: 0 8px 22px rgba(0,0,0,0.25); text-align: center; }
.calc-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.35); }
.calc-result-note { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 18px; line-height: 1.5; }
@media (max-width: 880px) {
  .calc-widget { grid-template-columns: 1fr; }
  .calc-widget-left, .calc-widget-right { padding: 36px 28px; }
  .calc-result-amount { font-size: 2.5rem; }
  .calc-title { font-size: 1.65rem; }
}

/* ===== Sticky mobile CTA ===== */
.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000; background: #fff; padding: 12px 16px; box-shadow: 0 -8px 30px rgba(0,0,0,0.18); border-top: 1px solid rgba(0,0,0,0.08); }
.sticky-mobile-cta a { display: block; padding: 14px; background: #D6451C; color: #252525; font-weight: 800; text-decoration: none; border-radius: 10px; text-align: center; font-size: 1rem; letter-spacing: 0.3px; }
@media (max-width: 768px) { .sticky-mobile-cta { display: block; } body { padding-bottom: 72px; } }

/* Animated stat counter — start invisible until JS triggers */
.stat-number[data-target] { font-variant-numeric: tabular-nums; }

/* === WOW-UPGRADE CSS END === */

/* === NETWORK-LINKS CSS START === */

/* ===== Network Partners section ===== */
.network-section { padding: 70px 0; background: #f8fafc; border-top: 1px solid rgba(0,0,0,0.05); }
.network-eyebrow { text-align: center; font-size: 0.75rem; font-weight: 800; letter-spacing: 3px; color: #6b7280; text-transform: none; letter-spacing: 0.3px; margin-bottom: 12px; }
.network-title { text-align: center; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 12px; color: #0a1421; }
.network-intro { text-align: center; color: #5a6678; max-width: 620px; margin: 0 auto 38px; }
.network-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; max-width: 1000px; margin: 0 auto; }
.network-card { display: flex; flex-direction: column; gap: 4px; padding: 22px 24px; background: #fff; border-radius: 12px; text-decoration: none; color: inherit; box-shadow: 0 4px 18px rgba(10,20,40,0.05); transition: transform 0.15s, box-shadow 0.15s; position: relative; }
.network-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(10,20,40,0.10); }
.network-card-name { font-weight: 800; font-size: 1.05rem; color: #0a1421; }
.network-card-tag { font-size: 0.85rem; color: #5a6678; }
.network-card-arrow { position: absolute; top: 22px; right: 24px; font-size: 1.2rem; color: #94a3b8; transition: transform 0.15s, color 0.15s; }
.network-card:hover .network-card-arrow { transform: translateX(4px); color: #0a1421; }

/* ===== Trust Ticker ===== */
.trust-ticker { background: #0a1421; color: #fff; padding: 10px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.trust-ticker-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 12px; }
.trust-ticker-pulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.7); animation: tickerPulse 2s infinite; flex-shrink: 0; }
@keyframes tickerPulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); } 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.trust-ticker-label { font-weight: 700; color: #22c55e; text-transform: none; letter-spacing: 0.3px; font-size: 0.7rem; letter-spacing: 1.5px; }
.trust-ticker-text { color: rgba(255,255,255,0.92); transition: opacity 0.35s; }
@media (max-width: 540px) { .trust-ticker-inner { padding: 0 12px; font-size: 0.78rem; } .trust-ticker-label { display: none; } }

/* === NETWORK-LINKS CSS END === */


/* Footer utility links */
.footer-utility a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; margin: 0 4px; }
.footer-utility a:hover { color: rgba(255,255,255,0.95); }


/* Header search */
.nav-search { display: inline-flex; align-items: center; }
.nav-search input { padding: 7px 14px; border-radius: 100px; border: 1px solid rgba(0,0,0,0.1); font-size: 0.85rem; background: rgba(0,0,0,0.04); transition: all 0.15s; min-width: 160px; outline: none; font-family: inherit; }
.nav-search input:focus { background: #fff; border-color: rgba(0,0,0,0.2); box-shadow: 0 0 0 3px rgba(0,0,0,0.06); }


@media (max-width: 980px) {
  .nav-search { display: none; }
}


/* Popular Resources section */
.popular-section { padding: 70px 0; background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.popular-eyebrow { text-align: center; font-size: 0.75rem; font-weight: 800; letter-spacing: 3px; color: #6b7280; text-transform: none; letter-spacing: 0.3px; margin-bottom: 12px; }
.popular-title { text-align: center; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 44px; }
.popular-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto; }
.popular-col { background: #fff; padding: 28px 30px; border-radius: 12px; box-shadow: 0 4px 18px rgba(10,20,40,0.05); border-top: 3px solid; }
.popular-col h3 { font-size: 1rem; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid #eef1f5; letter-spacing: 0.3px; }
.popular-col ul { list-style: none; padding: 0; margin: 0; }
.popular-col li { padding: 6px 0; }
.popular-col a { text-decoration: none; font-size: 0.94rem; line-height: 1.5; padding: 4px 0; display: block; transition: color 0.15s, transform 0.15s; }
.popular-col a:hover { transform: translateX(3px); }

.popular-col { border-top-color: #D6451C; }
.popular-col h3 { color: #252525; }
.popular-col a { color: #252525; }
.popular-col a:hover { color: #D6451C; }

/* === SVG icon refinement (added for Clover-style aesthetic) === */
.card-icon { display: flex; align-items: center; justify-content: center; }
.card-icon svg { width: 28px; height: 28px; }
.trust-badge-icon { display: flex; align-items: center; justify-content: center; }
.trust-badge-icon svg { width: 22px; height: 22px; }
/* Restore selective uppercase only where it reads as label, not headline */
.section-eyebrow, .nav-search-item { text-transform: uppercase !important; letter-spacing: 0.12em !important; font-size: 0.72rem; }
.btn, button { text-transform: none !important; letter-spacing: 0.2px; font-weight: 600; }


/* ===== REVIEW TRUST BAR ===== */
.review-trust-bar {
  background: #B03518;
  padding: 9px 0;
  font-size: 0.78rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.review-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.review-trust-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rtb-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  opacity: 0.95;
}
.rtb-stars {
  color: #FFD700;
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.rtb-text strong {
  color: #FFFFFF;
}
.rtb-divider {
  color: #FFFFFF;
  opacity: 0.3;
  font-size: 0.9rem;
  padding: 0 4px;
}
.review-trust-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rtb-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.rtb-phone:hover { opacity: 1; color: #FFFFFF; }
.rtb-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.rtb-social-link {
  color: #FFFFFF;
  opacity: 0.7;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
}
.rtb-social-link:hover { opacity: 1; }
@media (max-width: 768px) {
  .review-trust-bar { display: none; }
}
/* ===== END REVIEW TRUST BAR ===== */

/* ===== REDLINE ELEMENTS — PRODUCT TICKER ===== */
.product-ticker {
  background: #0D0705;
  border-top: 2px solid #D6451C;
  border-bottom: 2px solid rgba(255,255,255,0.04);
  overflow: hidden;
  padding: 0;
  position: relative;
}
.product-ticker::before,
.product-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.product-ticker::before { left: 0; background: linear-gradient(90deg, #0D0705 0%, transparent 100%); }
.product-ticker::after  { right: 0; background: linear-gradient(270deg, #0D0705 0%, transparent 100%); }
.product-ticker-track {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
  padding: 13px 0;
}
.product-ticker-track:hover { animation-play-state: paused; cursor: default; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.ticker-item::after {
  content: '◆';
  display: inline-block;
  margin-left: 36px;
  font-size: 0.45rem;
  color: #D6451C;
  opacity: 0.7;
  vertical-align: middle;
}
.ticker-item:last-child::after { display: none; }

/* ===== CLIENTS BAR ===== */
.clients-bar {
  background: #f9fafb;
  padding: 52px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.clients-bar-eyebrow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 32px;
}
.clients-logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.client-logo-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #6b7280;
  padding: 0 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}
.client-logo-item::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 20px;
  background: #e5e7eb;
}
.client-logo-item:last-child::after { display: none; }
/* ===== END REDLINE ELEMENTS ===== */


/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section { padding: 80px 0; }
.testi-header { text-align: center; margin-bottom: 48px; }
.testi-header h2 { color: #fff; margin-bottom: 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; padding: 32px; display: flex; flex-direction: column; }
.testi-stars { font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { color: rgba(255,255,255,0.85); font-size: 0.9375rem; line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 24px; }
.testi-author { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; }
.testi-author strong { display: block; color: #fff; font-size: 0.9375rem; margin-bottom: 4px; }
.testi-author span { color: rgba(255,255,255,0.5); font-size: 0.8125rem; }
.testi-aggregate { text-align: center; margin-top: 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 100px; padding: 12px 32px; display: inline-block; width: 100%; max-width: 500px; margin-left: auto; margin-right: auto; display: flex; justify-content: center; align-items: center; gap: 12px; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.testi-aggregate strong { color: #fff; }
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }
/* ===== END TESTIMONIALS ===== */
