@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --font-small: 0.875em;
    --font-normal: 1em;
    --font-medium: 1.2em;
    --font-large: 1.4em;

    --color-default: #555555;
    --color-green: #36ba9b;
    --color-blue: #39aed9;
    --color-yellow: #f5b946;
    --color-red: #d94352;

    --weight-light: 300;
    --weight-normal: 400;
    --weight-bold: 700;
    --weight-black: 900;

    --black-default: #000;
    --gray-700: #555555;
    --gray-500: #9a9999;
    --gray-300: #a4a3a3;

    --red-main: #e20613;
    --red-alt: #e00c19;

    --color-green: #36ba9b;
    --color-blue: #39aed9;

    --hover-red: #ff3242;
    --hover-green: #61ddbc;
    --hover-blue: #66d4f1;

    --gradient-red: linear-gradient(to right, #e00c19, #e70c1a);
    --gradient-green: linear-gradient(to right, #36ba9b, #61ddbc);
    --gradient-blue: linear-gradient(to right, #39aed9, #66d4f1);

    --radius-normal: 5px;
    --radius-medium: 10px;
    --radius-large: 20px;
    --radius-round: 50%;

    --index-back: -1;
    --index-fold: 2;
    --index-menu: 3;
    --index-modal: 4;
}

/* HEADER */
.header {
    background: linear-gradient(
        to bottom right,
        /* direção */ rgba(0, 0, 0, 0.924) 0%,
        /* topo-esquerda (bem escuro) */ rgba(0, 0, 0, 0.628) 40%,
        /* meio mais claro */ rgba(0, 0, 0, 0.1) 100%
            /* canto inferior-direito (quase nada) */
    );
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: var(--index-fold);
}

.lines .line {
    width: 0.1px;
    background: #ffffff21;
    height: 100%;
}

/* ══════════════════════════════
   NAVBAR — site-nav
══════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--index-modal);
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s;
    border-bottom: 1px solid transparent;
}

/* Scrolled state — glass dark */
.site-nav--scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Hide on scroll down */
.site-nav--hidden {
    transform: translateY(-100%);
}

.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 80px;
    gap: 32px;
}

/* Logo */
.site-nav__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-nav__logo img {
    height: 68px;
    width: 200px;
    display: block;
    object-fit: contain;
    margin-left: 8px;
}

/* Nav links */
.site-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.site-nav__link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 8px 14px;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
}

.site-nav__link:hover {
    color: #fff;
}

.site-nav__link--drop {
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-nav__chevron {
    width: 10px;
    height: 10px;
    transition: transform 0.25s;
}

.site-nav__dropdown:hover .site-nav__chevron {
    transform: rotate(180deg);
}

.site-nav__dropdown {
    position: relative;
}

.site-nav__dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 240px;
    height: 16px;
    background: transparent;
}

.site-nav__dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s,
        transform 0.25s,
        visibility 0.25s;
    pointer-events: none;
}

.site-nav__dropdown-panel:hover,
.site-nav__dropdown-panel:focus-within {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.site-nav__dropdown:hover .site-nav__dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.site-nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition:
        background 0.15s,
        color 0.15s;
}

.site-nav__dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.site-nav__dropdown-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red-main);
    transition: border-color 0.15s;
}

.site-nav__dropdown-icon svg {
    width: 14px;
    height: 14px;
}
.site-nav__dropdown-item:hover .site-nav__dropdown-icon {
    border-color: rgba(226, 6, 19, 0.4);
}

.site-nav__dropdown-item--has-sub {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    cursor: default;
    transition:
        background 0.15s,
        color 0.15s;
    user-select: none;
}

.site-nav__dropdown-item--has-sub:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.site-nav__dropdown-item--has-sub:hover .site-nav__dropdown-icon {
    border-color: rgba(226, 6, 19, 0.4);
}

/* Chevron lateral */
.site-nav__sub-chevron {
    width: 10px;
    height: 10px;
    margin-left: auto;
    flex-shrink: 0;
    opacity: 0.4;
    transition:
        opacity 0.2s,
        transform 0.2s;
}

.site-nav__dropdown-item--has-sub:hover .site-nav__sub-chevron {
    opacity: 1;
    transform: translateX(2px);
}

.site-nav__sub-panel {
    position: absolute;
    top: -1px;
    left: calc(100% + 1px);
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition:
        opacity 0.2s,
        transform 0.2s,
        visibility 0.2s;
    pointer-events: none;
    z-index: 10;
}

/* Bridge invisível entre o item e o submenu */
.site-nav__dropdown-item--has-sub::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 100%;
    background: transparent;
}

.site-nav__dropdown-item--has-sub:hover .site-nav__sub-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* ── Items do submenu ───────────────────────────── */
.site-nav__sub-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition:
        background 0.15s,
        color 0.15s;
    white-space: nowrap;
}

.site-nav__sub-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.site-nav__sub-item:hover .site-nav__dropdown-icon {
    border-color: rgba(226, 6, 19, 0.4);
}

/* ── Mobile: submenu inline ─────────────────────── */
@media screen and (max-width: 900px) {
    .site-nav__dropdown-item--has-sub {
        flex-wrap: wrap;
        cursor: pointer;
    }

    .site-nav__sub-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        border-left: 2px solid rgba(226, 6, 19, 0.25);
        margin: 6px 0 2px 40px;
        padding: 4px;
        display: none;
        width: 100%;
        flex-basis: 100%;
    }

    .site-nav__dropdown-item--has-sub:hover .site-nav__sub-panel,
    .site-nav__dropdown-item--has-sub:focus-within .site-nav__sub-panel {
        display: block;
    }

    .site-nav__sub-item {
        font-size: 14px;
        padding: 10px 10px;
    }
}

/* Actions */
.site-nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--red-main);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.site-nav__cta svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}
.site-nav__cta:hover {
    background: #c5040f;
}
.site-nav__cta:hover svg {
    transform: translate(2px, -2px);
}

/* Hamburger (hidden on desktop) */
.site-nav__hamburger {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
}

.site-nav__hamburger svg {
    width: 20px;
    height: 20px;
}

.site-nav__close {
    display: none;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    align-self: flex-end;
}

.site-nav__close svg {
    width: 20px;
    height: 20px;
}

/* Overlay */
.site-nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: calc(var(--index-modal) - 1);
    backdrop-filter: blur(2px);
}

.site-nav__overlay.open {
    display: block;
}

/* mark-book — keep for legacy blade pages */
.mark-book {
    text-decoration: none;
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    z-index: var(--index-modal);
    font-size: var(--font-normal);
    font-weight: var(--weight-bold);
    border: 1.2px solid #ccc;
    user-select: none;
    border-radius: var(--radius-normal);
}

.mark-book::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--red-main);
    border-radius: var(--radius-normal);
    z-index: var(--index-back);
    transition: 0.3s;
}

.mark-book:hover::after {
    height: 100%;
}

/* ── Responsive navbar ─────────────────── */
@media screen and (max-width: 900px) {
    .site-nav__inner {
        padding: 0 24px;
        height: 64px;
    }

    .site-nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #0a0a0a;
        border-left: 1px solid rgba(255, 255, 255, 0.07);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px 20px 40px;
        gap: 2px;
        transition: right 0.3s ease;
        z-index: var(--index-modal);
        overflow-y: auto;
    }

    .site-nav__links.open {
        right: 0;
    }

    .site-nav__close {
        display: flex;
        margin-bottom: 16px;
    }

    .site-nav__link {
        font-size: 15px;
        padding: 12px 8px;
        width: 100%;
        color: rgba(255, 255, 255, 0.75);
    }
    .site-nav__link--drop {
        justify-content: space-between;
    }

    .site-nav__dropdown {
        width: 100%;
    }
    .site-nav__dropdown-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-left: 2px solid rgba(226, 6, 19, 0.3);
        margin: 4px 0 4px 12px;
        padding: 4px;
        display: none;
    }

    .site-nav__dropdown:hover .site-nav__dropdown-panel,
    .site-nav__dropdown:focus-within .site-nav__dropdown-panel {
        display: block;
    }

    .site-nav__hamburger {
        display: flex;
    }
    .site-nav__cta {
        display: none;
    }
}

.header__info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--index-menu);
    display: flex;
    align-items: center;
    justify-content: start;
    overflow: hidden;
}

.header__info > div {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
}

.header__slide {
    flex: 0 0 99.1vw;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    padding: 0 30px;
    position: relative;
    flex-shrink: 0;
}

.header__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--index-back);
}

.header__slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.785) 0%,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 0) 82%,
            rgba(0, 0, 0, 0.886) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.785) 0%,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 0) 82%,
            rgba(0, 0, 0, 0.883) 100%
        );
    z-index: var(--index-back);
}

.header__info--title {
    font-size: var(--font-normal);
    color: var(--red-main);
    font-weight: var(--weight-bold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header__info--fraseM {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    width: 501px;
    line-height: 1.16667;
}

.header__info--tagline {
    width: 434px;
    font-size: 500;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.16667;
    color: #fff;
    line-height: 1.6666;
}

.header__info .mark-book {
    border: none;
    margin-top: 10px;
    height: 50px;
}

.header__info .mark-book::after {
    height: 100%;
}

.header__info--fraseM,
.header__info--tagline,
.header__info--title,
.header__info .mark-book {
    opacity: 0;
    transform: translateY(60%);
}

.header__slide.swiper-slide-active .header__info--fraseM,
.header__slide.swiper-slide-active .header__info--tagline,
.header__slide.swiper-slide-active .header__info--title,
.header__slide.swiper-slide-active .mark-book {
    animation: animate_text 0.8s 0.3s linear forwards;
}

@keyframes animate_text {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header__slide--mini {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: var(--index-menu);
}

.header__slide--img {
    width: 75px;
    height: 75px;
    border-radius: var(--radius-round);
    overflow: hidden;
    padding: 6px;
    transition: all 0.3s ease-in;
}

.header__slide--img.active {
    border: 3px solid var(--red-main);
}

.header__slide--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-round);
    display: block;
    transition: all 0.3s ease-in;
}

.header__slide--img.active img {
    backdrop-filter: blur(6px);
}

/* ── Shared home atoms ───────────────────── */
.home__eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 500;
    margin-bottom: 16px;
}

.home__eyebrow--dark {
    color: rgba(0, 0, 0, 0.4);
}

.home__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 11px 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.2s;
    flex-shrink: 0;
}

