/* =============================================
   PARTNERS SECTION
============================================= */
.partners {
    padding: 50px 0 50px;
    background: linear-gradient(180deg, var(--bg1), var(--white));
    text-align: center;
}

.partners h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -.01em;
}

.partners p {
    color: var(--t3);
    margin-bottom: 50px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 90px;
}

.partner-logos img {
    max-height: 45px;
    /* filter: grayscale(100%);
            opacity: .6; */
    transition: var(--ease);
}

.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-6px);
}

/* =============================================
   SERVICES SECTION
============================================= */
.services {
    padding: 50px 0;
    background: var(--bg2);
}

.services-wrapper {
    display: flex;
    gap: 70px;
    align-items: center;
}

/* GRID */
.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: var(--white);
    /* border-radius: var(--r3); */
    padding: 28px;
    text-align: center;
    box-shadow: var(--sh1);
    border: 1px solid var(--bdr2);
    transition: var(--ease);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh3);
}

.icon {
    font-size: 34px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 28px;
    color: var(--gold);
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -.02em;
}

.card p {
    color: var(--t3);
    font-size: 14px;
}

/* RIGHT CONTENT */
.content {
    flex: 1;
}

.content h2 {
    font-size: 38px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.content p {
    color: var(--t2);
    margin-bottom: 18px;
}

.features {
    display: flex;
    gap: 60px;
    margin-top: 25px;
}

.features ul {
    list-style: none;
}

.features li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
}

.features li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--gold);
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

/* =============================================
   RESPONSIVE
============================================= */
@media(max-width:992px) {
    .services-wrapper {
        flex-direction: column;
        text-align: center;
    }

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

    .features {
        justify-content: center;
    }
}

@media(max-width:600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .content h2 {
        font-size: 28px;
    }
}


/* ── SECTION ── */
section.talking-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background:
        radial-gradient(ellipse 55% 80% at 100% 50%, rgba(192, 57, 43, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 45% 70% at 0% 50%, rgba(212, 175, 55, 0.07) 0%, transparent 60%),
        linear-gradient(150deg, #071428 0%, var(--navy) 55%, var(--navy2) 100%);
    color: var(--white);
}

section.talking-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ── LAYOUT ── */

.talking-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ── LEFT: CONTENT ── */
.talking-content {
    flex: 1;
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.eyebrow-bar {
    width: 28px;
    height: 1.5px;
    background: var(--gold);
}

.talking-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: 8px;
}

.talking-content h2 em {
    font-style: italic;
    color: var(--gold2);
}

.divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 20px;
}

.divider span {
    height: 3px;
    border-radius: 2px;
    display: block;
}

.d-red {
    width: 40px;
    background: var(--red2);
}

.d-gold {
    width: 20px;
    background: var(--gold);
}

.d-dim {
    width: 10px;
    background: rgba(255, 255, 255, 0.2);
}

.talking-content p {
    /* font-size: 14.5px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 460px; */
    margin-bottom: 22px;
}

.feat-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 28px;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.82);
}

.feat-list li .dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red2);
    box-shadow: 0 0 6px rgba(224, 69, 53, 0.6);
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(192, 57, 43, 0.40);
    transition: transform .2s, box-shadow .2s;
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(192, 57, 43, 0.55);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: transparent;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.btn-gold:hover {
    background: rgba(212, 175, 55, 0.10);
    border-color: var(--gold);
}

.btn-icon {
    width: 14px;
    height: 14px;
}

/* ── RIGHT: 3-D CAROUSEL ── */
.carousel-wrap {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-stage {
    width: 420px;
    height: 340px;
    perspective: 600px;
    perspective-origin: 50% 40%;
}

#carousel {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: spin 18s linear infinite;
}

@keyframes spin {
    from {
        transform: rotateX(8deg) rotateY(0deg);
    }

    to {
        transform: rotateX(8deg) rotateY(360deg);
    }
}

#carousel:hover {
    animation-play-state: paused;
}

.book {
    position: absolute;
    width: 120px;
    height: 175px;
    left: calc(50% - 60px);
    top: calc(50% - 87px);
    transform-style: preserve-3d;
    cursor: pointer;
}

.book figure {
    position: absolute;
    margin: 0;
    background-size: cover;
    background-position: center;
}

/* FRONT */
.b-front {
    width: 120px;
    height: 175px;
    transform: translateZ(12px);
    border-radius: 3px 7px 7px 3px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* BACK */
.b-back {
    width: 120px;
    height: 175px;
    transform: rotateY(180deg) translateZ(12px);
    background: #1a3055 !important;
    border-radius: 7px 3px 3px 7px;
}

/* SPINE */
.b-spine {
    width: 24px;
    height: 175px;
    left: -12px;
    transform: rotateY(-90deg) translateZ(12px);
    background: linear-gradient(to right, #a8831e, var(--gold), #c9a227);
    border-radius: 2px;
}

/* TOP */
.b-top {
    width: 120px;
    height: 24px;
    top: -12px;
    transform: rotateX(90deg) translateZ(12px);
    background: linear-gradient(to bottom, #e8e0cc, var(--cream));
}

/* BOTTOM */
.b-bottom {
    width: 120px;
    height: 24px;
    bottom: -12px;
    transform: rotateX(-90deg) translateZ(12px);
    background: linear-gradient(to top, #e8e0cc, var(--cream));
}

/* ring positions */
.book:nth-child(1) {
    transform: rotateY(0deg) translateZ(200px);
}

.book:nth-child(2) {
    transform: rotateY(60deg) translateZ(200px);
}

.book:nth-child(3) {
    transform: rotateY(120deg) translateZ(200px);
}

.book:nth-child(4) {
    transform: rotateY(180deg) translateZ(200px);
}

.book:nth-child(5) {
    transform: rotateY(240deg) translateZ(200px);
}

.book:nth-child(6) {
    transform: rotateY(300deg) translateZ(200px);
}

.carousel-glow {
    width: 220px;
    height: 28px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.28) 0%, transparent 70%);
    border-radius: 50%;
    margin-top: -4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .talking-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .carousel-wrap {
        flex: none;
        width: 100%;
    }

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

@media (max-width: 540px) {
    .talking-content h2 {
        font-size: 30px;
    }

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

    .carousel-stage {
        width: 320px;
        height: 260px;
    }

    .cta-row {
        flex-direction: column;
    }
}


/* =============================================
   MEGA MENU — LIGHT / WHITE THEME
============================================= */

/* ── Category bar: white bg ── */
.cat-bar {
    background: #fff !important;
    border-top: 1px solid rgba(9, 21, 42, .07) !important;
    border-bottom: 1px solid rgba(9, 21, 42, .07);
    box-shadow: 0 2px 12px rgba(9, 21, 42, .05);
}

/* ── Category links: dark text on white ── */
.cat-link {
    color: var(--navy) !important;
    border-bottom: 2px solid transparent !important;
    font-weight: 400;
    font-size: 16px;
    padding: 16px 12px !important;
    transition: color .2s, border-color .2s, background .2s;
    border-radius: 4px 4px 0 0;
}

.cat-link svg {
    fill: var(--t3) !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
    transition: transform .22s, fill .2s;
}

.cat-item:hover .cat-link,
.cat-item.active .cat-link {
    color: var(--red) !important;
    border-bottom-color: var(--red) !important;
    background: rgba(190, 42, 43, .04);
}

.cat-item:hover .cat-link svg,
.cat-item.active .cat-link svg {
    fill: var(--red) !important;
    transform: rotate(180deg);
}

/* ── Mega panel: clean white ── */
.mega-panel {
    background: #fff !important;
    border-top: 2px solid var(--red) !important;
    box-shadow: 0 24px 60px rgba(9, 21, 42, .14) !important;
}

/* ── Header row inside mega ── */
.mega-hd {
    border-bottom: 1px solid rgba(9, 21, 42, .07) !important;
    padding-bottom: 18px !important;
    margin-bottom: 22px !important;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mega-hd-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
    background: rgba(190, 42, 43, .07) !important;
    border: 1px solid rgba(190, 42, 43, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem !important;
}

.mega-hd-title {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
}

.mega-hd-sub {
    font-size: .74rem !important;
    color: var(--t3) !important;
}

/* ── Column titles ── */
.mega-col-title {
    font-size: .65rem !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    color: var(--t3) !important;
    padding-bottom: 9px !important;
    margin-bottom: 4px !important;
    border-bottom: 1px solid rgba(9, 21, 42, .06) !important;
}

/* ── Mega links ── */
.mega-link {
    color: var(--t2) !important;
    font-size: .82rem !important;
    padding: 6px 8px !important;
    border-radius: 5px !important;
    transition: background .18s, color .18s, padding-left .18s;
}

.mega-link::before {
    background: var(--red) !important;
    opacity: .3 !important;
    width: 4px !important;
    height: 4px !important;
    transition: opacity .18s, transform .18s;
}

.mega-link:hover {
    background: rgba(190, 42, 43, .05) !important;
    color: var(--red) !important;
    padding-left: 12px !important;
}

.mega-link:hover::before {
    opacity: 1 !important;
}

/* ── Featured CTA card: clean light style ── */
.mega-featured {
    background: var(--bg1) !important;
    border: 1px solid rgba(9, 21, 42, .08) !important;
    border-left: 3px solid var(--red) !important;
    border-radius: 10px !important;
    padding: 22px 18px !important;
    align-self: start;
}

.mega-feat-tag {
    font-size: .62rem !important;
    font-weight: 600 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    color: var(--red) !important;
}

.mega-feat-title {
    font-size: .92rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    line-height: 1.4 !important;
    margin: 6px 0 0 !important;
}

.mega-feat-desc {
    font-size: .74rem !important;
    color: var(--t3) !important;
    line-height: 1.55 !important;
    margin: 6px 0 0 !important;
}

.mega-feat-btn {
    display: inline-block !important;
    margin-top: 14px !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    background: var(--red) !important;
    color: #fff !important;
    font-size: .72rem !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
    text-decoration: none !important;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(190, 42, 43, .25);
    align-self: flex-start;
}

.mega-feat-btn:hover {
    background: var(--red2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(190, 42, 43, .35) !important;
}

/* ── Overlay: lighter for white theme ── */
.mega-bg {
    background: rgba(9, 21, 42, .18) !important;
    backdrop-filter: blur(1px) !important;
}

/* ── Responsive: hide cat-bar on mobile ── */
@media (max-width: 900px) {
    .cat-bar {
        display: none;
    }
}


/* =============================================
   GLOBAL TYPOGRAPHY — CONSISTENT WEIGHTS
============================================= */

.h2 {
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -.02em !important;
    line-height: 1.15 !important;
}

.lead {
    font-weight: 400 !important;
    font-size: .98rem !important;
    color: var(--t3) !important;
    line-height: 1.8 !important;
    font-family: 'Outfit', sans-serif !important;
}

.tag {
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 10.5px !important;
    letter-spacing: .18em !important;
}

.sec-hdr {
    margin-bottom: 44px !important;
}

/* =============================================
   PARTNERS SECTION
============================================= */
.partners h2 {
    font-size: 28px !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -.015em !important;
    color: var(--navy) !important;
}

.partners p {
    font-size: .9rem !important;
    margin-bottom: 36px !important;
}

.partner-logos {
    gap: 56px !important;
}

/* =============================================
   SERVICES STATS SECTION (170+ Editors etc.)
============================================= */
.card h3 {
    font-size: 2rem !important;
    font-weight: 900 !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -.03em !important;
}

.card p {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: var(--t3) !important;
    font-family: 'Outfit', sans-serif !important;
}

.content h2 {
    font-size: 30px !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -.02em !important;
    line-height: 1.2 !important;
}

.content p {
    font-size: .9rem !important;
    line-height: 1.8 !important;
    color: var(--t3) !important;
    font-family: 'Outfit', sans-serif !important;
}

.features li {
    font-size: 13px !important;
    font-weight: 500 !important;
    font-family: 'Outfit', sans-serif !important;
    color: var(--t2) !important;
}

/* =============================================
   SERVICES GRID (#services)
============================================= */
#services {
    padding: 50px 0 !important;
}

.svc-title {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -.01em !important;
}

.svc-desc {
    font-size: .87rem !important;
    color: var(--t3) !important;
    line-height: 1.78 !important;
    font-family: 'Outfit', sans-serif !important;
}

.svc-cta {
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif !important;
}

.svc-img {
    height: 175px !important;
}

.svc-body {
    padding: 22px 22px 20px !important;
}

.svc-ico {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
    margin-bottom: 12px !important;
}

/* =============================================
   WHY CHOOSE US
============================================= */
#why {
    padding: 50px 0 !important;
}

.why-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif !important;
}

.why-desc {
    font-size: .87rem !important;
    color: var(--t3) !important;
    line-height: 1.7 !important;
}

.why-ico {
    font-size: 20px !important;
}

/* =============================================
   HOW IT WORKS
============================================= */
#hiw {
    padding: 50px 0 !important;
}

.step-title {
    font-size: .97rem !important;
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif !important;
}

.step-desc {
    font-size: .85rem !important;
    color: var(--t3) !important;
    line-height: 1.7 !important;
}

.step-lbl {
    font-size: 10px !important;
    font-weight: 700 !important;
}

.step-num {
    width: 70px !important;
    height: 70px !important;
    font-size: 22px !important;
    margin-bottom: 18px !important;
}

/* =============================================
   PORTFOLIO SECTION — REFINED UI
============================================= */
#portfolio {
    padding: 50px 0 !important;
    /* background: #f8f9fc !important; */
}

/* Filter Tabs */
.port-tabs {
    display: flex !important;
    gap: 6px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-bottom: 38px !important;
}

.t-btn {
    padding: 7px 20px !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: .05em !important;
    border: 1px solid rgba(9, 21, 42, .1) !important;
    border-radius: 30px !important;
    background: #fff !important;
    color: var(--t3) !important;
    transition: all .25s ease !important;
    box-shadow: 0 1px 4px rgba(9, 21, 42, .05) !important;
}

.t-btn:hover {
    background: rgba(9, 21, 42, .05) !important;
    color: var(--navy) !important;
    border-color: rgba(9, 21, 42, .2) !important;
}

.t-btn.active {
    background: var(--navy) !important;
    color: #fff !important;
    border-color: var(--navy) !important;
    box-shadow: 0 4px 14px rgba(9, 21, 42, .2) !important;
}

/* Portfolio Grid */
.port-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

/* Book Card */
.book-card {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(9, 21, 42, .07) !important;
    border: 1px solid rgba(9, 21, 42, .06) !important;
    transition: transform .32s ease, box-shadow .32s ease !important;
    cursor: pointer;
    background: #fff !important;
}

.book-card:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 18px 48px rgba(9, 21, 42, .13) !important;
}

/* Book Cover */
.book-cover {
    height: 230px !important;
    position: relative !important;
    padding: 14px 14px 14px 28px !important;
}

.bk-title {
    font-size: .88rem !important;
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif !important;
    line-height: 1.25 !important;
    letter-spacing: -.01em !important;
}

.bk-author {
    font-size: 9px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, .55) !important;
    letter-spacing: .03em !important;
}

.bk-genre {
    font-size: 7px !important;
    font-weight: 600 !important;
    letter-spacing: .08em !important;
    padding: 3px 8px !important;
    background: rgba(255, 255, 255, .18) !important;
    backdrop-filter: blur(6px) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
}

.bk-pat {
    opacity: .04 !important;
}

/* Overlay on hover */
.bk-overlay {
    background: rgba(9, 21, 42, .93) !important;
    backdrop-filter: blur(3px) !important;
    padding: 20px !important;
}

.bk-overlay h4 {
    font-size: .9rem !important;
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -.01em !important;
    margin-bottom: 8px !important;
}

.bk-overlay p {
    font-size: .74rem !important;
    color: rgba(255, 255, 255, .5) !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
}

.bk-btn {
    padding: 7px 18px !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: .07em !important;
    border-radius: 5px !important;
    background: var(--red) !important;
    box-shadow: 0 4px 14px rgba(190, 42, 43, .3) !important;
    transition: background .2s, transform .2s !important;
}

.bk-btn:hover {
    background: var(--red2) !important;
    transform: translateY(-1px) !important;
}

/* =============================================
   CTA BANNER
============================================= */
#cta .h2 {
    font-weight: 500 !important;
}

/* =============================================
   RESPONSIVE — ALL SECTIONS
============================================= */

/* Tablet landscape */
@media (max-width: 1200px) {
    .port-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px !important;
    }
}

/* Tablet portrait */
@media (max-width: 992px) {
    .h2 {
        font-size: clamp(1.8rem, 3.8vw, 2.4rem) !important;
    }

    .port-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .book-cover {
        height: 200px !important;
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }

    .why-inner {
        gap: 44px !important;
    }

    .hiw-track {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 36px !important;
    }

    #services,
    #why,
    #hiw,
    #portfolio {
        padding: 50px 0 !important;
    }

    .partner-logos {
        gap: 36px !important;
    }

    .services-wrapper {
        gap: 40px !important;
    }
}

/* Mobile landscape / large phone */
@media (max-width: 768px) {
    .h2 {
        font-size: clamp(1.6rem, 5vw, 2rem) !important;
    }

    .lead {
        font-size: .9rem !important;
    }

    .sec-hdr {
        margin-bottom: 32px !important;
    }

    .port-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 13px !important;
    }

    .book-cover {
        height: 185px !important;
    }

    .bk-title {
        font-size: .78rem !important;
    }

    .port-tabs {
        gap: 5px !important;
        margin-bottom: 28px !important;
    }

    .t-btn {
        padding: 6px 14px !important;
        font-size: 9.5px !important;
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .svc-img {
        height: 140px !important;
    }

    .svc-body {
        padding: 16px 16px 14px !important;
    }

    .hiw-track {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .step {
        padding: 0 20px !important;
    }

    .step-num {
        width: 60px !important;
        height: 60px !important;
        font-size: 20px !important;
        margin-bottom: 14px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .services-wrapper {
        flex-direction: column !important;
        gap: 32px !important;
    }

    .partner-logos {
        gap: 24px !important;
        flex-wrap: wrap !important;
    }

    .partner-logos img {
        max-height: 32px !important;
    }

    #services,
    #why,
    #hiw,
    #portfolio {
        padding: 60px 0 !important;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .h2 {
        font-size: 1.55rem !important;
    }

    .port-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .book-cover {
        height: 160px !important;
    }

    .bk-title {
        font-size: .72rem !important;
    }

    .bk-genre {
        font-size: 6px !important;
    }

    .svc-grid {
        grid-template-columns: 1fr !important;
    }

    .svc-img {
        height: 160px !important;
    }

    .why-grid {
        gap: 14px !important;
    }

    .why-item {
        padding: 16px 14px !important;
    }

    .port-tabs {
        gap: 4px !important;
    }

    .t-btn {
        padding: 5px 12px !important;
        font-size: 9px !important;
    }

    .partner-logos {
        gap: 20px !important;
    }

    #services,
    #why,
    #hiw,
    #portfolio {
        padding: 48px 0 !important;
    }
}

/* Why Choose Us */

/* ── Missing CSS variable fallbacks ── */
:root {
    --gray-50:  #F9FAFB;
    --gray-100: rgba(9,21,42,.07);
    --gray-200: rgba(9,21,42,.12);
    --gray-400: #6E809A;
    --gray-700: #374766;
    --cream:    #FBF8F1;
    --text-sub: #374766;
    --navy-soft: rgba(9,21,42,.15);
}

/* ── Section Shell ── */
.wcu-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 110px 0 120px;
    font-family: 'Outfit', sans-serif;
}

/* ── Decorative BG geometry ── */
.wcu-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.wcu-bg-circle--1 {
    width: 700px;
    height: 700px;
    top: -260px;
    right: -200px;
    background: radial-gradient(circle, rgba(178, 34, 52, 0.045) 0%, transparent 70%);
}

