/* ================================================
   MAKEIT — Facilitador Tecnológico — CSS
   Color-matched from original site analysis
   ================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
    line-height: 28px;
}

body {
    font-family: "ABeeZee", sans-serif;
    font-weight: 400;
    color: #40403f;                       /* --color-content-text */
    background: #dbdbdb;                  /* --color-content-bg-alt */
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: #2c3f8b;                       /* --color-content-link */
    transition: color 0.25s;
}
a:hover {
    color: #40403f;                       /* --color-content-link-hover */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "ABeeZee", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: #3b3d40;                       /* --color-content-heading */
}

h2 { font-size: clamp(1.8rem, 2.3vw, 2.3rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.3rem, 1.7vw, 1.7rem); margin-bottom: 0.6em; }
h4 { font-size: clamp(1.2rem, 1.5vw, 1.5rem); margin-bottom: 0.6em; }

p {
    margin-bottom: 1rem;
    line-height: 1.65;
}

.container {
    max-width: 1140px;                    /* --site-content-width */
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* ================================================
   HEADER — bg: #ffffff, text: #646970, hover: #4c6ae6
   ================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 111;
    background: #ffffff;                  /* --color-header-middle-bg */
    box-shadow: 0 1px 0 rgba(0,0,0,0.08); /* shadow_thin */
    transition: background 0.3s, box-shadow 0.3s, height 0.3s;
    height: 90px;
}

.site-header.sticky {
    height: 80px;
    box-shadow: 0 3px 5px -1px rgba(0,0,0,0.1), 0 2px 1px -1px rgba(0,0,0,0.05);
}

.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 65px;
}

.logo-img {
    height: 65px;
    width: auto;
    transition: height 0.3s;
}

.site-header.sticky .logo-img {
    height: 55px;
}

.header-right {
    display: flex;
    align-items: center;
}

/* === Navigation === */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-close {
    display: none;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-list.level-1 > .nav-item > a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    line-height: 90px;
    color: #646970;                       /* --color-header-middle-text */
    font-size: 1rem;
    transition: color 0.25s;
    white-space: nowrap;
}

.site-header.sticky .nav-list.level-1 > .nav-item > a {
    line-height: 80px;
}

.nav-list.level-1 > .nav-item > a:hover,
.nav-list.level-1 > .nav-item.active > a {
    color: #4c6ae6;                       /* --color-header-middle-text-hover */
}

.arrow {
    font-size: 0.7em;
    margin-left: 4px;
    opacity: 0.7;
}

/* Dropdown Level 2 */
.nav-item.has-children {
    position: relative;
}

.nav-list.level-2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;                  /* --color-header-middle-bg */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); /* --box-shadow */
    flex-direction: column;
    z-index: 200;
    padding: 0.5rem 0;
}

.nav-item.has-children:hover > .nav-list.level-2 {
    display: flex;
}

.nav-list.level-2 > li > a {
    display: block;
    padding: 8px 20px;
    color: #646970;                       /* --color-header-middle-text */
    font-size: 0.95rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-list.level-2 > li > a:hover {
    color: #4c6ae6;                       /* --color-header-middle-text-hover */
}

/* Dropdown Level 3 */
.nav-list.level-3 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 280px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    flex-direction: column;
    z-index: 201;
    padding: 0.5rem 0;
}

.nav-list.level-2 > .nav-item.has-children:hover > .nav-list.level-3 {
    display: flex;
}

.nav-list.level-3 > li > a {
    display: block;
    padding: 8px 20px;
    color: #646970;
    font-size: 0.9rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-list.level-3 > li > a:hover {
    color: #4c6ae6;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #3b3d40;                  /* --color-content-heading */
    border-radius: 2px;
    transition: all 0.3s;
}


/* ================================================
   HERO SLIDER — Exact Depicter colors
   Slide 1: subtitle #EED306, title #FFF, box bg #000 @ 46%
   Slide 2-3: subtitle #FA8702, title #FFF, box bg #000224 @ 63%
   Buttons: #0258FC, hover #131313
   Accent line: gradient #0258FC → #2570FF
   Overall overlay: rgba(0,0,0,0.3)
   ================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 740px;
    overflow: hidden;
    margin-top: 90px;
}

.site-header.sticky ~ .hero-slider {
    margin-top: 80px;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);      /* depicter section overlay */
    z-index: 2;
    pointer-events: none;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
    padding: 0 5%;
}

.slide-content-right {
    justify-content: flex-end;
}

