.svc-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: var(--navy);
    overflow: hidden;
}
.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(27, 41, 60, 0.52) 0%,
        rgba(27, 41, 60, 0.28) 50%,
        rgba(27, 41, 60, 0.08) 100%
    );
    z-index: 1;
    pointer-events: none;
}
.svc-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 3;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,40 Q180,10 360,40 T720,40 T1080,40 T1440,40 L1440,80 L0,80 Z' fill='%23fff8ed'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.svc-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 50% 25%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}
.svc-hero__bg--loaded {
    opacity: 1;
}
.svc-hero__inner {
    position: relative;
    z-index: 2;
    padding-top: clamp(90px, 12vw, 120px);
    padding-bottom: clamp(80px, 7vw, 80px);
}
.svc-hero__inner .hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}
.svc-hero__heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #ffffff;
    max-width: 760px;
    margin-bottom: 20px;
    margin-top: 12px;
    text-shadow: 2px 2px 0 var(--red-orange);
}
.svc-hero__sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.65;
    color: #ffffff;
    font-weight: 500;
    max-width: 580px;
    margin-top: 16px;
    margin-bottom: 28px;
    text-shadow: 2px 2px 0 rgba(27, 41, 60, 0.5);
}

.svc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--orange-bright);
    font-weight: 500;
}

.svc-hero__badge strong {
    font-weight: 700;
}

.section-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--navy);
    margin-bottom: 18px;
    padding: 6px 16px;
    background: #FFB87A;
    border: 2px solid var(--navy);
    border-radius: var(--radius-pill);
    box-shadow: 3px 3px 0 var(--red-orange);
}
.section-label--light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.2);
}

.svc-includes.section {
    padding-top: clamp(24px, 3vw, 40px);
    padding-bottom: clamp(40px, 5vw, 60px);
}
.svc-grid.section {
    padding-top: clamp(8px, 1vw, 16px);
    padding-bottom: clamp(40px, 5vw, 60px);
}
.svc-includes__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
}
.svc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 24px;
    padding: 8px 18px;
    background: var(--orange);
    border: 2px solid var(--navy);
    border-radius: var(--radius-pill);
    align-self: flex-start;
    box-shadow: 4px 4px 0 var(--red-orange);
}
.svc-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--navy);
    flex-shrink: 0;
}
.svc-audience-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--teal);
    text-decoration: none;
    transition: color var(--transition-fast), gap var(--transition-fast);
}
.svc-audience-card__link svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}
.svc-audience-card__link:hover {
    color: var(--teal-deep);
    gap: 10px;
}
.svc-audience-card__link:hover svg {
    transform: translateX(3px);
}


@media (min-width: 600px) {
    .svc-includes__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .svc-includes__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.svc-includes__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--paper);
    border: 2px solid var(--navy);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    font-size: 0.9rem;
    color: var(--pub-text-muted);
    line-height: 1.5;
    box-shadow: 3px 3px 0 var(--teal);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.svc-includes__item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--teal);
}

.svc-includes__icon {
    font-size: 1.1rem;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 1px;
}

.svc-cards {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    gap: 16px;
}

.svc-card {
    display: grid;
    grid-template-columns: 1fr;
    border: 2px solid var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--paper);
    box-shadow: 6px 6px 0 var(--red-orange);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.svc-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--red-orange);
}

@media (min-width: 768px) {
    .svc-card {
        grid-template-columns: 72px 1fr;
    }
}

.svc-card__number {
    display: none;
}

@media (min-width: 768px) {
    .svc-card__number {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-size: 1.6rem;
        font-weight: 700;
        color: rgba(255, 130, 16, 0.35);
background: rgba(255, 130, 16, 0.08);
border-right: 1px solid rgba(255, 130, 16, 0.15);
        writing-mode: vertical-lr;
        text-orientation: mixed;
        transform: rotate(180deg);
        letter-spacing: -0.02em;
    }
}

.svc-card__body {
    padding: clamp(24px, 4vw, 40px);
}

.svc-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.svc-card__desc {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.7;
    color: var(--pub-text-secondary);
    margin-bottom: 20px;
    max-width: 680px;
}

.svc-card__details {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 24px;
}

.svc-card__details li {
    font-size: 0.875rem;
    color: var(--pub-text-muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.svc-card__details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.5;
}

.svc-card__price {
    font-size: 0.875rem;
    color: var(--pub-text-muted);
    margin-bottom: 20px;
}

.svc-card__price strong {
    color: var(--navy);
    font-weight: 700;
}

.btn-primary {
    background: var(--gradient-warm);
    border: 2px solid var(--navy);
    box-shadow: 4px 4px 0 var(--navy);
    border-radius: var(--radius-pill);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--navy);
}

