/* ── Reason Type / Service Detail Page Fix ── */
.service-hero {
    background: linear-gradient(135deg,
            #0b1e38 0%,
            #0f2744 45%,
            #1a3a5c 100%);
    color: #fff;
    padding: 4rem 2.5rem 3.4rem;
    position: relative;
    overflow: hidden;
}

.service-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 40%,
            rgba(224, 90, 43, 0.2),
            transparent 65%),
        radial-gradient(ellipse at 12% 85%,
            rgba(13, 158, 117, 0.14),
            transparent 58%);
    pointer-events: none;
}

.service-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1rem;
}

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.72);
}

.service-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffb08d;
    margin-bottom: 0.8rem;
}

.service-h1 {
    font-family: "Fraunces", serif;
    font-size: 42px;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.service-lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    max-width: 720px;
    margin-bottom: 1.35rem;
}

.hero-checks {
    display: flex;
    gap: 10px 16px;
    flex-wrap: wrap;
    margin: 1.1rem 0 1.5rem;
}

.hero-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13.5px;
}

.hero-check i {
    color: #59d49f;
    font-size: 16px;
}

.service-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-white {
    background: #fff;
    color: var(--navy);
    padding: 13px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.btn-white:hover {
    background: #f5f4f0;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.hero-price-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 1.45rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.hpc-label {
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ffb08d;
    margin-bottom: 6px;
}

.hpc-title {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}

.hpc-price {
    font-family: "Fraunces", serif;
    font-size: 31px;
    color: #fff;
    margin-bottom: 4px;
}

.hpc-note {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.hpc-list {
    list-style: none;
    margin: 0 0 1.1rem;
}

.hpc-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hpc-list li:last-child {
    border-bottom: none;
}

.hpc-list i {
    color: #59d49f;
    margin-top: 2px;
}

.service-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.service-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.strip-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 1.1rem 1rem;
    border-right: 1px solid var(--border);
}

.strip-item:last-child {
    border-right: none;
}

.strip-item>i {
    font-size: 20px;
    color: var(--orange);
    margin-top: 2px;
}

.strip-title {
    font-weight: 900;
    color: var(--navy);
    font-size: 13.5px;
}

.strip-sub {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.45;
}

.content-section {
    padding: 3.6rem 2.5rem;
    background: var(--bg);
}

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

.content-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: start;
}

.prose-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.9rem;
    margin-bottom: 1rem;
}

.white .prose-card {
    background: var(--bg);
}

.prose-card h2 {
    font-family: "Fraunces", serif;
    color: var(--navy);
    font-size: 29px;
    line-height: 1.2;
    margin: 0 0 0.8rem;
}

.prose-card h3 {
    color: var(--navy);
    font-size: 18px;
    margin: 1.4rem 0 0.55rem;
}

.prose-card p {
    color: #555;
    font-size: 14.5px;
    line-height: 1.85;
    margin: 0.65rem 0;
}

.prose-card ul,
.prose-card ol {
    margin: 0.75rem 0 1rem 1.15rem;
    color: #444;
}

.prose-card li {
    font-size: 14px;
    line-height: 1.7;
    margin: 0.3rem 0;
}

.side-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.4rem;
    position: sticky;
    top: 82px;
}

.side-card h3 {
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 0.65rem;
}

.side-card p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.side-list {
    list-style: none;
    margin: 0 0 1rem;
}

.side-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    color: #444;
    padding: 7px 0;
    border-bottom: 1px solid #eeeae3;
}

.side-list li:last-child {
    border-bottom: none;
}

.side-list i {
    color: var(--teal);
    margin-top: 2px;
}

.btn-small-primary {
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
    padding: 11px 15px;
    font-weight: 900;
    font-size: 13.5px;
    display: block;
    text-align: center;
    text-decoration: none;
}

.btn-small-primary:hover {
    background: var(--orange2);
}

.btn-small-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: 900;
    font-size: 13.5px;
    display: block;
    text-align: center;
    margin-top: 8px;
    text-decoration: none;
}

.btn-small-outline:hover {
    background: var(--light);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 1.2rem;
}

.mini-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
}

.mini-card h4 {
    font-size: 14.5px;
    color: var(--navy);
    margin-bottom: 5px;
}

.mini-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.related-guides {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 1120px;
}

.related-guides h2 {
    font-family: "Fraunces", serif;
    color: var(--navy);
    font-size: 24px;
    margin-bottom: 1rem;
}

.guide-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.guide-tile {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: 0.15s;
}

.guide-tile:hover {
    border-color: var(--navy2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 39, 68, 0.08);
}

.guide-tile .gcat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    font-weight: 800;
}

.guide-tile h3 {
    font-size: 17px;
    color: var(--navy);
    margin: 0.4rem 0;
}

