/* ============================================
   SERENA CURA - Modern 2026 Rebuild
   Pure HTML/CSS/JS - No frameworks
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #2D4337;
    --secondary: #23382B;
    --accent: #FACB6E;
    --tertiary: #CE9F43;
    --text: #625A53;
    --text-light: #8a8279;
    --bg: #FFFFFF;
    --alt: #F4F6FF;
    --green-light: #E8F0E8;
    --green-mid: #A8C5A0;
    --green-dark: #1E3225;
    --border: #dcd7d1;
    --shadow: 0 4px 24px rgba(35,56,43,0.08);
    --shadow-lg: 0 12px 48px rgba(35,56,43,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1240px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.7; background: var(--bg); -webkit-font-smoothing: antialiased; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--tertiary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { color: var(--secondary); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; font-size: 1.05rem; }
.section-label { display: inline-block; background: var(--alt); color: var(--primary); padding: 6px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1rem; }
.section-title { margin-bottom: 0.5rem; }
.section-subtitle { color: var(--text-light); font-size: 1.1rem; max-width: 600px; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }

/* --- Top Bar --- */
.top-bar { background: var(--secondary); color: #c5c5c5; font-size: 0.82rem; padding: 10px 0; position: relative; z-index: 200; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.top-bar-info { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-info span { display: inline-flex; align-items: center; gap: 6px; }
.top-bar-info .icon, .top-bar-phone .icon { width: 14px; height: 14px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.top-bar-phone { color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: color var(--transition); }
.top-bar-phone:hover { color: #fff; }

/* --- Header --- */
.site-header { background: var(--bg); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 var(--border); transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: 0 4px 20px rgba(35,56,43,0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--secondary); font-weight: 500; font-size: 0.95rem; position: relative; padding: 4px 0; }
.nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width var(--transition); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--primary); text-decoration: none; }
.nav a.active { color: var(--primary); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: all var(--transition); border: none; cursor: pointer; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--secondary); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(45,67,55,0.3); }
.btn-accent { background: var(--accent); color: var(--secondary); white-space: nowrap; }
.btn-accent:hover { background: var(--tertiary); color: var(--secondary); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 10px; }