.wcu-bg-circle--2 {
    width: 500px;
    height: 500px;
    bottom: -180px;
    left: -160px;
    background: radial-gradient(circle, rgba(11, 31, 75, 0.055) 0%, transparent 70%);
}

.wcu-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(11, 31, 75, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

/* ── Top gold rule ── */
.wcu-top-rule {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--red) 70%, transparent 100%);
    opacity: 0.5;
}

/* ── Container ── */
.wcu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
.wcu-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 80px;
    animation: wcu-up 0.8s ease both;
}

.wcu-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}

.wcu-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.wcu-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.wcu-headline em {
    font-style: italic;
    color: var(--red);
}

.wcu-header-right {
    padding-bottom: 6px;
}

.wcu-header-desc {
    font-size: 16px;
    color: var(--text-sub);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 28px;
}

/* Inline trust badges */
.wcu-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.wcu-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid;
}

.wcu-badge--navy {
    color: var(--navy);
    border-color: rgba(11, 31, 75, 0.2);
    background: rgba(11, 31, 75, 0.04);
}

.wcu-badge--red {
    color: var(--red);
    border-color: rgba(178, 34, 52, 0.25);
    background: rgba(178, 34, 52, 0.05);
}

.wcu-badge--gold {
    color: #8B6E24;
    border-color: rgba(201, 168, 76, 0.35);
    background: rgba(201, 168, 76, 0.08);
}

.wcu-badge svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ═══════════════════════════════
   MAIN REASON CARDS — 2 col
═══════════════════════════════ */
.wcu-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.wcu-reason {
    display: flex;
    gap: 20px;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(.22, .68, 0, 1.2);
    animation: wcu-up 0.7s ease both;
    position: relative;
    overflow: hidden;
}

.wcu-reason::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(11, 31, 75, 0.025) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s;
}

.wcu-reason:hover {
    border-color: var(--gray-200);
    box-shadow: 0 16px 48px rgba(11, 31, 75, 0.09), 0 4px 12px rgba(11, 31, 75, 0.04);
    transform: translateY(-5px);
}

.wcu-reason:hover::before {
    opacity: 1;
}

/* Accent left bar */
.wcu-reason::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--red), var(--gold));
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(.22, .68, 0, 1.2);
}

.wcu-reason:hover::after {
    transform: scaleY(1);
}

.wcu-reason-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: background 0.3s, border-color 0.3s, transform 0.35s ease;
}

.wcu-reason:hover .wcu-reason-icon {
    background: rgba(178, 34, 52, 0.07);
    border-color: rgba(178, 34, 52, 0.18);
    transform: scale(1.08) rotate(-4deg);
}

.wcu-reason-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--navy);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}

.wcu-reason:hover .wcu-reason-icon svg {
    stroke: var(--red2);
}

.wcu-reason-body {
    flex: 1;
}

.wcu-reason-num {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.wcu-reason-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 9px;
    line-height: 1.25;
}

.wcu-reason-desc {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.8;
    font-weight: 400;
}

/* Highlights list inside card */
.wcu-highlights {
    list-style: none;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wcu-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
}

.wcu-highlights li::before {
    content: '';
    flex-shrink: 0;
    margin-top: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.7;
}

/* ═══════════════════════════════
   LARGE FEATURE ROW (3 cols)
═══════════════════════════════ */
.wcu-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.wcu-feature {
    padding: 36px 28px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.35s ease;
    animation: wcu-up 0.75s ease both;
}

.wcu-feature:hover {
    transform: translateY(-6px);
}

.wcu-feature--light {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
}

.wcu-feature--light:hover {
    box-shadow: 0 20px 52px rgba(11, 31, 75, 0.08);
}

.wcu-feature--navy {
    background: var(--navy);
    border: 1px solid var(--navy-soft);
}

.wcu-feature--navy:hover {
    box-shadow: 0 20px 52px rgba(11, 31, 75, 0.35);
}

.wcu-feature--red {
    background: var(--red);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wcu-feature--red:hover {
    box-shadow: 0 20px 52px rgba(178, 34, 52, 0.35);
}

/* Big stat display */
.wcu-feature-stat {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.wcu-feature--light .wcu-feature-stat {
    color: var(--navy);
}

.wcu-feature--navy .wcu-feature-stat {
    color: var(--white);
}

.wcu-feature--red .wcu-feature-stat {
    color: var(--white);
}

.wcu-feature-stat span {
    font-size: 32px;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
}

.wcu-feature--light .wcu-feature-stat span {
    color: var(--red);
}

.wcu-feature--navy .wcu-feature-stat span {
    color: rgba(255, 255, 255, 0.5);
}

.wcu-feature--red .wcu-feature-stat span {
    color: rgba(255, 255, 255, 0.6);
}

.wcu-feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.wcu-feature--light .wcu-feature-title {
    color: var(--navy);
}

.wcu-feature--navy .wcu-feature-title {
    color: #fff;
}

.wcu-feature--red .wcu-feature-title {
    color: #fff;
}

.wcu-feature-desc {
    font-size: 13.5px;
    line-height: 1.75;
    font-weight: 400;
}

.wcu-feature--light .wcu-feature-desc {
    color: var(--text-sub);
}

.wcu-feature--navy .wcu-feature-desc {
    color: rgba(255, 255, 255, 0.55);
}

.wcu-feature--red .wcu-feature-desc {
    color: rgba(255, 255, 255, 0.72);
}

/* Deco star on dark cards */
.wcu-feature-star {
    position: absolute;
    bottom: -12px;
    right: -12px;
    font-size: 96px;
    line-height: 1;
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    font-family: serif;
}

/* ═══════════════════════════════
   PROCESS TIMELINE ROW
═══════════════════════════════ */
.wcu-process-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    text-align: center;
    margin-bottom: 36px;
    animation: wcu-up 0.6s 0.2s ease both;
}

.wcu-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    margin-bottom: 72px;
    animation: wcu-up 0.75s 0.15s ease both;
}

/* Connecting line */
.wcu-process::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(10% + 14px);
    right: calc(10% + 14px);
    height: 1px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--navy), var(--gold), var(--red));
    opacity: 0.25;
}

.wcu-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
    position: relative;
}

.wcu-step-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.wcu-step:hover .wcu-step-dot {
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wcu-step:nth-child(1) .wcu-step-dot {
    border-color: rgba(178, 34, 52, 0.35);
}

.wcu-step:nth-child(2) .wcu-step-dot {
    border-color: rgba(11, 31, 75, 0.25);
}

.wcu-step:nth-child(3) .wcu-step-dot {
    border-color: rgba(201, 168, 76, 0.4);
}

.wcu-step:nth-child(4) .wcu-step-dot {
    border-color: rgba(11, 31, 75, 0.25);
}

.wcu-step:nth-child(5) .wcu-step-dot {
    border-color: rgba(178, 34, 52, 0.35);
}

.wcu-step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.wcu-step:nth-child(1) .wcu-step-num,
.wcu-step:nth-child(5) .wcu-step-num {
    color: var(--red);
}

.wcu-step:nth-child(2) .wcu-step-num,
.wcu-step:nth-child(4) .wcu-step-num {
    color: var(--navy);
}

.wcu-step:nth-child(3) .wcu-step-num {
    color: #8B6E24;
}

.wcu-step-title {
    font-weight: 600;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 5px;
    line-height: 1.3;
}

.wcu-step-sub {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.5;
    font-weight: 400;
}

/* ═══════════════════════════════
   TESTIMONIAL STRIP
═══════════════════════════════ */
.wcu-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 72px;
    animation: wcu-up 0.8s 0.2s ease both;
}

.wcu-testimonial {
    background: var(--cream);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 18px;
    padding: 28px 24px 24px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wcu-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(11, 31, 75, 0.07);
}

.wcu-testimonial-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: -10px;
}

.wcu-testimonial-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 20px;
}

.wcu-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wcu-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.wcu-author-avatar--a {
    background: rgba(178, 34, 52, 0.12);
    color: var(--red);
}

.wcu-author-avatar--b {
    background: rgba(11, 31, 75, 0.10);
    color: var(--navy);
}

.wcu-author-avatar--c {
    background: rgba(201, 168, 76, 0.18);
    color: #8B6E24;
}

.wcu-author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.wcu-author-role {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 400;
}

/* Stars */
.wcu-stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* ═══════════════════════════════
   CTA BOTTOM BANNER
═══════════════════════════════ */
.wcu-cta-banner {
    background: var(--navy);
    border-radius: 24px;
    padding: 52px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: wcu-up 0.8s 0.25s ease both;
}

.wcu-cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 34, 52, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.wcu-cta-banner::after {
    content: '★';
    position: absolute;
    bottom: -20px;
    left: 40px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    font-family: serif;
}

.wcu-cta-text-small {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.wcu-cta-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.wcu-cta-headline em {
    color: var(--red2);
    font-style: normal;
}

.wcu-cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    line-height: 1.6;
}

.wcu-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0;
}

.wcu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.wcu-btn:hover {
    transform: translateY(-2px);
}

.wcu-btn:active {
    transform: scale(0.97);
}

.wcu-btn--primary {
    background: var(--red2);
    color: #fff;
    box-shadow: 0 8px 28px rgba(178, 34, 52, 0.45);
}

.wcu-btn--primary:hover {
    background: #E2304A;
    box-shadow: 0 12px 36px rgba(178, 34, 52, 0.60);
}

.wcu-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.wcu-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.wcu-btn svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes wcu-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wcu-reason:nth-child(1) {
    animation-delay: 0.05s;
}

.wcu-reason:nth-child(2) {
    animation-delay: 0.12s;
}

.wcu-reason:nth-child(3) {
    animation-delay: 0.19s;
}

.wcu-reason:nth-child(4) {
    animation-delay: 0.26s;
}

.wcu-reason:nth-child(5) {
    animation-delay: 0.33s;
}

.wcu-reason:nth-child(6) {
    animation-delay: 0.40s;
}

.wcu-feature:nth-child(1) {
    animation-delay: 0.08s;
}

.wcu-feature:nth-child(2) {
    animation-delay: 0.18s;
}

.wcu-feature:nth-child(3) {
    animation-delay: 0.28s;
}

.wcu-step:nth-child(1) {
    animation-delay: 0.04s;
}

.wcu-step:nth-child(2) {
    animation-delay: 0.10s;
}

.wcu-step:nth-child(3) {
    animation-delay: 0.16s;
}

.wcu-step:nth-child(4) {
    animation-delay: 0.22s;
}

.wcu-step:nth-child(5) {
    animation-delay: 0.28s;
}

.wcu-testimonial:nth-child(1) {
    animation-delay: 0.06s;
}

.wcu-testimonial:nth-child(2) {
    animation-delay: 0.14s;
}

.wcu-testimonial:nth-child(3) {
    animation-delay: 0.22s;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 960px) {
    .wcu-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wcu-reasons {
        grid-template-columns: 1fr;
    }

    .wcu-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcu-process {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 8px;
    }

    .wcu-process::before {
        display: none;
    }

    .wcu-testimonials {
        grid-template-columns: 1fr;
    }

    .wcu-cta-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 28px;
    }

    .wcu-cta-actions {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 620px) {
    .wcu-section {
        padding: 70px 0 90px;
    }

    .wcu-container {
        padding: 0 20px;
    }

    .wcu-features {
        grid-template-columns: 1fr;
    }

    .wcu-process {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcu-headline {
        font-size: 34px;
    }

    .wcu-feature-stat {
        font-size: 50px;
    }
}

/* =============================================
   SERVICES PAGE — HERO BANNER
============================================= */
.sp-hero {
    position: relative;
    overflow: hidden;
    padding: 230px 0 90px;
    background: linear-gradient(150deg, #060e1a 0%, var(--navy) 55%, var(--navy2) 100%);
    color: #fff;
}
.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,160,48,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,48,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.sp-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(190,42,43,.13) 0%, transparent 65%);
    pointer-events: none;
}
.sp-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}
.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,255,255,.45);
    margin-bottom: 18px;
}
.sp-breadcrumb a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color .25s;
}
.sp-breadcrumb a:hover { color: var(--gold); }
.sp-breadcrumb .bsep { color: rgba(255,255,255,.18); font-size: 10px; }
.sp-breadcrumb .bcur { color: var(--gold2); }
.sp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.sp-hero-tag span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
}
.sp-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: #fff;
    margin-bottom: 20px;
}
.sp-hero h1 em {
    font-style: normal;
    color: var(--gold2);
}
.sp-hero-sub {
    font-size: 1.03rem;
    color: rgba(255,255,255,.65);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 34px;
}
.sp-hero-acts {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.sp-hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    position: relative;
    z-index: 2;
}
.sp-hero-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--r2);
    padding: 22px 18px;
    transition: var(--ease);
    cursor: default;
}
.sp-hero-card:hover {
    background: rgba(212,160,48,.08);
    border-color: rgba(212,160,48,.22);
    transform: translateY(-5px);
}
.sp-hc-icon { font-size: 24px; margin-bottom: 10px; }
.sp-hc-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}
.sp-hc-desc {
    font-size: 11.5px;
    color: rgba(255,255,255,.48);
    line-height: 1.5;
    margin: 0;
}
.sp-hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

/* =============================================
   SERVICES PAGE — STICKY SERVICE NAV
============================================= */
.sp-snav {
    background: #fff;
    border-bottom: 1px solid var(--bdr);
    position: sticky;
    top: 114px;
    z-index: 90;
    box-shadow: 0 2px 12px rgba(9,21,42,.05);
}
.sp-snav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sp-snav-inner::-webkit-scrollbar { display: none; }
.sp-snav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 15px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--t3);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all .25s;
    font-family: 'Outfit', sans-serif;
}
.sp-snav-link:hover {
    color: var(--red);
    border-bottom-color: var(--red);
    background: rgba(190,42,43,.025);
}

/* =============================================
   SERVICES PAGE — SERVICE DETAIL SECTIONS
============================================= */
.sp-serv-section {
    padding: 96px 0;
}
.sp-serv-section:nth-child(even) {
    background: var(--bg1);
}
.sp-serv-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.sp-serv-inner.sp-rev {
    direction: rtl;
}
.sp-serv-inner.sp-rev > * {
    direction: ltr;
}
/* Image wrapper */
.sp-img-wrap {
    position: relative;
}
.sp-img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--r3);
    box-shadow: var(--sh4);
    display: block;
}
.sp-img-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: #fff;
    border-radius: var(--r2);
    padding: 14px 18px;
    box-shadow: var(--sh3);
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 190px;
    max-width: 240px;
}
.sp-img-badge-ico {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #fff;
}
.sp-img-badge-txt strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -.02em;
}
.sp-img-badge-txt span {
    font-size: 11px;
    color: var(--t3);
    font-weight: 500;
}
.sp-img-deco {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,160,48,.12), rgba(190,42,43,.08));
    border: 2px solid rgba(212,160,48,.18);
    z-index: -1;
}
/* Content */
.sp-serv-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
}
.sp-serv-tag::before,
.sp-serv-tag::after {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--red);
    border-radius: 2px;
}
.sp-serv-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.65rem, 2.6vw, 2.3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -.022em;
    margin-bottom: 16px;
}
.sp-serv-h2 strong {
    color: var(--red);
}
.sp-serv-p {
    font-size: .97rem;
    color: var(--t2);
    line-height: 1.85;
    margin-bottom: 12px;
}
.sp-features {
    list-style: none;
    margin: 22px 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}
.sp-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--t2);
    font-weight: 500;
    line-height: 1.5;
}
.sp-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(190,42,43,.1);
    color: var(--red);
    font-size: 10.5px;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
}
.sp-serv-acts {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.sp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: var(--ease);
    font-family: 'Outfit', sans-serif;
}
.sp-link:hover { color: var(--red); gap: 10px; }

/* =============================================
   SERVICES PAGE — PROCESS (How We Work)
============================================= */
.sp-process {
    padding: 96px 0;
    background: linear-gradient(150deg, #060e1a 0%, var(--navy) 55%, var(--navy2) 100%);
    position: relative;
    overflow: hidden;
}
.sp-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,160,48,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,48,.035) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.sp-proc-head {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}
.sp-proc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.sp-proc-eyebrow span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold);
}
.sp-proc-head h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.022em;
    margin-bottom: 14px;
}
.sp-proc-head h2 em {
    font-style: normal;
    color: var(--gold2);
}
.sp-proc-head p {
    color: rgba(255,255,255,.6);
    font-size: .97rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}
.sp-proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.sp-proc-grid::after {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 26px);
    right: calc(12.5% + 26px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,160,48,.3) 20%, rgba(212,160,48,.3) 80%, transparent);
    pointer-events: none;
}
.sp-proc-step {
    text-align: center;
}
.sp-step-circle {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    border: 1.5px solid rgba(212,160,48,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    position: relative;
    transition: var(--ease);
}
.sp-proc-step:hover .sp-step-circle {
    background: rgba(190,42,43,.14);
    border-color: var(--red);
    transform: scale(1.06);
}
.sp-step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.sp-step-icon-dot {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
}
.sp-proc-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.sp-proc-step p {
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
    line-height: 1.75;
    margin: 0;
}

/* =============================================
   SERVICES PAGE — STATS STRIP
============================================= */
.sp-stats {
    padding: 0;
    background: #fff;
    border-bottom: 1px solid var(--bdr);
}
.sp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.sp-stat-item {
    text-align: center;
    padding: 42px 20px;
    border-right: 1px solid var(--bdr);
    transition: var(--ease);
}
.sp-stat-item:last-child { border-right: none; }
.sp-stat-item:hover { background: var(--bg1); }
.sp-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -.03em;
}
.sp-stat-num em {
    font-style: normal;
    color: var(--red);
}
.sp-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--t2);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
}
.sp-stat-note {
    font-size: 12px;
    color: var(--t3);
}

/* =============================================
   SERVICES PAGE — FAQ
============================================= */
.sp-faq {
    padding: 96px 0;
    background: var(--bg1);
}
.sp-faq-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}
.sp-faq-left h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.022em;
    line-height: 1.15;
    margin-bottom: 16px;
}
.sp-faq-left h2 em {
    font-style: normal;
    color: var(--red);
}
.sp-faq-left p {
    color: var(--t2);
    font-size: .95rem;
    line-height: 1.85;
    margin-bottom: 32px;
}
.sp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sp-faq-item {
    background: #fff;
    border-radius: var(--r2);
    border: 1px solid var(--bdr2);
    overflow: hidden;
    box-shadow: var(--sh1);
    transition: box-shadow .25s;
}
.sp-faq-item.sp-open {
    box-shadow: var(--sh2);
    border-color: rgba(190,42,43,.12);
}
.sp-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color .25s;
}
.sp-faq-q:hover { color: var(--red); }
.sp-faq-ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--red);
    flex-shrink: 0;
    transition: var(--ease);
    font-weight: 400;
    line-height: 1;
}
.sp-faq-item.sp-open .sp-faq-ico {
    background: var(--red);
    color: #fff;
    transform: rotate(45deg);
}
.sp-faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 14.5px;
    color: var(--t2);
    line-height: 1.85;
    border-top: 1px solid var(--bdr2);
}
.sp-faq-item.sp-open .sp-faq-a { display: block; }