.slide-content-left {
    justify-content: flex-start;
    padding-left: 5%;
}

/* Slide 1: dark semi-transparent box at 46% opacity */
.slide[data-index="0"] .slide-text-box {
    background: rgba(0, 0, 0, 0.462);    /* element-27: opacity 0.462, bg #000 */
    border-radius: 15px;                 /* element-27 border-radius */
}

/* Slide 2-3: dark navy semi-transparent box at 63% opacity */
.slide[data-index="1"] .slide-text-box,
.slide[data-index="2"] .slide-text-box {
    background: rgba(0, 2, 36, 0.626);   /* element-29/51: opacity 0.626, bg #000224 */
    border-radius: 15px;                 /* element-29 border-radius */
}

.slide-text-box {
    padding: 40px 50px;
    max-width: 600px;
    animation: slideUp 1s ease-out;
}

/* Slide 1 subtitle: golden yellow #EED306 */
.slide[data-index="0"] .slide-subtitle {
    color: #EED306;                      /* element-4 color */
    font-size: 30px;                     /* element-4 font-size */
}

/* Slide 2-3 subtitle: orange #FA8702 */
.slide[data-index="1"] .slide-subtitle,
.slide[data-index="2"] .slide-subtitle {
    color: #FA8702;                      /* element-11/52 color */
    font-size: 30px;
}

.slide-subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;                   /* from depicter css */
    text-align: center;
    line-height: 120%;
    display: block;
    margin-bottom: 0.5rem;
}

.slide-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;                   /* element-3 font-weight */
    font-size: clamp(29px, 4vw, 75px);  /* 75px desktop, 50px tablet, 29px mobile */
    color: #FFF;                        /* element-3 color */
    line-height: 115%;                  /* element-3 line-height */
    letter-spacing: -3px;              /* element-3 letter-spacing */
    text-align: center;
    margin-bottom: 1rem;
}

.slide-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0258FC 0%, #2570FF 100%); /* element-6 */
    border-radius: 2px;
    margin: 1rem auto 1.5rem;
    box-shadow: 0px 8px 11px 1px rgba(2, 88, 252, 0.6); /* element-6 shadow */
}

.slide-btn {
    display: block;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;                   /* element-5 font-weight */
    font-size: 16px;                    /* element-5 font-size */
    padding: 14px 28px;
    background: #0258FC;                /* element-5 bg */
    color: #FFF !important;             /* element-5 color */
    border-radius: 6px;
    box-shadow: 0px 20px 35px 0px rgba(2, 88, 252, 0.45);  /* element-5 shadow */
    transition: all ease 0.5s;          /* element-5 transition */
    margin: 0 auto;
    max-width: 172px;
}

.slide-btn:hover {
    background: #131313;                /* element-5 hover bg */
    color: #FFF !important;
    box-shadow: 10px 10px 25px 0px transparent; /* element-5 hover shadow */
}

.slider-arrow {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #0258FC;                /* arrow element bg */
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 0;                   /* element-7 border-radius: 0px */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all ease 0.5s;
}

.slider-arrow:hover {
    background: #000;                   /* element-7 hover bg */
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================================
   ABOUT SECTION — bg: #0e1872 (data-bg-color)
   Text: white, heading: white
   ================================================ */
.about-section {
    background: #0e1872;                /* data-bg-color="#0e1872" */
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 0 40px;                     /* us_custom_c15099d3: margin-left/right 40px */
}

.about-img {
    border-radius: 30px;                /* us_custom_fca8cc99: border-radius 30px */
    width: 100%;
    object-fit: cover;
}

.about-text-col h2 {
    color: #ffffff;
    font-family: "ABeeZee", sans-serif; /* us_custom_e5aea6d2: font-family body */
    font-size: clamp(1.6rem, 2.3vw, 2.3rem);
}

.about-text-col p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.about-btn-wrap {
    text-align: center;
    margin-top: 30px;                   /* us_custom_d2199d32: margin-top 30px */
}


/* ================================================
   PRIMARY BUTTON — style from us-btn-style_1
   bg: --color-content-primary (#2c3f8b)
   hover: --color-content-secondary (#40403f)
   ================================================ */
.btn-primary {
    display: inline-block;
    font-family: "ABeeZee", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    padding: 1em 2em;
    background: #2c3f8b;                /* --color-content-primary */
    color: #fff !important;
    border: none;
    border-radius: 0.3em;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
}

.btn-primary:hover {
    background: #40403f;                /* --color-content-secondary */
    color: #fff !important;
    transform: translateY(-1px);
}


/* ================================================
   SERVICES SECTION — bg: rgba(240,248,255,0.80)
   Title bg: rgba(223,233,242,0.91)
   Service body font: ABeeZee body
   ================================================ */
.services-section {
    background: rgba(240, 248, 255, 0.80);  /* us_custom_7948578e */
    padding: 30px 40px 30px 40px;           /* us_custom_7948578e padding */
}

.section-title {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 26px;
    text-align: center;
    color: #3b3d40;                     /* --color-content-heading */
    background: rgba(223, 233, 242, 0.91);  /* us_custom_b0bb8ec0 */
    padding: 12px 24px;
    border-radius: 8px;
    display: block;
    margin: 0 auto 40px;
    width: 100%;
}

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

.service-card {
    background: #ffffff;                /* --color-content-bg */
    border-radius: 10px;                /* us_custom_08b30fab */
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-img-wrap {
    overflow: hidden;
    border-radius: 20px;                /* us_custom_213e151c */
    margin: 0;
}

.service-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.05);
}

