/* ============================================================
   Services V2 — Matches momi.css home page design language
   No border-radius. Dark/light/white alternating sections.
   Same fonts, colors, spacing as homepage.
   ============================================================ */

/* ---- 1. Split Hero ---- */
.sv2-hero {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 520px;
}

.sv2-hero-text {
    background: #151515;
    background-image: url('/assets/images/ref/pattern-bg.jpg');
    background-blend-mode: multiply;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px 60px 7%;
}

.sv2-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.sv2-hero-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.sv2-hero-breadcrumb a:hover {
    color: var(--primary);
}

.sv2-hero-breadcrumb span.sv2-sep {
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
}

.sv2-hero-breadcrumb > span:last-child {
    color: rgba(255,255,255,0.7);
}

.sv2-hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 20px;
}

.sv2-hero-text h1 span {
    color: var(--primary);
}

.sv2-hero-text .sv2-hero-sub {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin: 0 0 30px;
}

.sv2-hero-img {
    overflow: hidden;
}

.sv2-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ---- 2. Intro Section (white bg, like momi-about) ---- */
.sv2-intro {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.sv2-intro .container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.sv2-intro .heading-small {
    color: rgba(21,21,21,0.4);
}

.sv2-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: #151515;
    margin-bottom: 24px;
}

.sv2-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(21,21,21,0.8);
    margin-bottom: 16px;
}

.sv2-intro p:last-child {
    margin-bottom: 0;
}

/* ---- 3. Benefits (gray bg, like momi-services) ---- */
.sv2-benefits {
    padding: 100px 0;
    background: #f3f3f3;
    text-align: center;
}

.sv2-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sv2-section-head {
    text-align: center;
    margin-bottom: 60px;
}

.sv2-section-head .heading-small {
    color: rgba(21,21,21,0.4);
}

.sv2-section-head h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: #151515;
    margin-bottom: 8px;
}

.sv2-section-head p {
    color: rgba(21,21,21,0.6);
    font-size: 1rem;
    margin: 0;
}

/* Dark section heads */
.sv2-section-head-dark .heading-small {
    color: rgba(255,255,255,0.4);
}

.sv2-section-head-dark h2 {
    color: #fff;
}

.sv2-section-head-dark p {
    color: rgba(255,255,255,0.5);
}

.sv2-benefit-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 1px solid #e7e7e7;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.sv2-benefit-row:last-child {
    border-bottom: none;
}

.sv2-benefit-row:nth-child(even) {
    flex-direction: row;
}

.sv2-benefit-icon {
    display: none;
}

.sv2-benefit-text h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #151515;
    margin: 0 0 6px;
}

.sv2-benefit-text p {
    margin: 0;
    color: rgba(21,21,21,0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ---- 4. Process (dark bg with pattern, like momi-projects) ---- */
.sv2-process {
    padding: 100px 0;
    background: #151515;
    background-image: url('/assets/images/ref/pattern-bg.jpg');
    background-blend-mode: multiply;
    text-align: center;
}

.sv2-process .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sv2-process-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 760px;
    margin: 0 auto;
}

.sv2-process-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 36px 40px;
    text-align: left;
    overflow: hidden;
    transition: background 0.3s;
}

.sv2-process-card:hover {
    background: rgba(248,102,126,0.1);
}

.sv2-process-card::before {
    content: attr(data-step);
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    opacity: 0.08;
    font-family: var(--font-heading);
    color: #fff;
    pointer-events: none;
}

.sv2-process-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}

.sv2-process-card p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 480px;
}

/* ---- 5. Types Accordion (white bg) ---- */
.sv2-types {
    padding: 100px 0;
    background: #fff;
}

.sv2-types .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sv2-types-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sv2-type-panel {
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    overflow: hidden;
}

.sv2-type-panel:first-child {
    border-top: 1px solid #e7e7e7;
}

.sv2-type-trigger {
    width: 100%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #151515;
    text-align: left;
    transition: color 0.3s;
    letter-spacing: 0.01em;
}