/* =============================================
   SERVICES PAGE — CTA BANNER
============================================= */
.sp-cta {
    padding: 100px 0;
    background: linear-gradient(150deg, #060e1a 0%, var(--navy) 55%, var(--navy2) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.sp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,160,48,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,48,.035) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.sp-cta::after {
    content: '★';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    color: rgba(255,255,255,.02);
    pointer-events: none;
    font-family: serif;
}
.sp-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.sp-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,48,.1);
    border: 1px solid rgba(212,160,48,.25);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 40px;
    margin-bottom: 22px;
}
.sp-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.022em;
    line-height: 1.15;
    margin-bottom: 16px;
}
.sp-cta h2 em {
    font-style: normal;
    color: var(--gold2);
}
.sp-cta-sub {
    font-size: 1.03rem;
    color: rgba(255,255,255,.6);
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.sp-cta-acts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.sp-cta-note {
    font-size: 12.5px;
    color: rgba(255,255,255,.35);
}
.sp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 34px;
    background: var(--red);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--r);
    box-shadow: 0 6px 24px rgba(190,42,43,.38);
    transition: var(--ease);
    white-space: nowrap;
}
.sp-btn-primary:hover {
    background: var(--red2);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(190,42,43,.52);
    color: #fff;
}
.sp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 30px;
    background: transparent;
    color: rgba(255,255,255,.75);
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: var(--r);
    transition: var(--ease);
    white-space: nowrap;
}
.sp-btn-secondary:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.5);
    color: #fff;
}
.sp-btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 32px;
    background: var(--navy);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--r);
    box-shadow: 0 4px 18px rgba(9,21,42,.25);
    transition: var(--ease);
    white-space: nowrap;
}
.sp-btn-navy:hover {
    background: var(--navy2);
    transform: translateY(-2px);
    color: #fff;
}

/* =============================================
   SERVICES PAGE — RESPONSIVE
============================================= */
@media (max-width: 1100px) {
    .sp-hero-inner { grid-template-columns: 1fr; }
    .sp-hero-cards { display: none; }
    .sp-serv-inner { gap: 50px; }
    .sp-faq-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
    .sp-hero { padding: 150px 0 70px; }
    .sp-serv-section { padding: 72px 0; }
    .sp-serv-inner { grid-template-columns: 1fr; gap: 36px; }
    .sp-serv-inner.sp-rev { direction: ltr; }
    .sp-proc-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-proc-grid::after { display: none; }
    .sp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-stat-item:nth-child(2) { border-right: none; }
    .sp-stat-item:nth-child(3),
    .sp-stat-item:nth-child(4) { border-top: 1px solid var(--bdr); }
    .sp-img-wrap img { height: 380px; }
}
@media (max-width: 600px) {
    .sp-hero { padding: 130px 0 60px; }
    .sp-serv-section { padding: 56px 0; }
    .sp-proc-grid { grid-template-columns: 1fr; }
    .sp-stats-grid { grid-template-columns: 1fr; }
    .sp-stat-item { border-right: none; border-top: 1px solid var(--bdr); }
    .sp-stat-item:first-child { border-top: none; }
    .sp-features { grid-template-columns: 1fr; }
    .sp-process { padding: 64px 0; }
    .sp-cta { padding: 72px 0; }
    .sp-faq { padding: 64px 0; }
    .sp-img-wrap img { height: 280px; }
    .sp-img-badge { min-width: 170px; padding: 12px 14px; }
    .sp-snav { display: none; }
}

/* =============================================
   ABOUT PAGE
============================================= */

/* ══════════════════════════════════════════
   HERO BANNER — two-column layout
══════════════════════════════════════════ */
.abt-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding-top: 250px;
    padding-bottom: 80px;
    background:
        url('/assets/new-brand/img/hero-banner/banner.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.abt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(6, 12, 28, .97) 0%,
        rgba(9, 21, 42, .93) 50%,
        rgba(14, 32, 64, .80) 100%
    );
}

/* grid lines texture */
.abt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 160, 48, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 160, 48, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.abt-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 64px;
    align-items: center;
    width: 100%;
}

/* ── Left content ── */
.abt-hero-content { display: flex; flex-direction: column; }

.abt-breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 13px;
}

.abt-breadcrumb li a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .25s;
}

.abt-breadcrumb li a:hover { color: var(--gold); }

.abt-breadcrumb li span { color: rgba(255, 255, 255, .25); }

.abt-breadcrumb li:last-child {
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

.abt-hero-h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -.025em;
    margin: 8px 0 20px;
    font-family: 'Outfit', sans-serif;
}

.abt-hero-h1 em {
    font-style: normal;
    color: var(--gold);
}

.abt-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 32px;
}

.abt-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

/* inline stats row */
.abt-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 18px 24px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r2);
    backdrop-filter: blur(8px);
    width: fit-content;
}

.abt-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}

.abt-hero-stat strong {
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.abt-hero-stat span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-top: 4px;
}

.abt-hero-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .12);
}

/* ── Right books visual ── */
.abt-hero-books {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
}

.abt-books-stack {
    position: relative;
    width: 220px;
    height: 340px;
}

.abt-book {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--sh4);
}

.abt-book img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.abt-book-back {
    width: 200px;
    height: 300px;
    top: 40px;
    left: -30px;
    transform: rotate(-8deg);
    opacity: .75;
    z-index: 1;
    filter: brightness(.7);
}

.abt-book-mid {
    width: 210px;
    height: 310px;
    top: 20px;
    left: 20px;
    transform: rotate(-3deg);
    opacity: .9;
    z-index: 2;
    filter: brightness(.85);
}

.abt-book-front {
    width: 220px;
    height: 330px;
    top: 0;
    left: 60px;
    transform: rotate(3deg);
    z-index: 3;
    transition: transform .4s ease, box-shadow .4s ease;
}

.abt-hero-books:hover .abt-book-front {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
}

.abt-books-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(212, 160, 48, .25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.abt-hero-float-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: var(--white);
    border-radius: var(--r2);
    box-shadow: var(--sh3);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    border: 1px solid var(--bdr2);
}

.abt-float-icon { font-size: 1.6rem; }

.abt-hero-float-badge strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.abt-hero-float-badge small {
    font-size: .72rem;
    color: var(--t3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ══════════════════════════════════════════
   SHARED HELPERS
══════════════════════════════════════════ */
.abt-em-red   { font-style: normal; color: var(--red); }

.abt-d-dim {
    display: block;
    width: 10px;
    height: 3px;
    background: rgba(9, 21, 42, .15);
    border-radius: 2px;
}

.abt-lead-mt { margin-top: 14px; }

/* ══════════════════════════════════════════
   OUR STORY
══════════════════════════════════════════ */
.abt-story {
    padding: 110px 0;
    background: var(--white);
}

.abt-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.abt-img-wrap { position: relative; }

.abt-img {
    width: 100%;
    border-radius: var(--r2);
    box-shadow: var(--sh4);
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

.abt-img-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--r2);
    box-shadow: var(--sh3);
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--bdr2);
    min-width: 130px;
}

.abt-img-badge strong {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.abt-img-badge span {
    font-size: .7rem;
    color: var(--t3);
    font-weight: 600;
    letter-spacing: .05em;
    text-align: center;
    margin-top: 4px;
    text-transform: uppercase;
}

.abt-badge-1 { bottom: -22px; left: -22px; }
.abt-badge-2 { top:    24px;  right: -22px; }

.abt-checks {
    list-style: none;
    margin: 26px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abt-checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .96rem;
    color: var(--t2);
    font-weight: 500;
}

.abt-check-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.abt-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════ */
.abt-stats-band {
    padding: 72px 0;
    background:
        radial-gradient(ellipse 70% 90% at 100% 50%, rgba(190, 42, 43, .14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 0% 50%, rgba(212, 160, 48, .07) 0%, transparent 55%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    position: relative;
    overflow: hidden;
}

.abt-stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 160, 48, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 160, 48, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.abt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.abt-stat {
    text-align: center;
    padding: 16px 20px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.abt-stat:last-child { border-right: none; }

.abt-stat-num {
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight: 900;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -.02em;
    line-height: 1;
}

.abt-stat-bar {
    width: 36px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin: 12px auto 10px;
}

.abt-stat-lbl {
    font-size: .82rem;
    color: rgba(255, 255, 255, .56);
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════
   MISSION / VISION / PROMISE
══════════════════════════════════════════ */
.abt-pillars {
    padding: 110px 0;
    background: var(--bg1);
}

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

.abt-pillar-card {
    background: var(--white);
    border-radius: var(--r2);
    padding: 44px 36px;
    border: 1px solid var(--bdr2);
    box-shadow: var(--sh1);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.abt-pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--bdr);
    transition: background var(--ease);
}

.abt-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh3);
    border-color: transparent;
}

.abt-pillar-card:hover::after { background: var(--red); }

.abt-pillar-featured {
    background: var(--navy);
    border-color: transparent;
}

.abt-pillar-featured::after { background: var(--gold); }

.abt-pillar-featured .abt-pillar-title { color: var(--white); }

.abt-pillar-featured .abt-pillar-desc { color: rgba(255, 255, 255, .58); }

.abt-pillar-ico {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
}

.abt-pillar-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.abt-pillar-desc {
    font-size: .94rem;
    color: var(--t2);
    line-height: 1.8;
}

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.abt-why {
    padding: 110px 0;
    background: var(--white);
}

.abt-why-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.abt-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}

.abt-why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: var(--r2);
    border: 1px solid var(--bdr2);
    background: var(--bg1);
    transition: var(--ease);
}

.abt-why-item:hover {
    box-shadow: var(--sh2);
    border-color: transparent;
    background: var(--white);
    transform: translateY(-4px);
}

.abt-why-ico {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.abt-why-title {
    font-size: .97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.abt-why-desc {
    font-size: .86rem;
    color: var(--t3);
    line-height: 1.7;
}

/* Why image column */
.abt-why-img-col { position: relative; }

.abt-why-img-wrap {
    position: relative;
    border-radius: var(--r2);
    overflow: visible;
}

.abt-why-img-wrap img {
    width: 100%;
    border-radius: var(--r2);
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: var(--sh4);
    display: block;
}

.abt-why-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--red);
    color: #fff;
    border-radius: var(--r2);
    padding: 20px 26px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(190, 42, 43, .35);
}

.abt-why-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.abt-why-badge span {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .85;
    margin-top: 4px;
    display: block;
}

/* ══════════════════════════════════════════
   TEAM SPECIALIST NUMBERS
══════════════════════════════════════════ */
.abt-team {
    padding: 110px 0;
    background: var(--bg2);
}

.abt-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.abt-team-card {
    border-radius: var(--r2);
    padding: 38px 28px;
    background: var(--white);
    border: 1px solid var(--bdr2);
    text-align: center;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.abt-team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}

.abt-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh3);
    border-color: transparent;
}

.abt-team-card:hover::before { transform: scaleX(1); }

.abt-team-ico { font-size: 2rem; margin-bottom: 14px; }

.abt-team-num {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--red);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -.025em;
    line-height: 1;
    margin-bottom: 8px;
}

.abt-team-role {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.abt-team-desc {
    font-size: .87rem;
    color: var(--t3);
    line-height: 1.75;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.abt-testi {
    padding: 110px 0;
    background: var(--bg1);
}

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

.abt-testi-card {
    background: var(--white);
    border-radius: var(--r2);
    padding: 40px 34px;
    border: 1px solid var(--bdr2);
    box-shadow: var(--sh1);
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abt-testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh3);
    border-color: transparent;
}

.abt-testi-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.abt-testi-text {
    font-size: .96rem;
    color: var(--t2);
    line-height: 1.85;
    font-style: italic;
    flex: 1;
}

.abt-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--bdr2);
}

.abt-testi-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.abt-av2 { background: var(--navy); }
.abt-av3 { background: var(--gold); color: var(--navy); }

.abt-testi-name {
    font-size: .97rem;
    font-weight: 700;
    color: var(--navy);
}

.abt-testi-meta {
    font-size: .82rem;
    color: var(--t3);
    margin: 2px 0 7px;
}

.abt-testi-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(190, 42, 43, .08);
    border: 1px solid rgba(190, 42, 43, .15);
    padding: 3px 10px;
    border-radius: 20px;
}

/* ══════════════════════════════════════════
   ABOUT PAGE — RESPONSIVE
══════════════════════════════════════════ */

/* 1200px */
@media (max-width: 1200px) {
    .abt-hero-inner { grid-template-columns: 1fr 380px; gap: 48px; }
    .abt-why-inner  { grid-template-columns: 1fr 360px; gap: 60px; }
}

/* 1024px */
@media (max-width: 1024px) {
    .abt-team-grid { grid-template-columns: repeat(2, 1fr); }
    .abt-why-inner { grid-template-columns: 1fr; gap: 60px; }
    .abt-why-img-col { max-width: 500px; margin: 0 auto; }
    .abt-why-img-wrap img { aspect-ratio: 16/9; }
    .abt-why-badge { bottom: -18px; right: -10px; }
}

/* 992px */
@media (max-width: 992px) {
    .abt-hero         { min-height: auto; padding-top: 140px; padding-bottom: 70px; }
    .abt-hero-inner   { grid-template-columns: 1fr; gap: 50px; }
    .abt-hero-books   { display: none; }
    .abt-hero-sub     { max-width: 100%; }
    .abt-hero-stats   { width: 100%; justify-content: space-evenly; }
    .abt-hero-stat    { padding: 0 16px; }

    .abt-story-inner  { grid-template-columns: 1fr; gap: 70px; }
    .abt-story-img-col{ max-width: 500px; margin: 0 auto; width: 100%; }
    .abt-badge-1      { left: 0; }
    .abt-badge-2      { right: 0; }

    .abt-pillars-grid { grid-template-columns: 1fr 1fr; }
    .abt-testi-grid   { grid-template-columns: 1fr 1fr; }

    .abt-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .abt-stat:nth-child(2) { border-right: none; }
    .abt-stat:nth-child(3),
    .abt-stat:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .1); }
    .abt-stat:nth-child(4) { border-right: none; }
}

/* 768px */
@media (max-width: 768px) {
    .abt-story    { padding: 80px 0; }
    .abt-pillars  { padding: 80px 0; }
    .abt-why      { padding: 80px 0; }
    .abt-team     { padding: 80px 0; }
    .abt-testi    { padding: 80px 0; }
    .abt-stats-band { padding: 56px 0; }
    .abt-why-grid { grid-template-columns: 1fr; }
    .abt-hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
    .abt-hero-stat-sep { width: 60px; height: 1px; }
    .abt-hero-stat { padding: 0; }
}

/* 640px */
@media (max-width: 640px) {
    .abt-pillars-grid { grid-template-columns: 1fr; }
    .abt-testi-grid   { grid-template-columns: 1fr; }
}

/* 540px */
@media (max-width: 540px) {
    .abt-hero { padding-top: 130px; padding-bottom: 60px; }
    .abt-hero-btns { flex-direction: column; }
    .abt-hero-btns .btn { justify-content: center; }
}

/* 480px */
@media (max-width: 480px) {
    .abt-team-grid { grid-template-columns: 1fr; }
    .abt-stats-grid { grid-template-columns: 1fr; }
    .abt-stat { border-right: none !important; border-top: 1px solid rgba(255, 255, 255, .1) !important; }
    .abt-stat:first-child { border-top: none !important; }
    .abt-cta-row { flex-direction: column; }
    .abt-cta-row .btn { justify-content: center; }
    .abt-img-badge { min-width: 110px; padding: 12px 16px; }
    .abt-badge-1 { left: 5px; bottom: -16px; }
    .abt-badge-2 { right: 5px; top: 16px; }
}

/* =============================================
   PORTFOLIO PAGE
============================================= */

/* ── Keyframe Animations ── */
@keyframes pfFloat1 {
    0%, 100% { transform: translateY(0px)   rotate(-4deg) scale(.95); }
    50%       { transform: translateY(-14px) rotate(-4deg) scale(.95); }
}
@keyframes pfFloat2 {
    0%, 100% { transform: translateY(-8px)  rotate(3deg); }
    50%       { transform: translateY(8px)   rotate(3deg); }
}
@keyframes pfFloat3 {
    0%, 100% { transform: translateY(0px)   rotate(-1deg) scale(.9); }
    50%       { transform: translateY(-18px) rotate(-1deg) scale(.9); }
}
@keyframes pfFloat4 {
    0%, 100% { transform: translateY(-4px)  rotate(5deg) scale(.85); }
    50%       { transform: translateY(10px)  rotate(5deg) scale(.85); }
}
@keyframes pfFloat5 {
    0%, 100% { transform: translateY(0px)   rotate(2deg) scale(.92); }
    50%       { transform: translateY(-12px) rotate(2deg) scale(.92); }
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.pf-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 250px;
    padding-bottom: 80px;
    background:
        url('/assets/new-brand/img/hero-banner/banner.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.pf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(4, 10, 22, .98) 0%,
        rgba(9, 21, 42, .94) 48%,
        rgba(14, 32, 64, .82) 100%
    );
}

.pf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 160, 48, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 160, 48, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.pf-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* ── Hero left ── */
.pf-hero-content { display: flex; flex-direction: column; }

.pf-breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 13px;
}

.pf-breadcrumb li a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .25s;
}

.pf-breadcrumb li a:hover { color: var(--gold); }
.pf-breadcrumb li span   { color: rgba(255, 255, 255, .25); }

.pf-breadcrumb li:last-child {
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

.pf-hero-h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.11;
    letter-spacing: -.025em;
    margin: 8px 0 20px;
    font-family: 'Outfit', sans-serif;
}

.pf-hero-h1 em {
    font-style: normal;
    color: var(--gold);
}

.pf-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 30px;
}

.pf-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pf-hero-stats {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r2);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    width: fit-content;
}

.pf-hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
}

.pf-hstat strong {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.pf-hstat span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .48);
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 5px;
}

.pf-hstat-sep {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

/* ── Hero right — book wall ── */
.pf-hero-books {
    position: relative;
    height: 400px;
}

.pf-books-wall {
    position: relative;
    width: 100%;
    height: 100%;
}

.pf-bk {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .55);
}

.pf-bk img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pf-bk-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18) 0%, transparent 55%);
    pointer-events: none;
}

/* Individual book positions + animations */
.pf-bk-1 { width:118px; height:178px; top:10px;  left:0px;   animation: pfFloat1 3.2s ease-in-out infinite; }
.pf-bk-2 { width:130px; height:195px; top:0px;   left:130px; animation: pfFloat2 3.8s ease-in-out infinite .4s; }
.pf-bk-3 { width:108px; height:165px; top:20px;  left:272px; animation: pfFloat3 4.1s ease-in-out infinite .8s; }
.pf-bk-4 { width:115px; height:172px; top:5px;   left:390px; animation: pfFloat4 3.5s ease-in-out infinite .2s; }
.pf-bk-5 { width:120px; height:182px; top:215px; left:15px;  animation: pfFloat2 3.6s ease-in-out infinite 1s; }
.pf-bk-6 { width:125px; height:188px; top:205px; left:145px; animation: pfFloat1 4.3s ease-in-out infinite .6s; }
.pf-bk-7 { width:112px; height:170px; top:220px; left:280px; animation: pfFloat5 3.9s ease-in-out infinite .3s; }
.pf-bk-8 { width:118px; height:176px; top:210px; left:400px; animation: pfFloat3 3.4s ease-in-out infinite .9s; }
.pf-bk-9 { width:100px; height:152px; top:100px; left:200px; animation: pfFloat2 4.5s ease-in-out infinite .5s; z-index:2; box-shadow: 0 20px 60px rgba(0,0,0,.7); }

.pf-hero-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(212, 160, 48, .2) 0%, transparent 70%);
    pointer-events: none;
}

.pf-em-red { font-style: normal; color: var(--red); }

/* ══════════════════════════════════
   PLATFORM SHOWCASE CAROUSEL
══════════════════════════════════ */
.pf-showcase {
    padding: 110px 0;
    background: var(--white);
}

.pf-swiper-wrap { position: relative; }

.pf-showcase-swiper { overflow: hidden; border-radius: var(--r2); }

.pf-sc-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg1);
    border: 1px solid var(--bdr2);
    border-radius: var(--r2);
    padding: 52px 56px;
    box-shadow: var(--sh2);
    min-height: 440px;
}

/* ── Cover visual ── */
.pf-sc-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pf-sc-cover {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--sh4);
    width: 100%;
}

