/* ============================================
   PestHeroes — "Catch. Kill. Chill."
   ============================================ */

:root {
    --bg-dark: #0d1117;
    --bg-card: #161b22;
    --bg-card-hover: #1c2333;
    --accent: #ff6b35;
    --accent-glow: rgba(255, 107, 53, 0.3);
    --accent-green: #2ea043;
    --accent-green-glow: rgba(46, 160, 67, 0.3);
    --accent-red: #f85149;
    --accent-yellow: #e3b341;
    --accent-purple: #a371f7;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted: #484f58;
    --border: #30363d;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* ---- Utility ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

section {
    padding: 80px 0;
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-brand .logo-emoji {
    font-size: 1.6rem;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(163, 113, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 28px;
    font-weight: 600;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent), #ff9a5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 60px;
    flex-wrap: wrap;
}

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

.hero-stat .number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
}

.hero-stat .label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Floating cockroaches in hero */
.floating-pest {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float-pest linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes float-pest {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, -60px) rotate(90deg); }
    50% { transform: translate(50px, -120px) rotate(180deg); }
    75% { transform: translate(-50px, -80px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* ---- How It Works ---- */
.how-it-works {
    background: var(--bg-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--accent);
    margin: 0 auto 20px;
}

.step-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ---- Request Section ---- */
.request-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111820 100%);
}

.request-flow {
    max-width: 700px;
    margin: 0 auto;
}

.request-step {
    display: none;
}

.request-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.step-header {
    text-align: center;
    margin-bottom: 32px;
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.step-header p {
    color: var(--text-secondary);
}

/* Progress dots */
.progress-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    transition: all var(--transition);
}

.progress-dot.active {
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.progress-dot.done {
    background: var(--accent-green);
}

/* Option grids */
.pest-grid, .weapon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

.option-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.option-card:hover {
    border-color: var(--text-muted);
    background: var(--bg-card-hover);
}

.option-card.selected {
    border-color: var(--accent);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 0 20px var(--accent-glow);
}

.option-card .option-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.option-card .option-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.option-card .option-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.option-card .option-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.panic-level {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 6px;
    text-transform: uppercase;
}

.panic-level.extreme { background: var(--accent-red); color: #fff; }
.panic-level.high { background: var(--accent-yellow); color: #000; }
.panic-level.medium { background: var(--accent-green); color: #fff; }
.panic-level.unknown { background: var(--accent-purple); color: #fff; }

.step-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Preferences form */
.preferences-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle {
    position: relative;
    width: 48px;
    height: 26px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--border);
    border-radius: 26px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

.toggle input:checked + .toggle-slider {
    background: var(--accent);
}

.toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.speed-options {
    display: flex;
    gap: 10px;
}

.speed-btn {
    flex: 1;
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    font-family: inherit;
}

.speed-btn:hover {
    border-color: var(--text-muted);
}

.speed-btn.selected {
    border-color: var(--accent);
    background: rgba(255, 107, 53, 0.08);
}

.speed-btn .speed-label {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
}

.speed-btn .speed-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.speed-btn .speed-price {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-top: 4px;
    display: block;
}

/* Matching / result */
.matching-screen {
    text-align: center;
    padding: 40px 0;
}

.matching-animation {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.matching-ring {
    position: absolute;
    inset: 0;
    border: 3px solid var(--accent);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.matching-ring:nth-child(2) {
    inset: 10px;
    border-color: var(--accent-purple);
    border-top-color: transparent;
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.matching-ring:nth-child(3) {
    inset: 20px;
    border-color: var(--accent-yellow);
    border-top-color: transparent;
    animation-duration: 2s;
}

.matching-icon {
    position: absolute;
    inset: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.matching-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.matching-subtext {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Hero results */
.hero-results {
    display: none;
    animation: fadeIn 0.5s ease;
}

.hero-results.visible {
    display: block;
}

.result-header {
    text-align: center;
    margin-bottom: 32px;
}

.result-header .request-id {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    font-family: monospace;
}

.result-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
}

.result-header p {
    color: var(--text-secondary);
    margin-top: 6px;
}

.hero-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--transition);
    cursor: pointer;
}

.hero-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-card.recommended {
    border-color: var(--accent);
    background: rgba(255, 107, 53, 0.04);
}

.hero-card .recommended-tag {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
}

.hero-avatar {
    width: 64px;
    height: 64px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-info {
    flex: 1;
    text-align: left;
}

.hero-name {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.hero-specialty {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.hero-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
}

.hero-meta span {
    color: var(--text-secondary);
}

.hero-meta .star {
    color: var(--accent-yellow);
}

.hero-eta {
    text-align: right;
    flex-shrink: 0;
}

.hero-eta .eta-time {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
}

.hero-eta .eta-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.btn-accept {
    background: var(--accent-green);
    color: #fff;
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px var(--accent-green-glow);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-green-glow);
}

/* Confirmed screen */
.confirmed-screen {
    display: none;
    text-align: center;
    padding: 60px 0;
    animation: fadeIn 0.5s ease;
}

.confirmed-screen.visible {
    display: block;
}

.confirmed-check {
    width: 100px;
    height: 100px;
    background: rgba(46, 160, 67, 0.1);
    border: 3px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.confirmed-screen h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.confirmed-screen p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.confirmed-details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 30px auto;
    max-width: 400px;
    text-align: left;
}

.confirmed-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.confirmed-details .detail-row:last-child {
    border-bottom: none;
}

.confirmed-details .detail-label {
    color: var(--text-secondary);
}

.confirmed-details .detail-value {
    font-weight: 700;
}

.badge-earned {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 179, 65, 0.1);
    border: 1px solid rgba(227, 179, 65, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--accent-yellow);
    font-weight: 700;
    animation: fadeIn 1s ease 0.5s both;
}

/* ---- Reviews ---- */
.reviews-section {
    background: var(--bg-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

.review-card:hover {
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-hero {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-stars {
    color: var(--accent-yellow);
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-style: italic;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- Badges Section ---- */
.badges-section {
    background: linear-gradient(180deg, #111820 0%, var(--bg-dark) 100%);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 16px;
}

.badge-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition);
}

.badge-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.badge-card.tier-gold { border-left: 3px solid var(--accent-yellow); }
.badge-card.tier-silver { border-left: 3px solid #aaa; }
.badge-card.tier-bronze { border-left: 3px solid #cd7f32; }

.badge-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.badge-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.badge-tier {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 4px;
    display: inline-block;
}

.tier-gold .badge-tier { background: rgba(227, 179, 65, 0.15); color: var(--accent-yellow); }
.tier-silver .badge-tier { background: rgba(170, 170, 170, 0.15); color: #aaa; }
.tier-bronze .badge-tier { background: rgba(205, 127, 50, 0.15); color: #cd7f32; }

/* ---- Pricing Section ---- */
.pricing-section {
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.pricing-card.featured {
    border-color: var(--accent);
    background: rgba(255, 107, 53, 0.04);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
}

.pricing-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.pricing-price .currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(48, 54, 61, 0.5);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓ ';
    color: var(--accent-green);
    font-weight: 700;
}

/* ---- CTA Section ---- */
.cta-section {
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ---- Footer ---- */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- Live Ticker ---- */
.live-ticker {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    animation: ticker 30s linear infinite;
    gap: 48px;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ticker-item .ticker-emoji {
    font-size: 1.1rem;
}

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

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-tagline { font-size: 1.05rem; }
    .hero-stats { gap: 24px; }
    .section-title { font-size: 1.6rem; }
    .nav-links { display: none; }
    .pest-grid, .weapon-grid { grid-template-columns: repeat(2, 1fr); }
    .speed-options { flex-direction: column; }
    .hero-card { flex-direction: column; text-align: center; }
    .hero-info { text-align: center; }
    .hero-meta { justify-content: center; }
    .hero-eta { text-align: center; }
    .reviews-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .pest-grid, .weapon-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; align-items: center; }
}
