/* PromoPaq Styles */

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

:root {
    --blue-primary: #0066cc;
    --blue-dark: #004c99;
    --orange-accent: #ff6b35;
    --green-success: #22c55e;
    --gray-dark: #1a1a1a;
    --gray-med: #4a4a4a;
    --gray-light: #f5f5f5;
    --white: #ffffff;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    background: var(--white);
}

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

/* Header */
.header {
    background: var(--white);
    border-bottom: 2px solid #e5e5e5;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 42px;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--blue-primary);
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
}

.btn-primary {
    background: var(--blue-primary);
    color: white;
    border: none;
    padding: 12px 26px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--blue-dark);
}

/* Hero */
.hero {
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
    padding: 60px 0 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray-med);
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-proof {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.proof-item {
    flex: 1;
}

.proof-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--blue-primary);
    margin-bottom: 5px;
}

.proof-label {
    font-size: 13px;
    color: var(--gray-med);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn-hero-primary {
    background: var(--orange-accent);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

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

.hero-note {
    font-size: 13px;
    color: var(--gray-med);
    font-style: italic;
}

/* Mailbox Preview */
.mailbox-preview {
    perspective: 1000px;
}

.mail-piece {
    background: white;
    border: 3px solid var(--blue-primary);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: rotateY(-5deg) rotateX(2deg);
}

.mail-header {
    text-align: center;
    font-weight: 900;
    font-size: 24px;
    color: var(--blue-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e5e5;
}

.sample-coupons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sample-coupon {
    background: var(--gray-light);
    border: 1px solid #ddd;
    border-left: 4px solid var(--blue-primary);
    padding: 12px 15px;
    border-radius: 4px;
}

.sample-coupon.highlight {
    background: #fff9e6;
    border-left-color: var(--orange-accent);
    border-width: 2px;
    border-left-width: 5px;
}

.coupon-business {
    font-weight: 700;
    font-size: 13px;
    color: var(--gray-dark);
    margin-bottom: 3px;
}

.coupon-offer {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-primary);
}

.sample-coupon.highlight .coupon-offer {
    color: var(--orange-accent);
}

/* Social Proof */
.social-proof {
    background: var(--blue-primary);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.proof-intro {
    font-size: 15px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.business-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.biz-tag {
    background: rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.how-it-works h2,
.pricing h2,
.results h2,
.coverage h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 19px;
    color: var(--gray-med);
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--orange-accent);
    color: white;
    font-size: 28px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    color: var(--gray-med);
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-time {
    background: var(--gray-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-primary);
    display: inline-block;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--gray-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.price-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 35px 30px;
    position: relative;
    transition: transform 0.2s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.price-card.featured {
    border-color: var(--blue-primary);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-accent);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.price-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: var(--blue-primary);
    line-height: 1;
}

.price-period {
    font-size: 15px;
    color: var(--gray-med);
    margin-bottom: 20px;
}

.price-reach {
    background: var(--gray-light);
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
    margin-bottom: 20px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
    padding-left: 25px;
}

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-success);
    font-weight: 700;
}

.price-math {
    background: #e6f7ff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.price-math strong {
    display: block;
    color: var(--blue-primary);
    margin-bottom: 5px;
    font-size: 15px;
}

.price-math p {
    font-size: 13px;
    color: var(--gray-med);
}

.btn-price {
    width: 100%;
    background: var(--blue-primary);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-price:hover {
    background: var(--blue-dark);
}

.btn-price.primary {
    background: var(--orange-accent);
}

.btn-price.primary:hover {
    background: #e65a2d;
}

.pricing-note {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 2px dashed var(--blue-primary);
}

.pricing-note strong {
    color: var(--blue-primary);
}

/* Results / Testimonials */
.results {
    padding: 80px 0;
    background: white;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--blue-primary);
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.testimonial-author {
    margin-bottom: 15px;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--gray-dark);
}

.author-business {
    font-size: 14px;
    color: var(--gray-med);
}

.testimonial-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-pill {
    background: var(--blue-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Coverage */
.coverage {
    padding: 80px 0;
    background: var(--gray-light);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.market {
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.market h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 15px;
}

.market ul {
    list-style: none;
}

.market li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray-dark);
}

.market-cta {
    margin-top: 15px;
    font-size: 14px;
}

.market-cta a {
    color: var(--blue-primary);
    font-weight: 700;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--blue-dark);
    color: white;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-box > p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

.btn-cta-phone {
    background: var(--orange-accent);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-cta-phone:hover {
    transform: translateY(-2px);
}

.btn-cta-form {
    background: white;
    color: var(--blue-dark);
    border: none;
    padding: 18px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

.cta-hours {
    font-size: 14px;
    opacity: 0.85;
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    opacity: 0.8;
    font-size: 15px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    display: block;
    padding: 6px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 550px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.modal-close:hover {
    color: #000;
}

.modal-content h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--gray-dark);
}

.get-started-form input,
.get-started-form select,
.get-started-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    font-family: inherit;
    font-size: 15px;
}

.get-started-form input:focus,
.get-started-form select:focus,
.get-started-form textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
}

.btn-submit-form {
    width: 100%;
    background: var(--orange-accent);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    margin-bottom: 12px;
}

.btn-submit-form:hover {
    background: #e65a2d;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-med);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

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

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 640px) {
    .hero h1 {
        font-size: 32px;
    }

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

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

    .hero-ctas {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
    }
}

/* Page-Specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white) 100%);
    padding: 60px 0 50px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 19px;
    color: var(--gray-med);
    max-width: 700px;
    margin: 0 auto;
}

/* Quick Links Home */
.quick-links-home {
    padding: 70px 0;
    background: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.quick-link-card {
    background: var(--gray-light);
    padding: 35px 25px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--gray-dark);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--blue-primary);
}

.quick-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.quick-link-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.quick-link-card p {
    color: var(--gray-med);
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--blue-primary);
    font-weight: 700;
    font-size: 15px;
}