.pf-sc-cover img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.pf-sc-cover-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, transparent 50%);
    pointer-events: none;
}

.pf-sc-cover-shadow {
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, .3) 0%, transparent 70%);
    margin: 12px auto 0;
    border-radius: 50%;
}

.pf-sc-badge {
    position: absolute;
    top: 14px;
    left: -10px;
    background: var(--red);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(190, 42, 43, .4);
}

.pf-sc-badge-gold { background: var(--gold); color: var(--navy); box-shadow: 0 4px 16px rgba(212, 160, 48, .4); }
.pf-sc-badge-navy { background: var(--navy); box-shadow: 0 4px 16px rgba(9, 21, 42, .4); }

/* ── Info panel ── */
.pf-sc-genre {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(190, 42, 43, .08);
    border: 1px solid rgba(190, 42, 43, .15);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.pf-sc-title {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -.02em;
}

.pf-sc-author {
    font-size: .95rem;
    color: var(--t3);
    margin-bottom: 10px;
}

.pf-sc-author strong { color: var(--t2); }

.pf-sc-stars {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.pf-sc-stars span {
    font-size: .82rem;
    color: var(--t3);
    font-weight: 500;
    margin-left: 4px;
}

.pf-sc-desc {
    font-size: .94rem;
    color: var(--t2);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 480px;
}

.pf-sc-plat-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 10px;
}

.pf-sc-plats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-plt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--r);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    transition: var(--ease);
    border: 1.5px solid transparent;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}

.pf-plt-amazon {
    background: #FF9900;
    color: #111;
}

.pf-plt-amazon:hover { background: #e68900; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 153, 0, .35); }

.pf-plt-bn {
    background: #007533;
    color: #fff;
}

.pf-plt-bn:hover { background: #005f28; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 117, 51, .3); }

.pf-plt-ingram {
    background: var(--navy);
    color: #fff;
}

.pf-plt-ingram:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: var(--sh2); }

.pf-plt-apple {
    background: #1c1c1e;
    color: #fff;
}

.pf-plt-apple:hover { background: #111; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, .3); }

.pf-plt-kobo {
    background: #0065BD;
    color: #fff;
}

.pf-plt-kobo:hover { background: #0052a3; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 101, 189, .3); }

.pf-plt-audible {
    background: #F7941D;
    color: #111;
}

.pf-plt-audible:hover { background: #d97f18; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(247, 148, 29, .3); }

/* ── Swiper controls ── */
.pf-sw-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--bdr);
    box-shadow: var(--sh2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ease);
    color: var(--navy);
}

.pf-sw-btn svg { width: 18px; height: 18px; }

.pf-sw-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 8px 24px rgba(190, 42, 43, .3);
}

.pf-sw-prev { left:  -24px; }
.pf-sw-next { right: -24px; }

.pf-sw-pag {
    position: relative !important;
    margin-top: 32px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pf-sw-pag .swiper-pagination-bullet {
    width: 28px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background: var(--bdr) !important;
    opacity: 1 !important;
    transition: background .3s, width .3s;
}

.pf-sw-pag .swiper-pagination-bullet-active {
    background: var(--red) !important;
    width: 44px !important;
}

/* ══════════════════════════════════
   PORTFOLIO FILTER GRID
══════════════════════════════════ */
.pf-grid-section {
    padding: 110px 0;
    background: var(--bg2);
}

.pf-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.pf-ftab {
    padding: 10px 24px;
    border-radius: 40px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: 1.5px solid var(--bdr);
    background: var(--white);
    color: var(--t2);
    transition: var(--ease);
}

.pf-ftab:hover {
    border-color: var(--red);
    color: var(--red);
}

.pf-ftab.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 4px 18px rgba(190, 42, 43, .3);
}

.pf-book-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.pf-book-item {
    transition: opacity .3s ease, transform .3s ease;
}

.pf-book-card { cursor: pointer; }

.pf-book-cover-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--r2);
    box-shadow: var(--sh2);
    aspect-ratio: 2/3;
}

.pf-book-cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.pf-book-card:hover .pf-book-cover-wrap img {
    transform: scale(1.07);
}

.pf-book-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(9, 21, 42, .95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px 20px;
    opacity: 0;
    transition: opacity .35s ease;
    text-align: center;
}

.pf-book-card:hover .pf-book-overlay { opacity: 1; }

.pf-overlay-stars {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pf-book-overlay h5 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.pf-overlay-btn {
    display: inline-block;
    padding: 9px 20px;
    background: var(--red);
    color: #fff;
    border-radius: var(--r);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: background .25s;
}

.pf-overlay-btn:hover { background: var(--red2); }

.pf-book-meta {
    padding: 16px 4px 0;
}

.pf-genre-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    background: rgba(190, 42, 43, .1);
    color: var(--red);
    border: 1px solid rgba(190, 42, 43, .2);
}

.pf-tag-fiction   { background: rgba(101, 54, 141, .1); color: #65368d; border-color: rgba(101, 54, 141, .2); }
.pf-tag-nonfiction{ background: rgba(0, 120, 91, .1);   color: #00785b; border-color: rgba(0, 120, 91, .2); }
.pf-tag-business  { background: rgba(9, 21, 42, .08);   color: var(--navy); border-color: rgba(9, 21, 42, .15); }
.pf-tag-biography { background: rgba(212, 160, 48, .1);  color: #a07a00; border-color: rgba(212, 160, 48, .25); }
.pf-tag-selfhelp  { background: rgba(0, 101, 189, .1);  color: #0065BD; border-color: rgba(0, 101, 189, .2); }

.pf-book-name {
    font-size: .97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.pf-book-author {
    font-size: .82rem;
    color: var(--t3);
    font-weight: 500;
}

.pf-grid-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.pf-grid-note {
    font-size: .9rem;
    color: var(--t3);
}

.pf-grid-note strong { color: var(--navy); }

/* ══════════════════════════════════
   DISTRIBUTION PLATFORMS SECTION
══════════════════════════════════ */
.pf-plat-section {
    padding: 110px 0;
    background: var(--white);
}

.pf-plat-header {
    text-align: center;
    margin-bottom: 60px;
}

.pf-plat-header .lead { margin: 0 auto; }

.pf-plat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pf-plat-card {
    border-radius: var(--r2);
    padding: 36px 28px;
    border: 1px solid var(--bdr2);
    background: var(--bg1);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.pf-plat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
    transition: opacity .3s;
}

.pf-plat-amazon::before  { background: #FF9900; }
.pf-plat-bn::before      { background: #007533; }
.pf-plat-ingram::before  { background: var(--navy); }
.pf-plat-apple::before   { background: #1c1c1e; }
.pf-plat-kobo::before    { background: #0065BD; }
.pf-plat-audible::before { background: #F7941D; }

.pf-plat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh3);
    border-color: transparent;
    background: var(--white);
}

.pf-plat-logo-box {
    width: 52px;
    height: 52px;
    border-radius: var(--r2);
    background: var(--white);
    box-shadow: var(--sh1);
    border: 1px solid var(--bdr2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pf-plat-icon { font-size: 1.6rem; }

.pf-plat-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}

.pf-plat-reach {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 14px;
}

.pf-plat-detail {
    font-size: .88rem;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 18px;
}

.pf-plat-chip {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(9, 21, 42, .07);
    color: var(--navy);
    border: 1px solid var(--bdr);
}

/* ══════════════════════════════════
   PORTFOLIO — RESPONSIVE
══════════════════════════════════ */

@media (max-width: 1200px) {
    .pf-hero-inner  { grid-template-columns: 1fr 440px; gap: 50px; }
    .pf-sc-card     { grid-template-columns: 240px 1fr; gap: 44px; padding: 44px; }
    .pf-plat-grid   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .pf-book-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .pf-plat-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-sw-prev { left: -14px; }
    .pf-sw-next { right: -14px; }
}

@media (max-width: 992px) {
    .pf-hero { min-height: auto; padding-top: 140px; padding-bottom: 70px; }
    .pf-hero-inner { grid-template-columns: 1fr; gap: 0; }
    .pf-hero-books { display: none; }
    .pf-hero-sub   { max-width: 100%; }
    .pf-hero-stats { width: 100%; justify-content: space-evenly; }
    .pf-hstat      { padding: 0 16px; }

    .pf-sc-card { grid-template-columns: 1fr; gap: 32px; padding: 36px 32px; text-align: center; }
    .pf-sc-visual { max-width: 240px; margin: 0 auto; }
    .pf-sc-plats  { justify-content: center; }
    .pf-sc-desc   { max-width: 100%; }
    .pf-sw-prev { left: 0; }
    .pf-sw-next { right: 0; }
    .pf-sc-badge { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .pf-showcase    { padding: 80px 0; }
    .pf-grid-section { padding: 80px 0; }
    .pf-plat-section { padding: 80px 0; }
    .pf-book-grid   { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .pf-plat-grid   { grid-template-columns: repeat(2, 1fr); }
    .pf-hero-stats  { flex-direction: column; padding: 18px; gap: 14px; }
    .pf-hstat-sep   { width: 50px; height: 1px; }
    .pf-hstat       { padding: 0; }
}

@media (max-width: 540px) {
    .pf-hero { padding-top: 130px; padding-bottom: 60px; }
    .pf-hero-btns { flex-direction: column; }
    .pf-hero-btns .btn { justify-content: center; }
    .pf-filter-tabs { gap: 7px; }
    .pf-ftab { padding: 8px 16px; font-size: .75rem; }
    .pf-plat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .pf-book-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .pf-sc-card   { padding: 28px 22px; }
}

/* =============================================
   EVERYONE'S TALKING ABOUT — marquee section
============================================= */

/* ── Keyframes ── */
@keyframes etabScrollLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes etabScrollRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ── Section shell ── */
.etab-section {
    padding: 110px 0 100px;
    background:
        radial-gradient(ellipse 60% 80% at 100% 40%, rgba(190, 42, 43, .12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 0% 60%, rgba(212, 160, 48, .08) 0%, transparent 55%),
        linear-gradient(150deg, #060e1f 0%, var(--navy) 55%, var(--navy2) 100%);
    overflow: hidden;
    position: relative;
}

.etab-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 160, 48, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 160, 48, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ── Header ── */
.etab-header { margin-bottom: 56px; }

.etab-hdr-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.etab-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 18px;
}

.etab-bar {
    display: block;
    width: 28px;
    height: 1.5px;
    background: rgba(255, 255, 255, .25);
    border-radius: 2px;
}

.etab-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -.025em;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.etab-title em {
    font-style: normal;
    color: var(--gold);
}

.etab-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 0 auto 20px;
}

.etab-d-red  { display: block; width: 40px; height: 3px; background: var(--red);  border-radius: 2px; }
.etab-d-gold { display: block; width: 20px; height: 3px; background: var(--gold); border-radius: 2px; }
.etab-d-dim  { display: block; width: 10px; height: 3px; background: rgba(255,255,255,.2); border-radius: 2px; }

.etab-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Marquee tracks ── */
.etab-track-wrap {
    overflow: hidden;
    position: relative;
    z-index: 1;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.etab-track-wrap-2 { margin-top: 18px; }

.etab-track { display: flex; }

.etab-inner {
    display: flex;
    gap: 18px;
    width: max-content;
    padding: 8px 0;
}

.etab-scroll-left  { animation: etabScrollLeft  38s linear infinite; }
.etab-scroll-right { animation: etabScrollRight 42s linear infinite; }

/* ── Individual book covers ── */
.etab-book {
    flex-shrink: 0;
    width: 148px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .55), 0 2px 8px rgba(0, 0, 0, .4);
    cursor: pointer;
    transition: transform .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s;
}

.etab-book:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .65), 0 4px 16px rgba(212, 160, 48, .2);
}

.etab-book img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.etab-book-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, .18) 0%,
        transparent 45%,
        rgba(0, 0, 0, .08) 100%
    );
    pointer-events: none;
}

/* =============================================
   PLATFORM SHOWCASE — 2-column grid + Show More/Less
============================================= */
.pf-showcase {
    padding: 110px 0;
    background: var(--white);
}

/* ── 2-column grid ── */
.pf-sc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* ── Single card ── */
.pf-scg-card {
    display: flex;
    gap: 28px;
    background: var(--bg1);
    border: 1px solid var(--bdr2);
    border-radius: var(--r2);
    padding: 28px;
    box-shadow: var(--sh1);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.pf-scg-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--bdr);
    border-radius: 0 2px 2px 0;
    transition: background var(--ease);
}

.pf-scg-card:hover {
    background: var(--white);
    box-shadow: var(--sh3);
    border-color: transparent;
    transform: translateY(-4px);
}

.pf-scg-card:hover::before { background: var(--red); }

/* ── Cover column ── */
.pf-scg-visual {
    flex-shrink: 0;
    width: 130px;
    position: relative;
}

.pf-scg-visual img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    box-shadow: var(--sh3);
}

.pf-scg-badge {
    position: absolute;
    top: 8px;
    left: -4px;
    background: var(--red);
    color: #fff;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(190, 42, 43, .4);
    white-space: nowrap;
}

.pf-scg-badge-gold { background: var(--gold); color: var(--navy); box-shadow: 0 3px 12px rgba(212, 160, 48, .4); }
.pf-scg-badge-navy { background: var(--navy); box-shadow: 0 3px 12px rgba(9, 21, 42, .3); }

/* ── Info column ── */
.pf-scg-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pf-scg-genre {
    display: inline-block;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(190, 42, 43, .08);
    border: 1px solid rgba(190, 42, 43, .15);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
}

.pf-scg-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -.01em;
}

.pf-scg-author {
    font-size: .85rem;
    color: var(--t3);
    margin-bottom: 8px;
}

.pf-scg-author strong { color: var(--t2); }

.pf-scg-stars {
    font-size: .9rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pf-scg-stars span {
    font-size: .78rem;
    color: var(--t3);
    font-weight: 500;
}

.pf-scg-desc {
    font-size: .86rem;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pf-scg-plats {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

/* ── Show More / Less footer ── */
.pf-sc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 8px;
}

.pf-sc-count {
    font-size: .88rem;
    color: var(--t3);
}

.pf-sc-count strong { color: var(--navy); }

.pf-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: var(--r);
    border: 1.5px solid var(--red);
    background: transparent;
    color: var(--red);
    font-family: 'Outfit', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--ease);
}

.pf-toggle-btn:hover {
    background: var(--red);
    color: #fff;
    box-shadow: 0 6px 22px rgba(190, 42, 43, .3);
    transform: translateY(-2px);
}

.pf-toggle-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s ease;
}

.pf-toggle-icon svg { width: 16px; height: 16px; }

.pf-toggle-btn.pf-toggle-expanded .pf-toggle-icon { transform: rotate(180deg); }

/* ── Responsive for new sections ── */
@media (max-width: 1024px) {
    .etab-book { width: 132px; height: 198px; }
}

@media (max-width: 900px) {
    .pf-sc-grid { grid-template-columns: 1fr; }
    .etab-book  { width: 118px; height: 178px; }
}

@media (max-width: 768px) {
    .etab-section { padding: 80px 0 70px; }
    .pf-showcase  { padding: 80px 0; }
    .etab-book    { width: 106px; height: 160px; }
    .etab-inner   { gap: 13px; }
    .pf-scg-card  { flex-direction: column; gap: 18px; }
    .pf-scg-visual { width: 100%; max-width: 160px; }
    .pf-scg-visual img { aspect-ratio: 2/3; }
    .pf-sc-footer { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
    .etab-book { width: 92px; height: 138px; border-radius: 5px; }
    .etab-inner { gap: 10px; }
    .pf-toggle-btn { width: 100%; justify-content: center; }
}

/* =============================================
   HOMEPAGE — NEW SECTIONS
============================================= */

/* ══════════════════════════════════
   1. PURSUIT SECTION  — matches screenshot layout
══════════════════════════════════ */
.prs-section {
    padding: 90px 0 80px;
    background: var(--white);
    border-top: 1px solid var(--bdr2);
    border-bottom: 1px solid var(--bdr2);
}

/* ── TOP: centered heading area ── */
.prs-top {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}

.prs-italic-tag {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--t2);
    margin-bottom: 8px;
    letter-spacing: .02em;
}

.prs-main-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: .01em;
    margin-bottom: 20px;
}

/* ── Gold decorative divider ── */
.prs-deco-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 22px;
}

.prs-deco-bar {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.prs-deco-dot {
    display: block;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.prs-intro-text {
    font-size: .97rem;
    color: var(--t2);
    line-height: 1.85;
    font-weight: 400;
}

/* ── BOTTOM: two columns ── */
.prs-bottom {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
}

/* ── Left: offer title + checklist ── */
.prs-offer-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 28px;
}

.prs-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.prs-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid var(--bdr2);
}

.prs-list-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.prs-tick {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    flex-shrink: 0;
}

.prs-list-link {
    font-size: .93rem;
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    font-weight: 400;
    transition: color .2s, text-decoration-color .2s;
    line-height: 1.4;
}

.prs-list-link:hover {
    color: var(--red);
    text-decoration-color: var(--red);
}

/* ── Right: books on shelf ── */
.prs-right-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.prs-shelf-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.prs-shelf-books {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 0 10px;
}

/* ── Individual shelf books ── */
.prs-sbook {
    overflow: hidden;
    border-radius: 3px 6px 6px 3px;
    position: relative;
    flex-shrink: 0;
    box-shadow:
        -3px 4px 12px rgba(0,0,0,.18),
        3px 4px 12px rgba(0,0,0,.12);
}

.prs-sbook img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prs-sbook-left {
    width: 130px;
    height: 195px;
    transform: rotate(-2deg) translateX(6px);
    z-index: 1;
    filter: brightness(.9);
}

.prs-sbook-center {
    width: 150px;
    height: 225px;
    z-index: 3;
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(0,0,0,.25),
        -4px 0 12px rgba(0,0,0,.1);
}

.prs-sbook-right {
    width: 130px;
    height: 195px;
    transform: rotate(2deg) translateX(-6px);
    z-index: 1;
    filter: brightness(.9);
}

.prs-sbook-left::after,
.prs-sbook-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 50%);
    pointer-events: none;
}

/* ── Shelf platform ── */
.prs-shelf-platform {
    width: 100%;
    max-width: 440px;
    margin-top: 0;
}

.prs-shelf-top {
    height: 14px;
    background: linear-gradient(to bottom, #e8e8e8 0%, #d0d0d0 100%);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,.08);
}

.prs-shelf-shadow {
    height: 12px;
    background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, transparent 100%);
    border-radius: 0 0 8px 8px;
}

/* ══════════════════════════════════
   2. 4-STEP PROCESS  — white bg, screenshot layout
══════════════════════════════════ */
.proc4-section {
    padding: 90px 0 80px;
    background: var(--white);
    border-top: 1px solid var(--bdr2);
    border-bottom: 1px solid var(--bdr2);
}

/* ── Process heading ── */
.proc4-hdr {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.proc4-carrying-out {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--t3);
    margin-bottom: 8px;
}

.proc4-main-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
}

.proc4-heading-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.proc4-deco-bar {
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.proc4-deco-dot {
    display: block;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Middle: steps left + illustration right ── */
.proc4-mid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--bdr2);
}

.proc4-steps-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* ── Individual step item ── */
.proc4-item {
    padding-left: 0;
}

.proc4-item-border {
    padding: 28px;
    background: var(--bg1);
    border-radius: var(--r2);
    border: 1px solid var(--bdr2);
    transition: var(--ease);
}

.proc4-item-border:hover {
    box-shadow: var(--sh2);
    border-color: rgba(190, 42, 43, .2);
    background: var(--white);
}

.proc4-item-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.proc4-ico {
    width: 22px;
    height: 22px;
    color: var(--red);
    flex-shrink: 0;
}

