/*
Theme Name: TalkEnsure Neon 5.0
Theme URI: https://talkensure.com
Author: TalkEnsure
Description: Professional insurance website — neon green dark theme. IUL, Term, Whole Life, Final Expense, Mortgage Protection, Medicare. Full funnel pages with lead capture.
Version: 5.0.0
Text Domain: talkensure-neon
*/

:root {
  --bg-base:      #050508;
  --bg-card:      #0a0c10;
  --bg-elevated:  #0f1118;
  --green:        #39ff14;
  --green-light:  #6fff4a;
  --green-dark:   #1db80a;
  --teal:         #00e5c8;
  --text-primary: #f0f0ee;
  --text-muted:   #7a8090;
  --border:       rgba(57,255,20,0.14);
  --border-dim:   rgba(57,255,20,0.07);
  --radius:       10px;
  --radius-lg:    18px;
  --shadow:       0 4px 40px rgba(0,0,0,0.6);
  --glow:         0 0 30px rgba(57,255,20,0.18);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --max-w:        1200px;
  --transition:   0.28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg-base); color: var(--text-primary); font-family: var(--font-body); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-light); }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; color: var(--text-primary); }
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p  { color: var(--text-muted); margin-bottom: 1rem; }
em { font-style: italic; color: var(--green-light); }
strong { color: var(--text-primary); }

.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 130px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.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; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 6px; font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; border: none; transition: all var(--transition); text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--green); color: #050508; box-shadow: 0 0 24px rgba(57,255,20,0.4), 0 0 60px rgba(57,255,20,0.12); }
.btn-primary:hover { background: var(--green-light); color: #050508; transform: translateY(-2px); box-shadow: 0 0 40px rgba(57,255,20,0.6), 0 0 80px rgba(57,255,20,0.22); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); box-shadow: 0 0 12px rgba(57,255,20,0.1); }
.btn-outline:hover { background: rgba(57,255,20,0.07); color: var(--green-light); border-color: var(--green-light); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #050508; box-shadow: 0 0 20px rgba(0,229,200,0.3); }
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(0,229,200,0.5); color: #050508; }
.btn-lg  { padding: 18px 44px; font-size: 0.98rem; }
.btn-sm  { padding: 10px 20px; font-size: 0.82rem; }
.btn-xl  { padding: 22px 56px; font-size: 1.05rem; }

/* NAVIGATION */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(5,5,8,0.85); backdrop-filter: blur(20px) saturate(1.5); border-bottom: 1px solid var(--border); transition: all var(--transition); }
.site-header.scrolled { background: rgba(5,5,8,0.97); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.55rem; font-weight: 700; color: var(--text-primary) !important; text-decoration: none !important; }
.logo-img { width: 40px; height: 40px; object-fit: contain;  }
.logo span { color: var(--green); }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: block; padding: 8px 12px; border-radius: 6px; font-size: 0.84rem; font-weight: 500; letter-spacing: 0.03em; color: #8a90a8; text-transform: uppercase; transition: all var(--transition); }
.nav-menu > li > a:hover, .nav-menu > li.current-menu-item > a { color: var(--green); background: rgba(57,255,20,0.07); }
.nav-dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); min-width: 230px; padding: 8px; opacity: 0; visibility: hidden; transition: all var(--transition); box-shadow: var(--shadow), var(--glow); }
.nav-menu > li:hover .nav-dropdown { opacity: 1; visibility: visible; }
.nav-dropdown a { display: block; padding: 10px 16px; border-radius: 6px; font-size: 0.87rem; color: var(--text-muted); transition: all var(--transition); }
.nav-dropdown a:hover { color: var(--green); background: rgba(57,255,20,0.07); }
.nav-cta-wrap { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; display: block; }
.mobile-nav { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--bg-base); z-index: 999; padding: 28px 24px; transform: translateX(100%); transition: transform 0.35s ease; overflow-y: auto; border-top: 1px solid var(--border); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--border-dim); font-size: 1.05rem; color: var(--text-primary); font-weight: 500; }
.mobile-nav a:hover { color: var(--green); }
@media (max-width: 968px) { .nav-menu, .nav-cta-wrap .btn:first-child { display: none; } .hamburger { display: flex; } }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 65% 30%, rgba(57,255,20,0.05) 0%, transparent 65%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0,229,200,0.04) 0%, transparent 60%), linear-gradient(180deg, #050508 0%, #080b10 60%, #050508 100%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(57,255,20,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(57,255,20,0.025) 1px, transparent 1px); background-size: 64px 64px; }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(57,255,20,0.07); border: 1px solid rgba(57,255,20,0.22); font-size: 0.77rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 22px; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; flex-shrink: 0; box-shadow: 0 0 8px var(--green); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }
.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: 1.08rem; color: #7a8090; max-width: 560px; margin-bottom: 36px; line-height: 1.8; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stat .num   { font-family: var(--font-heading); font-size: 2.1rem; color: var(--green); font-weight: 700; text-shadow: 0 0 20px rgba(57,255,20,0.35); }
.hero-stat .label { font-size: 0.77rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-image-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 0 60px rgba(57,255,20,0.08), 0 20px 80px rgba(0,0,0,0.6); border: 1px solid var(--border); position: relative; }
.hero-image-wrap::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(57,255,20,0.06) 0%, transparent 50%); pointer-events: none; }
.hero-image-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }

