/* lakeconews.com combined styles: advertising + rates + media kit */
/* ===== GLOBAL IMPORTS & RESETS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+Pro:wght@400;600;700&display=swap');

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

:root {
    --navy: #0b1c2f;
    --navy-light: #1a2f44;
    --red: #c62828;
    --red-dark: #8b1e1e;
    --gray-light: #f8fafc;
    --gray-border: #e9ecef;
    --text-dark: #1a1e24;
    --text-muted: #495057;
    --text-light: #6c757d;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 15px 30px rgba(11, 28, 47, 0.15);
    --shadow-lg: 0 20px 35px rgba(198, 40, 40, 0.15);
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY & UTILITIES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    word-wrap: break-word;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--red);
    margin: 20px auto 0;
}
.section-title--left {
    text-align: left;
}
.section-title--left::after {
    margin: 20px 0 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: -30px auto 50px;
}

.accent-text {
    color: var(--red);
    position: relative;
    display: inline-block;
}
.accent-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(198, 40, 40, 0.2);
    z-index: -1;
}

/* ===== BUTTONS (unified) ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
    border-radius: 0;
    background: transparent;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}
.btn--primary {
    background: transparent;
    border-color: white;
    color: white;
}
.btn--primary:hover {
    background: white;
    color: var(--navy);
}
.btn--secondary {
    background: var(--red);
    border-color: var(--red);
    color: white;
}
.btn--secondary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}
.btn--outline {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}
.btn--outline:hover {
    background: var(--navy);
    color: white;
}
.btn--large {
    padding: 18px 48px;
    font-size: 1.2rem;
    background: var(--red);
    border-color: var(--red);
    color: white;
}
.btn--large:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}
.btn--full {
    width: 100%;
    text-align: center;
}

/* ===== HERO SECTIONS (base + variants) ===== */

.hero h1 a { 
color:white
 }

.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    border-bottom: 4px solid var(--red);
    width: 100%;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

/* advertising hero variant */
.hero--advertising {
    padding: 40px 0 80px;
}
/* media kit hero variant */
.rates-headerlink {
    padding: 60px 0;
    text-align: center;
}
.hero--mediakit {
    padding: 40px 0;
    text-align: center;
}
.hero h1 a { 
    text-decoration:none;
 }




/* rates hero (centered text) */
.hero.hero--rates {
    text-align: center;
    padding: 80px 20px;
}
.hero--rates h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 15px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}
.hero--rates h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--red);
    margin: 20px auto 0;
}
.hero--rates p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.9;
    padding: 0 10px;
}

/* hero inner elements (shared) */
.hero-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}
.logo-mark {
    max-width: 200px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}
.logo-text {
    margin-top: 5px;
}
.logo-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.nav {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    margin: 0 0 20px;
    line-height: 1.2;
}
.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}
.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 1px;
}
.hero-tagline .accent-text {
    color: var(--red);
    font-weight: 700;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Header link styling for rates header: white -> red on hover -> blue on active -> white when visited */
.rates-headerlink {
    color: white;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.08);
    padding: 10px 18px;
    text-decoration: none;
    display: inline-block;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
    border-radius: 4px;
    font-weight: 600;
}
.rates-headerlink:hover {
    color: var(--red);
    border-color: var(--red);
}
.rates-headerlink:active {
    color: #0d6efd; /* blue while clicking */
}
.rates-headerlink:visited {
    color: white; /* remain white after clicked/visited */
}
.rates-headerlink:focus {
    outline: 3px solid rgba(13,110,253,0.12);
    outline-offset: 2px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.pill {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: white;
}
.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
}
.metric strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: white;
}
.metric span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* hero cards (advertising) */
.hero-card {
    background: white;
    padding: 35px 30px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
}
.hero-card--featured {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-card--featured::before {
    content: 'FEATURED';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--red);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    white-space: nowrap;
    z-index: 3;
}
.hero-card--alt {
    background: var(--gray-light);
}
.card-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 15px;
}
.hero-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}
.hero-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}
.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}
.card-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-muted);
}
.card-list li::before,
.card ul li::before {
    content: '✓';
    color: var(--red);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}
.section--accent {
    background: var(--gray-light);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.ratesheet-cta {
    padding: 40px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, transparent, var(--gray-light));
}

