.front-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f4ef 0%, #f1e7e0 45%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.front-hero .container {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.front-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(192, 57, 43, 0.1), transparent 42%);
    opacity: 0.8;
    pointer-events: none;
}

.front-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.05;
    margin-bottom: 20px;
    color: #222222;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
}

.front-hero p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 34px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: #c0392b;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(192, 57, 43, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-cta:hover,
.btn-cta:focus {
    background: #a02825;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(192, 57, 43, 0.22);
}

.service-overview {
    padding: 80px 0;
    background: #ffffff;
}

.service-overview .container {
    max-width: 1140px;
    margin: 0 auto;
}

.service-overview h2 {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 40px;
    color: #222222;
    letter-spacing: -0.04em;
}

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

.service-item {
    padding: 36px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
    border-radius: 22px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.service-item h3 {
    font-size: 1.45rem;
    margin-bottom: 18px;
    color: #1f1f1f;
}

.service-item p {
    color: #5a5a5a;
    margin-bottom: 24px;
    line-height: 1.85;
    flex-grow: 1;
}

.service-item a {
    color: #c0392b;
    text-decoration: none;
    font-weight: 700;
}

.service-item a:hover,
.service-item a:focus {
    text-decoration: none;
    color: #8b2621;
}

.service-item:hover {
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.09);
    transform: translateY(-6px);
    border-color: rgba(192, 57, 43, 0.15);
}

.service-item::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: #c0392b;
    border-radius: 999px;
    margin-top: 12px;
}

/* ===== About Intro (.about-intro replaces .bg-scroller) ===== */
.about-intro {
    position: relative;
    background: #111111;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../images/bg-salon.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 0;
}

.about-intro::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(0,0,0,0.92) 0%, rgba(20,10,10,0.80) 100%);
    z-index: 1;
}

.about-intro__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 48px;
    gap: 80px;
    align-items: center;
}

/* Left column */
.about-intro__left {
    position: relative;
}

.about-intro__left::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: -16px;
    font-size: 18rem;
    line-height: 1;
    color: #c0392b;
    opacity: 0.10;
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
    user-select: none;
}

.about-intro__eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c0392b;
    margin-bottom: 20px;
}

.about-intro__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-transform: none;
    text-align: left;
    margin: 0 0 24px;
    padding: 0;
}

.about-intro__title::after {
    display: none;
}

.about-intro__accent {
    width: 48px;
    height: 3px;
    background: #c0392b;
    border-radius: 2px;
    margin-bottom: 24px;
}

.about-intro__sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Right column */
.about-intro__right p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.95;
    margin-bottom: 18px;
}

.about-intro__right p:last-of-type {
    margin-bottom: 36px;
}

.about-intro__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.about-intro__cta::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.about-intro__cta:hover,
.about-intro__cta:focus {
    background: #c0392b;
    border-color: #c0392b;
    color: #ffffff;
}

.about-intro__cta:hover::after {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
    .about-intro__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 72px 28px;
    }

    .about-intro::before {
        background-attachment: scroll;
    }

    .about-intro__left::before {
        font-size: 12rem;
        top: -20px;
    }

    .about-intro__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .about-intro__inner {
        padding: 60px 20px;
    }
}

/* ===== Collections Page Template ===== */
.colls-page {
    background: #0a0a0a;
}

.colls-hero {
    padding: 130px 48px 110px;
    text-align: center;
    background: #0a0a0a;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    position: relative;
    overflow: hidden;
}

.colls-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.colls-hero__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-bottom: 28px;
}

.colls-hero__title {
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.045em;
    line-height: 0.95;
    margin: 0 0 28px;
    text-transform: none;
    text-align: center;
}

.colls-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.38);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.85;
}

.colls-hero__scroll-hint {
    display: flex;
    justify-content: center;
}

.colls-hero__scroll-hint span {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: colls-scroll-pulse 2s ease-in-out infinite;
}

@keyframes colls-scroll-pulse {
    0%, 100% { opacity: 0.2; transform: scaleY(1); }
    50%       { opacity: 0.7; transform: scaleY(1.1); }
}

/* Collection sections */
.coll-section {
    display: flex;
    min-height: 540px;
    border-bottom: 1px solid rgba(255,255,255,0.035);
}