/* PAGE IMAGES */
.page-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); position: relative; box-shadow: 0 8px 48px rgba(0,0,0,0.5); }
.page-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(57,255,20,0.04) 0%, transparent 60%); pointer-events: none; }
.img-feature { height: 360px; }
.img-tall    { height: 480px; }
.img-short   { height: 280px; }
.img-banner  { height: 340px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.img-banner img { width: 100%; height: 100%; object-fit: cover; }

/* CARDS */
.card { background: var(--bg-card); border: 1px solid var(--border-dim); border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition); }
.card:hover { border-color: rgba(57,255,20,0.28); transform: translateY(-4px); box-shadow: var(--shadow), 0 0 28px rgba(57,255,20,0.07); }
.card-icon { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 20px; background: rgba(57,255,20,0.07); border: 1px solid rgba(57,255,20,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.card p  { margin-bottom: 0; font-size: 0.92rem; }
.card-product { background: var(--bg-card); border: 1px solid var(--border-dim); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); display: block; text-decoration: none; }
.card-product:hover { border-color: var(--green); transform: translateY(-6px); box-shadow: 0 12px 48px rgba(57,255,20,0.1), 0 0 28px rgba(57,255,20,0.05); }
.card-product-header { padding: 24px 26px 18px; background: linear-gradient(135deg, rgba(57,255,20,0.04) 0%, transparent 100%); border-bottom: 1px solid var(--border-dim); }
.card-product-header .icon { font-size: 2rem; margin-bottom: 10px; }
.card-product-header h3 { font-size: 1.18rem; color: var(--text-primary); margin-bottom: 6px; }
.card-product-header p  { font-size: 0.85rem; margin: 0; }
.card-product-body { padding: 16px 26px 18px; }
.card-product-body ul li { font-size: 0.86rem; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.03); display: flex; align-items: center; gap: 8px; }
.card-product-body ul li::before { content: '✓'; color: var(--green); font-weight: 700; }
.card-product .card-cta { display: block; margin: 12px 26px 22px; text-align: center; padding: 12px; border-radius: 6px; background: rgba(57,255,20,0.05); border: 1px solid rgba(57,255,20,0.16); font-size: 0.84rem; font-weight: 600; color: var(--green); transition: all var(--transition); text-decoration: none; }
.card-product:hover .card-cta { background: var(--green); color: #050508; }

/* SECTION HEADERS */
.section-header { margin-bottom: 56px; }
.section-header.text-center { text-align: center; }
.eyebrow { display: inline-block; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; padding: 4px 12px; background: rgba(57,255,20,0.07); border-radius: 4px; border-left: 2px solid var(--green); }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.04rem; max-width: 620px; }
.section-header.text-center p { margin: 0 auto; }

