/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-deeper: #1e3a8a;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: background var(--transition);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo h2 { color: var(--blue); font-weight: 700; font-size: 1.35rem; margin: 0; }
.nav-subtitle { color: var(--gray-500); font-size: .8rem; font-weight: 400; }

.nav-menu { display: flex; list-style: none; align-items: center; gap: 1.75rem; }

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: .95rem;
    transition: color var(--transition);
    position: relative;
}
.nav-link:hover { color: var(--blue); text-decoration: none; }
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--blue);
    transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }

.donate-btn {
    background: var(--red);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: .9rem;
    transition: all var(--transition);
}
.donate-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 4px; }
.hamburger span { width: 22px; height: 2.5px; background: var(--gray-700); transition: .3s; border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1.4;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,99,235,.35); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--gray-700); border-color: var(--gray-300); }
.btn-outline:hover { background: var(--gray-800); color: var(--white); border-color: var(--gray-800); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-dark) 50%, #3b82f6 100%);
    overflow: hidden;
    padding-top: 64px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .75rem;
    line-height: 1.05;
    letter-spacing: -.02em;
}
.for-congress { font-size: 2.2rem; font-weight: 400; opacity: .85; }

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,.8);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 520px;
}

.hero-buttons { display: flex; gap: .75rem; flex-wrap: wrap; }

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 48px rgba(0,0,0,.3);
    border: 3px solid rgba(255,255,255,.15);
}

/* Stats bar */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat { text-align: center; }
.hero-stat-number { font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; }

/* ===== MEET JAN ===== */
.section { padding: 72px 0; }
.section-gray { background: var(--gray-50); }
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--gray-900);
    letter-spacing: -.01em;
}

.meet-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}
.meet-text .lead { font-size: 1.15rem; font-weight: 500; color: var(--gray-700); margin-bottom: 1.25rem; line-height: 1.7; }
.meet-text p { font-size: 1rem; margin-bottom: 1rem; color: var(--gray-600); line-height: 1.7; }
.meet-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ===== CAMPAIGN BANNER ===== */
.campaign-banner { padding: 48px 0; background: var(--gray-50); }
.banner-content { text-align: center; max-width: 800px; margin: 0 auto; }
.banner-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}
.banner-content img:hover { transform: scale(1.01); }

/* ===== ISSUES CAROUSEL ===== */
.issues-section { padding: 72px 0; background: var(--gray-900); color: var(--white); overflow: hidden; }
.issues-section .section-title { color: var(--white); margin-bottom: 1rem; }
.issues-subtitle {
    text-align: center;
    color: var(--gray-400);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-wrapper { position: relative; padding: 0 60px; }

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
    cursor: grab;
}
.carousel-track:active { cursor: grabbing; }
.carousel-track.dragging { transition: none; }

.issue-card {
    flex: 0 0 340px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}
.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #60a5fa);
    opacity: 0;
    transition: opacity .3s;
}
.issue-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); border-color: rgba(255,255,255,.2); }
.issue-card:hover::before { opacity: 1; }

.issue-icon { font-size: 2rem; margin-bottom: 1rem; }
.issue-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .75rem; color: var(--white); }
.issue-card p { color: rgba(255,255,255,.65); line-height: 1.6; font-size: .9rem; margin-bottom: .5rem; }
.issue-card a { color: #93c5fd; font-weight: 500; font-size: .9rem; }
.issue-card a:hover { color: #bfdbfe; }

/* Carousel nav */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(8px);
}
.carousel-btn:hover { background: rgba(255,255,255,.2); }
.carousel-btn--prev { left: 8px; }
.carousel-btn--next { right: 8px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.carousel-dot.active { background: var(--white); width: 24px; border-radius: 4px; }

/* ===== DECISION FRAMEWORK ===== */
.decision-criteria { max-width: 800px; margin: 0 auto; }
.criteria-intro { font-size: 1.05rem; color: var(--gray-600); text-align: center; margin-bottom: 2rem; line-height: 1.7; }

.criteria-list { display: flex; flex-direction: column; gap: 0; }

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-bottom: none;
    transition: background var(--transition);
    cursor: pointer;
}
.criteria-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.criteria-item:last-child { border-bottom: 1px solid var(--gray-200); border-radius: 0 0 var(--radius) var(--radius); }
.criteria-item:hover { background: var(--gray-50); }

.criteria-number {
    background: var(--blue);
    color: var(--white);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.criteria-content h3 { color: var(--gray-800); font-size: 1.1rem; font-weight: 600; margin-bottom: .35rem; }
.criteria-content p { color: var(--gray-600); line-height: 1.6; font-size: .95rem; margin-bottom: .5rem; }
.criteria-content p:last-child { margin-bottom: 0; }

.criteria-concerns {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 1rem;
    margin-top: .75rem;
}
.criteria-concerns p { color: var(--gray-600); font-weight: 600; margin-bottom: .5rem; font-size: .9rem; }
.criteria-concerns ul { margin: 0; padding-left: 1.25rem; }
.criteria-concerns li { color: var(--gray-500); margin-bottom: .35rem; line-height: 1.5; font-size: .9rem; }

/* ===== GET INVOLVED ===== */
.involvement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.involvement-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    transition: all var(--transition);
}
.involvement-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.involvement-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: .75rem; color: var(--gray-800); }
.involvement-card p { color: var(--gray-500); margin-bottom: 1.5rem; line-height: 1.6; font-size: .95rem; flex-grow: 1; }