.coll-section--alt {
    flex-direction: row-reverse;
}

/* Image panel */
.coll-section__image-wrap {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
}

.coll-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) saturate(0.75);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.8s ease;
}

.coll-section:hover .coll-section__img {
    transform: scale(1.05);
    filter: brightness(0.75) saturate(0.9);
}

.coll-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, var(--col) 0%, transparent 55%);
    opacity: 0.30;
    transition: opacity 0.5s ease;
}

.coll-section:hover .coll-section__overlay {
    opacity: 0.48;
}

.coll-section__num {
    position: absolute;
    bottom: -8px;
    right: 20px;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
}

/* Body panel */
.coll-section__body {
    flex: 0 0 45%;
    background: #0d0d0d;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.coll-section__body::before {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--col), transparent);
    opacity: 0.5;
}

.coll-section--alt .coll-section__body::before {
    left: auto;
    right: 0;
}

.coll-section__eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--col);
    margin-bottom: 20px;
}

.coll-section__title {
    font-size: clamp(1.9rem, 2.6vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin: 0 0 22px;
    text-align: left;
    text-transform: none;
}

.coll-section__title::after {
    display: none;
}

.coll-section__bar {
    width: 42px;
    height: 3px;
    background: var(--col);
    border-radius: 2px;
    margin-bottom: 26px;
}

.coll-section__desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.95;
    margin-bottom: 40px;
    max-width: 400px;
}

.coll-section__link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    padding: 13px 28px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 2px;
    width: fit-content;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.coll-section__link::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.coll-section__link:hover,
.coll-section__link:focus {
    background: var(--col);
    border-color: var(--col);
    color: #ffffff;
    text-decoration: none;
}

.coll-section__link:hover::after {
    transform: translateX(6px);
}

/* Responsive — collections page */
@media (max-width: 900px) {
    .coll-section,
    .coll-section--alt {
        flex-direction: column;
    }

    .coll-section__image-wrap {
        flex: none;
        height: 320px;
    }

    .coll-section__body {
        flex: none;
        padding: 52px 28px;
    }

    .coll-section__num {
        font-size: 8rem;
    }

    .colls-hero {
        padding: 90px 24px 70px;
    }

    .colls-hero__title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .coll-section__body {
        padding: 44px 20px;
    }

    .coll-section__image-wrap {
        height: 260px;
    }
}

/* ===== Category Selector — Updated Colors ===== */
.main-nav-item .main-nav-item-inner a.nav-item-link {
    font-size: 13px;
    letter-spacing: 0.03em;
    padding: 14px 16px 14px;
    border-top: 3px solid transparent;
    transition: filter 0.25s ease;
}

.main-nav-item .main-nav-item-inner a.nav-item-link:hover {
    filter: brightness(1.15);
}