/* feature grid (advertising) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.feature-card {
    background: white;
    padding: 30px 25px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}
.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 15px;
}
.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* steps grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.step-card {
    background: white;
    padding: 35px 30px;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--red);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}
.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 15px;
}
.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== PACKAGES / CARDS (rates) ===== */
.packages {
    padding: 70px 20px;
    text-align: center;
    background: var(--gray-light);
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}
.packages h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 50px 0;
    color: var(--navy);
    position: relative;
    display: block;
    width: 100%;
    word-wrap: break-word;
    padding: 0 15px;
}
.packages h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--red);
    margin: 15px auto 0;
}
.packages .card {
    display: flex;
    flex-direction: column;
    flex: 0 1 320px;
    background: white;
    padding: 35px 25px;
    margin: 0;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-border);
    text-align: left;
    position: relative;
    min-width: 0;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}
.card.highlight {
    border: 2px solid var(--red);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    background: white;
    overflow: hidden;
    z-index: 2;
}
.card.highlight::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--red);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    white-space: nowrap;
    z-index: 3;
}
.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 0 0 20px;
    color: var(--navy);
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    word-wrap: break-word;
}
.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    word-wrap: break-word;
}
.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    font-family: 'Source Sans Pro', sans-serif;
}
.card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    flex-grow: 1;
}
.card ul li {
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
    word-wrap: break-word;
}
.card button {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    white-space: normal;
    word-wrap: break-word;
    margin-top: auto;
}
.card button:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}
.card.highlight button {
    background: var(--red);
    border-color: var(--red);
    color: white;
}
.card.highlight button:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

/* ===== PLACEMENTS TABLE (rates) ===== */
.placements {
    padding: 70px 20px;
    background: white;
    width: 100%;
    overflow: hidden;
}
.placements h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy);
    position: relative;
    word-wrap: break-word;
    padding: 0 15px;
}
.placements h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--red);
    margin: 15px auto 0;
}
.table-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
}
table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: white;
    margin: 0;
}
th {
    background: var(--navy);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 18px 12px;
    border: none;
    font-family: 'Source Sans Pro', sans-serif;
    white-space: nowrap;
}
td {
    padding: 16px 12px;
    border-bottom: 1px solid var(--gray-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    white-space: nowrap;
}
td:first-child {
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    padding-left: 25px;
    white-space: normal;
    min-width: 180px;
}
tr:last-child td {
    border-bottom: none;
}
tbody tr:hover {
    background: #f8f9fa;
}

/* ===== MEDIA KIT SPECIFIC ===== */
/* credibility section */
.credibility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
.credibility-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.credibility-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.credibility-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}
.credibility-icon {
    font-size: 2rem;
    line-height: 1;
    min-width: 50px;
    text-align: center;
}
.credibility-text {
    color: var(--text-muted);
    line-height: 1.6;
}
.credibility-text strong {
    color: var(--navy);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}
.credibility-image {
    text-align: center;
}
.credibility-image img {
    max-width: 100%;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-lg);
}
.image-caption {
    margin-top: 15px;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
}

/* metrics grid (media kit) */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.metrics-grid--centered {
    max-width: 900px;
    margin: 0 auto;
}
.metric-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}
.metric-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 15px;
    line-height: 1;
}
.metric-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.metric-subtext {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 8px;
    font-style: italic;
}

/* chart container */
.chart-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
}

