/* =========================================================
   ZIVO HOLDING — MAIN STYLESHEET
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --navy: #1b2733;
    --navy2: #223441;
    --orange: #f5a623;
    --cream: #f7f3ec;
    --white: #fff;
    --muted: #64717b;
    --line: #dfe3e6;

    --shadow: 0 18px 60px rgba(18, 31, 42, 0.12);

    --radius: 22px;
}


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
}

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

.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   UTILITY BAR
========================================================= */

.utility {
    background: #101b24;
    color: #d9e0e5;
    font-size: 12px;
}

.utility-inner {
    height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility a {
    margin-left: 22px;
}

.utility i {
    color: var(--orange);
    margin-right: 6px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(27, 39, 51, 0.96);

    backdrop-filter: blur(14px);

    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}

.nav {
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.brand img {
    display: block;

    width: 135px;
    height: auto;
    max-height: 48px;

    object-fit: contain;
    object-position: center;

    background: transparent;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;

    color: #f7f9fa;

    font-size: 14px;
    font-weight: 600;
}

.nav-links a:not(.btn) {
    opacity: 0.86;
    position: relative;
}


/* Navigation underline */

.nav-links a:not(.btn)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: 0.25s;
}

.nav-links a:not(.btn):hover::after,
.nav-links .active::after {
    width: 100%;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;

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

    gap: 10px;

    background: var(--orange);
    color: var(--navy);

    border: 1px solid var(--orange);

    padding: 15px 24px;

    border-radius: 6px;

    font-weight: 800;
    font-size: 14px;

    transition: 0.25s;

    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.18);
}

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

    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.26);
}

.btn-sm {
    padding: 11px 18px;
}

.btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
    box-shadow: none;
}

.dark-btn {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.light-btn {
    background: #fff;
    border-color: #fff;
    color: var(--navy);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-btn {
    display: none;

    background: none;
    border: 0;

    color: #fff;

    font-size: 22px;

    cursor: pointer;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero {
    min-height: 760px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        #111c24
        url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=2200&q=88")
        center / cover no-repeat;

    color: #fff;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9, 17, 24, 0.94) 0%,
            rgba(14, 25, 34, 0.84) 46%,
            rgba(14, 25, 34, 0.48) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding: 100px 0 140px;
}


/* =========================================================
   EYEBROW / SECTION KICKER
========================================================= */

.eyebrow,
.section-kicker {
    font-size: 12px;

    letter-spacing: 0.18em;

    font-weight: 800;

    color: var(--orange);
}

.eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;
}

.eyebrow span {
    width: 42px;
    height: 3px;

    background: var(--orange);
}


/* =========================================================
   HEADINGS
========================================================= */

h1,
h2,
h3,
h4 {
    font-family: Manrope, Inter, sans-serif;

    line-height: 1.08;

    margin: 0 0 18px;
}

h1 {
    font-size: clamp(52px, 7vw, 92px);

    letter-spacing: -0.055em;

    max-width: 850px;
}

h1 em {
    font-style: normal;

    color: var(--orange);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero p {
    font-size: 19px;

    max-width: 640px;

    color: #e5ebef;

    margin: 0 0 32px;
}

.hero-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.hero-proof {
    display: flex;

    gap: 28px;

    flex-wrap: wrap;

    margin-top: 70px;

    color: #ccd5db;

    font-size: 12px;
}

.hero-proof span {
    padding-left: 14px;

    border-left: 2px solid var(--orange);
}


/* =========================================================
   DIAGONAL SHAPES
========================================================= */

.slash {
    position: absolute;

    background: var(--orange);

    z-index: 1;

    transform: skewX(-28deg);
}

.slash-one {
    height: 180px;
    width: 42px;

    left: 5%;
    bottom: -55px;

    opacity: 0.95;
}

.slash-two {
    height: 140px;
    width: 18px;

    left: 8%;
    bottom: -45px;

    background: #30414d;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    padding: 115px 0;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.split {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}

.about-visual {
    position: relative;
}

.image-frame {
    height: 560px;

    overflow: hidden;

    border-radius: 4px;

    position: relative;
}

.image-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            145deg,
            rgba(27, 39, 51, 0.05),
            rgba(27, 39, 51, 0.35)
        );

    mix-blend-mode: multiply;
}

.image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(0.65) contrast(1.05);
}


/* About orange tag */

.orange-tag {
    position: absolute;

    left: -30px;
    bottom: -35px;

    background: var(--orange);

    padding: 22px 28px;

    display: flex;
    flex-direction: column;

    min-width: 210px;

    box-shadow: var(--shadow);
}

.orange-tag strong {
    font-family: Manrope;

    font-size: 25px;
}

.orange-tag span {
    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}


/* About text */

.about-copy h2,
.section-head h2,
.center h2 {
    font-size: 52px;

    letter-spacing: -0.045em;
}

.about-copy h2 span,
.section-head h2 span,
.center h2 span,
.why h2 span {
    color: var(--orange);
}

.about-copy p {
    color: #53616b;

    max-width: 610px;
}


/* =========================================================
   TAGLINE
========================================================= */

.tagline {
    border-left: 4px solid var(--orange);

    padding: 12px 0 12px 18px;

    margin: 28px 0;

    font-family: Manrope;

    font-size: 24px;

    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}

.tagline span {
    color: var(--orange);

    font-weight: 800;
}


/* =========================================================
   STATS
========================================================= */

.stats {
    display: grid;

    gap: 12px;
}

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

    border-top: 1px solid var(--line);

    padding-top: 25px;
}

