/* ============================================================
   SERVICE PAGE TEMPLATE — shared across all service pages
   ============================================================ */

/* ---- Service Hero ---- */
.svc-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    background: var(--navy-dark);
    overflow: hidden;
}

.svc-hero-left {
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}

.svc-hero-left-inner {
    padding: 0 64px 0 max(24px, calc((100vw - 1220px) / 2 + 24px));
    max-width: 640px;
}

.breadcrumb-light a,
.breadcrumb-light span { color: rgba(255,255,255,0.4); font-size: 13px; }
.breadcrumb-light a:hover { color: var(--gold); }
.breadcrumb-light span:last-child { color: rgba(255,255,255,0.6); }
.breadcrumb-light {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.svc-hero-icon {
    width: 56px;
    height: 56px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 24px;
}

.svc-hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 20px;
}

.svc-title-accent {
    color: var(--gold-light);
    position: relative;
    display: inline-block;
}

.svc-title-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.svc-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.68);
    line-height: 1.72;
    margin-bottom: 36px;
    max-width: 480px;
}

.svc-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.svc-scroll-btn {
    scroll-behavior: smooth;
}

.svc-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.svc-hero-trust span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.svc-hero-trust i { color: var(--gold); font-size: 13px; }

/* Hero right — image collage */
.svc-hero-right {
    position: relative;
    overflow: hidden;
}

.svc-hero-img-main {
    position: absolute;
    inset: 0;
}

.svc-hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 8s ease;
}

.svc-hero:hover .svc-hero-img-main img {
    transform: scale(1.04);
}

.svc-hero-img-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8,15,34,0.55) 0%,
        rgba(8,15,34,0.1) 60%,
        transparent 100%
    );
}

.svc-hero-img-float {
    position: absolute;
    bottom: 48px;
    left: 32px;
    width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
    z-index: 3;
    transition: transform 0.5s ease;
}

.svc-hero-right:hover .svc-hero-img-float {
    transform: translateY(-6px);
}

.svc-hero-img-float img {
    width: 100%;
    display: block;
}

.svc-stat-chip {
    position: absolute;
    top: 48px;
    right: 36px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 12px 36px rgba(201,168,76,0.45);
    z-index: 3;
}

.svc-stat-chip strong {
    display: block;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.svc-stat-chip span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 4px;
    display: block;
}

/* ---- Intro section ---- */
.svc-intro { background: var(--white); }

.svc-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.svc-intro-lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.65;
    margin: 20px 0 16px;
    border-left: 3px solid var(--gold);
    padding-left: 18px;
}

.svc-intro-body {
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.svc-intro-img-wrap {
    position: relative;
}

.svc-intro-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13,27,62,0.15);
}

.svc-intro-img img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}

.svc-intro-img-wrap:hover .svc-intro-img img {
    transform: scale(1.03);
}

.svc-intro-img-tag {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(13,27,62,0.25);
    white-space: nowrap;
}

.svc-intro-img-tag i { color: var(--gold); }

/* ---- Sectors ---- */
.svc-sectors {
    background: var(--off-white);
    padding: 80px 0;
}

.sectors-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.sectors-note {
    max-width: 320px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    text-align: right;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
}

.sector-item {
    display: flex;
    gap: 18px;
    padding: 32px 28px;
    border-right: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    transition: background 0.22s ease;
    cursor: default;
}

/* Remove right border on last in each row */
.sector-item:nth-child(3n) { border-right: none; }
/* Remove bottom border on last row */
.sector-item:nth-last-child(-n+3) { border-bottom: none; }

.sector-item:hover {
    background: var(--gold-pale);
}

.sector-item:hover .sector-icon {
    background: var(--navy);
    color: var(--gold);
}

.sector-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
    margin-top: 2px;
}

.sector-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.sector-body p {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.62;
}

/* ---- Image break ---- */
.svc-image-break {
    position: relative;
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.svc-image-break-bg {
    position: absolute;
    inset: 0;
}

.svc-image-break-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.svc-image-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8,15,34,0.90) 0%,
        rgba(13,27,62,0.75) 50%,
        rgba(13,27,62,0.50) 100%
    );
}

.svc-image-break-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.svc-image-break-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.8vw, 30px);
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 16px;
}