.sv2-type-trigger:hover {
    color: var(--primary);
}

.sv2-type-trigger .sv2-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
    fill: rgba(21,21,21,0.4);
}

.sv2-type-panel.active .sv2-type-trigger {
    color: var(--primary);
}

.sv2-type-panel.active .sv2-type-trigger .sv2-chevron {
    transform: rotate(180deg);
    fill: var(--primary);
}

.sv2-type-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.sv2-type-body-inner {
    padding: 0 0 30px;
}

.sv2-type-body-inner .sv2-type-texts p {
    color: rgba(21,21,21,0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0 0 12px;
}

.sv2-type-body-inner .sv2-type-texts p:last-child {
    margin-bottom: 0;
}

.sv2-type-body-inner img {
    width: 100%;
    display: block;
}

/* ---- 6. FAQ Grid (gray bg, like momi-services/momi-process) ---- */
.sv2-faq {
    padding: 100px 0;
    background: #f3f3f3;
}

.sv2-faq .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sv2-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.sv2-faq-card {
    background: #fff;
    border-left: 3px solid var(--primary);
    padding: 28px 28px 24px;
}

.sv2-faq-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #151515;
    margin: 0 0 10px;
}

.sv2-faq-card p {
    margin: 0;
    color: rgba(21,21,21,0.7);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ---- 7. Related Services (dark bg with pattern, like momi-projects) ---- */
.sv2-related {
    padding: 100px 0;
    background: #151515;
    background-image: url('/assets/images/ref/pattern-bg.jpg');
    background-blend-mode: multiply;
    text-align: center;
}

.sv2-related .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sv2-related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.sv2-related-card {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #1e1e1e;
}

.sv2-related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.sv2-related-card:hover img {
    transform: scale(1.06);
}

.sv2-related-overlay {
    position: absolute;
    inset: 0;
    background: rgba(248,102,126,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    text-decoration: none;
}

.sv2-related-card:hover .sv2-related-overlay {
    opacity: 1;
}

.sv2-related-overlay h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 4px;
}

.sv2-related-overlay p {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    margin: 0;
    max-width: 280px;
    text-align: center;
}

/* ---- 8. CTA Banner (parallax-style, like momi-cta-parallax) ---- */
.sv2-cta {
    padding: 120px 0;
    background: url('/assets/images/ref/cta-bg.jpg') center/cover fixed no-repeat;
    position: relative;
    text-align: center;
}

.sv2-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(21,21,21,0.75);
}

.sv2-cta .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sv2-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.sv2-cta p {
    max-width: 600px;
    margin: 0 auto 36px;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ---- Shared heading-small (same as homepage) ---- */
.sv2-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.5;
    display: block;
    margin-bottom: 8px;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1000px) {
    .sv2-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sv2-hero-img {
        height: 380px;
        order: -1;
    }

    .sv2-hero-text {
        padding: 40px 24px;
    }

    .sv2-type-body-inner {
        grid-template-columns: 1fr;
    }

    .sv2-faq-grid {
        grid-template-columns: 1fr;
    }

    .sv2-related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sv2-intro h2,
    .sv2-section-head h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .sv2-intro,
    .sv2-benefits,
    .sv2-process,
    .sv2-types,
    .sv2-faq,
    .sv2-related {
        padding: 60px 0;
    }

    .sv2-cta {
        padding: 60px 0;
    }

    .sv2-benefit-row,
    .sv2-benefit-row:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .sv2-process-card {
        padding: 28px 24px;
    }

    .sv2-process-card::before {
        font-size: 5rem;
        right: 12px;
    }

    .sv2-related-grid {
        grid-template-columns: 1fr;
    }

    .sv2-type-body-inner {
        padding: 0 0 20px;
    }

    .sv2-hero-img {
        height: 320px;
    }

    .sv2-hero-text h1 {
        font-size: 1.8rem;
    }

    .sv2-section-head {
        margin-bottom: 40px;
    }
}