.stats b {
    font-family: Manrope;

    font-size: 23px;

    display: block;
}

.stats small {
    color: var(--muted);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.05em;
}


/* =========================================================
   STRENGTHS
========================================================= */

.strengths {
    background: var(--navy);

    color: #fff;

    position: relative;

    overflow: hidden;
}

.strengths::after {
    content: "";

    position: absolute;

    right: -160px;
    top: -180px;

    width: 420px;
    height: 420px;

    background: var(--orange);

    transform: skewX(-28deg);

    opacity: 0.95;
}

.strengths-grid {
    min-height: 510px;

    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 80px;

    align-items: center;

    position: relative;

    z-index: 2;
}

.strength-intro h2 {
    font-size: 48px;

    letter-spacing: -0.04em;
}

.strength-intro h2 span {
    color: var(--orange);
}

.strength-intro p {
    color: #b9c5cd;

    max-width: 440px;
}


/* Strength pills */

.pills {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.pills span {
    padding: 12px 18px;

    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.045);

    font-size: 14px;

    transition: 0.25s;
}

.pills span:hover {
    background: var(--orange);

    color: var(--navy);

    border-color: var(--orange);

    transform: translateY(-2px);
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: var(--cream);
}

.section-head {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 52px;
}

.section-head > p {
    max-width: 450px;

    color: var(--muted);

    margin: 0;
}


/* Service grid */

.service-grid {
    display: grid;

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

    gap: 14px;
}

.service-card {
    background: #fff;

    border: 1px solid #e8e4dc;

    padding: 25px 20px 28px;

    min-height: 250px;

    position: relative;

    transition: 0.3s;

    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: transparent;
}

.service-card .num {
    position: absolute;

    top: 15px;
    right: 15px;

    font-size: 11px;

    font-weight: 800;

    color: #aeb7bd;
}

.service-card i {
    display: grid;

    place-items: center;

    width: 46px;
    height: 46px;

    background: #fff3dc;

    color: var(--orange);

    border-radius: 50%;

    font-size: 18px;

    margin: 26px 0 28px;
}

.service-card h3 {
    font-size: 18px;
}

.service-card p {
    font-size: 13px;

    color: var(--muted);

    margin: 0;
}