/* --- Mobile Menu --- */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--secondary); margin: 6px 0; transition: all var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Hero --- */
.hero { background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%); color: #fff; padding: 100px 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(250,203,110,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.2rem; margin-bottom: 2rem; max-width: 560px; }
.nav a.btn { padding: 10px 20px; font-size: 0.9rem; white-space: nowrap; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-image { position: relative; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-badge { position: absolute; bottom: -16px; left: -16px; background: var(--accent); color: var(--secondary); padding: 14px 20px; border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; box-shadow: var(--shadow); }
.hero-float { position: absolute; top: -12px; right: -12px; background: #fff; padding: 12px 16px; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--secondary); }

/* --- Page Hero (inner pages) --- */
.page-hero { background: linear-gradient(135deg, var(--secondary), var(--primary)); color: #fff; padding: 60px 0; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); justify-content: center; margin-bottom: 1rem; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: #fff; text-decoration: none; }

/* --- Cards --- */
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-body { padding: 28px; }
.card-icon { width: 52px; height: 52px; background: var(--alt); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon .icon { width: 26px; height: 26px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 a { color: var(--secondary); }
.card h3 a:hover { color: var(--primary); text-decoration: none; }
.card p { color: var(--text-light); font-size: 0.95rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-top: 12px; transition: all var(--transition); }
.card-link:hover { color: var(--tertiary); gap: 10px; text-decoration: none; }
.card-image { height: 200px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.card:hover .card-image img { transform: scale(1.05); }

/* --- Stats --- */
.stats { background: var(--secondary); color: #fff; padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item h3 { color: var(--accent); font-size: 2.5rem; margin-bottom: 4px; }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all var(--transition); }
.testimonial:hover { box-shadow: var(--shadow); }
.testimonial-text { font-style: italic; color: var(--text); margin-bottom: 20px; line-height: 1.7; }
.testimonial-text::before { content: '"'; font-size: 2rem; color: var(--accent); line-height: 1; display: block; margin-bottom: 8px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--alt); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: 1rem; }
.testimonial-name { font-weight: 600; color: var(--secondary); font-size: 0.9rem; }
.testimonial-role { color: var(--text-light); font-size: 0.8rem; }
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }

/* --- Process Steps --- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px; background: var(--border); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 72px; height: 72px; border-radius: 50%; background: var(--accent); color: var(--secondary); font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 4px solid var(--bg); box-shadow: var(--shadow); }
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--text-light); font-size: 0.9rem; }

/* --- FAQ --- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: all var(--transition); }
.faq-item:hover { border-color: var(--primary); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 600; color: var(--secondary); background: var(--bg); border: none; width: 100%; text-align: left; font-size: 1rem; font-family: inherit; }
.faq-question:hover { color: var(--primary); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); }
.faq-item.active .faq-toggle { background: var(--accent); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text); font-size: 0.95rem; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; }

/* --- CTA Section --- */
.cta-section { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -20%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(250,203,110,0.06) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { color: #fff; margin-bottom: 0.75rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 2rem; position: relative; }

/* --- Footer --- */
.site-footer { background: var(--secondary); color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-contact { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 0.85rem; }
.footer-contact .icon { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.footer-contact a { color: var(--accent); }
.footer-contact a:hover { color: #fff; }
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color var(--transition); display: block; padding: 4px 0; }
.footer-col a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom { margin-top: 48px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.82rem; }
.footer-bottom a { color: var(--accent); }

/* --- Blog --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card .card-body { padding: 24px; }
.blog-card .date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
.blog-card .category { display: inline-block; background: var(--accent); color: var(--secondary); padding: 3px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; margin-bottom: 12px; }
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.sidebar-section { background: var(--alt); border-radius: var(--radius); padding: 28px; margin-bottom: 24px; }
.sidebar-section h3 { font-size: 1.1rem; margin-bottom: 16px; }
.sidebar-section a { display: block; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 0.9rem; }
.sidebar-section a:last-child { border-bottom: none; }
.sidebar-section a:hover { color: var(--primary); text-decoration: none; }
.sidebar-cta { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border-radius: var(--radius); padding: 32px; text-align: center; }
.sidebar-cta h3 { color: var(--accent); }
.sidebar-cta p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 16px; }

/* --- Blog Post --- */
.post-content { max-width: 760px; margin: 0 auto; }
.post-content h2 { margin-top: 48px; }
.post-content h3 { margin-top: 36px; }
.post-content ul, .post-content ol { margin: 0 0 1rem 1.5rem; }
.post-content li { margin-bottom: 8px; list-style: disc; }
.post-content ol li { list-style: decimal; }
.post-content blockquote { border-left: 4px solid var(--accent); background: var(--alt); padding: 20px 28px; margin: 24px 0; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; }
.post-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; gap: 8px; flex-wrap: wrap; }
.post-tags span { background: var(--alt); color: var(--primary); padding: 5px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; }
.post-cta { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; margin: 48px 0; }
.post-cta h3 { color: var(--accent); font-size: 1.5rem; margin-bottom: 12px; }
.post-cta p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

/* --- Team --- */
.team-card { text-align: center; }
.team-card .team-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 4px solid var(--alt); }
.team-card h3 { margin-bottom: 4px; }
.team-card p { color: var(--text-light); font-size: 0.9rem; }

/* --- Contact Form --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--secondary); margin-bottom: 6px; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 0.95rem; transition: border-color var(--transition); background: var(--bg); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(250,203,110,0.2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* --- Newsletter --- */
.newsletter { background: var(--alt); border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; gap: 12px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 2px solid var(--border); border-radius: 8px; font-size: 1rem; font-family: inherit; background: var(--bg); }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* --- Trust Badges --- */
.trust-badges { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; padding: 32px 0; }
.trust-badge { display: flex; align-items: center; gap: 10px; color: var(--text-light); font-size: 0.9rem; }
.trust-badge .icon { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4, .stats-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .blog-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    section { padding: 56px 0; }
    .nav { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--bg); flex-direction: column; align-items: flex-start; padding: 80px 32px 32px; box-shadow: -4px 0 24px rgba(0,0,0,0.1); z-index: 150; gap: 0; }
    .nav.open { display: flex; }
    .nav a { padding: 14px 0; font-size: 1.05rem; width: 100%; border-bottom: 1px solid var(--border); }
    .menu-toggle { display: block; z-index: 200; }
    .grid-2, .grid-3, .grid-4, .stats-grid, .process-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-grid { grid-template-columns: 1fr; }
    .hero { padding: 64px 0; }
    .process-grid::before { display: none; }
    .newsletter-form { flex-direction: column; }
    .top-bar-info { gap: 12px; }
    /* Mobile fixes */
    .hero .btn-lg { display: block; width: 100%; text-align: center; margin: 0 0 12px 0; }
    .cta-section .btn-lg { display: block; width: 100%; text-align: center; margin: 8px 0 !important; }
    .cta-section .btn { margin-left: 0 !important; }
    section { padding: 48px 0; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .page-hero { padding: 40px 0; }
    .page-hero h1 { font-size: 1.6rem; }
    .page-hero p { font-size: 0.95rem; }
    .card-body { padding: 20px; }
    .testimonial { padding: 20px; }
    .newsletter { padding: 32px 20px; }
    .form-progress { flex-wrap: wrap; gap: 4px; }
    .form-progress-line { width: 24px; }
    .form-progress-step { font-size: 0.7rem; }
    .form-progress-step .step-circle { width: 24px; height: 24px; font-size: 0.7rem; }
    .trust-badges { gap: 16px; }
    .trust-badge { font-size: 0.78rem; }
    .trust-badge svg { width: 20px; height: 20px; }
    .top-bar-info span { font-size: 0.72rem; }
    .insurance-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .insurance-item { padding: 20px 12px; }
    .insurance-item svg { width: 28px; height: 28px; }
    .insurance-item h4 { font-size: 0.85rem; }
    .housing-card-images { height: 180px; }
    .housing-card-actions { flex-direction: column; }
    .housing-card-actions .btn { width: 100%; text-align: center; }
    .reentry-pillars { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .reentry-pillar { padding: 20px 12px; }
    .blog-layout { grid-template-columns: 1fr; }
    .sidebar-section, .sidebar-cta { padding: 20px; }
    .team-card .team-photo { width: 100px; height: 100px; }
    .footer-brand img { height: 32px; }
    .footer-bottom p { font-size: 0.72rem; }
    body { font-size: 15px; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.1rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .grid-2 { gap: 24px; }
    .stat-item h3 { font-size: 1.8rem; }
    .top-bar { font-size: 0.72rem; padding: 6px 0; }
    .top-bar-inner { flex-direction: column; gap: 4px; }
    .top-bar-info { flex-direction: column; gap: 4px; align-items: flex-start; }
    .trust-badges { flex-direction: column; align-items: flex-start; gap: 10px; }
    .insurance-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .housing-filters { gap: 6px; }
    .housing-filter { padding: 8px 16px; font-size: 0.8rem; }
    .reentry-pillars { grid-template-columns: 1fr; }
    .form-grid { gap: 12px; }
    .form-group input, .form-group textarea, .form-group select { padding: 10px 12px; }
}

/* --- Green accent cards --- */
.card-green { background: var(--green-light); border-color: var(--green-mid); }
.card-green:hover { background: #fff; border-color: var(--accent); }

/* --- Section dividers --- */
.divider { width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin: 0 auto 24px; }
/* --- Nav button fix --- */
.nav a.btn-accent { padding: 10px 22px; font-size: 0.88rem; white-space: nowrap; letter-spacing: 0.01em; }
.hero .btn { margin-right: 12px; margin-bottom: 12px; white-space: nowrap; }

/* --- Banners --- */
.banner { position: relative; overflow: hidden; padding: 60px 0; }
.banner-green { background: linear-gradient(135deg, var(--primary) 0%, #3A5A4A 50%, var(--secondary) 100%); color: #fff; }
.banner-green::before { content: ''; position: absolute; top: -50%; right: -10%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(250,203,110,0.1) 0%, transparent 60%); pointer-events: none; }
.banner-accent { background: linear-gradient(135deg, var(--accent) 0%, #F0D98A 50%, var(--tertiary) 100%); color: var(--secondary); }
.banner-accent::before { content: ''; position: absolute; top: -30%; left: -10%; width: 40%; height: 160%; background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 50%); pointer-events: none; }
.banner-light { background: var(--green-light); }
.banner-pattern { background-image: radial-gradient(circle at 20% 80%, rgba(45,67,55,0.06) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(250,203,110,0.06) 0%, transparent 50%); }
.banner h2, .banner h3 { position: relative; z-index: 1; }
.banner p { position: relative; z-index: 1; }
.banner .btn { position: relative; z-index: 1; }
