/* ==========================================================================
   Cloud Cog IT Solutions — stylesheet
   ========================================================================== */

:root {
    --white: #ffffff;
    --bg-soft: #f5f7fb;
    --bg-soft-2: #eef1f7;
    --ink: #10131a;
    --ink-soft: #535d6e;
    --ink-faint: #8a93a3;
    --border: #e1e5ee;
    --border-strong: #c9cedb;
    --blue: #1657d6;
    --blue-deep: #0c3a9c;
    --blue-soft: #e8f0ff;
    --orange: #ff6a1a;
    --orange-deep: #d6550f;
    --orange-soft: #fff0e4;

    --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
    --font-body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
    --font-mono: "IBM Plex Mono", "Courier New", monospace;

    --maxw: 1200px;
    --radius: 10px;
    --radius-sm: 6px;
    --gap: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

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

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 88px 0;
}

.section--soft {
    background: var(--bg-soft);
}

.section--tight {
    padding: 64px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 48px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 14px;
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    flex: none;
}

.eyebrow.alt {
    color: var(--orange-deep);
}

.eyebrow.alt .dot {
    background: var(--blue);
}

.section-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    margin-bottom: 14px;
}

.section-head p {
    color: var(--ink-soft);
    font-size: 16.5px;
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-deep);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, .55);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .12);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-strong);
    color: var(--ink);
}

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

.btn-block {
    width: 100%;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: static;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 24px;
}

/* Logo — image-based */
.logo {
    display: inline-flex;
    align-items: center;
    flex: none;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Footer logo variant */
.logo--footer .logo-img--footer {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 15px;
    font-weight: 500;
}

.nav-links a {
    color: var(--ink-soft);
    position: relative;
    padding: 4px 0;
    transition: color .15s ease;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-links a.active {
    color: var(--ink);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: var(--orange);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-phone {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: var(--ink-soft);
    text-align: right;
    line-height: 1.4;
}

.nav-phone strong {
    color: var(--ink);
    font-size: 14px;
}

.nav-email a {
    color: var(--blue);
    font-size: 12.5px;
    font-weight: 500;
    transition: color .15s ease;
}

.nav-email a:hover {
    color: var(--blue-deep);
}

.nav-toggle {
    display: none;
    flex: none;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--ink);
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

/* Mobile nav open state */
.nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    gap: 18px;
    z-index: 100;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(12, 21, 46, .92) 0%, rgba(13, 34, 84, .82) 45%, rgba(13, 34, 84, .55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 120px 0 90px;
}

.hero-content .eyebrow {
    color: var(--white);
    opacity: .92;
}

.hero-content .eyebrow .dot {
    background: var(--orange);
}

.hero-content h1 {
    font-size: clamp(34px, 5vw, 54px);
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 17.5px;
    color: rgba(255, 255, 255, .86);
    max-width: 560px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero prev/next arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, .28);
    border-color: rgba(255, 255, 255, .7);
    transform: translateY(-50%) scale(1.06);
}

.hero-arrow--prev {
    left: 20px;
}

.hero-arrow--next {
    right: 20px;
}

.hero-arrow svg {
    width: 20px;
    height: 20px;
}

/* Hero dots */
.hero-dots {
    position: absolute;
    z-index: 2;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, .35);
    border: none;
    padding: 0;
    border-radius: 2px;
    transition: background .15s ease, width .2s ease;
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--orange);
    width: 42px;
}

/* value strip */
.value-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 24px;
    border-right: 1px solid var(--border);
    font-size: 14.5px;
    font-weight: 600;
}

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

.value-item .ico {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item .ico svg {
    width: 17px;
    height: 17px;
}

/* about */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.about-copy p {
    color: var(--ink-soft);
    font-size: 16px;
    margin-bottom: 18px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 30px;
}

.about-point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
    font-weight: 600;
}

.about-point svg {
    flex: none;
    width: 18px;
    height: 18px;
    color: var(--blue);
    margin-top: 2px;
}

.about-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-soft);
    padding: 36px;
}

.about-panel-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

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

.about-panel-row .num {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--blue);
}

.about-panel-row .label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-align: right;
}


/* marquee */
.logo-marquee-section {
    padding: 80px 0;
    overflow: hidden;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.logo-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: marquee 28s linear infinite;
}

.logo-track img {
    height: 52px;
    margin: 0 60px;
    opacity: .65;
    transition: .3s;
    filter: grayscale(100%);
}

.logo-track img:hover {
    opacity: 1;
    filter: none;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* card grids */
.grid {
    display: grid;
    gap: var(--gap);
}

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

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

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

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    padding: 30px 26px;
    transition: border-color .15s ease, transform .15s ease;
}

.card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

/* services */
.service-card .ico {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-card .ico svg {
    width: 22px;
    height: 22px;
}

.service-card h3 {
    font-size: 18.5px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--ink-soft);
    font-size: 14.5px;
    margin-bottom: 16px;
}