.home__link svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}
.home__link:hover {
    border-color: var(--red-main);
    color: #fff;
    background: rgba(226, 6, 19, 0.07);
}
.home__link:hover svg {
    transform: translate(2px, -2px);
}

.home__link--dark {
    color: rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 0, 0, 0.14);
}
.home__link--dark:hover {
    border-color: var(--red-main);
    color: #000;
    background: rgba(226, 6, 19, 0.05);
}

/* ── HOME ABOUT ──────────────────────────── */
.home__about {
    background: #000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: hidden;
}

.home__about--left {
    padding: 80px 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.home__about--left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-main);
}

.home__about--title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.home__about--text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.home__about--right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.home__about--pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home__about--pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home__about--pillar:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.home__about--pillar-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(226, 6, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red-main);
}

.home__about--pillar-icon svg {
    width: 16px;
    height: 16px;
}

.home__about--pillar strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.home__about--pillar p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.home__about--kpis {
    display: flex;
    align-items: center;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    gap: 0;
}

.home__about--kpi {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 32px;
}

.home__kpi-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 32px;
    flex-shrink: 0;
}

.home__kpi-num {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.home__kpi-lbl {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* ── HOME SERVICES ───────────────────────── */
.home__services {
    background: #f5f4f0;
    overflow-x: hidden;
}

.home__services--header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 72px 60px 56px;
    gap: 40px;
    flex-wrap: wrap;
}

.home__services--title {
    font-size: 34px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.25;
    letter-spacing: -0.3px;
    max-width: 520px;
}

.home__services--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding: 0 25px;
    gap: 10px;
}

.home__svc-card {
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.3s;
}

.home__svc-card:last-child {
    border-right: none;
}
.home__svc-card:hover {
    background: #eeedea;
}

.home__svc-card--img-wrap {
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
}

.home__svc-card--img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.7);
    transition:
        transform 0.6s ease,
        filter 0.4s;
}

.home__svc-card:hover .home__svc-card--img-wrap img {
    transform: scale(1.04);
    filter: saturate(0.9);
}

.home__svc-card--body {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home__svc-card--num {
    font-size: 10px;
    letter-spacing: 2.5px;
    color: rgba(0, 0, 0, 0.25);
    font-weight: 500;
    margin-bottom: 14px;
}

.home__svc-card--title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.home__svc-card--desc {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
}

.home__svc-card--link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--red-main);
    transition: gap 0.2s;
}

.home__svc-card--link svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}
.home__svc-card--link:hover svg {
    transform: translate(3px, -3px);
}

.home__services--ticker {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 60px;
    background: #000;
    flex-wrap: wrap;
}

.home__ticker--label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    flex-shrink: 0;
}

.home__ticker--divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.home__ticker--text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    flex: 1;
    min-width: 200px;
}

.home__ticker--cta {
    padding: 10px 22px;
    background: var(--red-main);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s;
}

.home__ticker--cta:hover {
    background: #c5040f;
}

/* ── HOME PROJECTS ───────────────────────── */
.home__projects {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    overflow-x: hidden;
}

.home__projects--header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 72px 60px 52px;
    gap: 40px;
    flex-wrap: wrap;
}

.home__projects--title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.3px;
    max-width: 520px;
}

.home__projects--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 25px;
}

.home__projects--col {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.home__proj-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    min-height: 220px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home__proj-card:last-child {
    border-bottom: none;
}

.home__proj-card--featured {
    min-height: 660px;
    border-bottom: none;
}

.home__proj-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(0.7);
    transition:
        transform 0.7s ease,
        filter 0.5s ease;
    position: absolute;
    inset: 0;
}

.home__proj-card:hover img {
    transform: scale(1.05);
    filter: saturate(0.8) brightness(0.8);
}

.home__proj-card--overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.2) 60%,
        transparent 100%
    );
    z-index: 1;
}

.home__proj-card--content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    z-index: 2;
}

.home__proj-card--tag {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 8px;
}

.home__proj-card--title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 14px;
}

.home__proj-card--featured .home__proj-card--title {
    font-size: 24px;
}

.home__proj-card--meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home__proj-card--meta > span:first-child {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.home__proj-card--arrow {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s;
}

.home__proj-card--arrow svg {
    width: 12px;
    height: 12px;
    transition: transform 0.25s;
}
.home__proj-card:hover .home__proj-card--arrow {
    background: var(--red-main);
    border-color: var(--red-main);
    color: #fff;
}
.home__proj-card:hover .home__proj-card--arrow svg {
    transform: translate(2px, -2px);
}

/* ── BLOG HOME ───────────────────────────── */
.blog__section--home {
    padding: 0;
    background: #f5f4f0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-x: hidden;
}

.home__blog--header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 72px 60px 52px;
    gap: 40px;
    flex-wrap: wrap;
}

.home__blog--title {
    font-size: 34px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.25;
    letter-spacing: -0.3px;
    max-width: 520px;
}

.blog__posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(0,0,0,0.07);
    padding: 0 25px;
    gap: 20px;
}
/*
    POST CARDS (home + blog)
*/


.post {
    border-right: 1px solid rgba(0,0,0,0.07);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.3s;
}

.post:last-child { border-right: none; }
.post:hover { background: #eeedea; }

.post__img-wrap {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.post__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.7);
    transition: transform 0.6s ease, filter 0.4s;
}

.post:hover .post__img-wrap img {
    transform: scale(1.04);
    filter: saturate(0.9);
}

.post__body--home {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.post__category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    text-decoration: none;
}

.post__date {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(0,0,0,0.3);
    text-transform: uppercase;
}

.post__title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.4;
    flex: 1;
    margin-bottom: 20px;
}

.post__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.07);
}

.post__read {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(0,0,0,0.3);
    text-transform: uppercase;
}

.post__arrow {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.4);
    transition: all 0.25s;
}

.post__arrow svg { width: 12px; height: 12px; transition: transform 0.25s; }
.post:hover .post__arrow { background: var(--red-main); border-color: var(--red-main); color: #fff; }
.post:hover .post__arrow svg { transform: translate(2px,-2px); }


/*
    POST DETAILS
*/

.post__banner {
    position: relative;
    height: 80vh;
    min-height: 560px;
    z-index: 1;
}

.post__banner--inner {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            170deg,
            rgba(0, 0, 0, 0.97) 0%,
            rgba(8, 4, 4, 0.88) 55%,
            rgba(0, 0, 0, 0.82) 100%
        ),
        url("../image/service3.webp") center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 60px;
    position: relative;
}

.post__banner--inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-main);
    z-index: 2;
}

.post__banner--content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.post__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.post__breadcrumb a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.post__breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.7);
}
.post__breadcrumb svg {
    width: 10px;
    height: 10px;
}

.post__banner--meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post__banner--tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red-main);
    border: 1px solid rgba(226, 6, 19, 0.4);
    font-weight: 600;
}

.post__banner--date,
.post__banner--read {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.post__banner--date::before,
.post__banner--read::before {
    content: "—";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.15);
}

.post__banner--title {
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    max-width: 780px;
}

.post__banner--author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.post__author-avatar {
    width: 40px;
    height: 40px;
    background: rgba(226, 6, 19, 0.15);
    border: 1px solid rgba(226, 6, 19, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--red-main);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.post__author-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.post__author-role {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.3px;
}

/* ── Hero image ──────────────────────────── */
.post__hero {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.post__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.65) brightness(0.75);
}

.post__hero--overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* ── Page layout ─────────────────────────── */
.post__page {
    background: #000;
}

.post__body {
    display: grid;
    grid-template-columns: 1fr 320px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 60px;
    align-items: start;
}

/* ── Article content ─────────────────────── */
.post__main {
    padding: 72px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 60px;
}

.post__lead {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-weight: 400;
    letter-spacing: -0.1px;
}

.post__section {
    margin-bottom: 40px;
}

.post__section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-bottom: 18px;
    padding-top: 12px;
}

.post__section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    margin-bottom: 16px;
}

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

/* Highlight block */
.post__highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(226, 6, 19, 0.05);
    border: 1px solid rgba(226, 6, 19, 0.15);
    border-left: 3px solid var(--red-main);
    padding: 28px;
    margin-bottom: 40px;
}

.post__highlight--icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(226, 6, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red-main);
}

.post__highlight--icon svg {
    width: 18px;
    height: 18px;
}

.post__highlight strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.post__highlight p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin: 0;
}

/* Image block */
.post__img-block {
    margin-bottom: 40px;
    position: relative;
}

.post__img-block img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    filter: saturate(0.65) brightness(0.8);
}

.post__img-caption {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1px;
}

/* Checklist */
.post__checklist {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px 36px 36px 32px;
    margin-bottom: 40px;
    position: relative;
}

.post__checklist::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-main);
}

.post__checklist--header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.post__checklist--label {
    display: block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 8px;
}

.post__checklist--header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.post__checklist--list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.post__checklist--list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.post__checklist--list li:last-child {
    border-bottom: none;
}

.post__checklist--marker {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(226, 6, 19, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
}

.post__checklist--marker::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: 1.5px solid var(--red-main);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Quote */
.post__quote {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
}

.post__quote--bar {
    width: 3px;
    background: var(--red-main);
    flex-shrink: 0;
}

.post__quote blockquote {
    padding: 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #080808;
}

.post__quote blockquote p {
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
}

.post__quote blockquote cite {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    font-style: normal;
}

/* Tags */
.post__tags {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.post__tags--label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
    flex-shrink: 0;
}

.post__tags--list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.post__tag-item {
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.2s;
}

.post__tag-item:hover {
    border-color: var(--red-main);
    color: #fff;
    background: rgba(226, 6, 19, 0.06);
}

/* ── Sidebar ─────────────────────────────── */
.post__sidebar {
    padding: 72px 0 72px 0;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.post__sidebar--section {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.post__sidebar--section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.post__sidebar--title {
    display: block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
    margin-bottom: 18px;
}

/* Sidebar CTA */
.post__sidebar--cta {
    background: rgba(226, 6, 19, 0.05);
    border: 1px solid rgba(226, 6, 19, 0.15);
    padding: 28px;
}

.post__sidebar--eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 10px;
}

.post__sidebar--cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 18px;
}

.post__sidebar--cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    background: var(--red-main);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s;
}

