@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --navy: #0a1628;
    --navy2: #0f2040;
    --blue: #1255cc;
    --bl: #1e6ef5;
    --bp: #e8f0fe;
    --green: #00c98d;
    --gd: #00a874;
    --gp: #e6faf4;
    --gold: #f5a623;
    --red: #e84040;
    --pu: #7c3aed;
    --ua-blue: #005BBB;
    --ua-yellow: #FFD500;
    --w: #fff;
    --gr: #f0f4fb;
    --gr2: #dde5f4;
    --tx: #1a2540;
    --mu: #6b7fa3;
    --br: rgba(18, 85, 204, .13);
    --sh: 0 4px 20px rgba(10, 22, 40, .08);
    --shl: 0 20px 56px rgba(10, 22, 40, .18);
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #f0f4fb;
    color: var(--tx);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
}

/* ══ BREADCRUMB ══ */
.bc {
    background: white;
    border-bottom: 1px solid var(--br);
    padding: 0 24px;
}

.bc-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    font-size: 12px;
    color: var(--mu);
    flex-wrap: wrap;
}

.bc-in a {
    color: var(--blue);
}

.bc-sep {
    color: var(--gr2);
}

/* ══ HERO ══ */
.hero {
    background: var(--navy);
    padding: 48px 24px 56px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 55% at 50% -10%, rgba(0, 91, 187, .6) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 95% 85%, rgba(255, 213, 0, .08) 0%, transparent 55%);
}

/* Ukrainian flag stripe at top */
.ua-stripe {
    height: 5px;
    background: linear-gradient(90deg, var(--ua-blue) 50%, var(--ua-yellow) 50%);
}

.hero-in {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-top {
    display: grid;
    grid-template-columns:1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero-top {
        grid-template-columns:1fr;
        gap: 24px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 213, 0, .13);
    border: 1px solid rgba(255, 213, 0, .3);
    color: var(--ua-yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(24px, 4.5vw, 46px);
    font-weight: 900;
    color: white;
    line-height: 1.12;
    letter-spacing: -.5px;
    margin-bottom: 12px;
}

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

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 26px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hbp {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--ua-blue), #0047a0);
    color: white;
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 91, 187, .35);
    transition: transform .15s;
}

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

.hbg {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .09);
    color: white;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: background .15s;
}

.hbg:hover {
    background: rgba(255, 255, 255, .15);
}

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

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

.hs {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    transition: background .2s;
}

.hs:hover {
    background: rgba(255, 255, 255, .11);
}

.hs-n {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.ng_ {
    color: var(--green);
}

.nb {
    color: #7eb8ff;
}

.ny {
    color: var(--ua-yellow);
}

.hs-l {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

/* ══ SEARCH BAR ══ */
.sbar {
    background: white;
    padding: 14px 24px;
    border-bottom: 1px solid var(--br);
    position: sticky;
    top: 64px;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(10, 22, 40, .05);
}

.sbar-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.sf {
    display: flex;
    flex: 1;
    max-width: 580px;
    align-items: center;
    background: var(--gr);
    border: 2px solid var(--br);
    border-radius: 12px;
    padding: 0 14px;
    transition: border-color .2s;
}

.sf:focus-within {
    border-color: var(--blue);
}

.sf svg {
    color: var(--mu);
    flex-shrink: 0;
}

.sf input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 11px 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--tx);
}

.sf input::placeholder {
    color: #aab5cc;
}

.sf button {
    background: var(--ua-blue);
    color: white;
    border: none;
    padding: 0 16px;
    height: 40px;
    border-radius: 0 10px 10px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-right: -14px;
    transition: opacity .15s;
}

.sf button:hover {
    opacity: .85;
}

.stags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    align-items: center;
}

.stag-l {
    font-size: 12px;
    color: var(--mu);
    white-space: nowrap;
}

.stag {
    padding: 5px 11px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    background: var(--gr);
    border: 1px solid var(--br);
    color: var(--mu);
    cursor: pointer;
    white-space: nowrap;
    transition: all .15s;
}

.stag:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--bp);
}

@media (max-width: 700px) {
    .stags {
        display: none;
    }

    .sf {
        max-width: 100%;
    }

    .sbar {
        padding: 12px 16px;
        position: static;
    }
}

/* ══ INDUSTRY STRIP ══ */
.ind-strip {
    background: white;
    border-bottom: 2px solid var(--br);
    padding: 0 24px;
}

.ind-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    gap: 4px;
    padding: 12px 0;
    scrollbar-width: none;
}

.ind-in::-webkit-scrollbar {
    display: none;
}

.ind-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mu);
    background: none;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .15s;
}