.proc4-step-tag {
    font-size: .78rem;
    color: var(--t3);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.proc4-step-tag strong {
    color: var(--navy);
    font-weight: 600;
}

.proc4-item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.proc4-item-desc {
    font-size: .9rem;
    color: var(--t2);
    line-height: 1.8;
}

/* ── Illustration ── */
.proc4-illustration {
    position: relative;
}

.proc4-illus-wrap {
    position: relative;
    border-radius: var(--r2);
    overflow: hidden;
}

.proc4-illus-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: var(--r2);
}

.proc4-illus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(9, 21, 42, .08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.proc4-illus-badge {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: var(--white);
    border-radius: var(--r2);
    box-shadow: var(--sh3);
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--bdr2);
}

.proc4-illus-badge strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.proc4-illus-badge span {
    font-size: .68rem;
    color: var(--t3);
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ── Bottom: Steps 03 + 04 ── */
.proc4-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 44px;
}

/* ── CTA row ── */
.proc4-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.proc4-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--r);
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--ease);
}

.proc4-chat-btn:hover {
    background: var(--navy);
    color: #fff;
}

.proc4-live-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: acta-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

/* ══════════════════════════════════
   3. GENRE SERVICES — dark library bg
══════════════════════════════════ */
.gs-section {
    padding: 90px 0 80px;
    background:
        url('/assets/new-brand/img/hero-banner/banner.jpg') center/cover no-repeat fixed;
    position: relative;
}

.gs-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 20, .88);
    pointer-events: none;
}

/* ── Genre heading ── */
.gs-hdr {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
    position: relative;
    z-index: 1;
}

.gs-eyebrow {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 8px;
}

.gs-main-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.gs-heading-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
}

.gs-deco-bar {
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.gs-deco-dot {
    display: block;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
}

.gs-sub-text {
    font-size: .95rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8;
}

/* ── Grid ── */
.gs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.gs-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r2);
    overflow: hidden;
    transition: var(--ease);
    backdrop-filter: blur(4px);
}

.gs-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(212, 160, 48, .35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.gs-card-inner {
    display: flex;
    gap: 18px;
    padding: 22px;
    align-items: flex-start;
}

.gs-cover-col {
    flex-shrink: 0;
    width: 80px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.gs-cover-col img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.gs-info-col { flex: 1; min-width: 0; }

.gs-num-badge {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.gs-genre-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.gs-genre-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.72;
    margin-bottom: 12px;
}

.gs-card-link {
    font-size: .78rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: .04em;
    transition: color .2s, letter-spacing .2s;
}

.gs-card-link:hover {
    color: #fff;
    letter-spacing: .08em;
}

/* ── Footer buttons ── */
.gs-footer-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.gs-btn-quote {
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    background: var(--gold);
    color: var(--navy);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--r);
    transition: var(--ease);
    border: 1.5px solid var(--gold);
}

.gs-btn-quote:hover {
    background: transparent;
    color: var(--gold);
}

.gs-btn-chat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: rgba(255, 255, 255, .85);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--r);
    transition: var(--ease);
}

.gs-btn-chat:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff;
}

.gs-live-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: acta-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

/* ══════════════════════════════════
   4. TRUST STRIP — light bg, horizontal partner logos
══════════════════════════════════ */
.trust-section {
    padding: 50px 0;
    background: var(--bg1);
    border-top: 1px solid var(--bdr2);
    border-bottom: 1px solid var(--bdr2);
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-label-col {
    flex-shrink: 0;
    padding-right: 40px;
    margin-right: 40px;
    border-right: 2px solid var(--bdr);
}

.trust-our {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--t3);
    margin-bottom: 4px;
}

.trust-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.trust-heading em {
    font-style: normal;
    color: var(--red);
}

.trust-divider-line { display: none; }

.trust-logos-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    flex-wrap: wrap;
}

.trust-logo-item {
    flex: 1;
    min-width: 140px;
}

.trust-logo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    border-radius: var(--r2);
    border: 1px solid var(--bdr);
    background: var(--white);
    text-align: center;
    transition: var(--ease);
    min-height: 90px;
}

.trust-logo-inner:hover {
    box-shadow: var(--sh2);
    border-color: transparent;
    transform: translateY(-4px);
}

/* Trustpilot */
.trust-tp .trust-logo-stars {
    color: #00b67a;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.trust-tp .trust-logo-name {
    font-size: .95rem;
    font-weight: 600;
    color: #00b67a;
}

.trust-tp .trust-logo-score {
    font-size: .72rem;
    color: var(--t3);
    margin-top: 3px;
}

/* BBB */
.trust-bbb .trust-logo-grade {
    font-size: 1.6rem;
    font-weight: 700;
    color: #003087;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.trust-bbb .trust-logo-name {
    font-size: .9rem;
    font-weight: 600;
    color: #003087;
    margin-top: 4px;
}

.trust-bbb .trust-logo-score {
    font-size: .7rem;
    color: var(--t3);
    margin-top: 2px;
}

/* Yellow Pages */
.trust-yp .trust-logo-icon {
    font-size: 1.5rem;
    font-weight: 900;
    color: #f4c430;
    background: #222;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-family: 'Outfit', sans-serif;
}

.trust-yp .trust-logo-name {
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
}

.trust-yp .trust-logo-score {
    font-size: .68rem;
    color: var(--t3);
    margin-top: 2px;
}

/* Consumer Reports */
.trust-cr .trust-cr-icon {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--white);
    background: var(--red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-family: 'Outfit', sans-serif;
}

.trust-cr .trust-logo-name {
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
}

.trust-cr .trust-logo-score {
    font-size: .68rem;
    color: var(--t3);
    margin-top: 2px;
}

/* ══════════════════════════════════
   5. AUTHOR CTA
══════════════════════════════════ */
.acta-section {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background:
        url('/assets/new-brand/img/hero-banner/banner-2.jpg') center/cover no-repeat fixed;
}

.acta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(6, 10, 22, .97) 0%,
        rgba(9, 21, 42, .93) 55%,
        rgba(14, 32, 64, .88) 100%
    );
}

/* ── Decorative background books ── */
.acta-books-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.acta-book {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    opacity: .08;
}

.acta-book img { width: 100%; height: 100%; object-fit: cover; display: block; }

.acta-b1 { width:100px; height:150px; top:10%;  right:5%;   transform: rotate(-10deg); }
.acta-b2 { width:80px;  height:120px; bottom:8%; right:12%;  transform: rotate(8deg); }
.acta-b3 { width:90px;  height:135px; top:20%;  right:20%;  transform: rotate(-5deg); }
.acta-b4 { width:75px;  height:112px; bottom:15%; right:28%;  transform: rotate(12deg); }
.acta-b5 { width:110px; height:165px; top:30%;  right:35%;  transform: rotate(-8deg); }

.acta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
}

.acta-heading {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -.025em;
    margin: 12px 0 20px;
    font-family: 'Outfit', sans-serif;
}

.acta-heading em {
    font-style: normal;
    color: var(--gold);
}

.acta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.85;
    margin-bottom: 30px;
    max-width: 560px;
}

.acta-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acta-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .94rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
}

.acta-dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Right action card ── */
.acta-actions { display: flex; justify-content: flex-end; }

.acta-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r2);
    padding: 36px 32px;
    backdrop-filter: blur(12px);
    width: 100%;
    max-width: 360px;
}

.acta-card-ico {
    font-size: 2rem;
    margin-bottom: 16px;
}

.acta-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.acta-card-sub {
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    margin-bottom: 24px;
}

.acta-live-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    border-radius: var(--r);
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .85);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: var(--ease);
    margin-bottom: 20px;
}

.acta-live-btn:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

.acta-live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: acta-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes acta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .6); }
    50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.acta-trust-row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 16px;
}

.acta-trust-row span:first-child { color: var(--gold); }

/* ══════════════════════════════════
   HOMEPAGE NEW SECTIONS — RESPONSIVE
══════════════════════════════════ */

/* 1200px */
@media (max-width: 1200px) {
    .prs-bottom { grid-template-columns: 1fr 400px; gap: 50px; }
    .acta-inner { grid-template-columns: 1fr 340px; gap: 60px; }
}

/* 1024px */
@media (max-width: 1024px) {
    .gs-grid     { grid-template-columns: repeat(2, 1fr); }
    .proc4-track { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .proc4-connector { display: none; }
    .prs-bottom  { grid-template-columns: 1fr 360px; gap: 40px; }
    .prs-sbook-left, .prs-sbook-right { width: 110px; height: 165px; }
    .prs-sbook-center { width: 130px; height: 195px; }
}

/* 992px */
@media (max-width: 992px) {
    .prs-bottom  { grid-template-columns: 1fr; gap: 50px; }
    .prs-right-col { justify-content: center; }
    .prs-shelf-platform { max-width: 380px; }
    .acta-inner  { grid-template-columns: 1fr; gap: 50px; }
    .acta-actions { justify-content: center; }
    .acta-desc   { max-width: 100%; }
    .trust-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .trust-sep   { display: none; }
    .trust-badges{ width: 100%; }
}

/* 768px */
@media (max-width: 768px) {
    .prs-section   { padding: 64px 0; }
    .prs-top       { margin-bottom: 44px; }
    .proc4-section { padding: 80px 0; }
    .gs-section    { padding: 80px 0; }
    .acta-section  { padding: 80px 0; }
    .prs-list-grid { grid-template-columns: 1fr; }
    .proc4-mid-grid    { grid-template-columns: 1fr; gap: 36px; }
    .proc4-bottom-grid { grid-template-columns: 1fr; gap: 20px; }
    .gs-grid           { grid-template-columns: 1fr 1fr; }
    .trust-label-col   { border-right: none; padding-right: 0; margin-right: 0; padding-bottom: 24px; border-bottom: 1px solid var(--bdr); margin-bottom: 24px; width: 100%; }
    .trust-logos-row   { justify-content: center; }
    .prs-offer-title { font-size: 1.3rem; }
    .prs-main-heading { font-size: clamp(1.7rem, 5vw, 2.4rem); }
}

/* 640px */
@media (max-width: 640px) {
    .gs-grid { grid-template-columns: 1fr; }
    .trust-logo-item { min-width: 140px; }
    .prs-sbook-left, .prs-sbook-right { width: 100px; height: 150px; }
    .prs-sbook-center { width: 118px; height: 177px; }
}

/* 480px */
@media (max-width: 480px) {
    .prs-section   { padding: 52px 0; }
    .gs-grid       { gap: 16px; }
    .trust-badges  { grid-template-columns: 1fr; }
    .acta-inner    { gap: 36px; }
    .acta-card     { padding: 28px 22px; }
    .gs-footer     { flex-direction: column; align-items: center; }
    .gs-footer .btn{ width: 100%; justify-content: center; }
    .prs-sbook-left, .prs-sbook-right { width: 90px; height: 135px; }
    .prs-sbook-center { width: 106px; height: 159px; }
}

/* =============================================
   GLOBAL FONT & FLUID NORMALISATION
   Applied last so it wins across all pages/sections
============================================= */

/* ── Ensure Outfit is inherited everywhere ── */
*,
*::before,
*::after {
    font-family: 'Outfit', sans-serif;
}

/* ── All headings — lighter weight ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

/* ── Paragraph / body text ── */
p, li, span, label, td, th, blockquote {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

/* ── Hero headings — slightly stronger but not heavy ── */
.hero-h1,
.pf-hero-h1,
.abt-hero-h1,
.acta-heading,
.etab-title {
    font-weight: 600 !important;
    letter-spacing: -.02em;
}

/* ── Section h2 (.h2 class used site-wide) ── */
.h2 { font-weight: 500 !important; }

/* ── Section sub-headings & card titles ── */
.svc-title,
.pf-sc-title,
.pf-scg-title,
.pf-plat-name,
.pf-book-name,
.gs-genre,
.proc4-title,
.abt-pillar-title,
.abt-team-role,
.abt-why-title,
.abt-testi-name,
.trust-badge-name,
.trust-heading,
.acta-card-title,
.prs-services-label,
.why-title,
.step-title,
.c-lbl,
.c-val {
    font-weight: 500 !important;
}

/* ── Labels, tags, small caps ── */
.tag,
.pf-sc-genre,
.pf-scg-genre,
.pf-genre-tag,
.pf-plat-reach,
.abt-testi-badge,
.etab-eyebrow,
.proc4-step-num,
.gs-num,
.trust-eyebrow,
.trust-badge-sub,
.abt-stat-lbl,
.pf-hstat span,
.pf-stat-lbl,
.abt-breadcrumb li,
.pf-breadcrumb li {
    font-weight: 500 !important;
}

/* ── Buttons — medium weight ── */
.btn,
.pf-overlay-btn,
.pf-toggle-btn,
.gs-link,
.pf-plt,
.svc-cta,
.acta-live-btn,
.prs-call-link,
.wa-contact,
.f-btn {
    font-weight: 500 !important;
}

/* ── Numbers / stats — semi-bold only ── */
.abt-stat-num,
.abt-team-num,
.pf-hstat strong,
.pf-hstat-num,
.trust-badge-grade,
.trust-badge-score,
.trust-count-num,
.card h3,
.content h2,
.hero-badge,
.step-num span {
    font-weight: 600 !important;
}

/* ── Author names, strong inline text ── */
strong, b {
    font-weight: 600 !important;
}

/* ── Navigation links ── */
.nav-link,
.mob-nav-link,
.mega-link,
.header-btn {
    font-weight: 500 !important;
}

/* ── Form labels & inputs ── */
label { font-weight: 500 !important; }
input, textarea, select { font-weight: 400 !important; }

/* ── Section descriptions ── */
.lead,
.pf-hero-sub,
.abt-hero-sub,
.pf-sc-desc,
.pf-scg-desc,
.pf-plat-detail,
.gs-desc,
.proc4-desc,
.abt-pillar-desc,
.abt-team-desc,
.abt-testi-text,
.abt-why-desc,
.prs-sub-text,
.acta-desc,
.acta-card-sub,
.step-desc,
.svc-desc,
.why-desc,
.c-sub {
    font-weight: 400 !important;
}

/* ── Stars ── */
.abt-testi-stars,
.pf-scg-stars,
.pf-sc-stars,
.pf-overlay-stars,
.acta-trust-row span:first-child {
    font-weight: 400 !important;
    letter-spacing: 2px;
}

/* ── Footer text ── */
footer,
.footer-text,
.footer-link,
.footer-desc {
    font-weight: 400 !important;
}

/* ── Breadcrumbs ── */
.abt-breadcrumb li:last-child,
.pf-breadcrumb li:last-child {
    font-weight: 500 !important;
}

/* ── Section header lead — ensure max-width is wider ── */
.sec-hdr .lead {
    max-width: 640px;
}

/* ── Container responsive padding refinement ── */
@media (max-width: 768px) {
    .container { padding: 0 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    h1, .hero-h1, .pf-hero-h1, .abt-hero-h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    }
}

/* ── Admin button in frontend header ── */
.hdr-admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 6px;
    border: 1.5px solid rgba(190, 42, 43, .4);
    color: var(--red);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
    white-space: nowrap;
}

.hdr-admin-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* =============================================
   PROCESS PAGE  — Professional Redesign
============================================= */

.proc-em-red  { font-style: normal; color: var(--red); }
.proc-em-gold { font-style: normal; color: var(--gold); }

/* ══ HERO ══ */
.proc-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 250px;
    padding-bottom: 90px;
    background: url('/assets/new-brand/img/hero-banner/banner.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}
.proc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(4,9,20,.98) 0%, rgba(9,21,42,.95) 45%, rgba(14,32,64,.85) 100%);
}
.proc-hero-grid-tex {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,160,48,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,48,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 0;
}
.proc-hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -8%;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(190,42,43,.14) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
}
.proc-hero::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -5%;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,48,.1) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
}
.proc-hero-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 70px;
    align-items: center;
    width: 100%;
}
.proc-breadcrumb {
    list-style: none;
    display: flex; align-items: center;
    gap: 8px; margin-bottom: 18px; font-size: 12.5px;
}
.proc-breadcrumb li a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .22s; }
.proc-breadcrumb li a:hover { color: var(--gold); }
.proc-breadcrumb li span { color: rgba(255,255,255,.2); }
.proc-breadcrumb li:last-child { color: rgba(255,255,255,.75); font-weight: 500; }
.proc-hero-h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    font-weight: 600; color: #fff;
    line-height: 1.1; letter-spacing: -.03em;
    margin: 8px 0 22px;
    font-family: 'Outfit', sans-serif;
}
.proc-hero-h1 em {
    font-style: normal;
    color: var(--gold);
}
.proc-hero-sub {
    font-size: .98rem;
    color: rgba(255,255,255,.58);
    line-height: 1.88; max-width: 490px;
    margin-bottom: 32px; font-weight: 400;
}
.proc-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.proc-hero-stats {
    display: flex; align-items: stretch;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    backdrop-filter: blur(14px);
    overflow: hidden; width: fit-content;
}
.proc-hstat { display: flex; flex-direction: column; align-items: center; padding: 18px 32px; gap: 5px; }
.proc-hstat strong { font-size: 1.65rem; font-weight: 700; color: var(--gold); font-family: 'Outfit', sans-serif; line-height: 1; letter-spacing: -.02em; }
.proc-hstat span { font-size: .68rem; color: rgba(255,255,255,.42); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.proc-hstat-sep { width: 1px; background: rgba(255,255,255,.1); flex-shrink: 0; align-self: stretch; }
.proc-hero-visual { position: relative; }
.proc-phase-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; z-index: 1; }
.proc-pp-card {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px; padding: 20px 16px;
    display: flex; flex-direction: column; align-items: center;
    gap: 7px; text-align: center;
    backdrop-filter: blur(10px);
    transition: background .3s, border-color .3s, transform .3s;
    cursor: default;
}
.proc-pp-card:hover { background: rgba(255,255,255,.1); border-color: rgba(212,160,48,.28); transform: translateY(-5px); }
.proc-pp-active { background: rgba(190,42,43,.2) !important; border-color: rgba(190,42,43,.5) !important; box-shadow: 0 8px 32px rgba(190,42,43,.25); }
.proc-pp-num { font-size: .58rem; font-weight: 800; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; font-family: 'Outfit', sans-serif; }
.proc-pp-name { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.88); font-family: 'Outfit', sans-serif; line-height: 1.2; }
.proc-pp-ico { font-size: 1.5rem; }
.proc-hero-glow {
    position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
    width: 80%; height: 70px;
    background: radial-gradient(ellipse, rgba(190,42,43,.2) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}

/* ══ OVERVIEW ══ */
.proc-overview { padding: 110px 0; background: var(--white); }
.proc-ov-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; position: relative; }
.proc-ov-grid::before {
    content: '';
    position: absolute; top: 44px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--bdr), var(--red), var(--gold), var(--bdr), transparent);
    z-index: 0; opacity: .5;
}
.proc-ov-card {
    display: flex; flex-direction: column;
    padding: 34px 26px; border-radius: 16px;
    border: 1px solid var(--bdr2); background: var(--white);
    text-decoration: none; box-shadow: var(--sh1);
    transition: box-shadow .3s, transform .3s, border-color .3s;
    position: relative; z-index: 1;
}
.proc-ov-card:hover { box-shadow: var(--sh3); border-color: rgba(190,42,43,.25); transform: translateY(-8px); }
.proc-ov-card:hover .proc-ov-arrow { transform: translateX(6px); color: var(--red); }
.proc-ov-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--red); color: #fff;
    font-size: .72rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 14px rgba(190,42,43,.3); letter-spacing: .04em;
}
.proc-ov-ico { font-size: 2rem; margin-bottom: 14px; }
.proc-ov-title { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; font-family: 'Outfit', sans-serif; line-height: 1.3; }
.proc-ov-desc { font-size: .84rem; color: var(--t3); line-height: 1.75; flex: 1; }
.proc-ov-arrow { margin-top: 20px; font-size: 1.05rem; color: var(--t3); font-weight: 600; transition: transform .25s, color .25s; align-self: flex-start; }