.btn-primary.btn-sm {
    padding: 9px 18px;
    font-size: 0.85rem;
}

.btn-white {
    background: #ffffff;
    color: var(--navy);
    border: 2px solid var(--navy);
    box-shadow: 4px 4px 0 var(--red-orange);
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.btn-white:hover {
    background: var(--orange);
    color: #ffffff;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--red-orange);
}

.btn-ghost-light {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-ghost-light:hover {
    background: #ffffff;
    color: var(--red-orange);
}

.svc-audiences {
    background: var(--cream);
    padding: clamp(40px, 5vw, 60px) 0;
}

.svc-audiences__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.svc-audience-card {
    background: var(--paper);
    border: 2px solid var(--navy);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: 4px 4px 0 var(--teal);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.svc-audience-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--teal);
}

.svc-audience-card__label {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.svc-audience-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--pub-text-secondary);
    margin: 0;
}

.faq-section {
    background: var(--paper);
    padding: clamp(40px, 5vw, 60px) 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 60px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: var(--orange);
    border-radius: 60% 40% 50% 60%;
    opacity: 0.08;
    z-index: 0;
}

.faq-section .wrapper {
    position: relative;
    z-index: 1;
}

.faq-section h2 {
    font-size: clamp(1.85rem, 3.6vw, 2.9rem);
    color: var(--navy);
    max-width: 640px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}

.faq-item {
    background: var(--paper);
    border: 3px solid var(--navy);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    box-shadow: 4px 4px 0 var(--teal);
    overflow: hidden;
}

.faq-item:nth-child(2n) {
    box-shadow: 4px 4px 0 var(--orange);
}

.faq-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--teal);
}

.faq-item:nth-child(2n):hover {
    box-shadow: 6px 6px 0 var(--orange);
}

.faq-item--open {
    background: rgba(248, 62, 12, 0.04);
    box-shadow: 6px 6px 0 var(--red-orange);
}

.faq-item--open:nth-child(2n) {
    box-shadow: 6px 6px 0 var(--red-orange);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--navy);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--red-orange);
}

.faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all var(--transition-base);
}

.faq-item--open .faq-icon {
    background: var(--red-orange);
    border-color: var(--red-orange);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    animation: faqFade 0.3s ease;
}

.faq-item--open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 1.02rem;
    color: var(--pub-text-secondary);
    line-height: 1.75;
    max-width: 760px;
    margin: 0;
    font-weight: 500;
}

@keyframes faqFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-band {
    background: var(--cream);
    padding: clamp(32px, 4vw, 56px) 0;
    position: relative;
    width: 100%;
}
.cta-band::before {
    display: none;
}
.cta-band__inner {
    background: var(--gradient-pop);
    border: 4px solid var(--navy);
    border-radius: var(--radius-xl);
    padding: clamp(36px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: 10px 10px 0 var(--red-orange);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.cta-band__inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: var(--red-orange);
    border-radius: 50% 60% 40% 55%;
    opacity: 0.35;
    pointer-events: none;
}
.cta-band__inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 60% 40% 50% 60%;
    pointer-events: none;
}
@media (min-width: 800px) {
    .cta-band__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.cta-band__content {
    flex: 1;
    z-index: 1;
    position: relative;
}
.cta-band__heading {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.4vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-shadow: 4px 4px 0 var(--navy);
}
.cta-band__sub {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
    text-shadow: 1px 1px 0 rgba(27, 41, 60, 0.4);
}
.cta-coverage {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.cta-coverage::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffffff;
}
.cta-band__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    justify-content: center;
}
.cta-band__actions .btn-white {
    background: #ffffff;
    color: var(--navy);
    border: 2px solid var(--navy);
    box-shadow: 4px 4px 0 var(--navy);
}
.cta-band__actions .btn-white:hover {
    background: var(--navy);
    color: #ffffff;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--navy);
}
.cta-band__actions .btn-ghost-light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.cta-band__actions .btn-ghost-light:hover {
    background: #ffffff;
    color: var(--red-orange);
    border-color: #ffffff;
}
@media (min-width: 480px) {
    .cta-band__actions {
        flex-direction: row;
    }
}
@media (max-width: 760px) {
    .svc-cards {
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .svc-hero__bg {
        background-position: 50% 20%;
    }
}
@media (max-width: 600px) {
    .svc-audiences__grid {
        grid-template-columns: 1fr;
    }
    .cta-band__actions {
        width: 100%;
    }
    .btn-primary,
    .btn-white,
    .btn-ghost-light {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .svc-hero__bg {
        background-position: 50% 15%;
    }
}