.ind-btn:hover {
    background: var(--bp);
    border-color: var(--blue);
    color: var(--blue);
}

.ind-btn.on {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
}

/* ══ LAYOUT ══ */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 64px;
    display: grid;
    grid-template-columns:240px 1fr;
    gap: 22px;
    align-items: start;
}

@media (max-width: 900px) {
    .wrap {
        grid-template-columns:1fr;
        padding: 16px 14px 48px;
    }
}

/* ══ SIDEBAR ══ */
.sidebar {
    position: sticky;
    top: calc(64px + 69px + 14px);
}

@media (max-width: 900px) {
    .sidebar {
        position: static;
        display: none;
    }

    .sidebar.open {
        display: block;
    }
}

.sb {
    background: white;
    border-radius: 16px;
    border: 2px solid var(--br);
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: var(--sh);
}

.sb-t {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--mu);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--br);
}

.catl {
    display: flex;
    flex-direction: column;
}

.catl a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 9px;
    font-size: 13px;
    color: var(--tx);
    transition: background .15s, color .15s;
}

.catl a:hover {
    background: var(--bp);
    color: var(--blue);
}

.catl a.on {
    background: var(--bp);
    color: var(--blue);
    font-weight: 700;
}

.catl a .ic {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.show-more {
    font-size: 12.5px;
    color: var(--blue);
    font-weight: 700;
    cursor: pointer;
    padding: 7px 9px;
    display: block;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.pill {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    background: var(--gr);
    color: var(--tx);
    border: 1px solid var(--br);
    cursor: pointer;
    transition: all .15s;
}

.pill:hover, .pill.on {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
}

.sb-reg-cta {
    background: linear-gradient(135deg, var(--ua-blue), #003d8f);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    margin-bottom: 14px;
}

.sb-reg-cta h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 900;
    color: white;
    line-height: 1.35;
    margin-bottom: 6px;
}

.sb-reg-cta p {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 12px;
    line-height: 1.5;
}

.sb-reg-btn {
    display: block;
    background: linear-gradient(90deg, var(--ua-yellow), #f0c600);
    color: var(--navy);
    padding: 10px;
    border-radius: 9px;
    font-size: 12.5px;
    font-weight: 700;
    text-align: center;
}

.sb-reg-btn:hover {
    opacity: .9;
}

/* mob filter */
.mob-filter {
    display: none;
    width: 100%;
    margin-bottom: 14px;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 2px solid var(--br);
    color: var(--navy);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 900px) {
    .mob-filter {
        display: flex;
    }
}

/* ══ POPULAR CATEGORIES ══ */
.pop-section {
    margin-bottom: 28px;
}

.pop-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--mu);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pop-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

@media (max-width: 600px) {
    .pop-grid {
        grid-template-columns:repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 400px) {
    .pop-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

.pop-card {
    background: white;
    border-radius: 14px;
    border: 2px solid var(--br);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    box-shadow: var(--sh);
}

.pop-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shl);
    transform: translateY(-3px);
}

.pop-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    background: var(--gr);
}

@media (max-width: 600px) {
    .pop-img {
        height: 80px;
    }
}

.pop-label {
    padding: 9px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.pop-cnt {
    font-size: 11px;
    color: var(--mu);
    margin-top: 2px;
}

/* ══ ALL INDUSTRIES ══ */
.ind-section {
    margin-bottom: 28px;
}

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

@media (max-width: 768px) {
    .ind-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

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

.ind-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--tx);
    transition: background .15s, color .15s;
}

.ind-link:hover {
    background: var(--bp);
    color: var(--blue);
}

.ind-link .ii {
    font-size: 15px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.ind-toggle {
    font-size: 13px;
    color: var(--blue);
    font-weight: 700;
    cursor: pointer;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ══ MANUFACTURER LIST ══ */
.sup-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sc {
    background: white;
    border-radius: 20px;
    border: 2px solid var(--br);
    box-shadow: var(--sh);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    max-width: 100%;
}

.sc:hover {
    border-color: var(--blue);
    box-shadow: var(--shl);
    transform: translateY(-3px);
    text-decoration: none;
}

.sc-head {
    padding: 20px 22px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

@media (max-width: 600px) {
    .sc-head {
        padding: 14px 14px 0;
        gap: 10px;
    }
}

.sc-logo {
    width: 68px;
    height: 68px;
    border-radius: 13px;
    flex-shrink: 0;
    border: 2px solid var(--br);
    background: var(--gr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    overflow: hidden;
}

.sc-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-body {
    flex: 1;
    min-width: 0;
}

.sc-row1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 7px;
}

.sc-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 14.5px;
    font-weight: 900;
    color: var(--navy);
    word-break: break-word;
    transition: color .15s;
}

.sc-name:hover {
    color: var(--blue);
}

.sc-acts {
    display: flex;
    gap: 7px;
    flex-shrink: 0;
}

.sc-fav {
    width: 33px;
    height: 33px;
    border-radius: 9px;
    border: 1px solid var(--br);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--mu);
    font-size: 15px;
    transition: all .15s;
}

.sc-fav:hover {
    border-color: var(--red);
    color: var(--red);
}

.sc-cta {
    padding: 8px 16px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--ua-blue), #0047a0);
    color: white;
    font-size: 12.5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .15s;
}

.sc-cta:hover {
    opacity: .88;
}

.sc-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    align-items: center;
}