.social-links { display: flex; justify-content: center; gap: .75rem; margin-top: .75rem; }
.social-link {
    color: var(--blue);
    padding: 8px 14px;
    border: 1px solid var(--blue);
    border-radius: 6px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    text-decoration: none !important;
}
.social-link:hover { background: var(--blue); color: var(--white); }

/* ===== FOOTER ===== */
.footer { background: var(--gray-900); color: var(--white); padding: 2.5rem 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 1.5rem; }
.footer-info h3 { color: var(--blue); margin-bottom: .75rem; font-size: 1.1rem; }
.footer-info p, .footer-contact p { margin-bottom: .35rem; color: var(--gray-400); font-size: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; text-align: center; }
.footer-bottom p { color: var(--gray-500); margin-bottom: .25rem; font-size: .85rem; }
.disclaimer { font-style: italic; }

/* ===== MODALS ===== */
.modal {
    display: none !important;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(6px);
}
.modal.show { display: block !important; }

.modal-content {
    background: var(--white);
    margin: 3vh auto;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 780px;
    max-height: 94vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: modalIn .3s ease-out;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(-30px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h2 { margin: 0; font-size: 1.3rem; font-weight: 600; }

.close {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity var(--transition);
}
.close:hover { opacity: .7; }

.modal-body {
    padding: 1.75rem;
    max-height: calc(94vh - 80px);
    overflow-y: auto;
    line-height: 1.6;
}
.modal-body h3 { color: var(--gray-800); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.25rem; border-bottom: 2px solid var(--gray-200); padding-bottom: .4rem; }
.modal-body h4 { color: var(--gray-700); font-size: 1.2rem; font-weight: 600; margin: 1.75rem 0 .75rem; }
.modal-body h5 { color: var(--blue); font-size: 1.05rem; font-weight: 600; margin: 1.25rem 0 .75rem; }
.modal-body p { color: var(--gray-600); margin-bottom: .85rem; text-align: left; line-height: 1.7; }
.modal-body ul, .modal-body ol { margin-left: 1.25rem; margin-bottom: 1rem; }
.modal-body li { color: var(--gray-600); margin-bottom: .4rem; line-height: 1.6; }

/* Modal section blocks */
.concern-section { background: var(--gray-50); padding: 1.25rem; border-radius: 8px; margin: 1.25rem 0; border-left: 3px solid var(--blue); }
.policy-list { margin: .75rem 0; padding-left: 1.25rem; }
.policy-list li { margin-bottom: .75rem; color: var(--gray-700); }

.quote { background: var(--gray-50); border-left: 3px solid var(--blue); padding: 1.25rem; margin: 1.5rem 0; font-style: italic; font-size: 1rem; line-height: 1.7; }
.quote cite { display: block; text-align: right; margin-top: .75rem; font-weight: 600; color: var(--gray-700); font-size: .9rem; }

.warning-signs { background: #fef9c3; border: 1px solid #fbbf24; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.warning-signs h4 { color: #92400e; text-align: center; margin-bottom: 1rem; }
.warning-item { margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid #fde68a; }
.warning-item:last-child { border-bottom: none; margin-bottom: 0; }
.warning-item h5 { color: #92400e; font-size: 1rem; margin-bottom: .35rem; }
.warning-item p { color: #78350f; }

.hope-section { background: #ecfdf5; border: 1px solid #6ee7b7; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.hope-section h4 { color: #047857; text-align: center; margin-bottom: 1rem; }
.hope-section p { color: #065f46; }
.hope-section ul { margin-left: 1.25rem; }
.hope-section li { color: #065f46; margin-bottom: .4rem; }

.budget-priorities { background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.budget-priorities h4 { color: #dc2626; text-align: center; margin-bottom: 1rem; }
.budget-item { margin-bottom: 1rem; padding: .75rem; background: var(--white); border-radius: 6px; border-left: 3px solid #dc2626; }
.budget-item h5 { color: #dc2626; margin-bottom: .35rem; }
.budget-item p { color: #7f1d1d; }
.budget-conclusion { font-weight: 600; color: #dc2626; text-align: center; margin-top: 1.25rem; padding: 1rem; background: var(--white); border-radius: 6px; }

.economic-impacts { background: #fef9c3; border: 1px solid #fbbf24; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.economic-impacts h4 { color: #92400e; text-align: center; margin-bottom: 1rem; }
.impact-item { margin-bottom: 1rem; padding: .75rem; background: var(--white); border-radius: 6px; border-left: 3px solid #f59e0b; }
.impact-item h5 { color: #92400e; margin-bottom: .35rem; font-size: 1rem; }
.impact-item p { color: #78350f; }

.economic-evidence { background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.evidence-item { margin-bottom: 1rem; padding: .75rem; background: var(--white); border-radius: 6px; border-left: 3px solid #ef4444; }
.evidence-item h5 { color: #dc2626; margin-bottom: .35rem; font-size: 1rem; }
.evidence-item p { color: #7f1d1d; }

.solution-section { background: #ecfdf5; border: 1px solid #6ee7b7; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.solution-section h4 { color: #047857; margin-bottom: 1rem; }
.solution-section p { color: #065f46; }
.solution-section ul { margin-left: 1.25rem; margin-bottom: .75rem; }
.solution-section li { color: #065f46; margin-bottom: .35rem; }

.plan-item { margin-bottom: 1.25rem; padding: 1rem; background: var(--white); border-radius: 6px; border-left: 3px solid #10b981; }
.plan-item h5 { color: #047857; margin-bottom: .5rem; font-size: 1rem; }
.plan-item p { color: #065f46; margin-bottom: .5rem; }
.plan-item ul { margin-left: 1.25rem; }
.plan-item li { color: #065f46; margin-bottom: .35rem; }

.debt-facts { background: #fef9c3; border: 1px solid #fbbf24; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.debt-facts h4 { color: #92400e; text-align: center; margin-bottom: 1rem; }
.fact-highlight { background: var(--white); padding: 1rem; border-radius: 6px; border-left: 3px solid #f59e0b; }
.fact-highlight p { color: #78350f; margin-bottom: .75rem; }
.fact-highlight a { color: var(--blue); font-weight: 500; }

.debt-consequences { background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.debt-consequences h4 { color: #dc2626; margin-bottom: 1rem; }
.debt-consequences > p { color: #7f1d1d; margin-bottom: 1rem; }
.consequence-item { margin-bottom: 1.25rem; padding: 1rem; background: var(--white); border-radius: 6px; border-left: 3px solid #ef4444; }
.consequence-item:last-child { margin-bottom: 0; }
.consequence-item h5 { color: #dc2626; margin-bottom: .5rem; font-size: 1rem; }
.consequence-item p { color: #7f1d1d; margin-bottom: .5rem; }
.consequence-item ul { margin-left: 1.25rem; color: #7f1d1d; }
.consequence-item li { margin-bottom: .35rem; line-height: 1.5; }
.consequence-item ul ul { margin-top: .35rem; margin-left: 1rem; }
.consequence-item em { font-style: italic; color: #991b1b; }

.urgency-section { background: #fff7ed; border: 1px solid #fb923c; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.urgency-section h4 { color: #c2410c; margin-bottom: 1rem; text-align: center; }
.urgency-section p { color: #7c2d12; margin-bottom: .75rem; }

.immigration-facts { background: #fef9c3; border: 1px solid #fbbf24; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.fact-item { margin-bottom: 1rem; padding: .75rem; background: var(--white); border-radius: 6px; border-left: 3px solid #f59e0b; }
.fact-item:last-child { margin-bottom: 0; }
.fact-item h5 { color: #92400e; margin-bottom: .35rem; font-size: 1rem; }
.fact-item p { color: #78350f; }

.position-statement { background: #e0f2fe; border: 1px solid #7dd3fc; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.position-statement h4 { color: #0c4a6e; margin-bottom: 1rem; }
.position-statement p { color: #0c4a6e; }

.belief-item { margin-bottom: 1rem; padding: 1rem; background: var(--white); border-radius: 6px; border-left: 3px solid #0284c7; }
.belief-item h5 { color: #0c4a6e; margin-bottom: .5rem; font-size: 1rem; }
.belief-item p { color: #0f172a; }

.call-to-action { background: #ecfdf5; border: 1px solid #6ee7b7; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; text-align: center; }
.call-to-action h4 { color: #047857; margin-bottom: .75rem; }

.healthcare-impacts { background: #fef9c3; border: 1px solid #fbbf24; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.healthcare-impacts ul { margin: 0; padding-left: 1.25rem; }
.healthcare-impacts li { color: #78350f; margin-bottom: .5rem; line-height: 1.5; }

.real-story { background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.real-story h4 { color: #dc2626; margin-bottom: 1rem; }
.real-story p { color: #7f1d1d; margin-bottom: .75rem; }

.medical-debt-crisis { background: #fff1f2; border: 1px solid #fda4af; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.medical-debt-crisis h4 { color: #be123c; margin-bottom: 1rem; }
.medical-debt-crisis p { color: #881337; margin-bottom: .75rem; }

.single-payer-solution { background: #ecfdf5; border: 1px solid #6ee7b7; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.single-payer-solution h4, .single-payer-solution h5 { color: #047857; margin-bottom: 1rem; }
.single-payer-solution p { color: #065f46; margin-bottom: .75rem; }

.advantage-item { margin-bottom: 1rem; padding: .75rem; background: var(--white); border-radius: 6px; border-left: 3px solid #10b981; }
.advantage-item h6 { color: #047857; margin-bottom: .35rem; font-size: .95rem; font-weight: 600; }
.advantage-item p { color: #065f46; margin: 0; }

.immediate-actions { background: #eff6ff; border: 1px solid #93c5fd; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.immediate-actions h4 { color: #1d4ed8; margin-bottom: 1rem; }
.immediate-actions > p { color: #1e40af; margin-bottom: 1rem; }

.action-item { margin-bottom: 1.25rem; padding: 1rem; background: var(--white); border-radius: 6px; border-left: 3px solid #3b82f6; }
.action-item:last-child { margin-bottom: 0; }
.action-item h5 { color: #1d4ed8; margin-bottom: .5rem; font-size: 1rem; }
.action-item p { color: #1e40af; margin-bottom: .5rem; }
.action-item p:last-child { margin-bottom: 0; }

.vision-section { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); border: 1px solid #7dd3fc; border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; text-align: center; }
.vision-section h4 { color: #0c4a6e; margin-bottom: 1rem; }
.vision-section p { color: #0c4a6e; text-align: center; font-size: 1.05rem; margin-bottom: .75rem; }

/* Form Styling */
.campaign-form { max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: .35rem; font-weight: 500; color: var(--gray-700); font-size: .95rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: .65rem .75rem; border: 1.5px solid var(--gray-300); border-radius: 6px; font-size: .95rem; transition: border-color var(--transition); font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-group input[type="checkbox"] { width: auto; margin-right: .4rem; }
.form-actions { display: flex; gap: .75rem; justify-content: center; margin-top: 1.5rem; }
.form-success { text-align: center; padding: 1.5rem; }
.form-success h3 { color: #047857; margin-bottom: .75rem; }
.form-success p { color: #065f46; margin-bottom: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .issue-card { flex: 0 0 300px; min-height: 280px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; left: -100%; top: 64px;
        flex-direction: column; background: var(--white);
        width: 100%; text-align: center;
        transition: .3s; box-shadow: var(--shadow-lg);
        padding: 1.5rem 0; gap: 1.25rem;
    }
    .nav-menu.active { left: 0; }

    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding: 40px 24px; }
    .hero-text h1 { font-size: 2.6rem; }
    .for-congress { font-size: 1.8rem; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { max-width: 320px; margin: 0 auto; }

    .meet-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .meet-image { max-width: 280px; margin: 0 auto; }

    .carousel-wrapper { padding: 0 48px; }
    .issue-card { flex: 0 0 280px; min-height: 260px; padding: 1.5rem; }

    .involvement-grid { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; text-align: center; }

    .section { padding: 56px 0; }
    .section-title { font-size: 1.75rem; }

    .criteria-item { flex-direction: column; gap: .75rem; }

    .modal-content { width: 95%; margin: 2vh auto; }
    .modal-body { padding: 1.25rem; }
    .modal-body h3 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2.1rem; }
    .for-congress { font-size: 1.5rem; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
    .carousel-wrapper { padding: 0 40px; }
    .issue-card { flex: 0 0 260px; }
    .carousel-btn { width: 36px; height: 36px; font-size: 1rem; }
    .form-actions { flex-direction: column; }
    .form-actions .btn { width: 100%; }
}

/* Issue link styles (consolidated) */
.socialsecurity-link,
.democracy-link,
.economy-link,
.immigration-link,
.ai-link,
.debt-link,
.healthcare-link {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 500;
}
.socialsecurity-link:hover,
.democracy-link:hover,
.economy-link:hover,
.immigration-link:hover,
.ai-link:hover,
.debt-link:hover,
.healthcare-link:hover {
    color: #bfdbfe;
    text-decoration: underline;
}

/* Note style */
.note { font-style: italic; color: var(--gray-500); text-align: center; margin-top: 1.5rem; padding-top: .75rem; border-top: 1px solid var(--gray-200); }