.guide-tile p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.related-guides {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 1120px;
}

.related-guides h2 {
    font-family: "Fraunces", serif;
    color: var(--navy);
    font-size: 24px;
    margin-bottom: 1rem;
}

.hero-img-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 200%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
}

.hero-img-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0f2744 0%, transparent 75%);
    z-index: 1;
}

.hero-img-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0b1e38 0%, transparent 0%);
    z-index: 1;
}

.hero-img-panel img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-left: 50%;
    opacity: 0.38;
    display: block;
}

@media (max-width: 900px) {

    .hero-grid,
    .comp-grid,
    .mkt-inner {
        grid-template-columns: 1fr;
    }

    .svc-grid,
    .tgrid,
    .bgrid,
    .price-grid,
    .ind-grid,
    .path-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .h1 {
        font-size: 34px;
    }

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

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

    .service-hero {
        padding: 2.8rem 1.25rem;
    }

    .service-hero-inner,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .service-h1 {
        font-size: 34px;
    }

    .hero-price-card,
    .side-card {
        position: static;
    }

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

    .strip-item:nth-child(2) {
        border-right: none;
    }

    .strip-item {
        border-bottom: 1px solid var(--border);
    }

    .content-section {
        padding: 2.7rem 1.25rem;
    }

    .prose-card {
        padding: 1.35rem;
    }

    .service-ctas a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .guide-hero-inner,
    .guide-wrap {
        grid-template-columns: 1fr;
    }

    .guide-card {
        max-width: 420px;
    }

    .guide-h1 {
        font-size: 34px;
    }

    .guide-sidebar {
        position: static;
    }

    .guide-list-grid {
        grid-template-columns: 1fr;
    }

    .guide-article {
        padding: 1.4rem;
    }

    .guide-wrap {
        padding: 2rem 1rem;
    }

    .guide-hero {
        padding: 3rem 1rem;
    }

    /* Hero images hidden on tablet */
    .hero-img-panel,
    .ind-hero-img-panel {
        display: none !important;
    }
}

.rt-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0.9rem 0;
}

.rt-info-item {
    background: var(--bg, #f5f4f0);
    border: 1px solid var(--border, #e2dfd8);
    border-radius: 10px;
    padding: 0.85rem 1rem;
}

.rt-info-item strong {
    display: block;
    font-size: 13px;
    color: var(--navy, #0f2744);
    margin-bottom: 0.3rem;
}

.rt-info-item span {
    font-size: 12.5px;
    color: #555;
    line-height: 1.55;
}

.rt-timing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0.85rem 0;
}

.rt-timing {
    border-radius: 10px;
    padding: 0.9rem 1rem;
    border: 1.5px solid;
}

.rt-timing--drug {
    background: #fff8f0;
    border-color: #f5c4a8;
}

.rt-timing--alc {
    background: #fff0f0;
    border-color: #f5a8a8;
}

.rt-timing-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy, #0f2744);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.rt-timing-val {
    font-family: "Fraunces", serif;
    font-size: 22px;
    color: var(--orange, #e05a2b);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.rt-timing-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.rt-checklist {
    list-style: none;
    margin: 0.7rem 0;
}

.rt-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: #444;
    line-height: 1.65;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border, #e2dfd8);
}

.rt-checklist li:last-child {
    border-bottom: none;
}

.rt-checklist li i {
    font-size: 16px;
    color: var(--teal, #0d9e75);
    flex-shrink: 0;
    margin-top: 2px;
}

.rt-warn-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff8f0;
    border: 1.5px solid #f5c4a8;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin: 0.85rem 0;
}

.rt-warn-box i {
    font-size: 18px;
    color: var(--orange, #e05a2b);
    flex-shrink: 0;
    margin-top: 1px;
}

.rt-warn-box p {
    font-size: 13px;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

.rt-warn-box strong {
    color: var(--navy, #0f2744);
}

.rt-panel-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0.85rem 0;
}

.rt-panel-item {
    background: var(--bg, #f5f4f0);
    border: 1px solid var(--border, #e2dfd8);
    border-radius: 8px;
    padding: 0.7rem 0.9rem;
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 7px;
}

.rt-panel-item i {
    font-size: 14px;
    color: var(--teal, #0d9e75);
    flex-shrink: 0;
}

.rt-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0.85rem 0;
}

.rt-result {
    background: var(--navy, #0f2744);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    text-align: center;
}

.rt-result-val {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 20px;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.rt-result-lbl {
    display: block;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

@media (max-width: 600px) {

    .rt-info-grid,
    .rt-timing-grid,
    .rt-panel-list,
    .rt-result-grid {
        grid-template-columns: 1fr;
    }
}