.post__sidebar--cta-btn svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}
.post__sidebar--cta-btn:hover {
    background: #c5040f;
}
.post__sidebar--cta-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Share */
.post__share {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.post__share--btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    transition: all 0.2s;
}

.post__share--btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
}

.post__share--btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

/* ── Related posts ───────────────────────── */
.post__related {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.post__related--header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 64px 60px 48px;
    flex-wrap: wrap;
    gap: 16px;
}

.post__related--eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 8px;
}

.post__related--title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.post__related--all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
    flex-shrink: 0;
    padding-bottom: 6px;
}

.post__related--all svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}
.post__related--all:hover {
    color: #fff;
}
.post__related--all:hover svg {
    transform: translate(2px, -2px);
}

.post__related--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.post__related--card {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.3s;
}

.post__related--card:last-child {
    border-right: none;
}
.post__related--card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.post__related--card-img {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.post__related--card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(0.78);
    transition:
        transform 0.6s ease,
        filter 0.5s ease;
}

.post__related--card:hover .post__related--card-img img {
    transform: scale(1.05);
    filter: saturate(0.85) brightness(0.9);
}

.post__related--card-body {
    padding: 28px 32px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post__related--card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.post__rel-tag {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    border: 1px solid rgba(226, 6, 19, 0.3);
    padding: 3px 8px;
}

.post__rel-date {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}

.post__related--card-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    flex: 1;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.post__related--card:hover .post__related--card-body h3 {
    color: rgba(255, 255, 255, 0.8);
}

.post__related--card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.post__rel-read {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}

.post__rel-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.25s;
    flex-shrink: 0;
}

.post__rel-arrow svg {
    width: 13px;
    height: 13px;
    transition: transform 0.25s;
}

.post__related--card:hover .post__rel-arrow {
    background: var(--red-main);
    border-color: var(--red-main);
    color: #fff;
}

.post__related--card:hover .post__rel-arrow svg {
    transform: translate(2px, -2px);
}

/* CTA card */
.post__related--card-cta {
    background: rgba(226, 6, 19, 0.04);
    border-right: none;
    position: relative;
}

.post__related--card-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red-main);
}

.post__related--card-cta:hover {
    background: rgba(226, 6, 19, 0.08);
}

.post__rel-cta--inner {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post__rel-cta--eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 12px;
}

.post__rel-cta--inner h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
}

.post__rel-cta--inner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 28px;
}

.post__rel-cta--link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: var(--red-main);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    align-self: flex-start;
}

.post__rel-cta--link svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}
.post__related--card-cta:hover .post__rel-cta--link {
    background: #c5040f;
}
.post__related--card-cta:hover .post__rel-cta--link svg {
    transform: translate(2px, -2px);
}

/* ── Post content typography ─────────────── */
.post__content {
    padding: 72px 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.9;
}

.post__content h1,
.post__content h2,
.post__content h3,
.post__content h4 {
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin: 40px 0 16px;
}

.post__content h1 {
    font-size: 32px;
}
.post__content h2 {
    font-size: 26px;
    padding-top: 12px;
}
.post__content h3 {
    font-size: 20px;
}
.post__content h4 {
    font-size: 17px;
}

.post__content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.55);
}

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

.post__content a {
    color: var(--red-main);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post__content strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}
.post__content em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

.post__content ul,
.post__content ol {
    margin: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post__content ul li {
    list-style: disc;
}
.post__content ol li {
    list-style: decimal;
}

.post__content blockquote {
    border-left: 3px solid var(--red-main);
    padding: 20px 24px;
    margin: 32px 0;
    background: #080808;
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.post__content img {
    width: 100%;
    height: auto;
    display: block;
    margin: 32px 0;
    filter: saturate(0.7) brightness(0.85);
}

.post__content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 40px 0;
}

.post__content code {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: monospace;
}

.post__content pre {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
    overflow-x: auto;
    margin: 24px 0;
    border-left: 3px solid var(--red-main);
}

.post__content pre code {
    background: none;
    border: none;
    padding: 0;
}

/* ── Newsletter Popup ────────────────────── */
.nl__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.nl__overlay.is-visible {
    opacity: 1;
    pointer-events: all;
}

.nl__box {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 3px solid var(--red-main);
    max-width: 520px;
    width: 100%;
    padding: 48px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

.nl__overlay.is-visible .nl__box {
    transform: translateY(0);
}

.nl__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
}

.nl__close:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.nl__close svg {
    width: 14px;
    height: 14px;
}

.nl__eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 12px;
}

.nl__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}

.nl__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 28px;
}

.nl__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nl__input {
    width: 100%;
    padding: 14px 16px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.nl__input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}
.nl__input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.nl__submit {
    width: 100%;
    padding: 14px;
    background: var(--red-main);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nl__submit:hover {
    background: #c5040f;
}
.nl__submit svg {
    width: 13px;
    height: 13px;
}

.nl__disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.nl__success {
    text-align: center;
    display: none;
}

.nl__success-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(226, 6, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--red-main);
}

.nl__success-icon svg {
    width: 22px;
    height: 22px;
}

.nl__success h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.nl__success p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

@media (max-width: 540px) {
    .nl__box {
        padding: 36px 28px;
    }
    .nl__title {
        font-size: 20px;
    }
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .post__body {
        padding: 0 40px;
        gap: 40px;
    }
    .post__banner--title {
        font-size: 36px;
    }
    .post__main {
        padding-right: 40px;
    }
}

@media (max-width: 820px) {
    .post__banner {
        height: 70vh;
    }
    .post__banner--inner {
        padding: 0 24px 44px;
    }
    .post__banner--title {
        font-size: 28px;
    }

    .post__hero {
        height: 280px;
    }

    .post__body {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 0;
    }

    .post__main {
        border-right: none;
        padding-right: 0;
        padding: 48px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .post__sidebar {
        position: static;
        padding: 40px 0;
    }

    .post__related--header {
        padding: 48px 24px 36px;
    }
    .post__related--title {
        font-size: 24px;
    }
    .post__related--grid {
        grid-template-columns: 1fr;
    }
    .post__related--card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .post__related--card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 430px) {
    .post__banner {
        height: 80vh;
    }
    .post__banner--title {
        font-size: 22px;
    }
    .post__banner--meta {
        gap: 8px;
    }
    .post__lead {
        font-size: 16px;
    }
    .post__section h2 {
        font-size: 20px;
    }
    .post__quote blockquote p {
        font-size: 17px;
    }
    .post__author-card {
        flex-direction: column;
    }
    .post__related--header {
        flex-direction: column;
        align-items: flex-start;
    }
    .post__rel-cta--inner {
        padding: 36px 28px;
    }
}

/**PROJECTS PAGE**/

/* Banner */
.projects__banner {
    position: relative;
    height: 100vh;
    z-index: 1;
}

.project__banner--new {
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(15, 5, 5, 0.88) 100%
        ),
        url("../image/project-banner.webp");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 60px;
    position: relative;
}

.project__banner--new::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-main);
    z-index: 2;
}

.project__banner--new__content {
    position: relative;
    z-index: 2;
}

.proj-banner-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    margin-bottom: 16px;
    font-weight: 500;
}

.project__banner--new__content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.5px;
    max-width: 700px;
    margin-bottom: 0;
}

.proj-banner-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proj-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 40px;
}

.proj-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    margin-right: 40px;
    flex-shrink: 0;
}

.proj-stat-number {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.proj-stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* Filter bar */
.projects__section--new {
    background: #000;
}

.proj-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #0e0e0e;
    position: sticky;
    top: 0;
    z-index: 5;
}

.proj-filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.proj-filter-tag {
    padding: 9px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: none;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.proj-filter-tag:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.proj-filter-tag.active {
    border-color: var(--red-main);
    color: #fff;
    background: rgba(226, 6, 19, 0.08);
}

.proj-filter-count {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* Project grid */
.proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #000;
    padding: 0 25px;
    gap: 10px;
}

.proj-card {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
    overflow: hidden;
}

.proj-card:nth-child(3n) {
    border-right: none;
}

.proj-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.proj-card-img-wrap {
    overflow: hidden;
    height: 260px;
    flex-shrink: 0;
}

.proj-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.65) brightness(0.85);
    transition:
        filter 0.5s ease,
        transform 0.6s ease;
}

.proj-card:hover .proj-card-img-wrap img {
    filter: saturate(0.85) brightness(0.95);
    transform: scale(1.04);
}

.proj-card-body {
    padding: 28px 32px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.proj-card-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 12px;
}

.proj-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.proj-card:hover .proj-card-title {
    color: #fff;
}

.proj-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
}

.proj-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.proj-card-date {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.proj-card-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.proj-card-arrow svg {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.proj-card:hover .proj-card-arrow {
    background: var(--red-main);
    border-color: var(--red-main);
    color: #fff;
}

.proj-card:hover .proj-card-arrow svg {
    transform: translate(2px, -2px);
}

/* Keep old .project__banner for project detail page (project.blade.php) */
.project__banner {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.689) 10%,
            rgba(0, 0, 0, 0.574) 70%,
            rgba(0, 0, 0, 0.801) 100%
        ),
        url("../image/project-banner.webp");
    background-size: cover;
    background-position: center;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding: 0 20px 20vh;
    gap: 40px;
}

.project__banner > div {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 140px;
}

.project__banner > div h1 {
    max-width: 650px;
    color: #fff;
    font-weight: 600;
    font-size: 45px;
    letter-spacing: 1.5px;
}

.project__banner .project__banner--contact p {
    max-width: 460px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.project__banner .mark-book::after {
    height: 100%;
}

/*SERVICE PAGE*/
/* ── Banner ─────────────────────────────── */
.svc__banner {
    position: relative;
    height: 100vh;
    min-height: 640px;
    z-index: 1;
}

.svc__banner--inner {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.97) 0%,
            rgba(10, 5, 5, 0.82) 55%,
            rgba(0, 0, 0, 0.75) 100%
        ),
        url("../image/service6.webp") center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 64px;
    position: relative;
}

.svc__banner--inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-main);
    z-index: 2;
}

.svc__banner--content {
    max-width: 700px;
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

.svc__banner--eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 500;
    margin-bottom: 18px;
}

.svc__banner--title {
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.svc__banner--sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 32px;
}

.svc__banner--cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--red-main);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.svc__banner--cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.svc__banner--cta:hover {
    background: #c5040f;
}
.svc__banner--cta:hover svg {
    transform: translate(2px, -2px);
}