/* LEAD FORMS */
.lead-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px; position: relative; overflow: hidden; }
.lead-form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green) 0%, var(--teal) 100%); }
.lead-form-wrap h3 { font-size: 1.7rem; margin-bottom: 6px; }
.lead-form-wrap > p { font-size: 0.94rem; margin-bottom: 26px; }
.form-steps { display: flex; gap: 8px; margin-bottom: 22px; }
.form-step  { flex: 1; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.06); }
.form-step.active { background: var(--green); box-shadow: 0 0 8px rgba(57,255,20,0.4); }
.form-step.done   { background: var(--teal); }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.79rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 15px; border-radius: 8px; background: rgba(255,255,255,0.03); border: 1.5px solid rgba(255,255,255,0.08); color: var(--text-primary); font-family: var(--font-body); font-size: 0.92rem; transition: all var(--transition); outline: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus { border-color: var(--green); background: rgba(57,255,20,0.03); box-shadow: 0 0 0 3px rgba(57,255,20,0.1); }
.form-group input::placeholder { color: rgba(255,255,255,0.2); }
.form-group select option { background: var(--bg-card); color: var(--text-primary); }
.form-submit { width: 100%; margin-top: 6px; }
.sms-consent-notice { margin: 14px 0 12px; font-size: 0.75rem; line-height: 1.65; color: var(--text-muted); padding: 12px 14px; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; background: rgba(255,255,255,0.02); }
.sms-consent-notice strong { color: var(--text-primary); }
.form-trust { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 0.79rem; color: var(--text-muted); justify-content: center; }
.form-success { display: none; text-align: center; padding: 28px 0; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 14px; }
.form-success h4 { color: var(--green); font-size: 1.6rem; margin-bottom: 8px; text-shadow: 0 0 20px rgba(57,255,20,0.3); }

/* TRUST BAR */
.trust-bar { background: var(--bg-elevated); border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim); padding: 22px 0; }
.trust-items { display: flex; gap: 40px; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item  { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text-muted); }
.trust-item strong { color: var(--text-primary); font-weight: 600; }

/* TESTIMONIALS */
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border-dim); border-radius: var(--radius-lg); padding: 32px; position: relative; transition: all var(--transition); }
.testimonial-card:hover { border-color: rgba(57,255,20,0.2); transform: translateY(-3px); }
.testimonial-card::before { content: '"'; position: absolute; top: 12px; left: 22px; font-size: 5rem; color: var(--green); opacity: 0.14; font-family: var(--font-heading); line-height: 1; }
.testimonial-card p { font-size: 0.93rem; line-height: 1.75; margin-bottom: 22px; padding-top: 20px; color: #8a90a8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.88rem; color: #050508; flex-shrink: 0; }
.author-name   { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.author-detail { font-size: 0.79rem; color: var(--text-muted); }
.stars { color: var(--green); font-size: 0.85rem; margin-bottom: 6px; text-shadow: 0 0 8px rgba(57,255,20,0.3); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border-dim); }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-body); font-size: 0.97rem; font-weight: 600; color: var(--text-primary); text-align: left; gap: 16px; transition: color var(--transition); }
.faq-question:hover { color: var(--green); }
.faq-icon { font-size: 1.4rem; color: var(--green); transition: transform 0.3s; flex-shrink: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 20px; font-size: 0.92rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 500px; }

/* AVA BANNER */
.ava-banner { background: linear-gradient(135deg, rgba(57,255,20,0.05) 0%, rgba(0,229,200,0.03) 100%); border: 1px solid rgba(57,255,20,0.16); border-radius: var(--radius-lg); padding: 52px; text-align: center; position: relative; overflow: hidden; }
.ava-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(57,255,20,0.035) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.ava-live-dot { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--green); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.ava-live-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; box-shadow: 0 0 8px var(--green); }
.ava-banner h2 { margin-bottom: 12px; }
.ava-banner p  { font-size: 1rem; max-width: 540px; margin: 0 auto 28px; }

/* COMPARISON TABLE */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { padding: 14px 18px; text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); border-bottom: 1px solid var(--border-dim); }
.compare-table th:first-child { color: var(--green); }
.compare-table td { padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 0.88rem; color: var(--text-muted); }
.compare-table td:first-child { color: var(--text-primary); font-weight: 600; }
.compare-table tr:hover td { background: rgba(57,255,20,0.02); }
.check-yes { color: var(--green); font-weight: 700; }
.check-no  { color: rgba(255,255,255,0.14); }

