/*
Theme Name: PolicyNow
Theme URI: https://policynow.org
Author: PolicyNow Team
Author URI: https://policynow.org
Description: Custom WordPress theme for PolicyNow.org - Citizen Legislative Platform. Features breaking news ticker, ICE accountability tracker, automated content, and civic engagement tools.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: policynow
Tags: civic, government, news, one-column, custom-colors, custom-menu, featured-images, full-width-template, theme-options

PolicyNow WordPress Theme
Copyright 2026 PolicyNow.org
*/

/* ========================================
   CSS VARIABLES - BRAND COLORS
======================================== */
:root {
    --navy: #0A1628;
    --blue: #002868;
    --red: #BF0A30;
    --white: #FFFFFF;
    --cream: #F5F1E8;
    --gold: #C9A227;
    --green: #22C55E;
    --orange: #F59E0B;
    --dark-red: #8B0000;
    --light-red: #DC2626;
    --light-blue: #0044aa;
    --dark-blue: #001133;
    
    /* Typography */
    --font-header: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-quote: 'Libre Baskerville', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-xxl: 60px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.4em; }
h5 { font-size: 1.2em; }
h6 { font-size: 1em; }

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

blockquote {
    font-family: var(--font-quote);
    font-style: italic;
    font-size: 1.2em;
    border-left: 4px solid var(--gold);
    padding-left: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    color: var(--cream);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes sosBackgroundFlash {
    0%, 2% { background-color: var(--light-blue); }
    2%, 4% { background-color: var(--dark-blue); }
    4%, 6% { background-color: var(--light-blue); }
    6%, 8% { background-color: var(--dark-blue); }
    8%, 10% { background-color: var(--light-blue); }
    10%, 14% { background-color: var(--dark-blue); }
    14%, 22% { background-color: #0055cc; }
    22%, 24% { background-color: var(--dark-blue); }
    24%, 32% { background-color: #0055cc; }
    32%, 34% { background-color: var(--dark-blue); }
    34%, 42% { background-color: #0055cc; }
    42%, 46% { background-color: var(--dark-blue); }
    46%, 48% { background-color: var(--light-blue); }
    48%, 50% { background-color: var(--dark-blue); }
    50%, 52% { background-color: var(--light-blue); }
    52%, 54% { background-color: var(--dark-blue); }
    54%, 56% { background-color: var(--light-blue); }
    56%, 100% { background-color: var(--dark-blue); }
}

@keyframes starGlow {
    0%, 100% { text-shadow: 0 0 5px #fff, 0 0 10px #fff; }
    50% { text-shadow: 0 0 20px #fff, 0 0 30px #0066ff, 0 0 40px #0066ff; }
}

@keyframes breakingPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes urgentPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(191, 10, 48, 0.5); }
    50% { box-shadow: 0 0 40px rgba(191, 10, 48, 0.8); }
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   BREAKING NEWS TICKER
======================================== */
.ticker-container {
    background: linear-gradient(90deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    border-bottom: 3px solid var(--gold);
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ticker-label {
    background: var(--red);
    color: var(--white);
    padding: 12px 25px;
    font-weight: 700;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breaking-tag {
    background: var(--white);
    color: var(--red);
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 800;
    font-size: 0.85em;
    animation: breakingPulse 1s infinite;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

.ticker-track {
    display: flex;
    animation: tickerScroll 35s linear infinite;
}

.ticker-container:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.ticker-level {
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
}

.ticker-level.breaking {
    background: var(--red);
    color: var(--white);
    animation: breakingPulse 1s infinite;
}

.ticker-level.critical {
    background: var(--light-red);
    color: var(--white);
}

.ticker-level.warning {
    background: var(--orange);
    color: #000;
}

.ticker-level.active {
    background: var(--blue);
    color: var(--white);
}

.ticker-text {
    font-size: 0.95em;
    color: var(--cream);
}

.ticker-text strong {
    color: var(--gold);
}

/* ========================================
   NAVIGATION
======================================== */
.site-header {
    background: var(--blue);
    border-bottom: 3px solid var(--red);
}

.site-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: var(--font-header);
    font-size: 1.8em;
    color: var(--white);
    text-decoration: none;
}

.site-logo span {
    color: var(--red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.nav-menu a:hover,
.nav-menu a.current {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5em;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    background: linear-gradient(180deg, var(--blue) 0%, var(--navy) 100%);
    text-align: center;
    padding: 60px 20px 50px;
    border-bottom: 4px solid var(--red);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4em;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    margin-bottom: var(--spacing-sm);
}

.hero-title span {
    color: var(--red);
}

.hero-subtitle {
    font-family: var(--font-quote);
    font-style: italic;
    font-size: 2.8em;
    color: var(--cream);
    margin: 20px 0 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: 1.15em;
    color: var(--gold);
    margin-top: 15px;
}

/* ========================================
   STATS BAR
======================================== */
.stats-bar {
    background: var(--white);
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    gap: var(--spacing-xxl);
    flex-wrap: wrap;
    border-bottom: 3px solid var(--blue);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--blue);
}

.stat-label {
    font-size: 0.9em;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   MAIN CONTENT CONTAINER
======================================== */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* ========================================
   CONTENT SECTIONS
======================================== */
.content-section {
    background: var(--white);
    color: var(--navy);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.5s ease;
}

.content-section h2 {
    color: var(--blue);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--red);
}

/* ========================================
   SOS ALERT BOX
======================================== */
.sos-box {
    animation: sosBackgroundFlash 4s infinite;
    border: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.sos-stars {
    text-align: center;
    font-size: 1.5em;
    color: var(--white);
    letter-spacing: 12px;
    margin-bottom: 15px;
    animation: starGlow 2s infinite;
}

.sos-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sos-title {
    font-family: var(--font-header);
    font-size: 1.6em;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.sos-count {
    font-size: 5em;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    line-height: 1;
}

.sos-label {
    font-size: 1.5em;
    color: var(--white);
    margin-top: var(--spacing-sm);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.sos-details {
    margin-top: var(--spacing-md);
    padding: 15px;
    background: rgba(0,0,0,0.5);
    border-radius: var(--radius-md);
}

.sos-details p {
    color: var(--cream);
    margin: 8px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.sos-details strong {
    color: var(--gold);
}

/* ========================================
   CALL TO ACTION BOX
======================================== */
.cta-box {
    background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
    border: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    animation: urgentPulse 2s infinite;
}

.cta-box h2 {
    color: var(--white);
    border-bottom: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-box p {
    color: var(--cream);
    font-size: 1.1em;
}

.cta-phone {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 15px 0;
}

/* ========================================
   BUTTONS
======================================== */
.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.btn-group.centered {
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    text-decoration: none;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-secondary {
    background: var(--blue);
    color: var(--white);
}

.btn-tertiary {
    background: var(--gold);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ========================================
   FOLLOW THE MONEY SECTION
======================================== */
.follow-money {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.money-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.money-header h2 {
    font-size: 2.5em;
    color: var(--gold);
    border-bottom: none;
}

.money-header p {
    color: var(--cream);
    font-size: 1.2em;
}

/* Big Comparison */
.big-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.compare-box {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
}

.compare-box.cut {
    border: 3px solid var(--light-red);
}

.compare-box.funded {
    border: 3px solid var(--green);
}

.compare-label {
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.compare-box.cut .compare-label {
    color: var(--light-red);
}

.compare-box.funded .compare-label {
    color: var(--green);
}

.compare-amount {
    font-size: 4em;
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.compare-box.cut .compare-amount {
    color: var(--light-red);
}

.compare-box.funded .compare-amount {
    color: var(--green);
}

.compare-desc {
    color: var(--cream);
    font-size: 1.1em;
}

.compare-vs {
    font-size: 2em;
    font-weight: 700;
    color: var(--gold);
}

/* Promise vs Reality */
.promise-reality {
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.promise-reality h3 {
    color: var(--gold);
    font-size: 1.5em;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.promise-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
}

.promise-what {
    color: var(--cream);
}

.promise-result {
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.promise-result.fail {
    background: var(--light-red);
    color: white;
}

.promise-result.worse {
    background: #7C2D12;
    color: #FCA5A5;
}

/* Cuts Section */
.cuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: var(--spacing-md);
}

.cut-card {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid var(--light-red);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

.cut-card .cut-stat {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--light-red);
    margin-bottom: 5px;
}

.cut-card h4 {
    color: #FCA5A5;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.cut-card p {
    color: var(--cream);
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0;
}

/* Pro/Con Section */
.procon-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.procon-box {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.procon-box.pro {
    border: 2px solid var(--green);
}

.procon-box.con {
    border: 2px solid var(--light-red);
}

.procon-box h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    padding-bottom: var(--spacing-sm);
}

.procon-box.pro h4 {
    color: var(--green);
    border-bottom: 2px solid var(--green);
}

.procon-box.con h4 {
    color: var(--light-red);
    border-bottom: 2px solid var(--light-red);
}

.procon-list {
    list-style: none;
}

.procon-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--cream);
    font-size: 0.95em;
    line-height: 1.4;
}

.procon-box.pro .procon-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.procon-box.con .procon-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--light-red);
    font-weight: bold;
}

/* ========================================
   ICE TRACKER
======================================== */
.ice-tracker {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.tracker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.tracker-title {
    font-family: var(--font-header);
    font-size: 1.8em;
    color: var(--gold);
}

.tracker-update {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    color: var(--cream);
}

.tracker-update .live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    margin-right: 8px;
    animation: livePulse 1.5s infinite;
}

.tracker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: 25px;
}

.tracker-category {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    border-left: 4px solid;
}

.tracker-category.good { border-color: var(--green); }
.tracker-category.bad { border-color: var(--orange); }
.tracker-category.ugly { border-color: var(--light-red); }

.category-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: 15px;
}

.category-icon { font-size: 1.5em; }

.category-title { font-weight: 700; font-size: 1.1em; }

.tracker-category.good .category-title { color: var(--green); }
.tracker-category.bad .category-title { color: var(--orange); }
.tracker-category.ugly .category-title { color: var(--light-red); }

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-row:last-child { border-bottom: none; }

.stat-label-sm { color: var(--cream); font-size: 0.9em; }

.stat-value { font-weight: 700; font-size: 1.1em; color: var(--white); }

.stat-value.highlight-red { color: var(--light-red); }
.stat-value.highlight-gold { color: var(--gold); }
.stat-value.highlight-green { color: var(--green); }

/* Laws Section */
.laws-section {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.laws-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.law-item {
    background: rgba(0,0,0,0.3);
    padding: 12px 15px;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    border-left: 3px solid;
}

.law-item.violated { border-color: var(--light-red); }
.law-item.pending { border-color: var(--orange); }
.law-item.ruling { border-color: var(--blue); }

.law-name { font-weight: 600; color: var(--white); margin-bottom: 5px; }
.law-desc { font-size: 0.85em; color: var(--cream); opacity: 0.9; }

.law-status {
    font-size: 0.75em;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 8px;
}

.law-item.violated .law-status { background: var(--light-red); color: white; }
.law-item.pending .law-status { background: var(--orange); color: black; }
.law-item.ruling .law-status { background: var(--blue); color: white; }

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: var(--blue);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-top: 4px solid var(--gold);
}

.site-footer p {
    color: var(--cream);
    margin: 8px 0;
}

.footer-tagline {
    font-family: var(--font-quote);
    font-style: italic;
    font-size: 1.3em;
    color: var(--gold);
    margin-top: var(--spacing-md);
}

/* ========================================
   WORDPRESS SPECIFIC STYLES
======================================== */
/* Post/Page Content */
.entry-content {
    color: var(--navy);
}

.entry-content a {
    color: var(--blue);
}

.entry-content a:hover {
    color: var(--red);
}

/* WordPress Gallery */
.wp-block-gallery {
    margin: var(--spacing-lg) 0;
}

/* WordPress Buttons */
.wp-block-button__link {
    background: var(--red);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
}

/* Comments */
.comments-area {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
}

.comment-list {
    list-style: none;
}

.comment {
    padding: var(--spacing-md);
    border-bottom: 1px solid #eee;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 900px) {
    .tracker-grid,
    .promise-grid,
    .procon-section {
        grid-template-columns: 1fr;
    }
    
    .big-compare {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .compare-vs {
        padding: var(--spacing-md) 0;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .site-nav {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: center;
        margin-top: var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu.hidden {
        display: none;
    }
    
    .stats-bar {
        gap: var(--spacing-lg);
    }
    
    .cta-phone {
        font-size: 1.8em;
    }
    
    .sos-count {
        font-size: 3.5em;
    }
    
    .compare-amount {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .ticker-item {
        padding: 10px 20px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .btn-group {
        flex-direction: column;
    }
}