.svc__banner--meta {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    position: relative;
    z-index: 2;
}

.svc__banner--meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 40px;
}

.svc__banner--meta-item:last-child {
    border-right: none;
    margin-right: 0;
}

.svc__meta-num {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.svc__meta-lbl {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Intro strip ─────────────────────────── */
.svc__intro-strip {
    background: #0e0e0e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.svc__intro-strip--item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.svc__intro-strip--item:last-child {
    border-right: none;
}

.svc__intro-strip--icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(226, 6, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red-main);
}

.svc__intro-strip--icon svg {
    width: 18px;
    height: 18px;
}

.svc__intro-strip--item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.svc__intro-strip--item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

/* ── Services list ────────────────────────── */
.svc__list {
    background: #000;
}

.svc__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.svc__row--reverse {
    direction: rtl;
}
.svc__row--reverse > * {
    direction: ltr;
}

.svc__row--img {
    position: relative;
    overflow: hidden;
}

.svc__row--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(0.75);
    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}

.svc__row:hover .svc__row--img img {
    transform: scale(1.04);
    filter: saturate(0.8) brightness(0.85);
}

.svc__row--img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.svc__row--reverse .svc__row--img-overlay {
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.svc__row--number {
    position: absolute;
    top: 28px;
    left: 28px;
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.35);
    z-index: 2;
    font-weight: 500;
}

.svc__row--content {
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.svc__row--tag {
    display: block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 14px;
}

.svc__row--title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.svc__row--desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 28px;
}

.svc__row--features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc__row--features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.svc__row--features li::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--red-main);
    flex-shrink: 0;
}

.svc__row--actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────── */
.svc__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.svc__btn--primary {
    padding: 12px 24px;
    background: var(--red-main);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.svc__btn--primary:hover {
    background: #c5040f;
    color: #fff;
}

.svc__btn--ghost {
    padding: 12px 24px;
    background: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.svc__btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.svc__btn--outline {
    padding: 16px 32px;
    background: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.svc__btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.svc__btn--lg {
    padding: 16px 36px;
    font-size: 13px;
}

/* ── CTA ──────────────────────────────────── */
.svc__cta {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.svc__cta--inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
}

.svc__cta--left {
    padding: 72px 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.svc__cta--left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-main);
}

.svc__cta--eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
}

.svc__cta--title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.svc__cta--right {
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.svc__cta--right > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    max-width: 420px;
}

.svc__cta--btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .svc__row--title {
        font-size: 28px;
    }
    .svc__row--content {
        padding: 48px 40px;
    }
    .svc__cta--title {
        font-size: 30px;
    }
}

@media (max-width: 820px) {
    .svc__banner--title {
        font-size: 36px;
    }
    .svc__banner--inner {
        padding: 0 24px 48px;
    }
    .svc__banner--meta {
        flex-wrap: wrap;
        gap: 20px;
    }
    .svc__banner--meta-item {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }

    .svc__intro-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc__intro-strip--item:nth-child(2) {
        border-right: none;
    }

    .svc__row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .svc__row--reverse {
        direction: ltr;
    }
    .svc__row--img {
        height: 300px;
    }
    .svc__row--content {
        padding: 40px 28px;
    }
    .svc__row--title {
        font-size: 26px;
    }

    .svc__cta--inner {
        grid-template-columns: 1fr;
    }
    .svc__cta--left {
        padding: 48px 28px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .svc__cta--right {
        padding: 40px 28px;
    }
    .svc__cta--title {
        font-size: 26px;
    }
}

@media (max-width: 430px) {
    .svc__banner {
        min-height: 100vh;
    }
    .svc__banner--title {
        font-size: 28px;
    }
    .svc__banner--sub {
        font-size: 14px;
    }
    .svc__banner--meta {
        display: none;
    }

    .svc__intro-strip {
        grid-template-columns: 1fr;
    }
    .svc__intro-strip--item {
        border-right: none;
    }
    .svc__intro-strip--item:nth-child(2) {
        border-right: none;
    }

    .svc__row--actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .svc__btn--lg {
        width: 100%;
        justify-content: center;
    }
}

/**Other pages***/
.header__others {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header__others .header__nav {
    width: 100%;
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: var(--index-modal);
}

/*PROJECT DETAILS*/

/* ══════════════════════════════
   PROJECT DETAIL — pdh
══════════════════════════════ */

/* Banner extras */
.pdh__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

.pdh__breadcrumb a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.pdh__breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.7);
}
.pdh__breadcrumb svg {
    width: 10px;
    height: 10px;
}

.pdh__banner-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.pdh__banner-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-main);
    border: 1px solid rgba(226, 6, 19, 0.4);
    padding: 4px 12px;
    font-weight: 600;
}

.pdh__banner-year {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.pdh__banner-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1000;
}

.pdh__banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--red-main);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s;
}

.pdh__banner-cta svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}
.pdh__banner-cta:hover {
    background: #c5040f;
}
.pdh__banner-cta:hover svg {
    transform: translate(2px, -2px);
}

.pdh__banner-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.pdh__banner-back svg {
    width: 13px;
    height: 13px;
}
.pdh__banner-back:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ── Info strip ──────────────────────────── */
.pdh__strip {
    display: flex;
    background: #0e0e0e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pdh__strip-item {
    flex: 1;
    padding: 24px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pdh__strip-item:last-child {
    border-right: none;
}

.pdh__strip-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.pdh__strip-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.pdh__strip-value--done {
    color: #4ade80;
}

/* ── Body layout ─────────────────────────── */
.pdh {
    background: #000;
}

.pdh__body {
    display: grid;
    grid-template-columns: 1fr 340px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pdh__main {
    padding: 60px 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pdh__section {
    padding-bottom: 52px;
    margin-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pdh__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pdh__section-label {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pdh__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
}

/* Gallery */
.pdh__gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 3px;
}

.pdh__gallery-main {
    grid-row: span 2;
    overflow: hidden;
}

.pdh__gallery-main img,
.pdh__gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.65) brightness(0.85);
    transition:
        filter 0.4s,
        transform 0.5s;
}

.pdh__gallery-main:hover img,
.pdh__gallery-thumb:hover img {
    filter: saturate(0.9) brightness(0.95);
    transform: scale(1.03);
}

.pdh__gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pdh__gallery-thumb {
    overflow: hidden;
}

/* Results */
.pdh__results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pdh__result {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pdh__result::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--red-main);
}

.pdh__result-num {
    font-size: 34px;
    font-weight: 700;
    color: var(--red-main);
    line-height: 1;
}

.pdh__result-txt {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* Objectives */
.pdh__objectives {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pdh__objective {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pdh__objective:last-child {
    border-bottom: none;
}

.pdh__objective-marker {
    width: 20px;
    height: 1px;
    background: var(--red-main);
    flex-shrink: 0;
    margin-top: 10px;
}

.pdh__objective p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

/* ── Sidebar ─────────────────────────────── */
.pdh__sidebar {
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pdh__sidebar-section {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pdh__sidebar-title {
    display: block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
    margin-bottom: 20px;
}

.pdh__info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pdh__info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    gap: 12px;
}

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

.pdh__info-key {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.pdh__info-val {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    text-align: right;
}

.pdh__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pdh__tag {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.pdh__sidebar-cta {
    margin-top: auto;
    padding: 24px;
    border: 1px solid rgba(226, 6, 19, 0.2);
    background: rgba(226, 6, 19, 0.04);
}

.pdh__sidebar-cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 18px;
}

.pdh__cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    background: var(--red-main);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s;
}

.pdh__cta-btn svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}
.pdh__cta-btn:hover {
    background: #c5040f;
}
.pdh__cta-btn:hover svg {
    transform: translate(2px, -2px);
}

/* ── Related projects ────────────────────── */
.pdh__related {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pdh__related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.pdh__related-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.pdh__related-all svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}
.pdh__related-all:hover {
    color: #fff;
}
.pdh__related-all:hover svg {
    transform: translate(2px, -2px);
}

.pdh__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pdh__related-card {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.3s;
}

.pdh__related-card:last-child {
    border-right: none;
}
.pdh__related-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pdh__related-img {
    height: 200px;
    overflow: hidden;
}

.pdh__related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(0.75);
    transition:
        transform 0.6s ease,
        filter 0.4s;
}

.pdh__related-card:hover .pdh__related-img img {
    transform: scale(1.05);
    filter: saturate(0.85) brightness(0.9);
}

.pdh__related-body {
    padding: 22px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pdh__related-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
}

.pdh__related-body h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.pdh__related-year {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
    .pdh__body {
        grid-template-columns: 1fr 300px;
    }
    .pdh__main {
        padding: 48px 40px;
    }
    .pdh__results {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .pdh__strip {
        flex-wrap: wrap;
    }
    .pdh__strip-item {
        flex-basis: 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .pdh__strip-item:nth-child(2n) {
        border-right: none;
    }

    .pdh__body {
        grid-template-columns: 1fr;
    }
    .pdh__main {
        padding: 40px 24px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .pdh__sidebar {
        padding: 36px 24px;
    }

    .pdh__gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 260px 160px 160px;
    }
    .pdh__gallery-main {
        grid-row: span 1;
    }
    .pdh__gallery-thumbs {
        flex-direction: row;
    }

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

    .pdh__banner-actions {
        padding: 20px 24px;
        flex-wrap: wrap;
    }

    .pdh__related-header {
        padding: 32px 24px 24px;
    }
    .pdh__related-grid {
        grid-template-columns: 1fr;
    }
    .pdh__related-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 430px) {
    .pdh__strip-item {
        flex-basis: 100%;
        border-right: none;
    }
    .pdh__results {
        grid-template-columns: 1fr;
    }
    .pdh__gallery {
        grid-template-rows: 220px 120px 120px;
    }
    .pdh__gallery-thumbs {
        flex-direction: column;
    }
}

/**BLOG PAGE**/

/* ── Banner ─────────────────────────────── */
.blogs__banner {
    position: relative;
    height: 100vh;
    min-height: 620px;
    z-index: 1;
}

.blog__banner--new {
    background:
        linear-gradient(
            160deg,
            rgba(0, 0, 0, 0.97) 0%,
            rgba(8, 4, 4, 0.85) 50%,
            rgba(0, 0, 0, 0.78) 100%
        ),
        url("../image/blog-banner.webp") center/cover;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 0;
    position: relative;
}

.blog__banner--new::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-main);
    z-index: 2;
}

.blog__banner--new__content {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 5;
}

.blog__banner--eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 500;
    margin-bottom: 18px;
}

.blog__banner--title {
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.blog__banner--sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
}

/* Search bar */
.blog__banner--search {
    display: flex;
    align-items: center;
    max-width: 520px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s;
    position: relative;
    z-index: 5;
}

.blog__banner--search:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
}