.service-body {
    padding: 30px 16px 20px;            /* us_custom_79c0830d: padding-top 30px */
    font-family: "ABeeZee", sans-serif;
    text-align: left;                   /* us_custom_bd344008: text-align left */
}

.service-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #3b3d40;                     /* --color-content-heading */
    margin-bottom: 12px;
    text-align: left;
}

.service-body p {
    font-size: 0.92rem;
    color: #40403f;                     /* --color-content-text (was #666 before) */
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.service-link {
    color: #2c3f8b;                     /* --color-content-link */
    font-weight: 500;
}

.service-link a {
    color: #2c3f8b;
    font-size: 1.1em;
}


/* ================================================
   CTA SECTION 
   Row bg: #d9e2f4 with overlay rgba(8,16,79,0.30)
   Card: white bg, border-radius 10px
   ================================================ */
.cta-section {
    position: relative;
    padding: 20px 0;                    /* us_custom_b48b2d62: padding-top/bottom 20px */
    background: #d9e2f4;                /* data-bg-color="#d9e2f4" */
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 16, 79, 0.30);  /* section overlay */
    z-index: 0;
}

.cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;                           /* grid-gap: 5px from inline */
    align-items: flex-end;
}

.cta-text-col {
    background: #ffffff;                /* us_custom_08b30fab: bg #ffffff */
    border-radius: 10px;                /* us_custom_08b30fab */
    padding: 40px;
    text-align: left;                   /* us_custom_bd344008 */
}

.cta-text-col h2 {
    color: #3b3d40;                     /* --color-content-heading */
    font-family: "ABeeZee", sans-serif;
    font-size: clamp(1.5rem, 2.3vw, 2.3rem);
    margin-bottom: 0.8rem;
}

.cta-text-col p {
    color: #40403f;                     /* --color-content-text */
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.cta-btn-wrap {
    text-align: center;
    margin-top: 20px;
}

.cta-img {
    border-radius: 10px;                /* us_custom_9cf479d2 */
    width: 100%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);  /* style_shadow-1 */
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* ================================================
   CLIENTS SECTION — bg: white
   ================================================ */
.clients-section {
    background: #ffffff;                /* --color-content-bg */
    padding: 50px 0 60px;
}

.section-title-dark {
    text-align: center;
    color: #3b3d40;                     /* --color-content-heading */
    font-size: clamp(1.6rem, 2.3vw, 2.3rem);
    margin-bottom: 0.5rem;
}

.section-subtitle-dark {
    text-align: center;
    color: #40403f;                     /* --color-content-text */
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;                             /* gapless-grid */
}

.client-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.client-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s, filter 0.4s;
}

.client-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.client-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
    padding: 6px 4px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.client-item:hover .client-name {
    opacity: 1;
}


/* ================================================
   FOOTER — bg: #1f2937 (data-bg-color inline)
   Headings: rgba(247,247,89,0.71) — yellowish
   Text: #666d70, Links: #9da6a8
   Form inputs bg: #535661, border: #999
   Submit: #e09900
   ================================================ */
.site-footer {
    background: #1f2937;                /* data-bg-color="#1f2937" */
    padding: 50px 60px;                 /* us_custom_d9cfba7b: padding 50px 60px */
    color: #ffffff;
}

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