/* STEPS */
.step-item { display: flex; gap: 22px; margin-bottom: 36px; }
.step-num { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; background: var(--green); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #050508; font-size: 0.95rem; box-shadow: 0 0 20px rgba(57,255,20,0.35); }
.step-content h4 { margin-bottom: 6px; font-size: 1rem; }
.step-content p  { font-size: 0.9rem; margin: 0; }

/* FUNNEL HERO */
.funnel-hero { min-height: 90vh; display: flex; align-items: center; padding-top: 72px; position: relative; overflow: hidden; }
.funnel-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(57,255,20,0.06) 0%, transparent 70%), linear-gradient(180deg, #050508 0%, #080b10 100%); }
.funnel-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.urgency-bar { background: linear-gradient(90deg, rgba(57,255,20,0.09) 0%, rgba(0,229,200,0.06) 100%); border: 1px solid rgba(57,255,20,0.18); border-radius: 8px; padding: 12px 18px; display: flex; align-items: center; gap: 12px; font-size: 0.86rem; margin-bottom: 22px; color: var(--text-muted); }
.urgency-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff6b35; animation: pulse 1.5s infinite; flex-shrink: 0; }
.benefit-check-list { margin: 22px 0; }
.benefit-check-list li { padding: 10px 0; display: flex; align-items: flex-start; gap: 12px; font-size: 0.93rem; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.03); }
.benefit-check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.risk-list { margin: 22px 0; }
.risk-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.03); display: flex; align-items: flex-start; gap: 12px; font-size: 0.93rem; color: var(--text-muted); }
.risk-list li .risk-icon { flex-shrink: 0; margin-top: 2px; }

/* MISC */
.highlight-box { background: linear-gradient(135deg, rgba(57,255,20,0.05) 0%, rgba(57,255,20,0.02) 100%); border: 1px solid rgba(57,255,20,0.16); border-radius: var(--radius); padding: 28px; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border-dim); }
.stat-box { background: var(--bg-card); padding: 36px 24px; text-align: center; }
.stat-box .num   { font-family: var(--font-heading); font-size: 2.6rem; color: var(--green); display: block; font-weight: 700; text-shadow: 0 0 24px rgba(57,255,20,0.35); }
.stat-box .label { font-size: 0.79rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }

/* SCROLL ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.35s; }
.fade-up:nth-child(6) { transition-delay: 0.4s; }

/* FOOTER */
.site-footer { background: var(--bg-card); border-top: 1px solid var(--border-dim); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.75; max-width: 280px; margin-top: 14px; }
.footer-logo-img { width: 44px; height: 44px; object-fit: contain;  }
.footer-col h5 { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border-dim); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: var(--text-muted); transition: all var(--transition); }
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border-dim); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 0.79rem; color: var(--text-muted); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--green); }
.disclaimer { background: rgba(255,255,255,0.015); border-radius: 8px; padding: 16px 20px; font-size: 0.77rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; border-left: 2px solid rgba(57,255,20,0.2); }

/* RESPONSIVE */
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2,1fr); } .footer-grid { grid-template-columns: 1fr 1fr; } .stat-grid { grid-template-columns: repeat(2,1fr); } .funnel-inner { grid-template-columns: 1fr; gap: 48px; } .hero-inner { grid-template-columns: 1fr; } .hero-image-wrap { display: none; } }
@media (max-width: 768px) { .section { padding: 60px 0; } .grid-2,.grid-3 { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .lead-form-wrap { padding: 28px 20px; } .footer-grid { grid-template-columns: 1fr; gap: 32px; } .footer-bottom { flex-direction: column; text-align: center; } .trust-items { gap: 20px; } .ava-banner { padding: 32px 20px; } .hero-cta-group { flex-direction: column; align-items: flex-start; } .stat-grid { grid-template-columns: repeat(2,1fr); } }

/* ── Wide Logo (header/footer) ── */
.logo-wide-img {
  height: 40px; width: auto; object-fit: contain;
  
  transition: filter 0.3s;
}
.logo-link:hover .logo-wide-img {
  
}