.svc-image-break-content blockquote::before {
    content: '"';
    font-size: 64px;
    color: var(--gold);
    line-height: 0;
    vertical-align: -28px;
    margin-right: 6px;
    font-style: normal;
    opacity: 0.7;
}

.svc-image-break-content cite {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-style: normal;
    letter-spacing: 0.08em;
}

/* ---- Process / Timeline ---- */
.svc-process { background: var(--white); }

.svc-process-top {
    max-width: 600px;
    margin: 0 auto 72px;
    text-align: center;
}

.svc-process-sub {
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.75;
    margin-top: 16px;
}

.svc-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* Vertical connector line */
.svc-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--gray-light) 10%,
        var(--gray-light) 90%,
        transparent
    );
    transform: translateX(-50%);
}

.svc-timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px dashed var(--gray-light);
}

.svc-timeline-item:last-child { border-bottom: none; }

/* Default: image left, text right */
.svc-timeline-item .stl-content {
    grid-column: 1 / 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Alternating: text left, image right */
.svc-timeline-item--right .stl-content {
    direction: rtl;
}
.svc-timeline-item--right .stl-content > * {
    direction: ltr;
}

.stl-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.stl-marker span {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stl-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(13,27,62,0.12);
    position: relative;
}

.stl-img img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.svc-timeline-item:hover .stl-img img {
    transform: scale(1.04);
}

.stl-text h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 14px;
}

.stl-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.78;
    margin-bottom: 20px;
}

.stl-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stl-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}

.stl-checklist li i {
    color: var(--gold-dark);
    font-size: 13px;
    flex-shrink: 0;
    width: 16px;
}

/* ---- Why Us ---- */
.svc-why { background: var(--off-white); }

.svc-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.svc-why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 36px;
}

.svc-why-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-light);
    transition: transform 0.25s ease;
    cursor: default;
}

.svc-why-item:first-child { border-top: 1px solid var(--gray-light); }

.svc-why-item:hover { transform: translateX(5px); }

.svc-why-item:hover .swi-icon {
    background: var(--navy);
    color: var(--gold);
}

.swi-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.swi-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.swi-text p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* Why image */
.svc-why-right {
    position: relative;
    padding-bottom: 40px;
}

.svc-why-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 64px rgba(13,27,62,0.16);
}

.svc-why-img img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}

.svc-why-right:hover .svc-why-img img { transform: scale(1.03); }

.svc-why-img-corner {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 0 0 var(--radius-lg) 0;
    pointer-events: none;
}

.svc-disclaimer-card {
    display: flex;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 20px 22px;
    margin-top: 24px;
}

.svc-disclaimer-card i {
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.svc-disclaimer-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---- Related / CTA sidebar ---- */
.svc-related { background: var(--white); }

.svc-related-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: start;
}

.svc-related-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.svc-related-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.22s ease;
}

.svc-related-item:first-of-type { border-top: 1px solid var(--gray-light); }

.svc-related-item:hover {
    padding-left: 8px;
    color: var(--navy);
}

.svc-related-item:hover .sri-icon {
    background: var(--navy);
    color: var(--gold);
}

.svc-related-item:hover .sri-arrow {
    color: var(--gold);
}

.sri-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 17px;
    flex-shrink: 0;
    transition: var(--transition);
}

.sri-text { flex: 1; }

.sri-text strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
    line-height: 1.3;
}

.sri-text span {
    font-size: 12.5px;
    color: var(--text-muted);
}

.sri-arrow {
    font-size: 13px;
    color: var(--gray-mid);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

/* Enquiry card */
.svc-enquiry-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: sticky;
    top: 110px;
}

.sec-top { margin-bottom: 28px; }

.sec-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 18px;
}

.sec-top h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.sec-top p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

.sec-contacts {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.sec-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: background 0.2s ease;
}

.sec-contact-row:last-child { border-bottom: none; }

.sec-contact-row:hover {
    background: rgba(255,255,255,0.06);
    color: var(--white);
}

.sec-contact-row i {
    color: var(--gold);
    font-size: 16px;
    width: 18px;
    text-align: center;
}