.blog__banner--search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 14px;
    color: #fff;
    font-family: "Inter", sans-serif;
}

.blog__banner--search input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.blog__banner--search button {
    background: none;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
    height: 100%;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.blog__banner--search button:hover {
    color: var(--red-main);
}
.blog__banner--search button svg {
    width: 18px;
    height: 18px;
}

/* Category pills */
.blog__banner--cats {
    padding: 24px 0;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog__banner--cats-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.blog__banner--cats-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog__cat {
    padding: 7px 16px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.blog__cat:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.blog__cat.active {
    border-color: var(--red-main);
    color: #fff;
    background: rgba(226, 6, 19, 0.1);
}

/* ── Shared atoms ─────────────────────────── */
.blog__tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red-main);
    border: 1px solid rgba(226, 6, 19, 0.35);
    font-weight: 600;
    flex-shrink: 0;
}

.blog__tag--sm {
    font-size: 9px;
    padding: 3px 8px;
}

.blog__date {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.blog__read {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}

/* ── Blog section wrapper ─────────────────── */
.blog__section--new {
    background: #000;
}

/* ── Featured article ─────────────────────── */
.blog__featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog__featured--img-wrap {
    position: relative;
    overflow: hidden;
    display: block;
}

.blog__featured--img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(0.75);
    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}

.blog__featured:hover .blog__featured--img-wrap img {
    transform: scale(1.04);
    filter: saturate(0.8) brightness(0.85);
}

.blog__featured--img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}

.blog__featured--content {
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.blog__featured--meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog__featured--title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-bottom: 18px;
}

.blog__featured--title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.blog__featured--title a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.blog__featured--desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 36px;
}

.blog__featured--footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
    gap: 16px;
}

.blog__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog__author--avatar {
    width: 38px;
    height: 38px;
    background: rgba(226, 6, 19, 0.15);
    border: 1px solid rgba(226, 6, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--red-main);
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.blog__author--name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.blog__author--role {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}

.blog__read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.2s;
}

.blog__read-more svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}
.blog__read-more:hover {
    border-color: var(--red-main);
    color: #fff;
    background: rgba(226, 6, 19, 0.07);
}
.blog__read-more:hover svg {
    transform: translate(2px, -2px);
}

/* ── Section header ─────────────────────── */
.blog__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: #080808;
}

.blog__section-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.blog__section-count {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

/* ── Posts grid ─────────────────────────── */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #000;
    padding: 0 25px;
    gap: 10px;
}

.blog__post {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
    overflow: hidden;
}

.blog__post:nth-child(3n) {
    border-right: none;
}
.blog__post:hover {
    background: rgba(255, 255, 255, 0.02);
}

.blog__post--img-wrap {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog__post--img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(0.8);
    transition:
        transform 0.6s ease,
        filter 0.5s ease;
}

.blog__post:hover .blog__post--img-wrap img {
    transform: scale(1.05);
    filter: saturate(0.85) brightness(0.9);
}

.blog__post--body {
    padding: 28px 32px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog__post--meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.blog__post--title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    letter-spacing: -0.15px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.blog__post:hover .blog__post--title {
    color: rgba(255, 255, 255, 0.8);
}

.blog__post--excerpt {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
}

.blog__post--footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog__post--arrow {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.25s;
}

.blog__post--arrow svg {
    width: 13px;
    height: 13px;
    transition: transform 0.25s;
}

.blog__post:hover .blog__post--arrow {
    background: var(--red-main);
    border-color: var(--red-main);
    color: #fff;
}

.blog__post:hover .blog__post--arrow svg {
    transform: translate(2px, -2px);
}

/* ── Pagination ─────────────────────────── */
.blog__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 56px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog__page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.blog__page-num:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}
.blog__page-num.active {
    color: #fff;
    border-color: var(--red-main);
    background: rgba(226, 6, 19, 0.08);
}

.blog__page-ellipsis {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.2);
    padding: 0 4px;
}

.blog__page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.2s;
}

.blog__page-btn svg {
    width: 16px;
    height: 16px;
}
.blog__page-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.blog__page-btn[aria-disabled="true"] {
    opacity: 0.3;
    pointer-events: none;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
    .blog__banner--title {
        font-size: 40px;
    }
    .blog__featured--title {
        font-size: 24px;
    }
    .blog__featured--content {
        padding: 48px 40px;
    }
}

@media (max-width: 820px) {
    .blogs__banner {
        height: 70vh;
    }
    .blog__banner--new {
        padding: 0 24px 0;
    }
    .blog__banner--title {
        font-size: 32px;
    }
    .blog__banner--cats {
        flex-wrap: wrap;
        gap: 10px;
    }

    .blog__featured {
        grid-template-columns: 1fr;
    }
    .blog__featured--img-wrap {
        height: 280px;
    }
    .blog__featured--content {
        padding: 36px 28px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .blog__featured--title {
        font-size: 22px;
    }

    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog__post:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    .blog__post:nth-child(2n) {
        border-right: none;
    }

    .blog__section-header {
        padding: 20px 24px;
    }
    .blog__pagination {
        padding: 40px 24px;
    }
}

@media (max-width: 430px) {
    .blogs__banner {
        height: 80vh;
    }
    .blog__banner--title {
        font-size: 26px;
    }
    .blog__banner--sub {
        font-size: 14px;
    }
    .blog__banner--cats {
        display: none;
    }

    .blog__grid {
        grid-template-columns: 1fr;
    }
    .blog__post:nth-child(3n),
    .blog__post:nth-child(2n) {
        border-right: none;
    }

    .blog__featured--footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/**
ABOUT PAGE
***/

/* ── Banner ──────────────────────────────── */
.abouts__banner {
    position: relative;
    height: 100vh;
    min-height: 640px;
    z-index: 1;
}

.about__banner--new {
    background:
        linear-gradient(
            150deg,
            rgba(0, 0, 0, 0.97) 0%,
            rgba(8, 4, 4, 0.86) 50%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        url("../image/about-banner.webp") center/cover;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 0;
    position: relative;
}

.about__banner--new::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-main);
    z-index: 2;
}

.about__banner--new__content {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.about__banner--eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 500;
    margin-bottom: 18px;
}

.about__banner--title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.about__banner--sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 540px;
}

.about__banner--new__bottom {
    display: flex;
    align-items: center;
    padding: 32px 0;
    position: relative;
    z-index: 2;
    gap: 0;
}

.about__banner--kpi {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 40px;
}

.about__banner--kpi-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 40px;
    flex-shrink: 0;
}

.about__kpi-num {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.about__kpi-lbl {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Shared atoms ────────────────────────── */
.about__page {
    background: #000;
}

.about__section-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 16px;
}

.about__section-eyebrow--dark {
    color: rgba(0, 0, 0, 0.45);
}

/* ── Mission section ─────────────────────── */
.about__mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about__mission--img {
    position: relative;
    overflow: hidden;
}

.about__mission--img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.65) brightness(0.75);
    transition: transform 0.8s ease;
}

.about__mission:hover .about__mission--img > img {
    transform: scale(1.03);
}

.about__mission--img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.about__mission--badge {
    position: absolute;
    bottom: 40px;
    left: 28px;
    right: 28px;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 24px 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.about__mission--badge img {
    width: 72px;
    height: 36px;
    object-fit: cover;
    flex-shrink: 0;
    filter: none;
}

.about__mission--badge span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.about__mission--badge-cta {
    width: 44px;
    height: 44px;
    background: var(--red-main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.about__mission--badge-cta:hover {
    background: #c5040f;
}
.about__mission--badge-cta svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
}

.about__mission--content {
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.about__mission--title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-bottom: 40px;
}

.about__mission--pillar {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about__mission--pillar:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about__mission--pillar-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(226, 6, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red-main);
}

.about__mission--pillar-icon svg {
    width: 18px;
    height: 18px;
}

.about__mission--pillar strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.about__mission--pillar p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

.about__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding: 14px 28px;
    background: var(--red-main);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
    transition: background 0.2s;
}

.about__cta-link svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    transition: transform 0.2s;
}
.about__cta-link:hover {
    background: #c5040f;
}
.about__cta-link:hover svg {
    transform: translate(2px, -2px);
}

/* ── Values grid ─────────────────────────── */
.about__values {
    background: #080808;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about__values--header {
    padding: 64px 60px 0;
}

.about__values--title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    max-width: 500px;
}

.about__values--grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about__value-card {
    padding: 40px 36px 44px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.about__value-card:last-child {
    border-right: none;
}

.about__value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.about__value-num {
    display: block;
    font-size: 11px;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
    margin-bottom: 20px;
}

.about__value-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.about__value-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
}

/* ── Services cards ──────────────────────── */
.about__services--section__cards {
    padding: 80px 0 0;
    background: #000;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about__services--header {
    padding: 0 60px 48px;
}

.about__services--header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    max-width: 560px;
    line-height: 1.25;
}

.about__services--cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
}

.about__services--card {
    height: 320px;
    background: #111;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: flex 0.4s ease;
}

.about__services--card:last-child {
    border-right: none;
}

.about__services--card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    filter: saturate(0.6) brightness(0.7);
    transition:
        opacity 0.5s ease,
        transform 0.6s ease;
}

.about__services--card__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 60%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about__services--card__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    gap: 12px;
}

.about__services--card__content p {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    transition: color 0.3s;
}

.about__services--card__content span {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.about__services--card__content span svg {
    width: 13px;
    height: 13px;
    transition: transform 0.25s;
}

.about__services--card.active img,
.about__services--card:hover img {
    opacity: 1;
}

.about__services--card.active .about__services--card__bg,
.about__services--card:hover .about__services--card__bg {
    opacity: 1;
}

.about__services--card.active .about__services--card__content p,
.about__services--card:hover .about__services--card__content p {
    color: #fff;
}

.about__services--card.active .about__services--card__content span,
.about__services--card:hover .about__services--card__content span {
    background: var(--red-main);
    border-color: var(--red-main);
    color: #fff;
}

.about__services--card:hover .about__services--card__content span svg {
    transform: translate(2px, -2px);
}

/* ── FAQ ─────────────────────────────────── */
.faqs__section {
    background: #f5f4f0;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.faqs__section--header {
    margin-bottom: 48px;
    max-width: 560px;
}

.faqs__section--header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.faqs__section--header p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.7;
}