/* ══ PHASE SECTIONS ══ */
.proc-phase { padding: 110px 0; position: relative; }
.proc-phase-light { background: var(--white); }
.proc-phase-bg2   { background: var(--bg1); }
.proc-phase-dark {
    background:
        radial-gradient(ellipse 65% 90% at 110% 40%, rgba(190,42,43,.16) 0%, transparent 58%),
        radial-gradient(ellipse 55% 80% at -10% 60%, rgba(212,160,48,.09) 0%, transparent 55%),
        linear-gradient(148deg, #050d1e 0%, var(--navy) 52%, var(--navy2) 100%);
}
.proc-phase-dark-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(212,160,48,.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,48,.038) 1px, transparent 1px);
    background-size: 56px 56px; pointer-events: none;
}
.proc-phase-inner { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: center; position: relative; z-index: 1; }
.proc-phase-inner-rev { grid-template-columns: 400px 1fr; }

/* badge */
.proc-phase-badge { display: inline-flex; align-items: center; gap: 10px; border-radius: 40px; padding: 6px 16px 6px 8px; margin-bottom: 20px; width: fit-content; background: rgba(190,42,43,.07); border: 1px solid rgba(190,42,43,.18); }
.proc-phase-badge-gold { background: rgba(212,160,48,.1); border-color: rgba(212,160,48,.28); }
.proc-badge-num { width: 30px; height: 30px; border-radius: 50%; background: var(--red); color: #fff; font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; flex-shrink: 0; letter-spacing: .04em; }
.proc-phase-badge-gold .proc-badge-num { background: var(--gold); color: var(--navy); }
.proc-badge-label { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); font-family: 'Outfit', sans-serif; }
.proc-phase-badge-gold .proc-badge-label { color: #b8860b; }

/* heading + lead */
.proc-phase-title { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 600; color: var(--navy); line-height: 1.13; margin-bottom: 16px; font-family: 'Outfit', sans-serif; letter-spacing: -.025em; }
.proc-title-white { color: #fff; }
.proc-phase-lead { font-size: .98rem; color: var(--t2); line-height: 1.88; margin-bottom: 34px; max-width: 520px; font-weight: 400; }
.proc-lead-muted { color: rgba(255,255,255,.56); }
.proc-phase-cta { margin-top: 10px; }

/* step cards */
.proc-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.proc-step {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 20px 18px 16px; border-radius: 14px;
    border: 1px solid var(--bdr2);
    border-left: 3px solid transparent;
    background: var(--bg1);
    transition: box-shadow .28s, border-color .28s, background .28s, transform .28s;
}
.proc-step:hover { box-shadow: var(--sh2); border-color: var(--bdr2); border-left-color: var(--red); background: var(--white); transform: translateX(4px); }
.proc-step-dark { background: rgba(255,255,255,.048); border: 1px solid rgba(255,255,255,.07); border-left: 3px solid transparent; }
.proc-step-dark:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.07); border-left-color: var(--gold); box-shadow: 0 6px 24px rgba(0,0,0,.25); transform: translateX(4px); }
.proc-step-ico {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(190,42,43,.08); border: 1px solid rgba(190,42,43,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0; transition: background .25s;
}
.proc-step:hover .proc-step-ico { background: rgba(190,42,43,.14); }
.proc-step-dark .proc-step-ico { background: rgba(212,160,48,.1); border-color: rgba(212,160,48,.2); }
.proc-step-body { flex: 1; }
.proc-step-title { font-size: .94rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; font-family: 'Outfit', sans-serif; line-height: 1.3; }
.proc-step-desc { font-size: .83rem; color: var(--t3); line-height: 1.75; font-weight: 400; }
.proc-desc-muted { color: rgba(255,255,255,.48); }

/* phase image */
.proc-phase-visual { position: relative; }
.proc-phase-img-wrap { border-radius: 18px; overflow: hidden; box-shadow: var(--sh4); position: relative; }
.proc-phase-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform .6s ease; }
.proc-phase-visual:hover .proc-phase-img-wrap img { transform: scale(1.04); }
.proc-phase-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(9,21,42,.1) 0%, transparent 55%); pointer-events: none; }
.proc-phase-img-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--white); border-radius: 14px; box-shadow: var(--sh3);
    padding: 16px 22px; display: flex; flex-direction: column;
    align-items: center; border: 1px solid var(--bdr2); gap: 3px;
}
.proc-phase-img-badge strong { font-size: 1.55rem; font-weight: 700; color: var(--red); line-height: 1; font-family: 'Outfit', sans-serif; letter-spacing: -.02em; }
.proc-badge-gold strong { color: var(--gold); }
.proc-phase-img-badge span { font-size: .66rem; color: var(--t3); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }

/* phase 3 editorial stages */
.proc-editorial-stages { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.proc-stage { padding: 22px 20px; border-radius: 14px; background: var(--white); border: 1px solid var(--bdr2); box-shadow: var(--sh1); transition: box-shadow .28s, transform .28s, border-color .28s; }
.proc-stage:hover { box-shadow: var(--sh2); transform: translateY(-5px); border-color: rgba(190,42,43,.2); }
.proc-stage-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.proc-stage-num { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red2)); color: #fff; font-size: .68rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Outfit', sans-serif; box-shadow: 0 3px 10px rgba(190,42,43,.3); }
.proc-stage-title { font-size: .92rem; font-weight: 600; color: var(--navy); font-family: 'Outfit', sans-serif; line-height: 1.2; }
.proc-stage-desc { font-size: .82rem; color: var(--t3); line-height: 1.72; font-weight: 400; }

/* phase 4 stacked books */
.proc-phase-books-stack { position: relative; height: 420px; }
.proc-stk-book { position: absolute; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.22), -4px 4px 16px rgba(0,0,0,.1); }
.proc-stk-book img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proc-stk-b1 { width: 195px; height: 292px; top: 84px; left: 0; transform: rotate(-7deg); opacity: .7; filter: brightness(.78); z-index: 1; }
.proc-stk-b2 { width: 206px; height: 309px; top: 42px; left: 82px; transform: rotate(-2deg); opacity: .88; z-index: 2; }
.proc-stk-b3 { width: 218px; height: 327px; top: 0; left: 152px; transform: rotate(5deg); z-index: 3; transition: transform .45s cubic-bezier(.25,.46,.45,.94), box-shadow .45s; box-shadow: 0 24px 64px rgba(0,0,0,.28); }
.proc-phase-visual:hover .proc-stk-b3 { transform: rotate(0deg) translateY(-12px); box-shadow: 0 36px 80px rgba(0,0,0,.36); }

/* phase 5 platforms */
.proc-platforms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 22px; }
.proc-plat-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 18px 12px; border-radius: 12px; border: 1px solid var(--bdr2); background: var(--white); box-shadow: var(--sh1); transition: box-shadow .28s, transform .28s, border-color .28s; gap: 6px; }
.proc-plat-item:hover { box-shadow: var(--sh2); border-color: rgba(190,42,43,.22); transform: translateY(-5px); }
.proc-plat-ico { font-size: 1.55rem; }
.proc-plat-name { font-size: .84rem; font-weight: 600; color: var(--navy); font-family: 'Outfit', sans-serif; line-height: 1.2; }
.proc-plat-detail { font-size: .7rem; color: var(--t3); font-weight: 400; line-height: 1.4; }
.proc-dist-stat { font-size: .88rem; color: var(--t2); margin-bottom: 30px; padding: 14px 22px; background: var(--bg1); border-radius: 10px; border: 1px solid var(--bdr2); text-align: center; font-weight: 400; }
.proc-dist-stat strong { color: var(--red); font-weight: 700; }

/* phase 6 marketing */
.proc-mkt-grid { display: flex; flex-direction: column; gap: 14px; }
.proc-mkt-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; border-radius: 14px; background: rgba(255,255,255,.052); border: 1px solid rgba(255,255,255,.075); border-left: 3px solid transparent; transition: background .28s, border-color .28s, transform .28s; }
.proc-mkt-item:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.075); border-left-color: var(--gold); transform: translateX(5px); }
.proc-mkt-ico { width: 42px; height: 42px; border-radius: 10px; background: rgba(212,160,48,.12); border: 1px solid rgba(212,160,48,.22); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.proc-mkt-title { font-size: .93rem; font-weight: 600; color: #fff; margin-bottom: 5px; font-family: 'Outfit', sans-serif; line-height: 1.25; }
.proc-mkt-desc { font-size: .82rem; color: rgba(255,255,255,.48); line-height: 1.72; font-weight: 400; }

/* ══ TIMELINE ══ */
.proc-timeline { padding: 110px 0; background: var(--navy); position: relative; overflow: hidden; }
.proc-timeline::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(212,160,48,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212,160,48,.04) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
.proc-timeline .h2   { color: #fff; }
.proc-timeline .lead { color: rgba(255,255,255,.55); }
.proc-timeline .tag  { color: var(--gold); }
.proc-timeline .tag::before, .proc-timeline .tag::after { background: var(--gold); }
.proc-tl-track { display: flex; align-items: flex-start; position: relative; margin-top: 12px; }
.proc-tl-line { position: absolute; top: 22px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent 0%, rgba(212,160,48,.4) 15%, var(--red) 35%, var(--gold) 50%, var(--red) 65%, rgba(212,160,48,.4) 85%, transparent 100%); z-index: 0; }
.proc-tl-item { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.proc-tl-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); border: 3px solid var(--navy); box-shadow: 0 0 0 2px var(--gold), 0 4px 16px rgba(212,160,48,.4); margin-bottom: 20px; flex-shrink: 0; transition: transform .25s; }
.proc-tl-item:hover .proc-tl-dot { transform: scale(1.3); }
.proc-tl-dot-red { background: var(--red); box-shadow: 0 0 0 2px var(--red), 0 4px 16px rgba(190,42,43,.4); }
.proc-tl-week { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; font-family: 'Outfit', sans-serif; }
.proc-tl-event { font-size: .9rem; font-weight: 600; color: #fff; margin-bottom: 8px; font-family: 'Outfit', sans-serif; line-height: 1.25; }
.proc-tl-detail { font-size: .76rem; color: rgba(255,255,255,.44); line-height: 1.65; font-weight: 400; }

/* ══ WHY OUR PROCESS ══ */
.proc-why { padding: 110px 0; background: var(--bg1); }
.proc-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.proc-why-card { padding: 34px 28px; border-radius: 16px; border: 1px solid var(--bdr2); background: var(--white); box-shadow: var(--sh1); transition: box-shadow .3s, transform .3s, border-color .3s; position: relative; overflow: hidden; }
.proc-why-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.25,.46,.45,.94); }
.proc-why-card:hover { box-shadow: var(--sh3); transform: translateY(-8px); border-color: transparent; }
.proc-why-card:hover::after { transform: scaleX(1); }
.proc-why-ico { width: 52px; height: 52px; border-radius: 14px; background: rgba(190,42,43,.07); border: 1px solid rgba(190,42,43,.14); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; transition: background .25s; }
.proc-why-card:hover .proc-why-ico { background: rgba(190,42,43,.12); }
.proc-why-title { font-size: .97rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; font-family: 'Outfit', sans-serif; line-height: 1.3; }
.proc-why-desc { font-size: .84rem; color: var(--t3); line-height: 1.78; font-weight: 400; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
    .proc-hero-inner      { grid-template-columns: 1fr 400px; gap: 52px; }
    .proc-phase-inner     { grid-template-columns: 1fr 360px; gap: 60px; }
    .proc-phase-inner-rev { grid-template-columns: 360px 1fr; gap: 60px; }
}
@media (max-width: 1024px) {
    .proc-ov-grid  { grid-template-columns: repeat(2,1fr); }
    .proc-why-grid { grid-template-columns: repeat(2,1fr); }
    .proc-tl-track { flex-wrap: wrap; gap: 36px; justify-content: center; }
    .proc-tl-line  { display: none; }
    .proc-tl-item  { flex: 0 0 calc(50% - 18px); max-width: 240px; }
    .proc-tl-dot   { margin-bottom: 12px; }
}
@media (max-width: 992px) {
    .proc-hero { min-height: auto; padding-top: 140px; padding-bottom: 70px; }
    .proc-hero-inner  { grid-template-columns: 1fr; gap: 44px; }
    .proc-hero-sub    { max-width: 100%; }
    .proc-hero-stats  { justify-content: space-evenly; width: 100%; }
    .proc-hstat       { padding: 0 18px; }
    .proc-phase-preview { grid-template-columns: repeat(3,1fr); max-width: 420px; }
    .proc-phase-inner     { grid-template-columns: 1fr; gap: 56px; }
    .proc-phase-inner-rev { grid-template-columns: 1fr; }
    .proc-phase-inner-rev .proc-phase-visual { order: -1; }
    .proc-phase-visual  { max-width: 360px; margin: 0 auto; }
    .proc-phase-img-wrap img { aspect-ratio: 4/3; }
    .proc-phase-books-stack { height: 280px; }
    .proc-stk-b1 { width: 155px; height: 232px; }
    .proc-stk-b2 { width: 163px; height: 244px; }
    .proc-stk-b3 { width: 173px; height: 260px; left: 120px; }
    .proc-editorial-stages { grid-template-columns: 1fr; }
    .proc-platforms-grid   { grid-template-columns: repeat(2,1fr); }
    .proc-ov-grid::before  { display: none; }
}
@media (max-width: 768px) {
    .proc-phase, .proc-overview, .proc-timeline, .proc-why { padding: 80px 0; }
    .proc-ov-grid  { grid-template-columns: 1fr; gap: 12px; }
    .proc-why-grid { grid-template-columns: 1fr; }
    .proc-tl-item  { flex: 0 0 100%; max-width: 100%; }
    .proc-phase-preview { grid-template-columns: repeat(2,1fr); }
    .proc-editorial-stages { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .proc-hero { padding-top: 130px; padding-bottom: 60px; }
    .proc-hero-btns { flex-direction: column; }
    .proc-hero-btns .btn { justify-content: center; }
    .proc-hero-stats { flex-direction: column; gap: 0; }
    .proc-hstat { padding: 14px 24px; }
    .proc-hstat-sep { width: 60%; height: 1px; align-self: auto; }
    .proc-editorial-stages { grid-template-columns: 1fr; }
    .proc-phase-img-badge { right: 0; bottom: -10px; }
}
@media (max-width: 480px) {
    .proc-platforms-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .proc-why-grid { gap: 14px; }
    .proc-hero-inner { gap: 32px; }
}

/* =============================================
   SERVICES INDEX PAGE  (svi-*)
============================================= */

.svi-em-red { font-style: normal; color: var(--red); }

/* ── Hero ── */
.svi-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding-top: 250px;
    padding-bottom: 80px;
    background: url('/assets/new-brand/img/hero-banner/banner.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.svi-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(4,9,20,.98) 0%, rgba(9,21,42,.94) 48%, rgba(14,32,64,.83) 100%);
}

.svi-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,160,48,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,48,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 0;
}

.svi-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.svi-breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 12.5px;
}
.svi-breadcrumb li a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .22s; }
.svi-breadcrumb li a:hover { color: var(--gold); }
.svi-breadcrumb li span { color: rgba(255,255,255,.2); }
.svi-breadcrumb li:last-child { color: rgba(255,255,255,.75); font-weight: 500; }

.svi-hero-h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.028em;
    margin: 8px 0 20px;
    font-family: 'Outfit', sans-serif;
}
.svi-hero-h1 em { font-style: normal; color: var(--gold); }

.svi-hero-sub {
    font-size: .98rem;
    color: rgba(255,255,255,.58);
    line-height: 1.88;
    max-width: 500px;
    margin-bottom: 32px;
    font-weight: 400;
}

.svi-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero books */
.svi-hero-books { position: relative; height: 380px; }

.svi-book {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,.55);
}
.svi-book img { width: 100%; height: 100%; object-fit: cover; display: block; }

.svi-b1 { width: 120px; height: 180px; top: 0;    left: 0;    transform: rotate(-5deg); z-index: 1; opacity: .8; filter: brightness(.8); }
.svi-b2 { width: 130px; height: 195px; top: 20px; left: 130px; transform: rotate(2deg);  z-index: 2; }
.svi-b3 { width: 125px; height: 188px; top: 190px; left: 50px; transform: rotate(-3deg); z-index: 1; opacity: .8; }
.svi-b4 { width: 135px; height: 202px; top: 175px; left: 185px; transform: rotate(4deg);  z-index: 3; }

.svi-hero-glow {
    position: absolute;
    bottom: -20px; left: 50%;
    transform: translateX(-50%);
    width: 70%; height: 60px;
    background: radial-gradient(ellipse, rgba(190,42,43,.22) 0%, transparent 70%);
    pointer-events: none;
}

/* Trust strip */
.svi-trust-strip {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 14px 0;
}
.svi-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.svi-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 24px;
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    font-weight: 500;
}
.svi-trust-item span { color: rgba(255,255,255,.78); }
.svi-trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,.1); }

/* Services Grid */
.svi-grid-section { padding: 110px 0; background: var(--bg1); }

.svi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 50px;
}

.svi-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--bdr2);
    box-shadow: var(--sh1);
    padding: 32px 28px;
    transition: box-shadow .3s, transform .3s, border-color .3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.svi-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.svi-card:hover {
    box-shadow: var(--sh3);
    transform: translateY(-8px);
    border-color: transparent;
}

.svi-card:hover::after { transform: scaleX(1); }

.svi-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.svi-card-icon { font-size: 2rem; }

.svi-card-num {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--t3);
    font-family: 'Outfit', sans-serif;
}

.svi-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.svi-card-desc {
    font-size: .84rem;
    color: var(--t3);
    line-height: 1.75;
    margin-bottom: 18px;
    flex: 1;
}

.svi-card-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 22px;
}

.svi-card-feats li {
    font-size: .8rem;
    color: var(--t2);
    padding-left: 16px;
    position: relative;
}

.svi-card-feats li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    position: absolute;
    left: 0; top: 7px;
}

.svi-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    letter-spacing: .04em;
    transition: gap .22s, color .22s;
    font-family: 'Outfit', sans-serif;
    margin-top: auto;
}

.svi-card-cta:hover { gap: 10px; }
.svi-arr { transition: transform .22s; }
.svi-card-cta:hover .svi-arr { transform: translateX(4px); }

/* Bottom CTA strip */
.svi-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 40px;
    background: var(--navy);
    border-radius: 18px;
    flex-wrap: wrap;
    box-shadow: var(--sh3);
}

.svi-bottom-cta-title {
    font-size: 1.12rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.svi-bottom-cta-sub {
    font-size: .86rem;
    color: rgba(255,255,255,.55);
    font-weight: 400;
}

/* =============================================
   SINGLE SERVICE PAGE  (svs-*)
============================================= */

.svs-em-red { font-style: normal; color: var(--red); }

/* ── Hero ── */
.svs-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding-top: 250px;
    padding-bottom: 80px;
    background: url('/assets/new-brand/img/hero-banner/banner.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.svs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(4,9,20,.98) 0%, rgba(9,21,42,.94) 48%, rgba(14,32,64,.8) 100%);
}

.svs-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,160,48,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,48,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 0;
}

.svs-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.svs-breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    flex-wrap: wrap;
}
.svs-breadcrumb li a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .22s; }
.svs-breadcrumb li a:hover { color: var(--gold); }
.svs-breadcrumb li span { color: rgba(255,255,255,.2); }
.svs-breadcrumb li:last-child { color: rgba(255,255,255,.7); font-weight: 500; }

.svs-hero-h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.028em;
    margin: 8px 0 20px;
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.svs-hero-icon { font-size: 2.4rem; line-height: 1; }
.svs-hero-h1 em { font-style: normal; color: var(--gold); }