.main-nav-item .main-nav-item-inner.main-nav-item-inner-1 a.nav-item-link { background-color: #c8902a !important; border-top-color: #f0b84a; }
.main-nav-item .main-nav-item-inner.main-nav-item-inner-2 a.nav-item-link { background-color: #3d5afe !important; border-top-color: #7986ff; }
.main-nav-item .main-nav-item-inner.main-nav-item-inner-3 a.nav-item-link { background-color: #7b1fa2 !important; border-top-color: #ab47bc; }
.main-nav-item .main-nav-item-inner.main-nav-item-inner-4 a.nav-item-link { background-color: #00897b !important; border-top-color: #26a69a; }
.main-nav-item .main-nav-item-inner.main-nav-item-inner-5 a.nav-item-link { background-color: #e65100 !important; border-top-color: #ff8a50; }
.main-nav-item .main-nav-item-inner.main-nav-item-inner-6 a.nav-item-link { background-color: #c2185b !important; border-top-color: #ec407a; }
.main-nav-item .main-nav-item-inner.main-nav-item-inner-7 a.nav-item-link { background-color: #2e7d32 !important; border-top-color: #66bb6a; }
.main-nav-item .main-nav-item-inner.main-nav-item-inner-8 a.nav-item-link { background-color: #1565c0 !important; border-top-color: #5e92f3; }

@media (max-width: 980px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .front-hero {
        padding: 60px 0;
    }

    .front-hero h1 {
        font-size: 2.2rem;
    }

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

    .service-item {
        padding: 28px;
    }
}

/* ================================================================
   SERVICES PAGE TEMPLATE
   ================================================================ */

.srvs-page { background: #0a0a0a; }

/* ---- Shared tokens ---- */
.srvs-label {
    display: block;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: #c0392b;
    margin-bottom: 18px;
}
.srvs-label--dim { color: rgba(255,255,255,0.30); }

.srvs-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0 0 56px;
    text-transform: none;
}
.srvs-heading--light { color: #ffffff; }

/* ---- Hero ---- */
.srvs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.srvs-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.38) saturate(0.55);
    transform: scale(1.06);
    transition: transform 9s ease;
    z-index: 0;
}
.srvs-hero:hover .srvs-hero__bg { transform: scale(1.0); }

.srvs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.15) 45%,
        rgba(0,0,0,0.88) 100%);
    z-index: 1;
}

.srvs-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 64px 80px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.srvs-hero__title {
    font-size: clamp(4.5rem, 11vw, 10rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.055em;
    line-height: 0.88;
    margin: 0 0 36px;
    text-transform: none;
    text-align: left;
}
.srvs-hero__title em {
    font-style: normal;
    font-weight: 200;
    color: rgba(255,255,255,0.55);
    display: block;
    letter-spacing: -0.03em;
}

.srvs-hero__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 460px;
    line-height: 1.9;
    margin: 0 0 52px;
}

.srvs-hero__scroll {
    display: flex;
    align-items: center;
    gap: 18px;
}
.srvs-hero__scroll-label {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.srvs-hero__scroll-line {
    display: block;
    width: 52px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}
.srvs-hero__scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #c0392b;
    animation: srvs-slide-line 1.9s ease-in-out infinite;
}
@keyframes srvs-slide-line {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* Stats bar */
.srvs-hero__stats {
    position: relative;
    z-index: 2;
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}
.srvs-hero__stat {
    flex: 1;
    padding: 32px 52px;
    border-right: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.srvs-hero__stat:last-child { border-right: none; }
.srvs-hero__stat strong {
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1;
}
.srvs-hero__stat span {
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* ---- Services Grid ---- */
.srvs-grid-section {
    background: #f7f4f0;
    padding: 100px 64px;
}
.srvs-grid-header {
    max-width: 1200px;
    margin: 0 auto 56px;
}
.srvs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    max-width: 1440px;
    margin: 0 auto;
}

.srvs-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    cursor: pointer;
}
.srvs-card__bg {
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    filter: brightness(0.5) saturate(0.65);
    transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.75s ease;
    z-index: 0;
}
.srvs-card:hover .srvs-card__bg {
    transform: scale(1.08);
    filter: brightness(0.38) saturate(0.5);
}
.srvs-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.97) 0%,
        rgba(0,0,0,0.25) 50%,
        rgba(0,0,0,0.05) 100%);
    z-index: 1;
    transition: background 0.5s ease;
}
.srvs-card:hover .srvs-card__overlay {
    background: linear-gradient(to top,
        rgba(0,0,0,0.99) 0%,
        rgba(0,0,0,0.65) 60%,
        rgba(0,0,0,0.2) 100%);
}
.srvs-card__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 34px 38px;
}
.srvs-card__num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.35);
}
.srvs-card__body { display: flex; flex-direction: column; }

.srvs-card__title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 14px;
    text-align: left;
    text-transform: none;
    transition: transform 0.4s ease;
}
.srvs-card:hover .srvs-card__title { transform: translateY(-4px); }

.srvs-card__desc {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    margin: 0 0 22px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease 0.08s;
}
.srvs-card:hover .srvs-card__desc { max-height: 130px; opacity: 1; }

.srvs-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #c0392b;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.12s, transform 0.35s ease 0.12s;
    width: fit-content;
}
.srvs-card__link::after {
    content: '→';
    transition: transform 0.25s ease;
}
.srvs-card:hover .srvs-card__link { opacity: 1; transform: translateY(0); }
.srvs-card__link:hover { color: #c0392b; text-decoration: none; }
.srvs-card__link:hover::after { transform: translateX(6px); }

/* ---- Process ---- */
.srvs-process {
    position: relative;
    background: #0d0d0d;
    padding: 110px 0;
    overflow: hidden;
}
.srvs-process__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10rem, 20vw, 22rem);
    font-weight: 900;
    color: rgba(255,255,255,0.022);
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
}
.srvs-process__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
}
.srvs-process__header { margin-bottom: 72px; }

