/* SEO service landing pages: keeps Weatherblazer header/footer unchanged */
.seo-page {
    background: #f4f6f8;
    color: #152237;
    font-family: 'Poppins', sans-serif;
}

.seo-page section {
    position: relative;
}

.seo-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.seo-breadcrumb a {
    color: #fff;
    font-weight: 600;
}

.seo-hero {
    overflow: hidden;
    padding: 86px 0 76px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(226,66,42,.33), transparent 34%),
        linear-gradient(135deg, rgba(15,30,50,.97), rgba(10,35,66,.92)),
        url('https://weatherblazer.com/wp-content/uploads/2024/06/banner-bg.jpg') center/cover no-repeat;
}

.seo-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 7px;
    background: linear-gradient(90deg, transparent, #e2422a, #ffd166, transparent);
}

.seo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    gap: 42px;
    align-items: start;
}

.seo-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.seo-hero h1 {
    max-width: 860px;
    margin: 18px 0 18px;
    font-size: clamp(34px, 5.4vw, 68px);
    line-height: .98;
    letter-spacing: -2.2px;
    font-weight: 900;
}

.seo-hero h1 span {
    color: #ffcf6a;
}

.seo-hero-copy {
    max-width: 780px;
    margin: 0 0 26px;
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 1.75;
}

.seo-hero-actions,
.seo-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.seo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.seo-btn.primary {
    background: #e2422a;
    color: #fff;
    box-shadow: 0 12px 28px rgba(226,66,42,.33);
}

.seo-btn.primary:hover {
    background: #c93520;
    transform: translateY(-2px);
}

.seo-btn.secondary {
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
}

.seo-btn.secondary:hover {
    background: rgba(255,255,255,.16);
    transform: translateY(-2px);
}

.seo-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.seo-trust-card {
    padding: 17px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.seo-trust-card strong {
    display: block;
    font-size: 20px;
    color: #ffcf6a;
}

.seo-trust-card span {
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.seo-form-card {
    border-radius: 22px;
    padding: 26px;
    background: #fff;
    color: #132238;
    box-shadow: 0 20px 60px rgba(0,0,0,.26);
    border: 1px solid rgba(255,255,255,.2);
}

.seo-form-card h2,
.seo-form-card h3 {
    margin: 0 0 8px;
    color: #0F1E32;
    font-size: 24px;
    line-height: 1.15;
}

.seo-form-card p {
    margin: 0 0 18px;
    color: #5d6b7d;
    line-height: 1.6;
}

.seo-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.seo-form .full {
    grid-column: 1 / -1;
}

.seo-form label {
    display: block;
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: #0F1E32;
}

.seo-form input,
.seo-form select,
.seo-form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1.4px solid #dfe6ef;
    border-radius: 11px;
    background: #f8fafc;
    color: #152237;
    font: inherit;
    font-size: 14px;
}

.seo-form textarea {
    min-height: 94px;
    resize: vertical;
}

.seo-form input:focus,
.seo-form select:focus,
.seo-form textarea:focus {
    outline: none;
    border-color: #e2422a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(226,66,42,.1);
}

.seo-form button {
    grid-column: 1 / -1;
    min-height: 50px;
    border-radius: 12px;
    border: none;
    background: #e2422a;
    color: #fff;
    font-weight: 900;
    letter-spacing: .4px;
    cursor: pointer;
}

.seo-form button:hover {
    background: #c93520;
}

.seo-section {
    padding: 76px 0;
}

.seo-section.white {
    background: #fff;
}

.seo-section.dark {
    background: #0F1E32;
    color: #fff;
}

.seo-section-head {
    max-width: 850px;
    margin: 0 auto 36px;
    text-align: center;
}

.seo-section-head.left {
    margin-left: 0;
    text-align: left;
}

.seo-section-head .eyebrow {
    color: #e2422a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 12px;
}

.seo-section-head h2 {
    margin: 8px 0 12px;
    color: #0F1E32;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.seo-section.dark .seo-section-head h2,
.seo-section.dark .seo-section-head p {
    color: #fff;
}

.seo-section-head p {
    color: #627087;
    line-height: 1.75;
    font-size: 16px;
}

.seo-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.seo-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.seo-card {
    height: 100%;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e6edf4;
    box-shadow: 0 8px 28px rgba(15,30,50,.06);
}

.seo-card.featured {
    background: linear-gradient(135deg, #0F1E32, #1b3b62);
    color: #fff;
}

.seo-card h3 {
    margin: 0 0 10px;
    color: #0F1E32;
    font-size: 20px;
}

.seo-card.featured h3 {
    color: #fff;
}

.seo-card p,
.seo-card li {
    color: #5d6b7d;
    line-height: 1.72;
    font-size: 15px;
}

.seo-card.featured p,
.seo-card.featured li {
    color: rgba(255,255,255,.86);
}

.seo-card ul,
.seo-check-list {
    display: grid;
    gap: 10px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.seo-card li,
.seo-check-list li {
    position: relative;
    padding-left: 26px;
}

.seo-card li::before,
.seo-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #e2422a;
    font-weight: 900;
}

.seo-band {
    border-radius: 28px;
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(226,66,42,.18), transparent 35%),
        #0F1E32;
    color: #fff;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
}

.seo-band h2 {
    margin: 0 0 12px;
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.1;
}

.seo-band p {
    color: rgba(255,255,255,.82);
    line-height: 1.75;
}

.seo-process {
    counter-reset: step;
    display: grid;
    gap: 16px;
}

.seo-process li {
    counter-increment: step;
    position: relative;
    list-style: none;
    padding: 18px 18px 18px 72px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e6edf4;
}

.seo-process li::before {
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e2422a;
    color: #fff;
    font-weight: 900;
}

.seo-faq details {
    padding: 20px 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e6edf4;
    box-shadow: 0 6px 22px rgba(15,30,50,.05);
}

.seo-faq details + details {
    margin-top: 12px;
}

.seo-faq summary {
    cursor: pointer;
    color: #0F1E32;
    font-weight: 800;
}

.seo-faq p {
    margin: 12px 0 0;
    color: #5d6b7d;
    line-height: 1.7;
}

.seo-mini-form {
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 34px rgba(15,30,50,.08);
    border: 1px solid #e6edf4;
}

.seo-final-cta {
    text-align: center;
    padding: 70px 0;
    background:
        radial-gradient(circle at 50% 0, rgba(255,207,106,.18), transparent 34%),
        linear-gradient(135deg, #0F1E32, #102947);
    color: #fff;
}

.seo-final-cta h2 {
    margin: 0 auto 12px;
    max-width: 850px;
    font-size: clamp(30px, 4.6vw, 56px);
    line-height: 1.05;
    letter-spacing: -1.7px;
}

.seo-final-cta p {
    max-width: 760px;
    margin: 0 auto 24px;
    color: rgba(255,255,255,.82);
    line-height: 1.75;
}

@media (max-width: 980px) {
    .seo-hero-grid,
    .seo-band,
    .seo-grid-2 {
        grid-template-columns: 1fr;
    }

    .seo-trust-strip,
    .seo-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .seo-hero {
        padding: 58px 0 52px;
    }

    .seo-form,
    .seo-trust-strip,
    .seo-grid-3 {
        grid-template-columns: 1fr;
    }

    .seo-form-card,
    .seo-mini-form,
    .seo-band {
        padding: 22px;
    }
}