.faqs__cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 860px;
}

.faqs__card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.faqs__card:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faqs__card--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
}

.faqs__card--header p {
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.4;
    transition: color 0.2s;
}

.faqs__card.active .faqs__card--header p {
    color: var(--red-main);
}

.faqs__toggle {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: none;
    transition: all 0.25s;
}

.faqs__card.active .faqs__toggle {
    background: var(--red-main);
    border-color: var(--red-main);
}

.faqs__toggle--icon {
    width: 16px;
    height: 16px;
    stroke: rgba(0, 0, 0, 0.5);
    transition:
        transform 0.3s ease,
        stroke 0.25s;
}

.faqs__card.active .faqs__toggle--icon {
    transform: rotate(180deg);
    stroke: #fff;
}

.faqs_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faqs_answer p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.8;
    padding-bottom: 24px;
    max-width: 680px;
}

.faqs__card.active .faqs_answer {
    max-height: 300px;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1200px) {
    .about__values--grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about__value-card:nth-child(2) {
        border-right: none;
    }
    .about__value-card:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }
    .about__value-card:nth-child(1),
    .about__value-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .about__services--cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .about__services--card:nth-child(3) {
        border-right: none;
    }
    .about__services--card:nth-child(4) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 820px) {
    .about__banner--title {
        font-size: 34px;
    }
    .about__banner--new {
        padding: 0 24px 0;
    }
    .about__banner--new__bottom {
        flex-wrap: wrap;
        gap: 20px;
    }
    .about__banner--kpi {
        padding-right: 0;
    }
    .about__banner--kpi-divider {
        display: none;
    }

    .about__mission {
        grid-template-columns: 1fr;
    }
    .about__mission--img {
        height: 380px;
    }
    .about__mission--content {
        padding: 48px 28px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .about__mission--title {
        font-size: 26px;
    }

    .about__values--header {
        padding: 48px 28px 0;
    }
    .about__values--title {
        font-size: 26px;
    }
    .about__values--grid {
        grid-template-columns: 1fr 1fr;
    }

    .about__services--header {
        padding: 0 28px 36px;
    }
    .about__services--header h2 {
        font-size: 26px;
    }
    .about__services--cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .about__services--card:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    .about__services--card:nth-child(2),
    .about__services--card:nth-child(4) {
        border-right: none;
    }
    .about__services--card:nth-child(5) {
        border-right: none;
    }

    .faqs__section {
        padding: 56px 28px;
    }
    .faqs__section--header h2 {
        font-size: 26px;
    }
}

@media (max-width: 430px) {
    .abouts__banner {
        height: 80vh;
    }
    .about__banner--title {
        font-size: 26px;
    }
    .about__banner--sub {
        font-size: 14px;
    }
    .about__banner--new__bottom {
        display: none;
    }

    .about__values--grid {
        grid-template-columns: 1fr;
    }
    .about__value-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .about__services--cards {
        grid-template-columns: 1fr;
    }
    .about__services--card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* ══════════════════════════════════════════════════════════════
   CONTACTS PAGE — modern redesign
══════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   IMPACTO SOCIAL — social__
══════════════════════════════════════════ */

/* ── Banner ──────────────────────────────── */
.social__banner {
    position: relative;
    height: 100vh;
    min-height: 640px;
    z-index: 1;
}

.social__banner--inner {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            150deg,
            rgba(0, 0, 0, 0.97) 0%,
            rgba(5, 10, 5, 0.86) 50%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        url("../image/about-banner.webp") center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 0;
    position: relative;
}

.social__banner--inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-main);
    z-index: 2;
}

.social__banner--content {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.social__banner--eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 500;
    margin-bottom: 18px;
}

.social__banner--title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.social__banner--sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 600px;
}

.social__banner--kpis {
    display: flex;
    align-items: center;
    padding: 32px 0;
    position: relative;
    z-index: 2;
    gap: 0;
}

.social__banner--kpi {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 40px;
}

.social__banner--kpi-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 40px;
    flex-shrink: 0;
}

.social__kpi-num {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.social__kpi-lbl {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Shared atoms ────────────────────────── */
.social__page {
    background: #000;
}

.social__eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 16px;
}

.social__eyebrow--dark {
    color: rgba(0, 0, 0, 0.4);
}

.social__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.social__btn--primary {
    padding: 14px 28px;
    background: var(--red-main);
    color: #fff;
}
.social__btn--primary:hover {
    background: #c5040f;
}

.social__btn--outline {
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}
.social__btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.social__btn--lg {
    padding: 16px 36px;
    font-size: 13px;
}

/* ── Pilares ─────────────────────────────── */
.social__pillars {
    background: #080808;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social__pillars--header {
    padding: 72px 60px 0;
}

.social__pillars--title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.3px;
    max-width: 500px;
}

.social__pillars--grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social__pillar {
    padding: 40px 36px 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social__pillar:last-child {
    border-right: none;
}

.social__pillar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.social__pillar:hover::after {
    transform: scaleX(1);
}

.social__pillar--icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(226, 6, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-main);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.social__pillar--icon svg {
    width: 20px;
    height: 20px;
}

.social__pillar--num {
    font-size: 10px;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
    margin-bottom: 14px;
}

.social__pillar h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.social__pillar p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
}

/* ── Programa destaque ───────────────────── */
.social__featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social__featured--img {
    position: relative;
    overflow: hidden;
}

.social__featured--img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.55) brightness(0.65);
    transition: transform 0.8s ease;
}

.social__featured:hover .social__featured--img > img {
    transform: scale(1.03);
}

.social__featured--img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}

.social__featured--badge {
    position: absolute;
    top: 32px;
    left: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.social__featured--badge-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 6, 19, 0.3);
}

.social__featured--badge-year {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    width: fit-content;
}

.social__featured--content {
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.social__featured--title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.social__featured--desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 36px;
}

.social__featured--stats {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.social__feat-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    margin-right: 28px;
}

.social__feat-stat:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.social__feat-stat--num {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.social__feat-stat--lbl {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.social__featured--cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--red-main);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
    transition: background 0.2s;
}

.social__featured--cta svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}
.social__featured--cta:hover {
    background: #c5040f;
}
.social__featured--cta:hover svg {
    transform: translate(2px, -2px);
}

/* ── Programas ───────────────────────────── */
.social__programs {
    background: #f5f4f0;
}

.social__programs--header {
    display: flex;
    flex-direction: column;
    padding: 72px 60px 52px;
}

.social__programs--title {
    font-size: 36px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.3px;
    line-height: 1.2;
    max-width: 480px;
}

.social__programs--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.social__program-card {
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.3s;
}

.social__program-card:nth-child(3n) {
    border-right: none;
}
.social__program-card:hover {
    background: #eeedea;
}

.social__program-card--img {
    height: 220px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.social__program-card--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.7);
    transition:
        transform 0.6s,
        filter 0.4s;
}

.social__program-card:hover .social__program-card--img img {
    transform: scale(1.04);
    filter: saturate(0.9);
}

.social__program-card--status {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 10px;
}

.social__program-card--status-active {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.social__program-card--status-new {
    background: rgba(226, 6, 19, 0.12);
    color: var(--red-main);
    border: 1px solid rgba(226, 6, 19, 0.3);
}

.social__program-card--body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.social__program-card--area {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
    margin-bottom: 10px;
}

.social__program-card--title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.3;
    margin-bottom: 10px;
}

.social__program-card--desc {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}

.social__program-card--footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.social__program-card--impact {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.social__program-card--arrow {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.35);
    transition: all 0.25s;
    flex-shrink: 0;
}

.social__program-card--arrow svg {
    width: 12px;
    height: 12px;
    transition: transform 0.25s;
}
.social__program-card:hover .social__program-card--arrow {
    background: var(--red-main);
    border-color: var(--red-main);
    color: #fff;
}
.social__program-card:hover .social__program-card--arrow svg {
    transform: translate(2px, -2px);
}

/* ── Impacto / Contadores ────────────────── */
.social__impact {
    background: #000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.social__impact--left {
    padding: 80px 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.social__impact--left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-main);
}

.social__impact--title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.social__impact--desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 440px;
}

.social__impact--cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--red-main);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
    transition: background 0.2s;
}

.social__impact--cta svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}
.social__impact--cta:hover {
    background: #c5040f;
}
.social__impact--cta:hover svg {
    transform: translate(2px, -2px);
}

.social__impact--right {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-content: center;
}

.social__impact--counter {
    padding: 32px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social__impact--counter:nth-child(2n) {
    border-right: none;
}
.social__impact--counter:nth-last-child(-n + 2) {
    border-bottom: none;
}

.social__counter-num {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: inline;
}

.social__counter-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--red-main);
    line-height: 1;
    display: inline;
    margin-left: 2px;
}

.social__counter-lbl {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    line-height: 1.5;
}

/* ── Testemunhos ─────────────────────────── */
.social__testimonials {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.social__testimonials--header {
    padding: 72px 60px 52px;
}

.social__testimonials--title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2;
    max-width: 520px;
}

.social__testimonials--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social__testimonial {
    padding: 40px 36px 44px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.social__testimonial:last-child {
    border-right: none;
}

.social__testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.social__testimonial:hover::before {
    transform: scaleX(1);
}

.social__testimonial--quote {
    color: var(--red-main);
    margin-bottom: 20px;
    opacity: 0.4;
}

.social__testimonial--quote svg {
    width: 28px;
    height: 28px;
}

.social__testimonial--text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 32px;
    font-style: italic;
}

.social__testimonial--author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social__testimonial--avatar {
    width: 40px;
    height: 40px;
    background: rgba(226, 6, 19, 0.15);
    border: 1px solid rgba(226, 6, 19, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--red-main);
    flex-shrink: 0;
}

.social__testimonial--name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.social__testimonial--role {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.3px;
}

/* ── CTA Parceiros ───────────────────────── */
.social__partner-cta {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social__partner-cta--inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
}

.social__partner-cta--left {
    padding: 72px 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.social__partner-cta--left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red-main);
}

.social__partner-cta--eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 600;
}