/* How It Works Page */
.how-it-works-page {
    padding: 60px 0;
}

.step-details {
    margin-top: 20px;
    background: var(--gray-light);
    padding: 20px;
    border-radius: 6px;
    text-align: left;
}

.step-details h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--blue-primary);
}

.step-details ul {
    list-style: none;
}

.step-details li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.step-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--blue-primary);
}

/* Timeline */
.timeline-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.timeline-day {
    background: var(--blue-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.timeline-content h4 {
    margin-bottom: 5px;
}

/* FAQ */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--gray-light);
    padding: 25px;
    border-radius: 8px;
}

.faq-item h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--blue-primary);
}

/* Page CTA */
.page-cta {
    padding: 60px 0;
    background: var(--gray-light);
    text-align: center;
}

.page-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-cta p {
    font-size: 18px;
    color: var(--gray-med);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-cta-primary {
    background: var(--orange-accent);
    color: white;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 17px;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: white;
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 17px;
    display: inline-block;
}

/* Pricing Page Specific */
.whats-included {
    padding: 60px 0;
    background: white;
}

.whats-included h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.included-item {
    text-align: center;
    padding: 30px 20px;
}

.included-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.included-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.best-for {
    text-align: center;
    font-size: 14px;
    color: var(--gray-med);
    margin-top: 15px;
    font-style: italic;
}

.roi-highlight {
    color: var(--green-success);
    font-weight: 700;
}

/* Calculator */
.calculator-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.calculator-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.calc-inputs {
    margin-bottom: 30px;
}

.calc-input-group {
    margin-bottom: 20px;
}

.calc-input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.calc-input-group input,
.calc-input-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    font-size: 16px;
}

.calc-results {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.calc-result-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.calc-result-item:last-child {
    border-bottom: none;
}

.calc-label {
    font-weight: 600;
}

.calc-value {
    font-size: 20px;
    font-weight: 700;
}

.calc-value.revenue {
    color: var(--green-success);
}

.calc-value.roi {
    color: var(--blue-primary);
    font-size: 28px;
}

.calc-note {
    font-size: 13px;
    color: var(--gray-med);
    font-style: italic;
}

.roi-result {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--blue-primary);
}

/* Custom Pricing */
.custom-pricing {
    padding: 60px 0;
    background: white;
}

.custom-pricing h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.custom-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.custom-option {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 8px;
}

.custom-option h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--blue-primary);
}

.custom-link {
    color: var(--blue-primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* Results Page */
.results-stats {
    padding: 50px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 35px;
    background: var(--gray-light);
    border-radius: 10px;
}

.stat-big {
    font-size: 48px;
    font-weight: 900;
    color: var(--blue-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    color: var(--gray-med);
    font-size: 15px;
}

.testimonials-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.case-study-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
}

.case-study-details h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--blue-primary);
}

.case-study-details ul {
    list-style: none;
}

.case-study-details li {
    padding: 5px 0;
    font-size: 14px;
}

.case-study-details strong {
    color: var(--gray-dark);
}

/* Industry Results */
.industry-results {
    padding: 60px 0;
    background: var(--gray-light);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.industry-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.industry-box h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--blue-primary);
}