/* pricing grid (media kit) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.pricing-card {
    background: white;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}
.pricing-card--featured {
    border: 2px solid var(--red);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
    z-index: 2;
}
.pricing-card--featured:hover {
    transform: scale(1.02) translateY(-5px);
}
.pricing-card-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--gray-border);
    position: relative;
}
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    padding: 4px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}
.pricing-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    text-align: center;
}
.pricing-card-body {
    padding: 30px;
    flex-grow: 1;
}
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}
.pricing-list li::before {
    content: '✓';
    color: var(--red);
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.1rem;
}
.pricing-card-footer {
    padding: 0 30px 30px;
}
.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 15px;
    font-style: italic;
}
.cta-container {
    text-align: center;
    margin-top: 50px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: white;
    padding: 60px 0;
    border-top: 4px solid var(--red);
    text-align: center;
}
.footer-content {
    text-align: center;
}
.footer p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}
.footer a {
    color: white;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}
.footer a:hover {
    border-bottom-color: var(--red);
}
.footer-phone {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: var(--red);
    opacity: 1 !important;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 28, 47, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
    z-index: 1000;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal {
    background: white;
    max-width: 800px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-border);
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: var(--navy);
    color: white;
}
.modal-header strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}
.modal-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}
.modal-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.modal-close:hover {
    background: var(--red);
}
.modal-body {
    padding: 0;
}
.modal iframe {
    width: 100%;
    height: 600px;
    border: 0;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card--featured {
        order: -1;
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .packages .card {
        flex: 0 1 300px;
    }
}
@media (max-width: 768px) {
    .hero-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }
    .metrics {
        grid-template-columns: 1fr;
    }
    .feature-grid,
    .steps-grid,
    .pricing-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 60px 0;
    }
    .nav {
        margin-bottom: 40px;
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-card {
        padding: 30px 25px;
    }
    .hero-logo {
        max-width: 220px;
    }
    .hero-tagline {
        font-size: 1.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
    .hero--rates h1 {
        font-size: 2.5rem;
    }
    .hero--rates p {
        font-size: 1.1rem;
    }
    .packages h2,
    .placements h2 {
        font-size: 2rem;
    }
    .packages {
        padding: 50px 15px;
        gap: 15px;
    }
    .packages .card {
        flex: 0 1 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .card.highlight {
        transform: scale(1);
    }
    .card.highlight::before {
        font-size: 0.7rem;
        padding: 6px 35px;
        right: -30px;
    }
    .table-container {
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
    table {
        font-size: 0.85rem;
    }
    th {
        padding: 15px 8px;
        font-size: 0.8rem;
    }
    td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    td:first-child {
        padding-left: 15px;
        min-width: 150px;
    }
    .footer p {
        font-size: 1.1rem;
    }
    .footer-phone {
        font-size: 1.2rem !important;
    }
    .credibility-item {
        padding: 20px;
    }
    .credibility-icon {
        font-size: 1.8rem;
        min-width: 40px;
    }
    .modal iframe {
        height: 500px;
    }
}
@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-logo {
        max-width: 180px;
    }
    .metric-number {
        font-size: 2.2rem;
    }
    .credibility-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .credibility-icon {
        margin: 0 auto;
    }
    .pricing-card-header h3 {
        font-size: 1.5rem;
    }
    .btn--large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    .hero--rates h1 {
        font-size: 2rem;
    }
    .packages h2,
    .placements h2 {
        font-size: 1.8rem;
    }
    .card {
        padding: 25px 20px;
    }
    .card h3 {
        font-size: 1.5rem;
    }
    .price {
        font-size: 2rem;
    }
    .card button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    td:first-child {
        min-width: 130px;
        padding-left: 10px;
    }
    th, td {
        padding: 10px 5px;
        font-size: 0.8rem;
    }
    .footer {
        padding: 40px 15px;
    }
    .modal iframe {
        height: 450px;
    }
}
@media (max-width: 360px) {
    td:first-child {
        min-width: 110px;
        font-size: 0.75rem;
    }
    th {
        font-size: 0.7rem;
        padding: 10px 3px;
    }
    td {
        padding: 8px 3px;
        font-size: 0.7rem;
    }
}
@media (min-width: 1200px) {
    .packages {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== PRINT STYLES (unified) ===== */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    @page {
        size: letter;
        margin: 0.75in;
    }
    body {
        background: white;
        color: black;
        font-size: 11pt;
        line-height: 1.4;
    }
    .hero {
        background: white !important;
        color: black !important;
        padding: 0 0 30px 0 !important;
        border-bottom: 2px solid var(--red) !important;
    }
    .hero::before {
        display: none !important;
    }
    .hero-logo,
    .logo-mark {
        filter: none !important;
    }
    .hero-tagline,
    .hero-description,
    .hero p {
        color: #333 !important;
    }
    .btn,
    .hero-buttons,
    .ratesheet-cta,
    .modal-overlay,
    .card button {
        display: none !important;
    }
    .section {
        padding: 30px 0 !important;
        page-break-inside: avoid;
    }
    .section--accent {
        background: #f8fafc !important;
        border: 1px solid var(--gray-border) !important;
    }
    .section-title {
        color: var(--navy) !important;
    }
    .section-title::after {
        background: var(--red) !important;
    }
    .metric-card,
    .pricing-card,
    .credibility-item,
    .hero-card,
    .feature-card,
    .step-card,
    .card,
    .chart-container,
    .table-container {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
        background: white !important;
    }
    .metric-number {
        color: var(--red) !important;
    }
    .featured-badge,
    .card.highlight::before,
    .hero-card--featured::before {
        background: var(--red) !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
    }
    .pricing-card--featured {
        border: 2px solid var(--red) !important;
    }
    th {
        background: var(--navy) !important;
        color: white !important;
    }
    .footer {
        background: var(--navy) !important;
        color: white !important;
        border-top: 2px solid var(--red) !important;
    }
    .footer-phone {
        color: var(--red) !important;
    }
    canvas {
        max-width: 100% !important;
        height: auto !important;
    }
    .table-container {
        overflow: visible !important;
    }
    table {
        min-width: 100% !important;
    }
    .print-header,
    .print-footer {
        display: block !important;
    }
}
.print-header,
.print-footer {
    display: none;
}