.srvs-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}
.srvs-steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(12.5% + 14px);
    right: calc(12.5% + 14px);
    height: 1px;
    background: linear-gradient(to right, #c0392b 0%, rgba(192,57,43,0.15) 100%);
    z-index: 0;
}
.srvs-step {
    position: relative;
    z-index: 1;
    padding: 0 28px;
}
.srvs-step__circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #c0392b;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
    box-shadow:
        0 0 0 5px rgba(192,57,43,0.12),
        0 0 0 10px rgba(192,57,43,0.05);
}
.srvs-step__title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    text-align: left;
    text-transform: none;
}
.srvs-step__desc {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.85;
    margin: 0;
}

/* ---- Pillars ---- */
.srvs-pillars {
    background: #ffffff;
    padding: 100px 64px;
}
.srvs-pillars__inner { max-width: 1200px; margin: 0 auto; }
.srvs-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.srvs-pillar {
    padding: 48px 40px 44px;
    background: #f7f4f0;
    border-bottom: 3px solid #c0392b;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.srvs-pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(0,0,0,0.09);
}
.srvs-pillar__icon {
    width: 44px;
    height: 44px;
    color: #c0392b;
    margin-bottom: 28px;
}
.srvs-pillar__icon svg { width: 100%; height: 100%; }
.srvs-pillar__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
    text-align: left;
    text-transform: none;
}
.srvs-pillar__desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.9;
    margin: 0;
}

/* ---- CTA ---- */
.srvs-cta {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.srvs-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3) saturate(0.45);
    z-index: 0;
}
.srvs-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg,
        rgba(192,57,43,0.45) 0%,
        rgba(0,0,0,0.65) 100%);
    z-index: 1;
}
.srvs-cta__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 64px;
    width: 100%;
}
.srvs-cta__title {
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.045em;
    line-height: 0.98;
    margin: 0 0 26px;
    text-transform: none;
    text-align: left;
}
.srvs-cta__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 500px;
    line-height: 1.9;
    margin: 0 0 46px;
}
.srvs-cta__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.srvs-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
}
.srvs-cta__btn--primary {
    background: #c0392b;
    color: #ffffff;
    border: 1px solid #c0392b;
}
.srvs-cta__btn--primary:hover {
    background: #a02825;
    border-color: #a02825;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(192,57,43,0.40);
    text-decoration: none;
}
.srvs-cta__btn--ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.28);
}
.srvs-cta__btn--ghost:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.55);
    color: #ffffff;
    text-decoration: none;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .srvs-grid { grid-template-columns: repeat(2, 1fr); }
    .srvs-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 52px 40px;
    }
    .srvs-steps::before { display: none; }
    .srvs-pillars__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .srvs-hero__content { padding: 120px 28px 60px; }

    .srvs-hero__title { font-size: 3.8rem; }

    .srvs-hero__stats { flex-wrap: wrap; }
    .srvs-hero__stat {
        flex: 0 0 50%;
        padding: 24px 28px;
    }

    .srvs-grid-section { padding: 72px 0; }
    .srvs-grid { grid-template-columns: 1fr; }
    .srvs-grid-header { padding: 0 28px; }
    .srvs-card { min-height: 360px; }
    .srvs-card__desc { max-height: 130px; opacity: 1; }
    .srvs-card__link { opacity: 1; transform: none; }

    .srvs-process__inner { padding: 0 28px; }
    .srvs-steps {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .srvs-pillars { padding: 72px 28px; }
    .srvs-pillars__grid { grid-template-columns: 1fr; }

    .srvs-cta__content { padding: 72px 28px; }
    .srvs-cta__bg { background-attachment: scroll; }
    .srvs-heading { font-size: 2rem; }
}

@media (max-width: 480px) {
    .srvs-hero__title { font-size: 3rem; }
    .srvs-hero__stat { flex: 0 0 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .srvs-cta__actions { flex-direction: column; align-items: flex-start; }
    .srvs-cta__btn { width: 100%; justify-content: center; }
}