.t {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

.td {
    background: #fff3e0;
    color: #e65100;
}

.to {
    background: var(--gp);
    color: var(--gd);
}

.te {
    background: #f3e8ff;
    color: var(--pu);
}

.tm {
    background: #fff8e1;
    color: #c77700;
}

.tr {
    background: var(--bp);
    color: var(--blue);
}

.tmax {
    background: linear-gradient(90deg, var(--gold), #e6960b);
    color: white;
}

.tua {
    background: rgba(0, 91, 187, .1);
    color: var(--ua-blue);
    border: 1px solid rgba(0, 91, 187, .2);
}

.sc-desc {
    font-size: 12.5px;
    color: var(--mu);
    line-height: 1.65;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sc-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.sc-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--mu);
}

.sc-rating span {
    color: var(--gold);
}

.sc-loc {
    font-size: 12px;
    color: var(--mu);
}

/* products strip */
.sc-prods {
    padding: 12px 22px 18px;
    display: flex;
    gap: 10px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: thin;
    scrollbar-color: var(--gr2) transparent;
    width: 100%;
}

@media (max-width: 600px) {
    .sc-prods {
        padding: 10px 14px 14px;
    }
}

.sc-prods::-webkit-scrollbar {
    height: 3px;
}

.sc-prods::-webkit-scrollbar-thumb {
    background: var(--gr2);
    border-radius: 3px;
}

.pr {
    flex-shrink: 0;
    width: 138px;
    border-radius: 12px;
    border: 1px solid var(--br);
    overflow: hidden;
    background: white;
    transition: border-color .2s, box-shadow .2s;
}

.pr:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 12px rgba(18, 85, 204, .1);
    text-decoration: none;
}

.pr-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    background: var(--gr);
}

.pr-ph {
    width: 100%;
    height: 100px;
    background: var(--gr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.pr-b {
    padding: 8px 9px;
}

.pr-n {
    font-size: 11px;
    color: var(--tx);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
    min-height: 28px;
}

.pr-p {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.pr-po {
    font-size: 11.5px;
    color: var(--blue);
    font-weight: 700;
}

.pr-more {
    flex-shrink: 0;
    width: 100px;
    border-radius: 12px;
    border: 2px dashed var(--br);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    min-height: 138px;
    transition: border-color .15s, background .15s;
}

.pr-more:hover {
    border-color: var(--blue);
    background: var(--bp);
    text-decoration: none;
}

/* ══ PROMO ══ */
.promo {
    background: linear-gradient(135deg, var(--ua-blue) 0%, #003d8f 100%);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.promo::before {
    content: '🇺🇦';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    opacity: .15;
}

.promo h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.promo p {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 480px;
}

.promo-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-btn-y {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--ua-yellow);
    color: var(--navy);
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: opacity .15s;
}

.promo-btn-y:hover {
    opacity: .9;
}

.promo-btn-w {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    color: white;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.promo-btn-w:hover {
    background: rgba(255, 255, 255, .2);
}

/* ══ PAGINATION ══ */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.pag {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid var(--br);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s;
}

.pag:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.pag.on {
    background: var(--ua-blue);
    border-color: var(--ua-blue);
    color: white;
}

/* ══ REVEAL ══ */
.rev {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
}

.rev.v {
    opacity: 1;
    transform: none;
}

/* ══ CONTENT HEADER ══ */
.ch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.ch-info {
    font-size: 13.5px;
    color: var(--mu);
}

.ch-info strong {
    color: var(--tx);
}

.ch-sort select {
    border: 1px solid var(--br);
    border-radius: 9px;
    padding: 7px 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: var(--tx);
    background: white;
    outline: none;
    cursor: pointer;
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 48px 40px 28px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: left;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns:1fr 1fr;
        gap: 24px;
    }
}

.footer-brand svg {
    height: 26px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.65;
    max-width: 240px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    padding: 4px 0;
    transition: color .15s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .25);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: var(--green);
}

/* ── REVEAL ── */
.rev {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
}

.rev.v {
    opacity: 1;
    transform: none;
}