.svs-hero-sub {
    font-size: .98rem;
    color: rgba(255,255,255,.58);
    line-height: 1.88;
    max-width: 500px;
    margin-bottom: 28px;
    font-weight: 400;
}

.svs-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.svs-hero-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.svs-hero-trust span {
    font-size: .75rem;
    color: rgba(255,255,255,.65);
    font-weight: 500;
}

/* Hero books */
.svs-hero-books { position: relative; height: 420px; }

.svs-hbook {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.svs-hbook img { width: 100%; height: 100%; object-fit: cover; display: block; }

.svs-hbook-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.16) 0%, transparent 50%);
    pointer-events: none;
}

.svs-hbook-1 { width: 200px; height: 300px; top: 60px; left: 0;    transform: rotate(-6deg); opacity: .72; filter: brightness(.78); z-index: 1; }
.svs-hbook-2 { width: 215px; height: 322px; top: 20px; left: 90px; transform: rotate(-1deg); opacity: .9;  z-index: 2; }
.svs-hbook-3 { width: 230px; height: 345px; top: 0;    left: 170px; transform: rotate(5deg);  z-index: 3; box-shadow: 0 24px 64px rgba(0,0,0,.4); }

.svs-hero-books:hover .svs-hbook-3 {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 36px 80px rgba(0,0,0,.5);
}

.svs-hero-glow {
    position: absolute;
    bottom: -20px; left: 50%;
    transform: translateX(-50%);
    width: 70%; height: 60px;
    background: radial-gradient(ellipse, rgba(190,42,43,.22) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Overview ── */
.svs-overview {
    padding: 110px 0;
    background: var(--white);
}

.svs-ov-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: start;
}

.svs-ov-divider {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 16px 0 24px;
}

.svs-d-red  { display: block; width: 40px; height: 3px; background: var(--red);  border-radius: 2px; }
.svs-d-gold { display: block; width: 20px; height: 3px; background: var(--gold); border-radius: 2px; }
.svs-d-dim  { display: block; width: 10px; height: 3px; background: rgba(9,21,42,.15); border-radius: 2px; }

/* Sidebar card */
.svs-ov-card {
    background: var(--white);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: var(--sh2);
    margin-bottom: 16px;
    position: sticky;
    top: 120px;
}

.svs-ov-card-ico { font-size: 2.8rem; margin-bottom: 12px; }

.svs-ov-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
}

.svs-ov-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.svs-ov-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--t2);
    font-weight: 500;
}

.svs-ov-card-list li span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svs-ov-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    background: var(--red);
    color: #fff;
    border-radius: var(--r);
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .22s, transform .22s;
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 16px rgba(190,42,43,.3);
}

.svs-ov-cta-btn:hover { background: var(--red2); transform: translateY(-2px); }

.svs-ov-card-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 4px; }
.svs-ov-card-rating { font-size: .76rem; color: var(--t3); font-weight: 500; }

.svs-ov-contact-box {
    background: var(--bg1);
    border: 1px solid var(--bdr2);
    border-radius: 14px;
    padding: 22px 24px;
    text-align: center;
}

.svs-ov-contact-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--t3); margin-bottom: 8px; }

.svs-ov-phone {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
    transition: color .22s;
}

.svs-ov-phone:hover { color: var(--red); }

.svs-ov-hours { font-size: .74rem; color: var(--t3); margin-bottom: 14px; }

.svs-ov-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #25d366;
    color: #fff;
    border-radius: var(--r);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .22s, transform .22s;
}

.svs-ov-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ── Includes ── */
.svs-includes {
    padding: 110px 0;
    background: var(--bg1);
}

.svs-inc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svs-inc-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--bdr2);
    box-shadow: var(--sh1);
    padding: 30px 26px;
    transition: box-shadow .3s, transform .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}

.svs-inc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.svs-inc-card:hover { box-shadow: var(--sh3); transform: translateY(-6px); border-color: transparent; }
.svs-inc-card:hover::after { transform: scaleX(1); }

.svs-inc-ico {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(190,42,43,.08);
    border: 1px solid rgba(190,42,43,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: background .25s;
}

.svs-inc-card:hover .svs-inc-ico { background: rgba(190,42,43,.14); }

.svs-inc-title {
    font-size: .97rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.svs-inc-desc { font-size: .84rem; color: var(--t3); line-height: 1.75; font-weight: 400; }

/* ── Process ── */
.svs-process {
    padding: 110px 0;
    background:
        radial-gradient(ellipse 65% 90% at 110% 40%, rgba(190,42,43,.15) 0%, transparent 58%),
        linear-gradient(148deg, #050d1e 0%, var(--navy) 52%, var(--navy2) 100%);
    position: relative;
}

.svs-process-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,160,48,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,48,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

.svs-process .sec-hdr { position: relative; z-index: 1; }
.svs-process .h2 { color: #fff; }
.svs-process .lead { color: rgba(255,255,255,.55); }
.svs-process .tag { color: var(--gold); }
.svs-process .tag::before, .svs-process .tag::after { background: var(--gold); }

.svs-proc-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.svs-proc-connector {
    position: absolute;
    top: 52px;
    left: 12.5%;
    right: 12.5%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(212,160,48,.4), var(--gold), rgba(212,160,48,.4), transparent);
    z-index: 0;
}

.svs-proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.svs-proc-num {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .18em;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.svs-proc-ico-wrap {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(212,160,48,.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
    transition: background .25s, transform .25s, box-shadow .25s;
}

.svs-proc-step:hover .svs-proc-ico-wrap {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(190,42,43,.4);
}

.svs-proc-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.25;
}

.svs-proc-desc {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    font-weight: 400;
}

/* ── Why ── */
.svs-why {
    padding: 110px 0;
    background: var(--white);
}

.svs-why-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 72px;
    align-items: center;
}

.svs-why-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 24px 0;
}

.svs-why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid var(--bdr2);
    background: var(--bg1);
    transition: box-shadow .25s, border-color .25s, transform .25s;
    border-left: 3px solid transparent;
}

.svs-why-item:hover {
    box-shadow: var(--sh2);
    border-left-color: var(--red);
    background: var(--white);
    transform: translateX(4px);
}

.svs-why-ico {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(190,42,43,.08);
    border: 1px solid rgba(190,42,43,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.svs-why-title {
    font-size: .94rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.svs-why-desc { font-size: .83rem; color: var(--t3); line-height: 1.75; font-weight: 400; }

/* Why visual */
.svs-why-visual { position: relative; }

.svs-why-books {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.svs-wy-book {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--sh3);
    transition: transform .4s ease;
}

.svs-wy-book:first-child { transform: rotate(-3deg); }
.svs-wy-book:last-child  { transform: rotate(3deg) translateY(16px); }
.svs-wy-book:hover { transform: rotate(0deg) translateY(-4px) !important; }
.svs-wy-book img { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; }

.svs-why-badge {
    position: absolute;
    bottom: -20px; left: -20px;
    background: var(--red);
    color: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(190,42,43,.4);
}

.svs-why-badge strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.svs-why-badge span {
    font-size: .72rem;
    opacity: .85;
    letter-spacing: .04em;
    margin-top: 4px;
    display: block;
}

/* ── Other Services ── */
.svs-other {
    padding: 90px 0;
    background: var(--bg2);
}

.svs-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svs-other-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--bdr2);
    padding: 28px 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--sh1);
    transition: box-shadow .28s, transform .28s, border-color .28s;
}

.svs-other-card:hover { box-shadow: var(--sh2); transform: translateY(-5px); border-color: rgba(190,42,43,.2); }

.svs-other-ico { font-size: 1.8rem; }

.svs-other-title {
    font-size: .97rem;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.svs-other-desc { font-size: .82rem; color: var(--t3); line-height: 1.7; flex: 1; font-weight: 400; }

.svs-other-link {
    font-size: .8rem;
    font-weight: 600;
    color: var(--red);
    margin-top: 4px;
    transition: letter-spacing .22s;
}

.svs-other-card:hover .svs-other-link { letter-spacing: .04em; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
    .svi-hero-inner  { grid-template-columns: 1fr 360px; gap: 48px; }
    .svs-hero-inner  { grid-template-columns: 1fr 380px; gap: 52px; }
    .svs-ov-inner    { grid-template-columns: 1fr 320px; gap: 48px; }
    .svs-why-inner   { grid-template-columns: 1fr 320px; gap: 56px; }
}

@media (max-width: 1024px) {
    .svi-grid { grid-template-columns: repeat(2, 1fr); }
    .svs-inc-grid { grid-template-columns: repeat(2, 1fr); }
    .svs-proc-track { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .svs-proc-connector { display: none; }
    .svs-other-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .svi-hero { min-height: auto; padding-top: 140px; padding-bottom: 70px; }
    .svi-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .svi-hero-books { height: 280px; }
    .svi-b1 { width: 100px; height: 150px; }
    .svi-b2 { width: 108px; height: 162px; left: 105px; }
    .svi-b3 { width: 103px; height: 155px; top: 150px; }
    .svi-b4 { width: 112px; height: 168px; top: 145px; left: 155px; }

    .svs-hero { min-height: auto; padding-top: 140px; padding-bottom: 70px; }
    .svs-hero-inner { grid-template-columns: 1fr; gap: 44px; }
    .svs-hero-books { height: 300px; }
    .svs-hbook-1 { width: 155px; height: 232px; }
    .svs-hbook-2 { width: 165px; height: 248px; }
    .svs-hbook-3 { width: 175px; height: 263px; left: 140px; }

    .svs-ov-inner  { grid-template-columns: 1fr; }
    .svs-ov-card   { position: static; }
    .svs-why-inner { grid-template-columns: 1fr; gap: 56px; }
    .svs-why-visual { max-width: 340px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .svi-grid-section, .svs-overview, .svs-includes,
    .svs-process, .svs-why, .svs-other { padding: 80px 0; }

    .svi-grid { grid-template-columns: 1fr; }
    .svi-bottom-cta { flex-direction: column; text-align: center; padding: 28px; }

    .svs-inc-grid { grid-template-columns: 1fr; }
    .svs-other-grid { grid-template-columns: 1fr; }
    .svs-proc-track { grid-template-columns: 1fr; gap: 32px; }

    .svi-trust-inner { gap: 0; }
    .svi-trust-item  { padding: 8px 14px; font-size: .75rem; }
    .svi-trust-sep   { display: none; }
}

@media (max-width: 640px) {
    .svi-hero { padding-top: 130px; padding-bottom: 60px; }
    .svs-hero { padding-top: 130px; padding-bottom: 60px; }
    .svs-hero-btns { flex-direction: column; }
    .svs-hero-btns .btn { justify-content: center; }
    .svs-hero-trust { flex-direction: column; gap: 8px; width: 100%; }
    .svs-proc-track { grid-template-columns: 1fr; }
    .svs-why-badge  { left: 0; bottom: -10px; }
}

@media (max-width: 480px) {
    .svs-inc-grid { gap: 14px; }
    .svs-other-grid { grid-template-columns: 1fr; }
    .svs-hero-books { display: none; }
    .svs-hero-inner { grid-template-columns: 1fr; }
    .svi-hero-books { display: none; }
}

/* =============================================
   LEGAL PAGES  (Privacy, Terms, Refund)
============================================= */

/* ── Hero ── */
.legal-hero {
    padding: 250px 0 70px;
    background:
        radial-gradient(ellipse 60% 80% at 100% 30%, rgba(190,42,43,.16) 0%, transparent 60%),
        url('/assets/new-brand/img/hero-banner/banner.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.legal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(4,9,20,.97) 0%, rgba(9,21,42,.93) 50%, rgba(14,32,64,.85) 100%);
}

.legal-hero .container { position: relative; z-index: 1; }

.legal-breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12.5px;
}
.legal-breadcrumb li a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .22s; }
.legal-breadcrumb li a:hover { color: var(--gold); }
.legal-breadcrumb li span { color: rgba(255,255,255,.2); }
.legal-breadcrumb li:last-child { color: rgba(255,255,255,.7); font-weight: 500; }

.legal-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
}

.legal-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.58);
    margin-bottom: 22px;
    font-weight: 400;
}

.legal-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.legal-updated {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    font-weight: 500;
}

.legal-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(190,42,43,.25);
    color: #f87171;
    border: 1px solid rgba(190,42,43,.4);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ── Body ── */
.legal-body {
    padding: 80px 0 110px;
    background: var(--bg1);
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 52px;
    align-items: start;
}

/* ── Table of Contents ── */
.legal-toc-inner {
    position: sticky;
    top: 120px;
    background: var(--white);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--sh1);
}

.legal-toc-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 14px;
}

.legal-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 22px;
}

.legal-toc-nav a {
    font-size: .82rem;
    color: var(--t2);
    text-decoration: none;
    padding: 7px 10px;
    border-radius: var(--r);
    transition: background .2s, color .2s;
    font-weight: 400;
    border-left: 2px solid transparent;
}

.legal-toc-nav a:hover {
    background: rgba(190,42,43,.06);
    color: var(--red);
    border-left-color: var(--red);
}

.legal-toc-cta {
    display: block;
    text-align: center;
    padding: 11px 16px;
    background: var(--red);
    color: #fff;
    border-radius: var(--r);
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .22s, transform .22s;
    box-shadow: 0 3px 12px rgba(190,42,43,.28);
    font-family: 'Outfit', sans-serif;
}

.legal-toc-cta:hover { background: var(--red2); transform: translateY(-2px); }

/* ── Article content ── */
.legal-content {
    background: var(--white);
    border: 1px solid var(--bdr2);
    border-radius: 18px;
    padding: 52px 56px;
    box-shadow: var(--sh1);
}

/* Intro box */
.legal-intro-box {
    background: var(--bg1);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 48px;
    border-left: 4px solid var(--red);
}

.legal-intro-box p {
    font-size: .95rem;
    color: var(--t2);
    line-height: 1.88;
    font-weight: 400;
}

/* Sections */
.legal-section {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--bdr2);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.legal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: .04em;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 3px 12px rgba(190,42,43,.28);
}

.legal-h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 24px 0 12px;
    font-family: 'Outfit', sans-serif;
}

.legal-content p {
    font-size: .92rem;
    color: var(--t2);
    line-height: 1.88;
    margin-bottom: 14px;
    font-weight: 400;
}

.legal-list {
    list-style: none;
    margin: 12px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.legal-list li {
    font-size: .9rem;
    color: var(--t2);
    line-height: 1.75;
    padding-left: 20px;
    position: relative;
    font-weight: 400;
}

.legal-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
    flex-shrink: 0;
}

/* Highlights */
.legal-highlight {
    border-radius: 12px;
    padding: 18px 22px;
    margin: 22px 0;
    font-size: .9rem;
    line-height: 1.75;
}

.legal-highlight-red {
    background: rgba(190,42,43,.06);
    border: 1px solid rgba(190,42,43,.2);
    color: var(--navy);
    border-left: 4px solid var(--red);
}

.legal-highlight-gold {
    background: rgba(212,160,48,.07);
    border: 1px solid rgba(212,160,48,.25);
    color: var(--navy);
    border-left: 4px solid var(--gold);
}

/* Use grid */
.legal-use-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 18px 0;
}

.legal-use-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--bdr2);
    background: var(--bg1);
    transition: box-shadow .25s;
}

.legal-use-item:hover { box-shadow: var(--sh1); }

.legal-use-ico { font-size: 1.4rem; flex-shrink: 0; }

.legal-use-item strong {
    display: block;
    font-size: .9rem;
    color: var(--navy);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.legal-use-item p {
    font-size: .82rem;
    color: var(--t3);
    line-height: 1.65;
    margin: 0;
}

/* Cookie table */
.legal-cookie-table {
    border: 1px solid var(--bdr);
    border-radius: 12px;
    overflow: hidden;
    margin: 18px 0;
}

.legal-cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0;
}

.legal-cookie-row span {
    padding: 12px 16px;
    font-size: .84rem;
    color: var(--t2);
    border-right: 1px solid var(--bdr2);
    border-bottom: 1px solid var(--bdr2);
}

.legal-cookie-row span:last-child { border-right: none; }
.legal-cookie-row:last-child span { border-bottom: none; }

.legal-cookie-head {
    background: var(--bg1);
}

.legal-cookie-head span {
    font-weight: 600;
    font-size: .78rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Scenario grid (refund page) */
.legal-scenario-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 18px 0;
}

.legal-scenario {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(16,185,129,.2);
    background: rgba(16,185,129,.04);
    transition: box-shadow .25s;
}

.legal-scenario:hover { box-shadow: var(--sh1); }

.legal-scenario-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.legal-scenario-ico { font-size: 1.2rem; flex-shrink: 0; }

.legal-scenario h4 {
    font-size: .92rem;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
}

.legal-scenario p {
    font-size: .84rem;
    color: var(--t3);
    line-height: 1.7;
    margin: 0;
}

/* Steps (refund page) */
.legal-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 18px 0;
}

.legal-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--bdr2);
    background: var(--bg1);
    border-left: 3px solid transparent;
    transition: box-shadow .25s, border-left-color .25s, background .25s;
}

.legal-step:hover {
    box-shadow: var(--sh1);
    border-left-color: var(--red);
    background: var(--white);
}

.legal-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 3px 10px rgba(190,42,43,.28);
}

.legal-step h4 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
    font-family: 'Outfit', sans-serif;
}

.legal-step p {
    font-size: .86rem;
    color: var(--t3);
    line-height: 1.75;
    margin: 0;
}

/* Contact grid */
.legal-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px 0;
}

.legal-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--bdr2);
    background: var(--bg1);
    transition: box-shadow .25s, border-color .25s;
}

.legal-contact-item:hover { box-shadow: var(--sh2); border-color: rgba(190,42,43,.2); }

.legal-contact-ico {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(190,42,43,.08);
    border-radius: 10px;
}

.legal-contact-item strong {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 5px;
}

.legal-contact-item a,
.legal-contact-item span {
    font-size: .87rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
    display: block;
}

.legal-contact-item a:hover { color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .legal-layout { grid-template-columns: 220px 1fr; gap: 36px; }
    .legal-content { padding: 40px 40px; }
    .legal-contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; gap: 32px; }
    .legal-toc-inner { position: static; }
    .legal-toc-nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
    .legal-toc-nav a { font-size: .78rem; padding: 5px 10px; border-left: none; border-radius: 20px; }
    .legal-use-grid { grid-template-columns: 1fr; }
    .legal-scenario-grid { grid-template-columns: 1fr; }
    .legal-cookie-row { grid-template-columns: 1fr 1.5fr 1fr; }
}

@media (max-width: 768px) {
    .legal-hero { padding: 150px 0 56px; }
    .legal-body { padding: 56px 0 80px; }
    .legal-content { padding: 30px 26px; }
    .legal-contact-grid { grid-template-columns: 1fr; }
    .legal-cookie-row { grid-template-columns: 1fr 1fr; }
    .legal-cookie-row span:nth-child(3) { display: none; }
    .legal-cookie-head span:nth-child(3) { display: none; }
}

