/* === CSS Variables === */
:root {
    --brand-red: #e3003a;
    --brand-black: #000000;
    --text-dark: #1a1a1a;
    --text-grey: #666666;
    --bg-light: #ffffff;
    --bg-offwhite: #fcfcfc;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg-light);
    margin: 0;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* === MAIN WRAPPER FIX === */
.service-main-wrapper {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
}

/* === SERVICE PAGE TITLE === */
.service-page-header {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 150px 0 40px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    position: relative;
}

.service-page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(227, 0, 58, 0.08);
    color: var(--brand-red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.service-page-header h1 {
    font-size: clamp(1.35rem, 3.2vw, 2.3rem);
    font-weight: 800;
    color: var(--brand-black);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.25;
    letter-spacing: 0.8px;
    max-width: 900px;
    position: relative;
    word-break: break-word;
}

.service-page-header h1::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background: var(--brand-red);
    margin: 14px auto 0 auto;
    border-radius: 2px;
}

/* === GLOBAL BUTTONS === */
.btn-red {
    background: var(--brand-red);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-red:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(227, 0, 58, 0.6);
    color: #fff;
}

.btn-black {
    background: var(--brand-black);
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-black:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    background: linear-gradient(-45deg, #000000, #1a0008, #000000, #2b0010);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero h2 {
    font-size: clamp(1.4rem, 4vw + 0.5rem, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    word-break: break-word;
}

.hero p {
    font-size: clamp(0.88rem, 1.5vw, 1.1rem);
    color: #ccc;
    margin-bottom: 35px;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero .btn-red {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradientBG {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* === FEATURE BLOCKS === */
.page-sections {
    padding: 100px 0;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.sub-title {
    color: var(--brand-red);
    font-weight: 700;
    font-size: clamp(10px, 1.2vw, 13px);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.text-content h2 {
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--brand-black);
    line-height: 1.25;
    margin-bottom: 20px;
    text-transform: uppercase;
    word-break: break-word;
}

.text-content p {
    color: var(--text-grey);
    margin-bottom: 25px;
    font-size: clamp(0.88rem, 1.2vw, 0.95rem);
}

.text-content ul {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
}

.text-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-grey);
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
}

.text-content ul li::before {
    content: "•";
    color: var(--brand-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* === MID BANNER === */
.mid-banner {
    padding: 120px 0;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.mid-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.mid-banner .container {
    position: relative;
    z-index: 2;
}

.mid-banner h2 {
    color: var(--brand-red);
    font-size: clamp(1.35rem, 3.5vw, 3.2rem);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    word-break: break-word;
}

.mid-banner p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    color: #f8f9fa;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* === FAQ SECTION === */
.faq-section {
    padding: 60px 0;
    background: var(--bg-offwhite);
    border-top: 1px solid #eee;
}

.faq-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 35px;
    align-items: start;
}

.faq-title {
    position: sticky;
    top: 100px;
}

.faq-title h2 {
    color: var(--brand-red);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.25;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.faq-list {
    width: 100%;
    min-width: 0;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.accordion-header {
    cursor: pointer;
    font-weight: 700;
    color: var(--brand-black);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 15px;
}

.accordion-header span {
    color: var(--brand-red);
    font-size: 22px;
    font-weight: 400;
    flex-shrink: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    color: var(--text-grey);
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    padding-bottom: 12px;
    margin: 0;
}

/* === PROMISES === */
.promises {
    padding: 80px 0;
    text-align: center;
    margin: 0 auto;
}

.promises h2 {
    color: var(--brand-red);
    text-transform: uppercase;
    font-size: clamp(1.35rem, 3vw, 2rem);
    margin-bottom: 40px;
    font-weight: 800;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
}

.promise-card {
    background: white;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-3px);
}

.promise-card h4 {
    color: var(--brand-black);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    font-weight: 700;
}

.promise-card p {
    color: var(--text-grey);
    font-size: clamp(0.82rem, 1.1vw, 0.88rem);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   ORIGINAL RESPONSIVE RULES
   ========================================================================== */

/* Tablets / Laptops under 992px */
@media (max-width: 992px) {

    .service-page-header {
        padding: 120px 0 30px 0;
    }

    .hero {
        padding: 70px 0 50px 0;
        min-height: auto;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero p {
        margin: 0 auto 30px auto;
    }

    .hero-image {
        max-width: 380px;
        width: 100%;
        margin: 0 auto;
    }

    .page-sections {
        padding: 60px 0;
    }

    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
        text-align: center;
        gap: 35px;
        margin-bottom: 60px;
    }

    .text-content ul {
        text-align: left;
        display: inline-block;
        width: 100%;
    }

    .mid-banner {
        padding: 70px 0;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-title {
        position: relative;
        top: 0;
        text-align: center;
    }

    .faq-title h2 {
        white-space: normal;
    }

    .promises {
        padding: 60px 0;
    }

    .promises-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* Smartphones under 768px */
@media (max-width: 768px) {

    .container {
        padding: 0 16px;
    }

    .service-page-header {
        padding: 100px 0 25px 0;
    }

    .service-badge {
        font-size: 10px;
        padding: 5px 14px;
        letter-spacing: 1px;
    }

    .btn-red {
        padding: 12px 30px;
        font-size: 12px;
    }

    .btn-black {
        padding: 10px 28px;
        font-size: 11px;
    }

    .hero h2 {
        font-size: 1.35rem;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 0.88rem;
        margin-bottom: 25px;
    }

    .hero-image {
        max-width: 280px;
    }

    .sub-title {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .text-content h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .text-content p {
        font-size: 0.88rem;
        margin-bottom: 18px;
    }

    .mid-banner h2 {
        font-size: 1.35rem;
        margin-bottom: 12px;
    }

    .mid-banner p {
        font-size: 0.88rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .faq-section {
        padding: 45px 0;
    }

    .faq-title h2 {
        font-size: 1.1rem;
    }

    .accordion-header {
        font-size: 0.88rem;
        padding: 10px 0;
    }

    .promises h2 {
        font-size: 1.35rem;
        margin-bottom: 25px;
    }

    .promise-card {
        padding: 20px;
    }
}

/* Small Screens under 480px */
@media (max-width: 480px) {

    .service-page-header h1 {
        font-size: 1.2rem;
    }

    .hero h2 {
        font-size: 1.25rem;
    }

    .text-content h2 {
        font-size: 1.2rem;
    }

    .mid-banner h2 {
        font-size: 1.2rem;
    }

    .promises-grid {
        grid-template-columns: 1fr;
    }

    .btn-red,
    .btn-black {
        width: 100%;
        box-sizing: border-box;
    }
}


/* ==========================================================================
   FINAL RESPONSIVE MOBILE OPTIMIZATION
   Keeps the original design intact — responsive-only improvements.
   ========================================================================== */

/* Global safety + better mobile rendering */
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
main,
header,
footer,
section,
nav,
article,
aside,
div {
    max-width: 100%;
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

img,
video {
    height: auto;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button,
a {
    touch-action: manipulation;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

/* Prevent long URLs / words from breaking mobile layouts */
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
li {
    overflow-wrap: break-word;
}

/* Make container flexible on every viewport */
.container {
    width: 100%;
    max-width: 1250px;
    padding-left: 20px;
    padding-right: 20px;
}

/* --------------------------------------------------------------------------
   Tablets
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {

    .hero .container {
        gap: 35px;
    }

    .feature-block {
        gap: 40px;
    }

    .promises-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* --------------------------------------------------------------------------
   Tablet / Large Mobile — 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Header */
    .service-page-header {
        padding: 92px 0 26px;
    }

    .service-page-header .container {
        width: 100%;
    }

    .service-badge {
        font-size: 9px;
        padding: 5px 13px;
        letter-spacing: 0.9px;
        max-width: 92%;
        text-align: center;
        line-height: 1.3;
    }

    .service-page-header h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(1.08rem, 4.8vw, 1.55rem);
        line-height: 1.18;
        letter-spacing: 0.35px;
        padding: 0 4px;
    }

    .service-page-header h1::after {
        width: 36px;
        height: 2px;
        margin-top: 10px;
    }

    /* Buttons */
    .btn-red {
        min-height: 42px;
        padding: 11px 24px;
        font-size: 11px;
        letter-spacing: 0.7px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }

    .btn-black {
        min-height: 40px;
        padding: 10px 22px;
        font-size: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
    }

    /* Hero */
    .hero {
        padding: 62px 0 48px;
        min-height: auto;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero h2 {
        font-size: clamp(1.05rem, 5.2vw, 1.45rem);
        line-height: 1.18;
        margin-bottom: 12px;
    }

    .hero p {
        width: 100%;
        max-width: 520px;
        font-size: 0.78rem;
        line-height: 1.65;
        margin: 0 auto 22px;
    }

    .hero .btn-red {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
    }

    /* Main sections */
    .page-sections {
        padding: 58px 0;
    }

    .feature-block,
    .feature-block.reverse {
        width: 100%;
        flex-direction: column;
        gap: 26px;
        margin-bottom: 55px;
        text-align: center;
    }

    .text-content,
    .image-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .sub-title {
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 7px;
        line-height: 1.35;
    }

    .text-content h2 {
        font-size: clamp(1.02rem, 4.8vw, 1.3rem);
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .text-content p {
        font-size: 0.76rem;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .text-content ul {
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .text-content ul li {
        padding-left: 17px;
        margin-bottom: 8px;
        font-size: 0.74rem;
        line-height: 1.55;
    }

    .text-content ul li::before {
        font-size: 15px;
    }

    .image-content img {
        width: 100%;
        max-width: 100%;
        border-radius: 9px;
    }

    /* Mid banner */
    .mid-banner {
        padding: 68px 0;
        min-height: auto;
    }

    .mid-banner .container {
        width: 100%;
    }

    .mid-banner h2 {
        font-size: clamp(1.02rem, 5vw, 1.5rem);
        line-height: 1.2;
        margin-bottom: 11px;
    }

    .mid-banner p {
        width: 100%;
        max-width: 620px;
        font-size: 0.76rem;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    /* FAQ */
    .faq-section {
        padding: 44px 0;
    }

    .faq-container {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-title {
        position: relative;
        top: auto;
        text-align: center;
    }

    .faq-title h2 {
        white-space: normal;
        font-size: 1rem;
        line-height: 1.25;
    }

    .faq-list {
        width: 100%;
    }

    .accordion-item {
        margin-bottom: 3px;
        padding-bottom: 3px;
    }

    .accordion-header {
        width: 100%;
        min-height: 42px;
        padding: 10px 0;
        font-size: 0.76rem;
        line-height: 1.4;
        gap: 12px;
    }

    .accordion-header span {
        font-size: 19px;
        min-width: 20px;
    }

    .accordion-content p {
        font-size: 0.72rem;
        line-height: 1.65;
        padding-bottom: 11px;
    }

    /* Promises */
    .promises {
        padding: 56px 0;
    }

    .promises h2 {
        font-size: clamp(1.05rem, 4.8vw, 1.35rem);
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .promises-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .promise-card {
        width: 100%;
        padding: 18px;
        border-radius: 8px;
    }

    .promise-card h4 {
        font-size: 0.82rem;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .promise-card p {
        font-size: 0.7rem;
        line-height: 1.6;
    }
}

/* --------------------------------------------------------------------------
   Standard phones — 600px
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .service-page-header {
        padding-top: 88px;
        padding-bottom: 23px;
    }

    .service-badge {
        font-size: 8.5px;
        padding: 5px 11px;
        letter-spacing: 0.7px;
    }

    .service-page-header h1 {
        font-size: clamp(0.98rem, 4.7vw, 1.25rem);
        line-height: 1.16;
    }

    .hero {
        padding-top: 56px;
        padding-bottom: 42px;
    }

    .hero .container {
        gap: 23px;
    }

    .hero h2 {
        font-size: clamp(0.94rem, 5vw, 1.2rem);
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 0.72rem;
        line-height: 1.62;
        margin-bottom: 20px;
    }

    .hero-image {
        max-width: 260px;
    }

    .page-sections {
        padding: 50px 0;
    }

    .feature-block,
    .feature-block.reverse {
        gap: 22px;
        margin-bottom: 48px;
    }

    .sub-title {
        font-size: 8.5px;
        letter-spacing: 0.8px;
    }

    .text-content h2 {
        font-size: clamp(0.96rem, 4.8vw, 1.16rem);
    }

    .text-content p {
        font-size: 0.71rem;
    }

    .text-content ul li {
        font-size: 0.69rem;
        padding-left: 15px;
    }

    .mid-banner {
        padding: 58px 0;
    }

    .mid-banner h2 {
        font-size: clamp(0.96rem, 5vw, 1.18rem);
    }

    .mid-banner p {
        font-size: 0.7rem;
        line-height: 1.6;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-title h2 {
        font-size: 0.94rem;
    }

    .accordion-header {
        font-size: 0.7rem;
    }

    .accordion-header span {
        font-size: 17px;
    }

    .accordion-content p {
        font-size: 0.67rem;
    }

    .promises {
        padding: 48px 0;
    }

    .promises h2 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .promise-card {
        padding: 16px;
    }

    .promise-card h4 {
        font-size: 0.78rem;
    }

    .promise-card p {
        font-size: 0.67rem;
    }

    .btn-red,
    .btn-black {
        width: 100%;
        max-width: 360px;
    }
}

/* --------------------------------------------------------------------------
   Small phones — 480px
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {

    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        line-height: 1.6;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .service-page-header {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .service-badge {
        font-size: 8px;
        padding: 4px 10px;
        margin-bottom: 9px;
    }

    .service-page-header h1 {
        font-size: clamp(0.88rem, 4.8vw, 1.12rem);
        letter-spacing: 0.2px;
        line-height: 1.15;
    }

    .service-page-header h1::after {
        width: 30px;
        height: 2px;
        margin-top: 8px;
    }

    .btn-red {
        min-height: 40px;
        padding: 10px 18px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .btn-black {
        min-height: 38px;
        padding: 9px 17px;
        font-size: 9px;
    }

    .hero {
        padding-top: 48px;
        padding-bottom: 38px;
    }

    .hero .container {
        gap: 20px;
    }

    .hero h2 {
        font-size: clamp(0.86rem, 4.9vw, 1.08rem);
        line-height: 1.16;
    }

    .hero p {
        font-size: 0.67rem;
        line-height: 1.6;
    }

    .hero-image {
        max-width: 230px;
    }

    .hero-image img {
        border-radius: 11px;
    }

    .page-sections {
        padding: 42px 0;
    }

    .feature-block,
    .feature-block.reverse {
        gap: 18px;
        margin-bottom: 42px;
    }

    .sub-title {
        font-size: 8px;
        margin-bottom: 6px;
    }

    .text-content h2 {
        font-size: clamp(0.9rem, 4.8vw, 1.05rem);
        line-height: 1.16;
        margin-bottom: 10px;
    }

    .text-content p {
        font-size: 0.67rem;
        line-height: 1.6;
    }

    .text-content ul li {
        font-size: 0.65rem;
        line-height: 1.5;
        padding-left: 14px;
        margin-bottom: 7px;
    }

    .text-content ul li::before {
        font-size: 13px;
    }

    .mid-banner {
        padding: 50px 0;
    }

    .mid-banner h2 {
        font-size: clamp(0.9rem, 5vw, 1.08rem);
        margin-bottom: 9px;
    }

    .mid-banner p {
        font-size: 0.65rem;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .faq-section {
        padding: 36px 0;
    }

    .faq-title h2 {
        font-size: 0.88rem;
    }

    .accordion-header {
        font-size: 0.65rem;
        line-height: 1.35;
        padding: 9px 0;
        gap: 8px;
    }

    .accordion-header span {
        font-size: 16px;
        width: 18px;
    }

    .accordion-content p {
        font-size: 0.62rem;
        line-height: 1.58;
        padding-bottom: 9px;
    }

    .promises {
        padding: 42px 0;
    }

    .promises h2 {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .promises-grid {
        gap: 10px;
    }

    .promise-card {
        padding: 14px;
    }

    .promise-card h4 {
        font-size: 0.74rem;
    }

    .promise-card p {
        font-size: 0.62rem;
        line-height: 1.55;
    }
}

/* --------------------------------------------------------------------------
   Very small phones — 390px
   -------------------------------------------------------------------------- */
@media (max-width: 390px) {

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .service-page-header {
        padding-top: 76px;
        padding-bottom: 18px;
    }

    .service-badge {
        font-size: 7.5px;
        padding: 4px 9px;
        letter-spacing: 0.5px;
    }

    .service-page-header h1 {
        font-size: clamp(0.82rem, 4.8vw, 1rem);
        max-width: 100%;
    }

    .hero {
        padding-top: 44px;
        padding-bottom: 34px;
    }

    .hero h2 {
        font-size: clamp(0.8rem, 5vw, 0.98rem);
    }

    .hero p {
        font-size: 0.62rem;
        line-height: 1.58;
    }

    .hero-image {
        max-width: 205px;
    }

    .text-content h2 {
        font-size: 0.88rem;
    }

    .text-content p {
        font-size: 0.63rem;
    }

    .text-content ul li {
        font-size: 0.61rem;
    }

    .mid-banner h2 {
        font-size: 0.9rem;
    }

    .mid-banner p {
        font-size: 0.61rem;
    }

    .accordion-header {
        font-size: 0.61rem;
    }

    .accordion-content p {
        font-size: 0.59rem;
    }

    .promise-card h4 {
        font-size: 0.71rem;
    }

    .promise-card p {
        font-size: 0.59rem;
    }
}

/* --------------------------------------------------------------------------
   Extremely small phones — 360px
   -------------------------------------------------------------------------- */
@media (max-width: 360px) {

    .container {
        padding-left: 9px;
        padding-right: 9px;
    }

    .service-page-header {
        padding-top: 72px;
        padding-bottom: 17px;
    }

    .service-page-header h1 {
        font-size: 0.79rem;
        letter-spacing: 0.1px;
    }

    .service-badge {
        font-size: 7px;
        padding: 3px 8px;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .hero .container {
        gap: 17px;
    }

    .hero h2 {
        font-size: 0.76rem;
    }

    .hero p {
        font-size: 0.59rem;
    }

    .hero-image {
        max-width: 185px;
    }

    .btn-red,
    .btn-black {
        max-width: 100%;
        font-size: 8.5px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .sub-title {
        font-size: 7px;
    }

    .text-content h2 {
        font-size: 0.84rem;
    }

    .text-content p {
        font-size: 0.6rem;
    }

    .text-content ul li {
        font-size: 0.58rem;
    }

    .mid-banner h2 {
        font-size: 0.86rem;
    }

    .mid-banner p {
        font-size: 0.58rem;
    }

    .faq-title h2 {
        font-size: 0.8rem;
    }

    .accordion-header {
        font-size: 0.58rem;
    }

    .accordion-header span {
        font-size: 15px;
    }

    .accordion-content p {
        font-size: 0.56rem;
    }

    .promises h2 {
        font-size: 0.86rem;
    }

    .promise-card {
        padding: 12px;
    }

    .promise-card h4 {
        font-size: 0.68rem;
    }

    .promise-card p {
        font-size: 0.56rem;
    }
}

/* --------------------------------------------------------------------------
   Mobile landscape — preserve the original look without squashing content
   -------------------------------------------------------------------------- */
@media (max-width: 900px) and (orientation: landscape) {

    .service-page-header {
        padding-top: 76px;
        padding-bottom: 22px;
    }

    .hero {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 25px;
    }

    .hero-content,
    .hero-image {
        flex: 1 1 50%;
        max-width: 50%;
    }

    .hero p {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-image {
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-block,
    .feature-block.reverse {
        flex-direction: row;
        text-align: left;
        gap: 28px;
    }

    .feature-block .text-content,
    .feature-block .image-content {
        flex: 1 1 50%;
    }

    .text-content ul {
        text-align: left;
    }

    .promises-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* --------------------------------------------------------------------------
   iOS / Safari input handling
   -------------------------------------------------------------------------- */
@supports (-webkit-touch-callout: none) {

    input,
    select,
    textarea {
        font-size: 16px;
    }

    .hero,
    .page-sections,
    .mid-banner,
    .faq-section,
    .promises,
    .service-page-header {
        -webkit-overflow-scrolling: touch;
    }
}

/* --------------------------------------------------------------------------
   Accessibility: respect reduced motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* --------------------------------------------------------------------------
   Final overflow protection on phones
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

    .service-page-header,
    .hero,
    .page-sections,
    .mid-banner,
    .faq-section,
    .promises {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero .container,
    .feature-block,
    .faq-container,
    .promises-grid {
        min-width: 0;
    }

    .hero-content,
    .text-content,
    .image-content,
    .faq-list,
    .promise-card {
        min-width: 0;
    }

    .hero h2,
    .hero p,
    .text-content h2,
    .text-content p,
    .mid-banner h2,
    .mid-banner p,
    .accordion-header,
    .accordion-content p,
    .promise-card h4,
    .promise-card p {
        overflow-wrap: anywhere;
    }
}