.sec-whatsapp:hover i { color: #25D366; }

.sec-note {
    text-align: center;
    font-size: 11.5px;
    color: rgba(255,255,255,0.3);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sec-note i { color: var(--gold); font-size: 12px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .svc-hero { min-height: auto; }
    .svc-related-grid { grid-template-columns: 1fr; }
    .svc-enquiry-card { position: static; }
}

@media (max-width: 900px) {
    .svc-hero { grid-template-columns: 1fr; min-height: auto; }
    .svc-hero-right {
        height: 380px;
        order: -1;
    }
    .svc-hero-left { padding: 60px 0 56px; }
    .svc-hero-left-inner { padding: 0 24px; max-width: 100%; }

    .svc-intro-grid,
    .svc-why-grid { grid-template-columns: 1fr; gap: 48px; }

    .svc-intro-img-wrap { max-width: 500px; }
    .svc-intro-img-tag { font-size: 12px; left: 12px; }

    .svc-timeline::before { display: none; }
    .svc-timeline-item { padding: 40px 0; }
    .svc-timeline-item .stl-content,
    .svc-timeline-item--right .stl-content {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 28px;
    }
    .stl-marker { display: none; }

    .sectors-grid { grid-template-columns: 1fr 1fr; }
    .sector-item:nth-child(3n) { border-right: 1px solid var(--gray-light); }
    .sector-item:nth-child(2n) { border-right: none; }
    .sector-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--gray-light); }
    .sector-item:nth-last-child(-n+2) { border-bottom: none; }

    .sectors-header { flex-direction: column; align-items: flex-start; }
    .sectors-note { text-align: left; max-width: 100%; }

    .svc-image-break { height: 280px; }
    .svc-image-break-content blockquote { font-size: clamp(16px, 4vw, 22px); }

    .svc-why-right { padding-bottom: 24px; }
}

@media (max-width: 600px) {
    .sectors-grid { grid-template-columns: 1fr; }
    .sector-item { border-right: none !important; border-bottom: 1px solid var(--gray-light) !important; }
    .sector-item:last-child { border-bottom: none !important; }
    .svc-hero-img-float { width: 140px; bottom: 20px; left: 16px; }
    .svc-stat-chip { top: 20px; right: 16px; padding: 12px 16px; }
    .svc-stat-chip strong { font-size: 22px; }
}


/* ---- MOM Compliance Banner ---- */
.mom-banner {
    background: var(--navy);
    border-top: 3px solid var(--gold);
    padding: 22px 0;
}

.mom-banner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mom-banner-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}

.mom-banner-text {
    flex: 1;
    min-width: 200px;
}

.mom-banner-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.mom-banner-text span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.mom-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
    white-space: nowrap;
    border-bottom: 1px solid rgba(201,168,76,0.4);
    padding-bottom: 1px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.mom-banner-link:hover { color: var(--gold); }

/* ---- Helper Types (cards with images) ---- */
.helper-types {
    background: var(--off-white);
}

.ht-header {
    max-width: 620px;
    margin: 0 auto 52px;
    text-align: center;
}

.ht-sub {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-top: 14px;
}

.ht-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ht-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.ht-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(201,168,76,0.25);
}

.ht-card-img {
    height: 200px;
    overflow: hidden;
}

.ht-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ht-card:hover .ht-card-img img {
    transform: scale(1.06);
}

.ht-card-body {
    padding: 28px 26px 26px;
}

.ht-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 18px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.ht-card:hover .ht-icon {
    background: var(--navy);
    color: var(--gold);
}

.ht-card-body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.ht-card-body p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 18px;
}

.ht-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.ht-tags li {
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    color: var(--text-body);
}

/* ---- Employer Obligations ---- */
.employer-obligations {
    background: var(--white);
}

.eo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.eo-body {
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.78;
    margin: 18px 0 14px;
}

.eo-item-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.eo-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-light);
    transition: transform 0.22s ease;
    cursor: default;
}

.eo-item:first-child { border-top: 1px solid var(--gray-light); }

.eo-item:hover { transform: translateX(5px); }

.eo-item:hover .eo-item-num {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.eo-item-num {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.eo-item-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.eo-item-text p {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.65;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .ht-grid { grid-template-columns: 1fr 1fr; }
    .eo-grid { grid-template-columns: 1fr; gap: 40px; }
    .mom-banner-inner { gap: 14px; }
}

@media (max-width: 600px) {
    .ht-grid { grid-template-columns: 1fr; }
    .ht-card-img { height: 180px; }
}