.social__partner-cta--title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.social__partner-cta--right {
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.social__partner-cta--right > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    max-width: 420px;
}

.social__partner-cta--btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1200px) {
    .social__pillars--grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .social__pillar:nth-child(2) {
        border-right: none;
    }
    .social__pillar:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }
    .social__pillar:nth-child(1),
    .social__pillar:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 820px) {
    .social__banner--title {
        font-size: 34px;
    }
    .social__banner--inner {
        padding: 0 24px 0;
    }
    .social__banner--kpis {
        flex-wrap: wrap;
        gap: 20px;
    }
    .social__banner--kpi {
        padding-right: 0;
    }
    .social__banner--kpi-divider {
        display: none;
    }

    .social__pillars--header {
        padding: 48px 28px 0;
    }
    .social__pillars--title {
        font-size: 26px;
    }
    .social__pillars--grid {
        grid-template-columns: 1fr 1fr;
    }

    .social__featured {
        grid-template-columns: 1fr;
    }
    .social__featured--img {
        height: 340px;
    }
    .social__featured--content {
        padding: 44px 28px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .social__featured--title {
        font-size: 26px;
    }
    .social__featured--stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .social__feat-stat {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }

    .social__programs--header {
        padding: 48px 28px 36px;
    }
    .social__programs--title {
        font-size: 26px;
    }
    .social__programs--grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .social__program-card:nth-child(3n) {
        border-right: 1px solid rgba(0, 0, 0, 0.07);
    }
    .social__program-card:nth-child(2n) {
        border-right: none;
    }

    .social__impact {
        grid-template-columns: 1fr;
    }
    .social__impact--left {
        padding: 48px 28px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .social__impact--title {
        font-size: 26px;
    }
    .social__impact--right {
        padding: 40px 28px;
    }
    .social__counter-num {
        font-size: 36px;
    }
    .social__counter-suffix {
        font-size: 24px;
    }

    .social__testimonials--header {
        padding: 48px 28px 36px;
    }
    .social__testimonials--title {
        font-size: 26px;
    }
    .social__testimonials--grid {
        grid-template-columns: 1fr;
    }
    .social__testimonial {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .social__testimonial:last-child {
        border-bottom: none;
    }

    .social__partner-cta--inner {
        grid-template-columns: 1fr;
    }
    .social__partner-cta--left {
        padding: 48px 28px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .social__partner-cta--right {
        padding: 40px 28px;
    }
    .social__partner-cta--title {
        font-size: 28px;
    }
}

@media (max-width: 430px) {
    .social__banner {
        height: 80vh;
    }
    .social__banner--title {
        font-size: 26px;
    }
    .social__banner--sub {
        font-size: 14px;
    }
    .social__banner--kpis {
        display: none;
    }

    .social__pillars--grid {
        grid-template-columns: 1fr;
    }
    .social__pillar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .social__programs--grid {
        grid-template-columns: 1fr;
    }
    .social__program-card:nth-child(3n),
    .social__program-card:nth-child(2n) {
        border-right: none;
    }

    .social__impact--right {
        grid-template-columns: 1fr;
    }
    .social__impact--counter {
        border-right: none;
    }
    .social__impact--counter:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .social__impact--counter:last-child {
        border-bottom: none;
    }
}

/* ── Banner ──────────────────────────────────────────────────── */
.contacts__banner {
    position: relative;
    height: 60vh;
    min-height: 420px;
    background: #060606;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.contacts__banner--bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 60% at 60% 40%,
            rgba(226, 6, 19, 0.12) 0%,
            transparent 70%
        ),
        linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    z-index: 0;
}

.contacts__banner--bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 79px,
            rgba(255, 255, 255, 0.025) 79px,
            rgba(255, 255, 255, 0.025) 80px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 79px,
            rgba(255, 255, 255, 0.025) 79px,
            rgba(255, 255, 255, 0.025) 80px
        );
}

.contacts__banner--content {
    position: relative;
    z-index: 3;
    padding: 0 72px 64px;
    max-width: 700px;
}

.contacts__banner--eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--red-main);
    font-weight: 500;
    margin-bottom: 20px;
}

.contacts__banner--title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.contacts__banner--sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    max-width: 520px;
}

/* ── Info strip ──────────────────────────────────────────────── */
.cinfo__strip {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.cinfo__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 40px;
    flex: 1;
    min-width: 200px;
    transition: background 0.2s;
}

.cinfo__item:hover {
    background: #fafafa;
}

.cinfo__icon {
    width: 40px;
    height: 40px;
    background: rgba(226, 6, 19, 0.06);
    border: 1px solid rgba(226, 6, 19, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red-main);
    margin-top: 2px;
}

.cinfo__icon svg {
    width: 18px;
    height: 18px;
}

.cinfo__label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    margin-bottom: 7px;
}

.cinfo__text a,
.cinfo__text p {
    display: block;
    font-size: 13.5px;
    color: #222;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.2s;
}

.cinfo__text a:hover {
    color: var(--red-main);
}

.cinfo__divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.07);
    flex-shrink: 0;
    align-self: stretch;
}

/* ── Page body ───────────────────────────────────────────────── */
.cpage__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    background: #f7f7f7;
}

/* ── Left panel ──────────────────────────────────────────────── */
.cpage__left {
    padding: 80px 64px;
    background: #000;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cpage__left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--red-main);
}

.cpage__left--title {
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
    margin-top: 8px;
}

.cpage__left--text {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    margin-bottom: 48px;
    max-width: 440px;
}

.cpage__supports {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cpage__support-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.2s;
}

.cpage__support-card:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.cpage__support-card:hover {
    border-bottom-color: rgba(226, 6, 19, 0.2);
}

.cpage__support-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(226, 6, 19, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red-main);
    transition:
        background 0.2s,
        border-color 0.2s;
}

.cpage__support-icon svg {
    width: 17px;
    height: 17px;
}
.cpage__support-card:hover .cpage__support-icon {
    background: rgba(226, 6, 19, 0.08);
    border-color: rgba(226, 6, 19, 0.5);
}

.cpage__support-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.cpage__support-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.65;
}

/* ── Right panel / form ──────────────────────────────────────── */
.cpage__right {
    padding: 64px 64px;
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.cpage__form-wrapper {
    width: 100%;
    max-width: 560px;
}

.cpage__form-header {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.cpage__form-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.cpage__form-header p {
    font-size: 13.5px;
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.6;
}

.cpage__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cpage__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cpage__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cpage__field--full {
    grid-column: span 2;
}

.cpage__field label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.55);
    text-transform: uppercase;
}

.cpage__field label span {
    color: var(--red-main);
}

.cpage__field input,
.cpage__field select,
.cpage__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fafafa;
    font-size: 14px;
    color: #111;
    font-family: inherit;
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s,
        box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.cpage__field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' stroke='%23999' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 36px;
}

.cpage__field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.cpage__field input:focus,
.cpage__field select:focus,
.cpage__field textarea:focus {
    border-color: var(--red-main);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(226, 6, 19, 0.07);
}

.cpage__field input::placeholder,
.cpage__field textarea::placeholder {
    color: rgba(0, 0, 0, 0.28);
}

.form-success {
  display: none;
  background: linear-gradient(
    135deg,
    rgba(26, 79, 130, 0.06),
    rgba(62, 203, 170, 0.06)
  );
  border: 1px solid #36BA9B;
  color: #36BA9B;
  padding: 1.25rem;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  animation: slideIn 0.3s ease;
}

/* ── Form footer ─────────────────────────────────────────────── */
.cpage__form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 6px;
}

.cpage__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    flex: 1;
    min-width: 200px;
}

.cpage__checkbox input {
    display: none;
}

.cpage__checkbox-box {
    width: 17px;
    height: 17px;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    margin-top: 1px;
    transition:
        border-color 0.2s,
        background 0.2s;
    position: relative;
}

.cpage__checkbox input:checked ~ .cpage__checkbox-box {
    background: var(--red-main);
    border-color: var(--red-main);
}

.cpage__checkbox input:checked ~ .cpage__checkbox-box::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: 1.5px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.cpage__checkbox span:last-child {
    font-size: 12.5px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.cpage__checkbox span:last-child a {
    color: var(--red-main);
    text-decoration: none;
}

.cpage__checkbox span:last-child a:hover {
    text-decoration: underline;
}

.cpage__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--red-main);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 0.2s,
        transform 0.2s;
    font-family: inherit;
    flex-shrink: 0;
}

.cpage__submit svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}
.cpage__submit:hover {
    background: #c5040f;
}
.cpage__submit:hover svg {
    transform: translate(2px, -2px);
}
.cpage__submit:active {
    transform: scale(0.98);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — contacts
══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 1100px) {
    .cpage__left {
        padding: 60px 40px;
    }
    .cpage__right {
        padding: 60px 40px;
    }
    .contacts__banner--content {
        padding: 0 40px 56px;
    }
}

@media screen and (max-width: 900px) {
    .cpage__body {
        grid-template-columns: 1fr;
    }
    .cpage__left {
        padding: 56px 28px;
    }
    .cpage__right {
        padding: 48px 28px;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
    }
    .contacts__banner--content {
        padding: 0 28px 48px;
    }
    .contacts__banner {
        min-height: 360px;
    }

    .cinfo__strip {
        flex-wrap: wrap;
    }
    .cinfo__item {
        flex: 0 0 calc(50% - 1px);
        min-width: 0;
        padding: 24px 28px;
    }
    .cinfo__divider:nth-child(4) {
        display: none;
    }
    .cinfo__divider:nth-child(6) {
        width: 100%;
        height: 1px;
    }
}