.service-card a {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--orange-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card a svg {
    width: 14px;
    height: 14px;
}

/* specializations */
.spec-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spec-card .tag {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .06em;
    color: var(--orange-deep);
    text-transform: uppercase;
}

.spec-card h3 {
    font-size: 17.5px;
    margin: 4px 0 6px;
}

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

/* industries */
.industry-card {
    text-align: center;
    padding: 28px 18px;
}

.industry-card .ico {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card .ico svg {
    width: 22px;
    height: 22px;
}

.industry-card h3 {
    font-size: 15.5px;
}

/* technologies */
.tech-group {
    margin-bottom: 30px;
}

.tech-group:last-child {
    margin-bottom: 0;
}

.tech-group h4 {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 14px;
}

.tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    font-size: 14px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
    transition: border-color .15s ease, color .15s ease;
}

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

/* process */
.process-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    position: relative;
    padding: 0 18px 0 0;
}

.process-step+.process-step {
    padding-left: 18px;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    right: 18px;
    height: 1px;
    background: var(--border);
}

.process-step:first-child::before {
    display: none;
}

.process-num {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--white);
    background: var(--blue);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.process-step:nth-child(odd) .process-num {
    background: var(--blue);
}

.process-step:nth-child(even) .process-num {
    background: var(--orange);
}

.process-step h3 {
    font-size: 16.5px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13.5px;
    color: var(--ink-soft);
}

/* ===================== FAQ ===================== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 4px;
    font-family: var(--font-body);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
}

.faq-q .plus {
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: border-color .2s ease;
}

.faq-q .plus::before,
.faq-q .plus::after {
    content: "";
    position: absolute;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.faq-q .plus::before {
    width: 10px;
    height: 1.5px;
}

.faq-q .plus::after {
    width: 1.5px;
    height: 10px;
}

/* Answer panel — uses height animation via JS, hidden by default */
.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
}

.faq-a[hidden] {
    display: block;
    /* override browser hidden so transition works */
    visibility: hidden;
}

.faq-a.is-visible {
    visibility: visible;
}

.faq-a-inner {
    padding: 0 30px 22px 4px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

/* open state */
.faq-item.is-open .faq-q .plus::after {
    transform: rotate(90deg);
}

.faq-item.is-open .faq-q .plus {
    border-color: var(--orange);
}

.faq-item.is-open .faq-q {
    color: var(--blue-deep);
}

/* cta band */
.cta-band {
    background: linear-gradient(120deg, var(--blue-deep), var(--blue));
    color: var(--white);
    border-radius: var(--radius);
    padding: 50px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-band h2 {
    font-size: clamp(24px, 2.6vw, 32px);
    margin-bottom: 8px;
}

.cta-band p {
    color: rgba(255, 255, 255, .82);
    font-size: 15.5px;
}

/* footer */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .78);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-about p {
    margin-top: 16px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, .62);
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .15s ease, background .15s ease;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .35);
}

.footer-socials svg {
    width: 15px;
    height: 15px;
}

.footer h4 {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 14.5px;
}

.footer-links a {
    color: rgba(255, 255, 255, .78);
    transition: color .15s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 14.5px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .78);
}

.footer-contact a {
    color: rgba(255, 255, 255, .78);
    transition: color .15s ease;
}

.footer-contact a:hover {
    color: var(--orange);
}

.footer-contact svg {
    flex: none;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    color: var(--orange);
}

.footer-bottom {
    padding: 22px 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .5);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .5);
}

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

/* whatsapp floating */
.whatsapp-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .06);
    transition: transform .15s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
    .navbar {
        position: relative;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-phone {
        display: none;
    }

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

    .value-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-list {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 36px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .hero-arrow {
        display: none;
    }
}



@media (max-width: 640px) {
    .section {
        padding: 64px 0;
    }

    .hero-content {
        padding: 90px 20px 70px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .grid-4,
    .grid-6 {
        grid-template-columns: 1fr 1fr;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 28px;
    }

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

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

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {

    .grid-3,
    .grid-4,
    .grid-6 {
        grid-template-columns: 1fr;
    }
}




/* contact page extra styling */

.hero--small {
    min-height: 460px;
}

.contact-form {
    margin-top: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font: inherit;
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.contact-form textarea {
    resize: vertical;
}

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

    .form-group.full {
        grid-column: auto;
    }
}


/* about page extra styling */

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.client-grid div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    min-height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s ease;
}

.client-grid div:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.client-grid img {
    max-width: 150px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;

    filter: grayscale(100%);
    opacity: .7;
    transition: .3s ease;
}

.client-grid div:hover img {
    filter: none;
    opacity: 1;
}

@media(max-width:900px) {

    .client-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:600px) {

    .client-grid {

        grid-template-columns: 1fr;

    }

}