.footer-col h4 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: rgba(247, 247, 89, 0.71);    /* us_custom_afe65dfa */
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Footer Form */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-form input,
.footer-form select,
.footer-form textarea {
    background: #535661 !important;     /* wpcf7 custom css */
    color: #ffffff !important;
    border: 1px solid #999 !important;  /* wpcf7 custom css */
    border-radius: 8px;
    padding: 10px 12px;
    font-family: "ABeeZee", sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: box-shadow 0.25s;
    margin-bottom: 1px;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-form input:focus,
.footer-form select:focus,
.footer-form textarea:focus {
    box-shadow: 0 0 0 2px #2c3f8b;     /* --color-content-primary */
}

.footer-form select {
    appearance: auto;
    cursor: pointer;
}

.footer-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    align-self: flex-end;
    max-width: 120px;
    background: #e09900;                /* wpcf7-submit bg */
    color: #ffffff;
    border: 2px solid #e09900;
    border-radius: 0;
    padding: 10px 12px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: "ABeeZee", sans-serif;
}

.btn-submit:hover {
    background: #c08200;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9da6a8;                     /* --color-footer-link */
    font-size: 0.95rem;
}

.contact-item a {
    color: #9da6a8;                     /* --color-footer-link */
    transition: color 0.25s;
}

.contact-item a:hover {
    color: #2c3f8b;                     /* --color-footer-link-hover */
}

.contact-icon {
    font-size: 1.2rem;
}

.footer-btn {
    margin-bottom: 1.5rem;
}

.footer-note {
    color: #666d70;                     /* --color-footer-text */
    font-size: 0.9rem;
    line-height: 1.5;
}


/* ================================================
   WHATSAPP FLOATING BUTTON — brand: #0109ae
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0109ae;                /* qlwapp scheme brand */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}


/* ================================================
   BACK TO TOP — bg: rgba(0,0,0,0.3)
   hover: --color-content-primary-grad (#2c3f8b)
   ================================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(0,0,0,0.3);         /* from theme JS */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: #2c3f8b;                /* --color-content-primary */
}


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .hero-slider {
        height: 700px;
    }

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

    .about-grid {
        margin: 0 20px;
        gap: 30px;
    }

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

    .slide-text-box {
        max-width: 500px;
        padding: 30px 35px;
    }

    .slide-title {
        font-size: 50px;                /* tablet: 50px */
        letter-spacing: -2px;
    }

    .slide-subtitle {
        font-size: 24px;               /* tablet: 24px */
    }

    .slide-btn {
        font-size: 15px;               /* tablet: 15px */
    }
}

@media (max-width: 899px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.15);
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px 20px;
        transition: right 0.35s ease;
        z-index: 500;
        overflow-y: auto;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 12px;
        right: 16px;
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        color: #3b3d40;
    }

    .nav-list.level-1 {
        flex-direction: column;
        width: 100%;
    }

    .nav-list.level-1 > .nav-item > a {
        line-height: 48px;
        padding: 0 10px;
        font-size: 1.05rem;
    }

    .nav-list.level-2,
    .nav-list.level-3 {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 16px;
    }

    .nav-item.has-children.open > .nav-list.level-2,
    .nav-item.has-children.open > .nav-list.level-3 {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

@media (max-width: 768px) {
    html {
        font-size: 16px;               /* mobile font-size: 16px */
    }

    .site-header {
        height: 80px;
    }

    .hero-slider {
        height: 500px;
        margin-top: 80px;
    }

    .logo-img {
        height: 40px;
    }

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

    .about-section {
        padding: 40px 20px;
    }

    .services-section {
        padding: 30px 20px;
    }

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

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

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);  /* mobile: 2 cols */
    }

    .slide-text-box {
        max-width: 280px;
        padding: 20px 24px;
    }

    .site-footer {
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .slide-title {
        font-size: 29px;               /* mobile: 29px */
        letter-spacing: -1px;          /* mobile: -1px */
    }

    .slide-subtitle {
        font-size: 19px;               /* mobile: 19px */
    }

    .slide-btn {
        font-size: 14px;               /* mobile: 14px */
    }

    .slider-arrow {
        background: #FFF;              /* mobile: white bg */
        width: 42px;
        height: 42px;
        right: 16px;
    }

    .slider-arrow svg path {
        fill: #000;                    /* mobile: black arrow */
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: 450px;
    }

    .slide-text-box {
        max-width: 260px;
        padding: 16px 18px;
    }

    .logo-img {
        height: 20px;                  /* mobile: 20px */
    }
}