.industry-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.industry-stat {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.industry-stat .stat-value {
    font-weight: 700;
    color: var(--blue-primary);
}

/* Coverage Page */
.coverage-check {
    padding: 50px 0;
    background: white;
}

.check-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--gray-light);
    padding: 40px;
    border-radius: 10px;
}

.check-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.zip-checker {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.zip-checker input {
    flex: 1;
    padding: 14px;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    font-size: 18px;
}

.btn-check {
    background: var(--blue-primary);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}

.coverage-result {
    margin-top: 20px;
    min-height: 50px;
}

.coverage-success {
    background: #e6f7ff;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid var(--blue-primary);
}

.coverage-success h4 {
    color: var(--green-success);
    margin-bottom: 10px;
}

.btn-inline {
    display: inline-block;
    background: var(--blue-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 10px;
}

.expansion-note {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 10px;
}

.expansion-note h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.expansion-note a {
    color: var(--blue-primary);
    font-weight: 700;
}

/* Get Started Page */
.get-started-page {
    padding: 50px 0;
    background: var(--gray-light);
}

.get-started-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.get-started-info h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

.lead {
    font-size: 18px;
    color: var(--gray-med);
    margin-bottom: 40px;
}

.what-happens {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.what-happens h3 {
    margin-bottom: 25px;
    font-size: 22px;
}

.step-simple {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-num {
    background: var(--blue-primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-box {
    background: var(--blue-dark);
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.contact-box h4 {
    margin-bottom: 10px;
}

.phone-big {
    color: var(--orange-accent);
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
}

.hours {
    font-size: 14px;
    opacity: 0.9;
}

.get-started-form-wrap {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.get-started-form-page h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    font-family: inherit;
    font-size: 15px;
}

.form-group small {
    font-size: 13px;
    color: var(--gray-med);
    display: block;
    margin-top: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.btn-submit-page {
    width: 100%;
    background: var(--orange-accent);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit-page:hover {
    background: #e65a2d;
}

.form-disclaimer {
    margin-top: 15px;
    font-size: 13px;
    color: var(--gray-med);
    font-style: italic;
    text-align: center;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-options {
        grid-template-columns: 1fr;
    }

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

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

    .get-started-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
    }
}

/* Local Deals Page */
.zip-lookup-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 90px;
    text-align: center;
}

.zip-lookup-hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.lookup-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.zip-lookup-box {
    max-width: 500px;
    margin: 0 auto 25px;
    display: flex;
    gap: 10px;
}

.zip-lookup-box input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}

.btn-find-deals {
    background: var(--orange-accent);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-find-deals:hover {
    transform: scale(1.05);
}

.popular-zips {
    font-size: 15px;
    opacity: 0.9;
}

.popular-zips a {
    color: white;
    text-decoration: underline;
    margin: 0 8px;
    font-weight: 600;
}

.popular-zips a:hover {
    opacity: 0.8;
}

/* Deals Section */
.deals-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.deals-header {
    text-align: center;
    margin-bottom: 50px;
}

.deals-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.deals-subtitle {
    font-size: 18px;
    color: var(--gray-med);
    margin-bottom: 20px;
}

.btn-change-zip {
    background: transparent;
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s;
}

.btn-change-zip:hover {
    background: var(--blue-primary);
    color: white;
}

/* Deals Grid */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.deal-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e5e5e5;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--blue-primary);
}

.deal-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.deal-content {
    flex: 1;
}

.deal-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.deal-category {
    font-size: 13px;
    color: var(--gray-med);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.deal-offer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.deal-description {
    font-size: 15px;
    color: var(--gray-med);
    line-height: 1.5;
    margin-bottom: 12px;
}

.deal-expires {
    font-size: 13px;
    color: var(--gray-med);
    font-style: italic;
    margin-bottom: 20px;
}

.btn-clip-coupon {
    width: 100%;
    background: var(--green-success);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-clip-coupon:hover {
    background: #16a34a;
}

/* Deals CTA */
.deals-cta {
    text-align: center;
}

.cta-advertiser-box {
    background: var(--blue-dark);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-advertiser-box h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-advertiser-box p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-advertise {
    background: var(--orange-accent);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-advertise:hover {
    transform: translateY(-2px);
}

/* Responsive for Deals */
@media (max-width: 968px) {
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zip-lookup-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .deals-grid {
        grid-template-columns: 1fr;
    }

    .zip-lookup-box {
        flex-direction: column;
    }

    .deals-header h2 {
        font-size: 32px;
    }
}
