/* Marketing and Client Acquisition Page Styles */

/* Base & Typography */
.service-page-wrapper {
    color: #2c3e50;
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
.marketing-hero {
    background: linear-gradient(135deg, #1e293b 0%, #2c3e50 50%, #1e3a5f 100%);
    color: #ffffff;
    padding: 85px 0 70px;
    position: relative;
    overflow: hidden;
}

.marketing-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(243, 101, 34, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.marketing-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -5%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 101, 34, 0.18);
    border: 1px solid rgba(243, 101, 34, 0.4);
    color: #ff9160;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hero-subhead {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    color: #f1f5f9;
    margin-bottom: 24px;
}

.hero-lead-text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.hero-lead-text a {
    color: #ff9160;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.hero-lead-text a:hover {
    color: #ffffff;
}

/* Hero Stats Counter Row */
.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 24px 0;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(243, 101, 34, 0.4);
    transform: translateY(-2px);
}

.hero-stat-number {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ff9160;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: #e2e8f0;
    line-height: 1.35;
    font-weight: 500;
}

.hero-callout-note {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #cbd5e1;
    border-left: 3px solid #f36522;
    padding-left: 14px;
}

/* Hero Right Snapshot Card */
.hero-snapshot-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.96) 0%, rgba(15, 23, 42, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(243, 101, 34, 0.12);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.hero-snapshot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f36522 0%, #ff9160 50%, #3b82f6 100%);
}

.snapshot-header {
    margin-bottom: 22px;
}

.snapshot-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.snapshot-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.snapshot-subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 0;
}

.snapshot-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.snapshot-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.snapshot-checklist li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(243, 101, 34, 0.3);
    transform: translateX(3px);
}

.check-icon-wrap {
    width: 26px;
    height: 26px;
    background: rgba(243, 101, 34, 0.2);
    border: 1px solid rgba(243, 101, 34, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9160;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.check-content strong {
    font-size: 0.94rem;
    font-weight: 600;
    color: #f1f5f9;
}

.check-content span {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.45;
}

.snapshot-footer {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.84rem;
    color: #cbd5e1;
}

.snapshot-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.snapshot-meta-item i {
    color: #f36522;
}

/* Common Brand Buttons */
.btn-brand-primary {
    background: linear-gradient(135deg, #f36522 0%, #e05310 100%);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 14px rgba(243, 101, 34, 0.35);
    text-decoration: none;
}

.btn-brand-primary:hover {
    background: linear-gradient(135deg, #e05310 0%, #c4450a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 101, 34, 0.45);
    color: #ffffff !important;
}

.btn-brand-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.btn-brand-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.btn-brand-outline {
    background: transparent;
    color: #f36522 !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 11px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid #f36522;
    text-decoration: none;
}

.btn-brand-outline:hover {
    background: #f36522;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 101, 34, 0.25);
}

.btn-brand-light {
    background: #ffffff;
    color: #1e293b !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-brand-light:hover {
    background: #f8fafc;
    color: #f36522 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    position: relative;
}

.content-section-light {
    background-color: #ffffff;
}

.content-section-alt {
    background-color: #f8fafc;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(243, 101, 34, 0.1);
    border: 1px solid rgba(243, 101, 34, 0.25);
    color: #f36522;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.section-h2-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.section-intro-text {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 30px;
}

.section-lead-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.section-lead-box p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 18px;
}

.section-lead-box p:last-child {
    margin-bottom: 0;
}

/* Core Service Cards (Section 3) */
.core-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.core-service-card::top {
    content: '';
}

.core-service-card:hover {
    transform: translateY(-5px);
    border-color: #f36522;
    box-shadow: 0 12px 30px rgba(243, 101, 34, 0.1);
}

.card-step-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: 0.5px;
}

.core-service-icon {
    width: 52px;
    height: 52px;
    background: rgba(243, 101, 34, 0.1);
    color: #f36522;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.core-service-card:hover .core-service-icon {
    background: #f36522;
    color: #ffffff;
    transform: scale(1.06);
}

.core-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.35;
}

.core-service-card p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 0;
}

.tactic-closing-banner {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 20px 28px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.tactic-closing-banner i {
    font-size: 1.8rem;
    color: #f36522;
    flex-shrink: 0;
}

.tactic-closing-banner p {
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: #f1f5f9;
}

/* Client Growth Drivers (Section 4) */
.growth-driver-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.growth-driver-card:hover {
    transform: translateY(-4px);
    border-color: #f36522;
    box-shadow: 0 10px 25px rgba(243, 101, 34, 0.08);
}

.driver-icon-wrap {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #f36522;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.growth-driver-card:hover .driver-icon-wrap {
    background: #f36522;
    color: #ffffff;
    border-color: #f36522;
}

.driver-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.driver-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

/* Mid-Page Callout Box */
.midpage-cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 36px 40px;
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 45px;
}

.midpage-cta-text {
    flex: 1;
    min-width: 300px;
}

.midpage-cta-text h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.midpage-cta-text p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Process Steps Grid (Section 5) */
.process-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.process-step-card:hover {
    border-color: #f36522;
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(243, 101, 34, 0.08);
}