@media (max-width: 480px) {
    .legal-content { padding: 24px 18px; }
    .legal-h2 { font-size: 1.15rem; }
    .legal-use-grid, .legal-scenario-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   GLOBAL OVERRIDES — Section Padding + Font Sizes
   Applied last so these win over all section-specific rules
═══════════════════════════════════════════════════════ */

/* ── Section padding variable ──────────────────────── */
:root {
    --sp: 100px;
}

/* ── ONE class to rule all section padding ─────────── */
/* Homepage sections */
.services,
#services,
#hiw,
#contact,
.partners,

/* About page */
.abt-story,
.abt-stats-band,
.abt-pillars,
.abt-why,
.abt-team,
.abt-testi,

/* Portfolio page */
.pf-showcase,
.pf-grid-section,
.pf-plat-section,
.etab-section,

/* Process page */
.proc-overview,
.proc-timeline,
.proc-why,

/* Homepage new sections */
.prs-section,
.proc4-section,
.gs-section,
.acta-section,
.trust-section,

/* Services pages */
.svi-grid-section,
.svs-overview,
.svs-includes,
.svs-process,
.svs-why,
.svs-other,

/* Legal pages */
.legal-body
{
    padding-top:    var(--sp) !important;
    padding-bottom: var(--sp) !important;
}

/* ── Phase sections keep their relative padding ── */
.proc-phase { padding-top: var(--sp) !important; padding-bottom: var(--sp) !important; }

/* ── Trust strip & author CTA — slightly less padding ── */
.trust-section {
    padding-top:    calc(var(--sp) * 0.55) !important;
    padding-bottom: calc(var(--sp) * 0.55) !important;
}


/* ═══════════════════════════════════════════════════════
   FONT SIZE NORMALISATION
   Minimum readable sizes across all section text
═══════════════════════════════════════════════════════ */

/* ── Section description text — minimum .92rem ── */
.svc-desc,
.svc-feats li,
.step-desc,
.why-desc,
.proc-ov-desc,
.proc-step-desc,
.proc-tl-detail,
.proc-why-desc,
.proc-mkt-desc,
.proc-plat-detail,
.abt-pillar-desc,
.abt-team-desc,
.abt-why-desc,
.abt-testi-text,
.pf-sc-desc,
.pf-scg-desc,
.pf-plat-detail,
.pf-book-author,
.pf-proc-desc,
.gs-genre-desc,
.svs-proc-desc,
.svs-inc-desc,
.svs-why-desc,
.svs-other-desc,
.svi-card-desc,
.legal-content p,
.legal-list li,
.legal-step p,
.legal-scenario p,
.legal-use-item p,
.etab-sub,
.proc4-item-desc,
.prs-section .lead,
.svs-hero-sub,
.pf-hero-sub,
.abt-hero-sub
{
    font-size: .93rem !important;
    line-height: 1.82 !important;
}

/* ── Card & item titles — minimum .98rem ── */
.svc-title,
.step-title,
.why-title,
.proc-ov-title,
.proc-step-title,
.proc-tl-event,
.proc-why-title,
.proc-mkt-title,
.proc-plat-name,
.abt-pillar-title,
.abt-team-role,
.abt-testi-name,
.pf-sc-title,
.pf-scg-title,
.pf-plat-name,
.pf-book-name,
.gs-genre-title,
.svs-proc-title,
.svs-inc-title,
.svs-why-title,
.svs-other-title,
.svi-card-title,
.legal-h3,
.proc4-item-title,
.proc-stage-title,
.trust-badge-name
{
    font-size: 1rem !important;
    line-height: 1.3 !important;
}

/* ── Lead text ── */
.proc-phase-lead,
.svs-ov-inner .lead,
.svs-hero-sub,
.abt-hero-sub,
.pf-hero-sub,
.prs-section p.lead,
.proc-hero-sub
{
    font-size: 1.02rem !important;
    line-height: 1.88 !important;
}

/* ── Labels, tags, meta ── */
.pf-sc-genre,
.pf-scg-genre,
.pf-genre-tag,
.svi-card-num,
.proc-ov-num,
.proc-pp-num,
.proc-stage-num,
.gs-num-badge,
.svs-proc-num,
.trust-badge-sub,
.abt-stat-lbl,
.pf-stat-lbl,
.abt-hero-stat span,
.pf-hstat span
{
    font-size: .74rem !important;
}

/* ── Stat / number sizes ── */
.abt-stat-num,
.abt-team-num,
.pf-hstat strong,
.proc-hstat strong,
.svs-hero h1 .svs-hero-icon,
.abt-hero-stat strong
{
    font-size: clamp(1.8rem, 3.2vw, 2.5rem) !important;
}

/* ── Footer text ── */
.foot-desc,
.foot-links a,
.foot-copy,
.foot-legal a
{
    font-size: .9rem !important;
}

/* ── Trust strip ── */
.svi-trust-item,
.trust-badge-name,
.trust-our,
.trust-heading
{
    font-size: .9rem !important;
}

.trust-heading { font-size: 1.35rem !important; }

/* ── Sidebar / TOC ── */
.legal-toc-nav a { font-size: .86rem !important; }
.legal-intro-box p { font-size: .97rem !important; }
.legal-cookie-row span { font-size: .88rem !important; }

/* ── CTA section ── */
.cta-inner p.lead { font-size: 1.04rem !important; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 3rem) !important; }

/* ── Section header lead ── */
.sec-hdr .lead { font-size: 1.02rem !important; }

/* ── Hero subtitles ── */
.hero-sub { font-size: 1.04rem !important; }

/* ── Breadcrumbs ── */
.abt-breadcrumb,
.pf-breadcrumb,
.svs-breadcrumb,
.proc-breadcrumb,
.legal-breadcrumb,
.svi-breadcrumb
{
    font-size: .82rem !important;
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE SECTION PADDING
═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    :root { --sp: 88px; }
}

@media (max-width: 768px) {
    :root { --sp: 72px; }
}

@media (max-width: 480px) {
    :root { --sp: 56px; }
    .container { padding: 0 18px; }
}

/* =============================================
   CONTACT PAGE  (ct-*)
============================================= */

/* ══ HERO ══ */
.ct-hero {
    padding-top: 162px;
    padding-bottom: 80px;
    background:
        radial-gradient(ellipse 60% 80% at 110% 40%, rgba(190,42,43,.16) 0%, transparent 58%),
        url('/assets/new-brand/img/hero-banner/banner.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, rgba(4,9,20,.98) 0%, rgba(9,21,42,.94) 48%, rgba(14,32,64,.84) 100%);
}

.ct-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,160,48,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,160,48,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 0;
}

.ct-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.ct-breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: .82rem;
}
.ct-breadcrumb li a { color: rgba(255,255,255,.42); text-decoration: none; transition: color .22s; }
.ct-breadcrumb li a:hover { color: var(--gold); }
.ct-breadcrumb li span { color: rgba(255,255,255,.2); }
.ct-breadcrumb li:last-child { color: rgba(255,255,255,.72); font-weight: 500; }

.ct-hero-h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.028em;
    margin: 8px 0 18px;
    font-family: 'Outfit', sans-serif;
}
.ct-hero-h1 em { font-style: normal; color: var(--gold); }

.ct-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.58);
    line-height: 1.85;
    max-width: 580px;
    margin-bottom: 36px;
    font-weight: 400;
}

/* Quick contact row in hero */
.ct-hero-quick {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    width: fit-content;
    flex-wrap: wrap;
}

.ct-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 26px;
    text-decoration: none;
    transition: background .22s;
}

.ct-quick-item:hover { background: rgba(255,255,255,.08); }

.ct-quick-ico { font-size: 1.3rem; flex-shrink: 0; }

.ct-quick-item strong {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.ct-quick-item small {
    font-size: .7rem;
    color: rgba(255,255,255,.45);
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ct-quick-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
}

/* ══ MAIN SECTION ══ */
.ct-main {
    padding: var(--sp) 0;
    background: var(--bg1);
}

.ct-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}

/* ── Info column ── */
.ct-info-col { display: flex; flex-direction: column; gap: 24px; }

.ct-info-hdr {}

.ct-info-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.ct-info-sub {
    font-size: .93rem;
    color: var(--t3);
    line-height: 1.75;
    font-weight: 400;
}

/* Info cards */
.ct-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--bdr2);
    border-radius: 14px;
    box-shadow: var(--sh1);
    transition: box-shadow .25s, border-color .25s, transform .25s;
    border-left: 3px solid transparent;
}

.ct-info-card:hover {
    box-shadow: var(--sh2);
    border-left-color: var(--red);
    transform: translateX(4px);
}

.ct-info-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(190,42,43,.08);
    border: 1px solid rgba(190,42,43,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ct-info-body { flex: 1; }

.ct-info-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 5px;
}

.ct-info-val {
    display: block;
    font-size: .97rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: color .2s;
}

.ct-info-val:hover { color: var(--red); }

.ct-info-note {
    font-size: .78rem;
    color: var(--t3);
    margin-top: 3px;
    font-weight: 400;
}

/* WhatsApp button */
.ct-wa-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #25d366;
    border-radius: 14px;
    text-decoration: none;
    transition: background .22s, transform .22s, box-shadow .22s;
    box-shadow: 0 4px 18px rgba(37,211,102,.3);
    position: relative;
    overflow: hidden;
}

.ct-wa-btn:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,.4);
}

.ct-wa-ico {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.ct-wa-btn strong {
    display: block;
    font-size: .97rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.ct-wa-btn small {
    font-size: .78rem;
    color: rgba(255,255,255,.78);
    font-weight: 400;
}

.ct-wa-live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,.2);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .06em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.ct-wa-dot {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: acta-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

/* Trust row */
.ct-trust-row {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--bdr2);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--sh1);
}

.ct-trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    text-align: center;
}

.ct-trust-item strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.ct-trust-item span {
    font-size: .7rem;
    color: var(--t3);
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-top: 5px;
}

.ct-trust-sep { width: 1px; height: 36px; background: var(--bdr2); flex-shrink: 0; }

/* ── Form card ── */
.ct-form-card {
    background: var(--white);
    border: 1px solid var(--bdr2);
    border-radius: 20px;
    padding: 44px 48px;
    box-shadow: var(--sh2);
}

.ct-form-hdr { margin-bottom: 30px; }

.ct-form-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.ct-form-sub {
    font-size: .93rem;
    color: var(--t3);
    line-height: 1.75;
    font-weight: 400;
}

/* Success message */
.ct-success-msg {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(16,185,129,.07);
    border: 1px solid rgba(16,185,129,.25);
    border-radius: 12px;
    margin-bottom: 26px;
}

.ct-success-ico { font-size: 1.4rem; flex-shrink: 0; }

.ct-success-msg strong {
    display: block;
    font-size: .97rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 4px;
}

.ct-success-msg p { font-size: .88rem; color: #047857; margin: 0; }

/* Form fields */
.ct-form { display: flex; flex-direction: column; gap: 20px; }

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ct-form-grp { display: flex; flex-direction: column; gap: 7px; }
.ct-form-full { grid-column: 1 / -1; }

.ct-form-grp label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .04em;
    font-family: 'Outfit', sans-serif;
}

.ct-req { color: var(--red); }

.ct-form-grp input,
.ct-form-grp textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--bdr);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: .93rem;
    color: var(--t1);
    background: var(--white);
    transition: border-color .22s, box-shadow .22s;
    outline: none;
    resize: none;
}

.ct-form-grp input:focus,
.ct-form-grp textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(190,42,43,.1);
}

.ct-input-error {
    border-color: var(--red) !important;
}

.ct-field-error {
    font-size: .78rem;
    color: var(--red);
    font-weight: 500;
}

/* Contact preference radios */
.ct-contact-pref {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ct-pref-opt {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
}

.ct-pref-opt input { display: none; }

.ct-pref-opt span {
    padding: 10px 16px;
    border: 1.5px solid var(--bdr);
    border-radius: 8px;
    font-size: .84rem;
    color: var(--t2);
    font-weight: 500;
    transition: border-color .2s, background .2s, color .2s;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
}

.ct-pref-opt input:checked + span {
    border-color: var(--red);
    background: rgba(190,42,43,.07);
    color: var(--red);
    font-weight: 600;
}

.ct-pref-opt:hover span { border-color: var(--red); }

/* Service pills */
.ct-service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ct-service-pill {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.ct-service-pill input { display: none; }

.ct-service-pill span {
    display: inline-block;
    padding: 9px 16px;
    border: 1.5px solid var(--bdr);
    border-radius: 8px;
    font-size: .84rem;
    color: var(--t2);
    font-weight: 500;
    transition: border-color .2s, background .2s, color .2s;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
}

.ct-service-pill input:checked + span {
    border-color: var(--red);
    background: rgba(190,42,43,.07);
    color: var(--red);
    font-weight: 600;
}

.ct-service-pill:hover span { border-color: rgba(190,42,43,.4); }

/* Form footer */
.ct-form-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: .97rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .22s, transform .22s, box-shadow .22s;
    box-shadow: 0 4px 18px rgba(190,42,43,.3);
    letter-spacing: .02em;
}

.ct-submit-btn:hover {
    background: var(--red2);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(190,42,43,.4);
}

.ct-submit-btn:active { transform: translateY(0); }

.ct-submit-arr {
    font-size: 1.1rem;
    transition: transform .22s;
}

.ct-submit-btn:hover .ct-submit-arr { transform: translateX(4px); }

.ct-privacy-note {
    font-size: .8rem;
    color: var(--t3);
    text-align: center;
    font-weight: 400;
}

/* ══ MAP SECTION ══ */
.ct-map-section {
    position: relative;
}

.ct-map-label {
    background: var(--navy);
    padding: 16px 0;
}

.ct-map-label-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ct-map-ico {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ct-map-label-inner strong {
    display: block;
    font-size: .92rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.ct-map-label-inner span {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}

.ct-map-link {
    margin-left: auto;
    font-size: .84rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}

.ct-map-link:hover { color: #fff; }

.ct-map-embed {
    height: 420px;
    position: relative;
    overflow: hidden;
}

.ct-map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(15%);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
    .ct-layout { grid-template-columns: 340px 1fr; gap: 36px; }
    .ct-form-card { padding: 36px 36px; }
}

@media (max-width: 992px) {
    .ct-layout { grid-template-columns: 1fr; }
    .ct-info-col { max-width: 100%; }
    .ct-form-card { padding: 34px 32px; }
    .ct-hero-quick { flex-direction: column; gap: 0; width: 100%; max-width: 520px; }
    .ct-quick-sep { width: 100%; height: 1px; }
}

@media (max-width: 768px) {
    .ct-form-row { grid-template-columns: 1fr; }
    .ct-form-card { padding: 28px 24px; }
    .ct-map-embed { height: 300px; }
    .ct-map-label-inner { gap: 10px; }
    .ct-map-link { margin-left: 0; }
    .ct-info-cards { gap: 10px; }
}

@media (max-width: 480px) {
    .ct-hero { padding-top: 130px; padding-bottom: 60px; }
    .ct-form-card { padding: 22px 18px; }
    .ct-service-pills { gap: 6px; }
    .ct-contact-pref { gap: 6px; }
    .ct-trust-row { flex-direction: column; }
    .ct-trust-sep { width: 100%; height: 1px; }
}

/* =============================================
   CAT-BAR MORE DROPDOWN
============================================= */

/* ── More trigger button ── */
.cat-more-item { position: relative; }

/* ── Dropdown panel ── */
.cat-more-drop {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    min-width: 320px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(9,21,42,.16), 0 2px 8px rgba(9,21,42,.08);
    border: 1px solid var(--bdr2);
    padding: 10px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 500;
    pointer-events: none;
}

/* Show on hover */
.cat-more-item:hover .cat-more-drop,
.cat-more-item:focus-within .cat-more-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* ── Dropdown links ── */
.cat-more-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    text-decoration: none;
    transition: background .2s;
    border-bottom: 1px solid var(--bdr2);
}

.cat-more-link:last-of-type { border-bottom: none; }

.cat-more-link:hover { background: rgba(190,42,43,.05); }

.cat-more-active { background: rgba(190,42,43,.07) !important; }

.cat-more-ico {
    font-size: 1.4rem;
    width: 38px;
    height: 38px;
    background: rgba(190,42,43,.08);
    border: 1px solid rgba(190,42,43,.14);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cat-more-link strong {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2px;
    transition: color .2s;
}

.cat-more-link:hover strong { color: var(--red); }

.cat-more-link small {
    font-size: .76rem;
    color: var(--t3);
    font-weight: 400;
    line-height: 1.4;
}

/* ── Footer link ── */
.cat-more-footer {
    padding: 10px 20px;
    background: var(--bg1);
    border-top: 1px solid var(--bdr2);
    border-radius: 0 0 14px 14px;
}

.cat-more-footer a {
    font-size: .8rem;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: color .2s;
    letter-spacing: .02em;
}

.cat-more-footer a:hover { color: var(--red2); }

/* =============================================
   HEADER — COMPREHENSIVE RESPONSIVE FIX
============================================= */

/* ── Desktop baseline: ensure cat-bar fills screen ── */
.cat-bar {
    background: var(--navy2);
    border-top: 1px solid rgba(255,255,255,.1);
    width: 100%;
    position: relative;
    z-index: 999;
}

.cat-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0 auto;
    padding: 0 12px;
    max-width: 100%;
    overflow: visible;
}

.cat-item {
    flex: 1 1 auto;
    position: relative;
    min-width: 0;
}

.cat-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 11px 6px;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .01em;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    white-space: nowrap;
    transition: color .22s, border-color .22s, background .22s;
    border-bottom: 2px solid transparent;
    user-select: none;
    height: 100%;
}

/* ── 1280px — comfortable large desktop ── */
@media (min-width: 1280px) {
    .cat-list { padding: 0 24px; }
    .cat-link  { padding: 12px 10px; font-size: .8rem; gap: 5px; }
}

/* ── 1024px — laptops, slightly tighter ── */
@media (max-width: 1024px) {
    .cat-link { padding: 10px 4px; font-size: .72rem; gap: 4px; }
}

/* ── 992px — tablet: hide cat-bar, show hamburger ── */
@media (max-width: 992px) {
    /* Show hamburger on tablets too, not just mobile */
    .hamburger { display: flex !important; }

    /* Hide desktop nav + CTA */
    nav, .hdr-cta { display: none !important; }

    /* Hide category bar completely on tablets and below */
    .cat-bar, .mega-panel, .mega-bg { display: none !important; }

    /* Push header top to 0 when topbar hides at tablet */
    #header { top: 40px; }
}

/* ── 768px — mobile ── */
@media (max-width: 768px) {
    /* Topbar: show only phone on small screens */
    #topbar .tb-left .tb-item:nth-child(n+2) { display: none; }
    #topbar .tb-sep { display: none; }
    #topbar { height: 36px; }
    #header  { top: 36px; }

    /* Header height */
    .hdr-inner { height: 62px; gap: 12px; }

    /* Logo smaller */
    .logo-header .logo-img { max-width: 150px; }

    /* Container padding */
    .container { padding: 0 16px; }
}

/* ── 480px — small mobile ── */
@media (max-width: 480px) {
    #topbar { display: none; }
    #header  { top: 0; }
    .hdr-inner { height: 58px; }
    .logo-header .logo-img { max-width: 130px; }

    /* Mobile nav links bigger tap targets */
    .mob-nav a { font-size: 1.5rem; }
}

/* ── More dropdown responsive ── */
@media (max-width: 1100px) {
    .cat-more-drop { right: 0; min-width: 290px; }
}

/* ── Cat-bar SVG arrow size ── */
.cat-link svg {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

/* =============================================
   CAT-BAR  — Final container + gap fix
============================================= */

/* Cat list resets */
#catList {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Each of the 7 service items */
#catList > .cat-item:not(.cat-more-item) {
    flex: 1 1 auto;
    min-width: 0;
}

/* Separator  li */
.cat-sep-item {
    display: flex;
    align-items: center;
    padding: 0 6px;
    flex-shrink: 0;
}

.cat-sep {
    display: block;
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,.18);
    border-radius: 1px;
}

/* More button — fixed, not flex-growing */
.cat-more-item {
    flex: 0 0 auto;
    position: relative;
}

/* Responsive: ensure container works on all sizes */
@media (max-width: 1280px) {
    #catList > .cat-item:not(.cat-more-item) .cat-link { font-size: .74rem; padding: 11px 5px; }
}

@media (max-width: 1100px) {
    #catList > .cat-item:not(.cat-more-item) .cat-link { font-size: .72rem; padding: 10px 4px; }
}

/* Hide separator and more on tablet/mobile (cat-bar itself is hidden) */
@media (max-width: 992px) {
    .cat-sep-item { display: none; }
}