@media screen and (max-width: 600px) {
    .cpage__form-row {
        grid-template-columns: 1fr;
    }
    .cpage__field--full {
        grid-column: span 1;
    }
    .contacts__banner--title {
        font-size: 34px;
    }
    .cpage__form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .cpage__submit {
        width: 100%;
        justify-content: center;
    }
    .cinfo__item {
        flex: 0 0 100%;
        padding: 20px 24px;
    }
    .cinfo__divider {
        width: 100%;
        height: 1px;
    }
    .cpage__left {
        padding: 40px 20px;
    }
    .cpage__right {
        padding: 36px 20px;
    }
    .contacts__banner--content {
        padding: 0 20px 40px;
    }
}
/* ══════════════════════════════
   FOOTER — site-footer
══════════════════════════════ */
.site-footer {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Brand col */
.site-footer__brand {
    padding: 64px 48px 64px 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer__logo img {
    height: 48px;
    width: 200px;
    object-fit: contain;
    display: block;
    margin-left: -3px;
}

.site-footer__tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
    max-width: 260px;
    margin-top: 4px;
}

.site-footer__social {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.site-footer__social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.2s;
}

.site-footer__social-link svg {
    width: 15px;
    height: 15px;
}
.site-footer__social-link:hover {
    border-color: var(--red-main);
    color: #fff;
    background: rgba(226, 6, 19, 0.1);
}

/* Nav columns */
.site-footer__col {
    padding: 64px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__col:last-child {
    border-right: none;
}

.site-footer__col-title {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer__nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1;
}

.site-footer__nav a:hover {
    color: #fff;
}

/* Contact col */
.site-footer__col--contact {
    padding: 64px 40px 64px 48px;
}

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.2s;
}

.site-footer__contact-item:hover {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer__contact-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--red-main);
}

.site-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--red-main);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s;
}

.site-footer__cta svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}
.site-footer__cta:hover {
    background: #c5040f;
}
.site-footer__cta:hover svg {
    transform: translate(2px, -2px);
}

/* Bottom bar */
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.site-footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.site-footer__bottom-links {
    display: flex;
    gap: 24px;
}

.site-footer__bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__bottom-links a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* Background texture */
.footer-bg {
    position: absolute;
    height: 100%;
    width: 22%;
    right: 20px;
    top: 0;
    background: url("../image/footer-bg.webp") no-repeat center;
    background-size: cover;
    opacity: 0.04;
    pointer-events: none;
}

/* ── Responsive footer ─────────────────── */
@media screen and (max-width: 1024px) {
    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer__brand {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        grid-column: span 2;
        padding: 48px 40px;
    }
    .site-footer__col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .site-footer__col--contact {
        border-right: none;
    }
}

@media screen and (max-width: 600px) {
    .site-footer__top {
        grid-template-columns: 1fr;
    }
    .site-footer__brand {
        grid-column: span 1;
        padding: 40px 24px;
    }
    .site-footer__col {
        border-right: none;
        padding: 36px 24px;
    }
    .site-footer__bottom {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/*
 * Animation
*/

/* Estado inicial: caído */
.animate-text {
    opacity: 0;
    transform: translateY(100px) rotateX(75deg) scale(1);
    transform-style: preserve-3d;
    transition: all 0.6s ease-out;
}

/* Estado final: levantado */
/* Base animations with performance optimizations */
.animate-text {
    opacity: 0;
    transform: translateY(40px) rotateX(10deg) scale(0.95);
    filter: blur(6px);
    transition: all 1.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    will-change: transform, opacity, filter;
}

.animate-text.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: blur(0);
}

/* Container animations with staggered children support */
.animate-container {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1.2s cubic-bezier(0.2, 0.9, 0.3, 1);
    will-change: transform, opacity;
}

.animate-container.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation when container becomes visible */
.animate-container.visible > * {
    animation: staggerFadeIn 0.8s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
    animation-delay: calc(0.1s * var(--child-index, 1));
    opacity: 0;
}

@keyframes staggerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image animations with smooth blur effect */
.animate-img {
    opacity: 0.6;
    filter: blur(12px) brightness(1.1);
    transform: scale(1.02);
    transition: all 1.4s cubic-bezier(0.2, 0.9, 0.3, 1);
    will-change: transform, opacity, filter;
}

.animate-img.visible {
    opacity: 1;
    filter: blur(0px) brightness(1);
    transform: scale(1);
}

/* Optional: Different entrance directions */
.animate-text.from-left {
    transform: translateX(-40px) rotateY(10deg);
}

.animate-text.from-left.visible {
    transform: translateX(0) rotateY(0);
}

.animate-text.from-right {
    transform: translateX(40px) rotateY(-10deg);
}

.animate-text.from-right.visible {
    transform: translateX(0) rotateY(0);
}

/* Smooth reveal with scale effect */
.animate-text.scale-reveal {
    transform: scale(0.8);
    filter: blur(8px);
}

.animate-text.scale-reveal.visible {
    transform: scale(1);
    filter: blur(0);
}

/* Performance optimization for animated elements */
.animate-text,
.animate-container,
.animate-img {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*RESPONSIVE*/
@media screen and (max-width: 820px) {
    .header {
        height: 50vh;
    }

    .header__slide {
        align-items: center;
        text-align: center;
        flex-basis: 100%;
        gap: 20px;
    }

    .header__slide img {
        object-fit: cover;
        object-position: top 30%;
    }

    .header__slide--mini {
        right: 0;
        left: 0;
        margin: 0 auto;
        flex-direction: row;
        top: auto;
        bottom: 0;
    }

    .home__about {
        grid-template-columns: 1fr;
    }
    .home__about--left {
        padding: 48px 28px;
    }
    .home__about--title {
        font-size: 28px;
    }
    .home__about--right {
        padding: 40px 28px;
    }
    .home__about--kpis {
        flex-wrap: wrap;
        gap: 20px;
    }
    .home__kpi-divider {
        display: none;
    }
    .home__about--kpi {
        padding-right: 0;
    }

    .home__services--header {
        padding: 48px 28px 36px;
        flex-direction: column;
        align-items: flex-start;
    }
    .home__services--title {
        font-size: 26px;
    }
    .home__services--grid {
        grid-template-columns: 1fr;
    }
    .home__svc-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }
    .home__services--ticker {
        padding: 16px 28px;
        gap: 12px;
    }

    .home__projects--header {
        padding: 48px 28px 36px;
        flex-direction: column;
        align-items: flex-start;
    }
    .home__projects--title {
        font-size: 26px;
    }
    .home__projects--grid {
        grid-template-columns: 1fr;
    }
    .home__proj-card--featured {
        min-height: 380px;
    }
    .home__projects--col {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .home__blog--header {
        padding: 48px 28px 36px;
        flex-direction: column;
        align-items: flex-start;
    }
    .home__blog--title {
        font-size: 26px;
    }
    .blog__posts {
        grid-template-columns: 1fr 1fr;
    }
    .post:nth-child(2) {
        border-right: none;
    }
    .post:last-child {
        border-right: none;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
    }

    .projects__banner {
        height: 70vh;
    }

    .project__banner--new {
        padding: 0 24px 40px;
    }

    .project__banner--new__content h1 {
        font-size: 32px;
    }

    .proj-banner-stats {
        gap: 0;
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .proj-stat {
        padding-right: 24px;
    }

    .proj-stat-divider {
        margin-right: 24px;
    }

    .proj-filter-bar {
        padding: 16px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

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

    .proj-card:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .proj-card:nth-child(2n) {
        border-right: none;
    }

    .project__banner {
        padding: 20px;
    }

    .project__banner > div h1 {
        font-size: 30px;
    }

    .project__banner .project__banner--contact p {
        font-size: 14px;
    }

    .project__banner .mark-book {
        border: none;
    }

    .contacts__banner {
        height: 40vh;
    }

    .contact__container {
        padding: 0 20px 50px;
    }

    .contact__info {
        padding: 20px 20px;
        gap: 30px;
    }

    .contact__info .contact__info--email,
    .contact__info .contact__info--phone,
    .contact__info .contact__info--location {
        flex-basis: calc(33.33% - 20px);
        max-width: 100%;
    }

    .contact__info a,
    .contact__info p {
        font-size: 15px;
        text-align: center;
    }

    .contact__form--info h2 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .contact__form--info > p {
        font-size: 15px;
        margin-bottom: 50px;
    }

    .contact__form--info .contact__suppport--header,
    .contact__form--info .contact__support--technic__header {
        font-size: 17px;
        padding-bottom: 20px;
        margin-bottom: 0px;
    }

    .contact__form--info > div p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .contact__form .contact__form--info,
    .contact__form form {
        padding: 200px 0 60px 0;
    }

    .contact__form form {
        padding-left: 20px;
    }
}

@media screen and (max-width: 430px) {
    .header {
        height: 100vh;
    }

    .header__info--fraseM {
        font-size: 35px;
        padding: 0px 50px;
    }
    .header__info--tagline {
        padding: 0 10px;
    }

    .home__about {
        grid-template-columns: 1fr;
    }
    .home__about--left {
        padding: 40px 20px;
    }
    .home__about--title {
        font-size: 24px;
    }
    .home__about--right {
        padding: 32px 20px;
    }

    .home__services--header {
        padding: 40px 20px 28px;
    }
    .home__services--grid {
        grid-template-columns: 1fr;
    }
    .home__services--ticker {
        padding: 14px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .home__ticker--divider {
        display: none;
    }

    .home__projects--header {
        padding: 40px 20px 28px;
    }
    .home__projects--grid {
        grid-template-columns: 1fr;
    }

    .home__blog--header {
        padding: 40px 20px 28px;
    }
    .blog__posts {
        grid-template-columns: 1fr;
    }
    .post:nth-child(2) {
        border-right: none;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
    }

    .demostrates__card_vertical--item {
        flex-wrap: wrap;
        height: auto;
        padding-right: 20px;
    }

    .demostrates__card_vertical--item img {
        height: 200px;
        margin-bottom: 20px;
        flex-basis: calc(100% - 20px);
    }

    .demostrates__card_vertical--item .demostrates__card_vertical--item--info {
        flex-basis: calc(100% - 20px);
    }

    .demostrates__card_horizontal--item {
        flex-basis: calc(100%);
    }

    .demostrates__card_horizontal--item.active {
        flex-basis: calc(100%);
    }

    .projects__banner {
        height: 70vh;
    }

    .project__banner--new__content h1 {
        font-size: 26px;
    }

    .proj-banner-stats {
        display: none;
    }

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

    .proj-card:nth-child(3n),
    .proj-card:nth-child(2n) {
        border-right: none;
    }

    .project__banner > div {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
    }

    .blogs__banner {
        height: 70vh;
    }

    .abouts__banner {
        height: 70vh;
    }

    .post {
        border-right: none;
    }

    .contacts__banner {
        height: 70vh;
    }

    .contact__info {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .contact__form {
        flex-wrap: wrap;
        align-items: center;
    }

    .contact__form .contact__form--info {
        flex-basis: 100%;
        padding-bottom: 0;
    }

    .contact__form form {
        flex-basis: 100%;
        padding: 20px 0;
    }
}