.step-num-pill {
    background: linear-gradient(135deg, #f36522 0%, #e05310 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(243, 101, 34, 0.3);
}

.step-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.step-body p {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 0;
}

.process-summary-note {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #f36522;
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
}

/* Audience Grid (Section 6) */
.audience-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.audience-card:hover {
    transform: translateY(-4px);
    border-color: #f36522;
    box-shadow: 0 10px 25px rgba(243, 101, 34, 0.08);
}

.audience-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(243, 101, 34, 0.1);
    color: #f36522;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.audience-card h4 {
    font-size: 1.12rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 0;
}

.audience-card p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

/* Deliverables Section (Section 7) */
.deliverables-highlight-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.deliverables-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.deliverables-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.deliverables-item:first-child {
    padding-top: 0;
}

.deliverable-icon {
    width: 36px;
    height: 36px;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.deliverable-text strong {
    display: block;
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.deliverable-text span {
    font-size: 0.94rem;
    color: #475569;
    line-height: 1.6;
}

/* Why Texas Agencies Choose Cards (Section 8) */
.why-choose-feature {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.why-choose-feature:hover {
    transform: translateY(-4px);
    border-color: #f36522;
    box-shadow: 0 10px 25px rgba(243, 101, 34, 0.08);
}

.why-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(243, 101, 34, 0.1);
    color: #f36522;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.why-choose-feature:hover .why-icon-wrap {
    background: #f36522;
    color: #ffffff;
}

.why-choose-feature h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.why-choose-feature p {
    font-size: 0.94rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 0;
}

.trust-proof-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px 30px;
    margin-top: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.trust-proof-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.trust-proof-item i {
    font-size: 2rem;
    color: #f36522;
    flex-shrink: 0;
}

.trust-proof-item strong {
    color: #1e293b;
    font-size: 1rem;
}

.trust-proof-item span {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Spotlight Card (Section 9) */
.about-spotlight-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 45px 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.about-spotlight-box p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #334155;
    margin-bottom: 22px;
}

.about-spotlight-box p:last-of-type {
    margin-bottom: 28px;
}

.about-spotlight-box a {
    color: #f36522;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.about-spotlight-box a:hover {
    color: #e05310;
}

/* Related Services Grid (Section 10) */
.related-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.related-service-card:hover {
    transform: translateY(-4px);
    border-color: #f36522;
    box-shadow: 0 10px 25px rgba(243, 101, 34, 0.08);
}

.related-service-icon {
    width: 44px;
    height: 44px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #f36522;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.related-service-card:hover .related-service-icon {
    background: #f36522;
    color: #ffffff;
    border-color: #f36522;
}

.related-service-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.35;
}

.related-service-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 18px;
    flex-grow: 1;
}

.related-service-link {
    font-size: 0.92rem;
    font-weight: 700;
    color: #f36522;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.related-service-link:hover {
    color: #e05310;
    gap: 10px;
}

/* FAQ Section (Section 11) */
.faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-accordion .accordion-button {
    font-size: 1.12rem;
    font-weight: 700;
    color: #1e293b;
    padding: 22px 26px;
    background-color: #ffffff;
    box-shadow: none;
    line-height: 1.4;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #f36522;
    background-color: #fff9f6;
    border-bottom: 1px solid #fed7aa;
}

.faq-accordion .accordion-button::after {
    background-size: 1.1rem;
}

.faq-accordion .accordion-body {
    padding: 22px 26px;
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    background-color: #ffffff;
}

.faq-accordion .accordion-body a {
    color: #f36522;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.faq-accordion .accordion-body a:hover {
    color: #e05310;
}

/* Final CTA Banner (Section 12) */
.marketing-bottom-cta {
    background: linear-gradient(135deg, #1e293b 0%, #2c3e50 50%, #1e3a5f 100%);
    color: #ffffff;
    padding: 85px 0;
    position: relative;
    overflow: hidden;
}

.marketing-bottom-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 101, 34, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.marketing-bottom-cta .container {
    position: relative;
    z-index: 1;
}

.marketing-bottom-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.marketing-bottom-cta p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.cta-phone-callout {
    font-size: 1.05rem;
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 10px 20px;
    border-radius: 30px;
}

.cta-phone-link {
    color: #ff9160 !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.cta-phone-link:hover {
    color: #ffffff !important;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-subhead {
        font-size: 1.2rem;
    }

    .section-h2-title {
        font-size: 2rem;
    }

    .about-spotlight-box {
        padding: 32px 24px;
    }

    .deliverables-highlight-box {
        padding: 28px 22px;
    }

    .midpage-cta-box {
        padding: 28px 24px;
    }
}

@media (max-width: 767.98px) {
    .marketing-hero {
        padding: 60px 0 50px;
    }

    .hero-main-title {
        font-size: 2.1rem;
    }

    .hero-subhead {
        font-size: 1.1rem;
    }

    .hero-stats-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .section-h2-title {
        font-size: 1.75rem;
    }

    .marketing-bottom-cta h2 {
        font-size: 1.85rem;
    }

    .btn-brand-primary,
    .btn-brand-ghost {
        width: 100%;
        justify-content: center;
    }

    .cta-phone-callout {
        flex-direction: column;
        text-align: center;
        border-radius: 12px;
        padding: 14px 16px;
    }
}