.center {
    text-align: center;

    margin-top: 48px;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries {
    background: var(--navy);

    color: #fff;

    padding: 110px 0;

    position: relative;

    overflow: hidden;
}

.industries::before {
    content: "";

    position: absolute;

    left: -110px;
    bottom: -120px;

    width: 340px;
    height: 250px;

    background: var(--orange);

    transform: skewX(-30deg);
}

.section-head.light .section-kicker {
    color: var(--orange);
}

.section-head.light > p {
    color: #b7c2c9;
}

.industry-grid {
    display: grid;

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

    gap: 12px;

    position: relative;

    z-index: 2;
}

.industry-grid span {
    border: 1px solid rgba(255, 255, 255, 0.13);

    padding: 18px 20px;

    background: rgba(255, 255, 255, 0.035);

    font-weight: 600;
}

.industry-grid i {
    color: var(--orange);

    width: 25px;
}


/* =========================================================
   WHY CHOOSE US / PROCESS
========================================================= */

.why {
    background: #fff;
}

.process {
    display: grid;

    grid-template-columns:
        1fr
        70px
        1fr
        70px
        1fr;

    align-items: center;
}

.process-card {
    border: 1px solid var(--line);

    padding: 30px;

    min-height: 300px;

    position: relative;
}

.process-card > span {
    font-family: Manrope;

    color: var(--orange);

    font-size: 13px;

    font-weight: 800;
}

.process-card i {
    display: block;

    color: var(--navy);

    font-size: 25px;

    margin: 24px 0;
}

.process-card h3 {
    font-size: 21px;
}

.process-card p {
    color: var(--muted);

    font-size: 14px;
}


/* Process connector */

.process-line {
    height: 1px;

    background: var(--orange);

    position: relative;
}

.process-line::after {
    content: "›";

    position: absolute;

    right: -3px;
    top: -16px;

    font-size: 25px;

    color: var(--orange);
}


/* =========================================================
   METRIC BAND
========================================================= */

.metric-band {
    margin-top: 70px;

    background: var(--navy);

    color: #fff;

    display: grid;

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

    padding: 32px;
}

.metric-band div {
    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-band div:last-child {
    border-right: 0;
}

.metric-band b {
    font: 800 38px Manrope;

    display: block;

    color: var(--orange);
}

.metric-band span {
    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    color: #b8c4cb;
}


/* =========================================================
   CLIENTS
========================================================= */

.clients {
    background: var(--cream);
}

.client-intro {
    max-width: 650px;

    margin: 0 auto;

    color: var(--muted);
}

.logo-grid {
    display: grid;

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

    gap: 12px;

    margin-top: 55px;
}

.logo-grid div {
    height: 110px;

    background: #fff;

    border: 1px solid #e4dfd5;

    display: grid;

    place-content: center;

    text-align: center;

    color: #9aa2a8;

    font-size: 11px;

    letter-spacing: 0.12em;
}

.logo-grid strong {
    color: #606b72;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    background: var(--orange);

    position: relative;

    overflow: hidden;
}

.cta::after {
    content: "";

    position: absolute;

    right: -100px;
    top: -160px;

    width: 460px;
    height: 420px;

    background: var(--navy);

    transform: skewX(-30deg);
}

.cta-inner {
    min-height: 320px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    position: relative;

    z-index: 2;
}

.cta .section-kicker {
    color: var(--navy);
}

.cta h2 {
    font-size: 50px;

    letter-spacing: -0.045em;
}

.cta h2 span {
    color: #fff;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #111c24;

    color: #d6dfe4;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        0.9fr
        1fr;

    gap: 55px;

    padding: 75px 0;
}

.footer-brand img {
    width: 135px;
    height: auto;
    max-height: 48px;

    object-fit: contain;

    background: transparent;
}

.footer p {
    color: #9eabb3;

    font-size: 13px;
}

.footer-grid h4 {
    font-size: 15px;

    color: #fff;

    margin-bottom: 18px;
}

.footer-grid > div:not(.footer-brand) a {
    display: block;

    color: #aeb9c0;

    font-size: 13px;

    margin: 10px 0;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.socials {
    display: flex;

    gap: 8px;

    margin-top: 22px;
}

.socials a {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border: 1px solid #34434d;

    color: #fff;

    border-radius: 50%;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top: 1px solid #2b3942;
}

.footer-bottom .container {
    height: 64px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #89969e;

    font-size: 11px;
}

.footer-bottom a {
    color: #fff;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 80;

    background: #25d366;

    color: #fff;

    border-radius: 999px;

    padding: 12px 17px;

    display: flex;

    gap: 9px;

    align-items: center;

    font-weight: 800;

    font-size: 13px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   CONTACT PAGE HERO
========================================================= */

.page-hero {
    min-height: 470px;

    background:
        linear-gradient(
            90deg,
            rgba(12, 24, 32, 0.98),
            rgba(27, 39, 51, 0.88)
        ),
        url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2000&q=85")
        center / cover;

    color: #fff;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;
}

.page-hero h1 {
    font-size: clamp(48px, 6vw, 76px);

    max-width: 780px;
}

.page-hero h1 span {
    color: var(--orange);
}

.page-hero p {
    max-width: 620px;

    color: #cbd5da;

    font-size: 17px;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: stretch;
}


/* Contact form */

.form-wrap {
    background: #fff;

    padding: 45px;

    box-shadow: var(--shadow);
}

.form-wrap h2,
.contact-card h2 {
    font-size: 45px;

    letter-spacing: -0.04em;
}

.form-wrap h2 span,
.contact-card h2 span {
    color: var(--orange);
}

form {
    margin-top: 30px;
}

label {
    display: block;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 18px;

    color: var(--navy);
}

input,
select,
textarea {
    display: block;

    width: 100%;

    margin-top: 8px;

    border: 1px solid #dce1e4;

    background: #fbfcfc;

    padding: 14px 15px;

    font: inherit;

    font-size: 14px;

    color: var(--navy);

    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--orange);

    box-shadow:
        0 0 0 3px
        rgba(245, 166, 35, 0.12);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


/* Form success */

.form-success {
    display: none;

    margin-top: 15px;

    background: #eaf8ef;

    color: #216a3a;

    padding: 12px;

    font-size: 13px;
}

.form-success.show {
    display: block;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.contact-card {
    position: relative;

    overflow: hidden;

    background: var(--navy);

    color: #fff;

    min-height: 590px;
}

.contact-card-shape {
    position: absolute;

    left: -50px;
    bottom: -70px;

    width: 620px;
    height: 380px;

    background: var(--orange);

    transform: skewX(-22deg);

    border-radius: 50px;
}

.contact-card-content {
    position: relative;

    z-index: 2;

    padding: 45px;
}


/* Contact information */

.contact-item {
    display: flex;

    gap: 18px;

    align-items: flex-start;

    margin-top: 30px;
}

.contact-item > i {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: var(--orange);
}

.contact-item small {
    display: block;

    color: #8f9da5;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    font-size: 10px;
}

.contact-item a,
.contact-item p {
    font-size: 16px;

    color: #fff;

    margin: 4px 0 0;
}


/* =========================================================
   MAP
========================================================= */

.map-placeholder {
    padding: 0 0 110px;

    background: var(--cream);
}

.map-inner {
    min-height: 340px;

    background: #dfe5e7;

    display: grid;

    place-items: center;

    text-align: center;

    color: #65727b;

    border: 1px solid #d2dadd;
}

.map-inner i {
    font-size: 35px;

    color: var(--orange);
}

.map-inner h3 {
    margin: 8px 0;
}

.map-inner p {
    max-width: 520px;

    font-size: 13px;

    margin: 0 20px;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(18px);

    transition: 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: none;
}


/* =========================================================
   TABLET — 1000px
========================================================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 18px;
    }

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

    .split {
        gap: 45px;
    }

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

        row-gap: 22px;
    }

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

    .process {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .process-line {
        width: 100%;

        height: 1px;
    }

    .process-line::after {
        content: "↓";

        right: 0;

        top: -14px;
    }

    .process-card {
        min-height: 0;
    }

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

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

    .contact-card {
        min-height: 500px;
    }
}


/* =========================================================
   MOBILE — 760px
========================================================= */

@media (max-width: 760px) {

    /* Utility */
    .utility {
        display: none;
    }


    /* Navbar */
    .nav {
        height: 68px;
    }

    .brand img {
        width: 120px;

        height: auto;

        max-height: 42px;

        object-fit: contain;
    }

    .menu-btn {
        display: block;
    }


    /* Mobile navigation */
    .nav-links {
        position: absolute;

        top: 68px;

        left: 0;
        right: 0;

        background: var(--navy);

        padding: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 4px;
    }

    .nav-links .btn {
        margin-top: 8px;

        text-align: center;
    }


    /* Hero */
    .hero {
        min-height: 700px;
    }

    .hero-content {
        padding: 80px 0 110px;
    }

    .hero-proof {
        margin-top: 48px;

        gap: 14px;
    }


    /* Sections */
    .section {
        padding: 80px 0;
    }


    /* About */
    .split {
        grid-template-columns: 1fr;
    }

    .image-frame {
        height: 430px;
    }

    .about-copy h2,
    .section-head h2,
    .center h2 {
        font-size: 40px;
    }


    /* Strengths */
    .strengths-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 75px 0;
    }


    /* Services */
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-head {
        display: block;
    }

    .section-head > p {
        margin-top: 15px;
    }


    /* Industries */
    .industry-grid {
        grid-template-columns: 1fr;
    }


    /* Metrics */
    .metric-band {
        grid-template-columns: 1fr 1fr;

        gap: 25px;
    }

    .metric-band div:nth-child(2) {
        border-right: 0;
    }

    .metric-band div {
        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.12);

        padding-bottom: 20px;
    }

    .metric-band div:nth-child(3),
    .metric-band div:nth-child(4) {
        border-bottom: 0;
    }


    /* CTA */
    .cta-inner {
        padding: 65px 0;

        min-height: 0;

        display: block;
    }

    .cta h2 {
        font-size: 40px;
    }

    .cta .btn {
        margin-top: 25px;
    }


    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }


    /* Contact form */
    .form-wrap {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card-content {
        padding: 32px;
    }


    /* WhatsApp */
    .whatsapp span {
        display: none;
    }

    .whatsapp {
        width: 52px;
        height: 52px;

        justify-content: center;

        padding: 0;
    }


    /* Contact hero */
    .page-hero {
        min-height: 410px;
    }
}


/* =========================================================
   SMALL MOBILE — 480px
========================================================= */

@media (max-width: 480px) {

    .container {
        width: min(100% - 28px, 1160px);
    }


    /* Hero */
    .hero h1 {
        font-size: 48px;
    }


    /* Services */
    .service-grid {
        grid-template-columns: 1fr;
    }


    /* Stats */
    .stats.four {
        grid-template-columns: 1fr 1fr;
    }


    /* Client logos */
    .logo-grid {
        grid-template-columns: 1fr 1fr;
    }


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


    /* About tag */
    .orange-tag {
        left: 10px;
    }


    /* Contact headings */
    .form-wrap h2,
    .contact-card h2 {
        font-size: 35px;
    }
}