:root {
    --yellow: #ffc629;
    --yellow-dark: #efb719;
    --black: #050505;
    --white: #ffffff;
    --light: #f6f6f4;
    --text: #111111;
    --gray: #777777;
    --border: #e7e7e7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /*font-family: "Inter", sans-serif;*/
    color: var(--text);
    background: #3a3a3a;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

.site {
    width: 100%;
	height:100%;
    margin: 20px auto;
    background: white;
    overflow: hidden;
}

.header {
    height: 72px;
    background: #000;

    padding: 0 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 100;
}

.logo,
.footer-logo {
    color: var(--yellow);
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -2px;
    transform: skew(-10deg);
	width:30%;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav a {
    color: white;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;

    transition: .2s;
}

.nav a:hover {
    color: var(--yellow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    color: white;
    font-size: 12px;
}

.yellow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--yellow);
    color: #111;

    min-height: 40px;
    padding: 0 25px;

    border-radius: 30px;

    font-size: 9px;
    font-weight: 600;

    transition: .25s;
}

.yellow-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.menu-button {
    display: none;

    width: 35px;
    height: 35px;

    border: 0;
    background: transparent;

    flex-direction: column;
    justify-content: center;
    gap: 5px;

    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 23px;
    height: 2px;
    background: white;
}


/* ===================================
   COMMON
=================================== */

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 25px;
    padding: 0 20px;

    border: 1px solid #aaa;
    border-radius: 30px;

    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.dark-pill {
    color: white;
    border-color: #777;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}


/* ===================================
   HERO
=================================== */

.hero {
    min-height: 390px;
    position: relative;

    overflow: hidden;

    color: white;
    background: #020303;
}

.hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            circle,
            rgba(255,255,255,.12) 1px,
            transparent 1px
        );

    background-size: 22px 22px;
}

.hero-content {
    position: relative;
    z-index: 5;

    width: 52%;

    padding: 50px 0 55px 70px;
}

.hero h1 {
    margin-top: 17px;

    max-width: 480px;

    font-size: clamp(30px, 4vw, 50px);
    line-height: 1;

    font-weight: 500;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--yellow);
}

.hero-content > p {
    margin-top: 18px;

    max-width: 400px;

    color: #bcbcbc;

    font-size: 12px;
    line-height: 1.65;
}

.hero-list {
    margin-top: 10px;
    list-style: none;
}

.hero-list li {
    font-size: 11px;
    margin: 6px 0;
}

.hero-list li::before {
    content: "✓";
    color: var(--yellow);
    font-weight: 800;
    margin-right: 7px;
}

.hero-content .yellow-btn {
    margin-top: 13px;
}

.hero-person {
    position: absolute;

    right: 19%;
    bottom: 0;

    width: 280px;
    height: 360px;

    z-index: 3;

    overflow: hidden;

    border-radius: 140px 140px 0 0;
}

.hero-person img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    mix-blend-mode: screen;
}

.bolt {
    position: absolute;

    right: 11%;
    top: 100px;

    color: var(--yellow);

    font-size: 110px;

    z-index: 4;

    filter:
        drop-shadow(
            0 0 5px rgba(255,198,41,.25)
        );

    transform: rotate(-8deg);
}
/* ===================================
   ABOUT
=================================== */

.about {
    min-height: 570px;

    padding: 90px 70px;

    background: #f8f8f8;

    display: flex;
    align-items: center;
}

.about-container {
    width: 100%;
    max-width: 900px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 105px;
}

.about-image {
    height: 330px;

    overflow: hidden;

    border-radius: 12px;
}

.about-image img {
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    max-width: 400px;

    margin-top: 15px;

    font-size: clamp(28px, 3vw, 39px);
    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -1.5px;
}

.about-content > p {
    max-width: 420px;

    margin-top: 17px;

    color: #777;

    font-size: 11px;
    line-height: 1.7;
}

.about-features {
    margin-top: 20px;
}

.feature {
    display: flex;
    gap: 13px;

    margin-bottom: 17px;
}

.check {
    width: 15px;
    height: 15px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--yellow);
    color: white;

    font-size: 9px;
    font-weight: 800;
}

.feature h4 {
    font-size: 13px;
    margin-bottom: 5px;
}

.feature span {
    color: #999;
    font-size: 11px;
}

.about-content .yellow-btn {
    margin-top: 3px;
}
/* ===================================
   TRUSTED SOLUTIONS
=================================== */

.solutions {
    min-height: 500px;

    padding: 85px 70px;

    background: white;

    display: flex;
    align-items: center;
}

.solutions-container {
    width: 100%;
    max-width: 900px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.solutions-left h2 {
    max-width: 370px;

    margin-top: 15px;

    font-size: 38px;
    line-height: 1.05;

    font-weight: 500;
    letter-spacing: -1.5px;
}

.solutions-left > p {
    max-width: 370px;

    margin-top: 17px;

    color: #777;

    font-size: 12px;
    line-height: 1.7;
}

.statistics {
    display: flex;
    gap: 55px;

    margin-top: 42px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 27px;
    font-weight: 500;
}

.stat span {
    margin-top: 9px;

    font-size: 9px;
    font-weight: 600;
}

.solution-cards {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.solution-card {
    min-height: 120px;

    padding: 20px;

    background: #f5f5f5;

    border-radius: 10px;

    transition: .25s;
}

.solution-card:hover {
    background: #ededed;
    transform: translateY(-3px);
}

.solution-icon {
    font-size: 26px;

    margin-bottom: 12px;
}

.solution-card h4 {
    font-size: 14px;
    margin-bottom: 7px;
}

.solution-card p {
    color: #777;

    font-size: 12px;
    line-height: 1.5;
}

/* ===================================
   SERVICES
=================================== */

.services {
    padding: 55px 70px 80px;

    background: #f5f5f3;
}

.section-heading {
    text-align: center;

    max-width: 650px;

    margin: auto;
}

.section-heading h2 {
    margin-top: 13px;

    font-size: 31px;
    line-height: 1.1;

    font-weight: 500;
}

.section-heading p {
    margin: 15px auto 0;

    max-width: 570px;

    color: #777;

    font-size: 12px;
    line-height: 1.7;
}

.service-grid {
    max-width: 900px;

    margin: 42px auto 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 32px;
}

.service-card {
    overflow: hidden;

    background: #f8f4e9;

    border: 1px solid #dedbd0;

    border-radius: 6px;

    transition: .25s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.service-image {
    height: 155px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-body {
    padding: 15px;
}

.service-body h3 {
    font-size: 13px;
    font-weight: 600;
}

.service-body p {
    margin-top: 9px;

    color: #777;

    font-size: 7px;
    line-height: 1.6;
}

.small-yellow-btn {
    display: inline-flex;

    margin-top: 12px;

    padding: 8px 14px;

    border-radius: 20px;

    background: var(--yellow);

    font-size: 6px;
    font-weight: 600;

    transition: .2s;
}

.small-yellow-btn:hover {
    background: #111;
    color: white;
}

/* ===================================
   PROJECTS
=================================== */

.projects {
    padding: 80px 70px;

    background: white;
}

.projects-heading {
    max-width: 900px;

    margin: auto auto 35px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;
}

.projects-heading h2 {
    margin-top: 13px;

    font-size: 30px;
    line-height: 1;

    font-weight: 500;
}

.project-grid {
    max-width: 900px;
    height: 440px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    grid-template-rows: 1fr 1fr;

    gap: 6px;
}

.project {
    position: relative;

    overflow: hidden;

    border-radius: 10px;

    color: white;
}

.project-large {
    grid-row: 1 / 3;
}

.project img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.project:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            transparent 30%,
            rgba(0,0,0,.7)
        );
}

.project-info {
    position: absolute;

    left: 25px;
    bottom: 22px;

    z-index: 2;
}

.project-category {
    display: inline-flex;

    padding: 5px 18px;

    border-radius: 20px;

    background: var(--yellow);

    color: #111;

    font-size: 6px;
    font-weight: 700;

    text-transform: uppercase;
}

.project-info h3 {
    margin-top: 10px;

    font-size: 11px;
    font-weight: 600;
}

    /* =========================
       COMPANIES
    ========================= */

    .companies {
      

     /* padding: 224px 25px 30px;*/
	 padding:80px 70px;

      text-align: center;

      background: var(--yellow);
    }
	.companies-heading {
    text-align: center;

    max-width: 650px;

    margin: auto;
}
    .companies h2 {
      margin-top: 15px;

    font-size: 40px;
    line-height: 1;

    font-weight: 500;
    letter-spacing: -1.5px;
    }
/* =========================
           SLIDER
        ========================= */

        .brand-slider {
            position: relative;

            width: 100%;
            max-width: 1200px;

            margin: 80px auto;

            padding: 0 60px;

            overflow: hidden;
        }


        /* =========================
           TRACK
        ========================= */

        .brand-track {
            display: flex;

            gap: 20px;

            transition: transform 0.5s ease;

            will-change: transform;
        }


        /* =========================
           BRAND
        ========================= */

        .brand {
           /* flex: 0 0 calc((100% - 80px) / 5);Ako hocu da se prikazuju 5 elemenata */
            flex: 0 0 calc((100% - 80px) / 3);
            height: 160px;

            background: white;

            border-radius: 15px;

            display: flex;
            justify-content: center;
            align-items: center;

            padding: 25px;

            box-shadow:
                0 5px 20px rgba(0, 0, 0, 0.08);

            transition:
                transform 0.3s ease,
                box-shadow 0.3s ease;
        }


        .brand:hover {
            transform: translateY(-5px);

            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.15);
        }


        .brand img {
            width: 100%;
            height: 100%;

            object-fit: contain;

            display: block;
        }


        /* =========================
           ARROWS
        ========================= */

        .slider-btn {
            position: absolute;

            top: 50%;

            transform: translateY(-50%);

            width: 45px;
            height: 45px;

            border: none;

            border-radius: 50%;

            background: #111;

            color: white;

            font-size: 25px;

            cursor: pointer;

            z-index: 5;

            transition:
                background 0.3s ease,
                transform 0.3s ease;
        }


        .slider-btn:hover {
            background: #333;

            transform:
                translateY(-50%)
                scale(1.1);
        }


        .prev {
            left: 5px;
        }


        .next {
            right: 5px;
        }
/* ===================================
   CONTACT
=================================== */

.contact {
    min-height: 340px;

    padding: 70px;

    background:
        linear-gradient(
            90deg,
            #080808,
            #111
        );

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: white;
}

.contact-content {
    max-width: 600px;
}

.contact h2 {
    margin-top: 15px;

    font-size: 40px;
    line-height: 1;

    font-weight: 500;
    letter-spacing: -1.5px;
}

.contact p {
    max-width: 450px;

    margin: 18px auto;

    color: #aaa;

    font-size: 9px;
    line-height: 1.6;
}


    /* =========================
       FOOTER
    ========================= */

    .footer {
      min-height: 265px;

      padding: 62px 7vw 22px;

      color: white;

      background-color: #050505;

      background-image:
        radial-gradient(
          #292929 .8px,
          transparent .8px
        );

      background-size: 18px 18px;
    }

    .footer-top {
      display: flex;

      align-items: flex-start;

      justify-content: space-between;

      gap: 40px;
    }

    .footer h2 {
      font-size: 27px;

      line-height: 1.03;

      letter-spacing: -.8px;
    }

    .contact-circle {
      width: 100px;
      height: 100px;

      flex: 0 0 100px;

      border-radius: 50%;

      background: var(--yellow);

      color: #111;

      display: flex;

      align-items: center;

      justify-content: center;

      text-align: center;

      font-size: 9px;

      line-height: 1.35;

      font-weight: 500;

      text-decoration: underline;

      transition: .2s;
    }

    .contact-circle:hover {
      transform: scale(1.05);
    }

    .footer-follow {
      margin-top: 28px;
    }

    .footer-follow span {
      display: block;

      font-size: 7px;

      margin-bottom: 7px;
    }

    .socials {
      display: flex;

      gap: 6px;
    }

    .socials a {
      width: 17px;
      height: 17px;

      border-radius: 50%;

      background: white;

      color: black;

      display: grid;

      place-items: center;

      text-decoration: none;

      font-size: 7px;

      font-weight: 700;
    }

    .footer-nav {
      margin-top: -20px;

      display: flex;

      justify-content: flex-end;

      gap: 12px;

      flex-wrap: wrap;
    }

    .footer-nav a {
      color: white;

      font-size: 6.5px;

      font-weight: 600;

      text-decoration: underline;
    }

    .footer-line {
      height: 1px;

      background: #444;

      margin-top: 14px;
    }

    .footer-bottom {
      display: flex;

      align-items: center;

      justify-content: space-between;

      padding-top: 15px;
    }

    .logo {
      color: var(--yellow);

      font-size: 25px;

      font-weight: 800;

      letter-spacing: -2px;
    }

    .copyright {
      font-size: 12px;

      color: #aaa;
    }

    .copyright b {
      color: var(--yellow);
    }


    /* =========================
       TOAST MESSAGE
    ========================= */

    .toast {
      position: fixed;

      z-index: 20;

      left: 50%;
      bottom: 22px;

      transform:
        translate(-50%, 20px);

      opacity: 0;

      pointer-events: none;

      background: #111;

      color: white;

      padding: 11px 17px;

      border-radius: 8px;

      font-size: 11px;

      transition: .25s;
    }

    .toast.show {
      opacity: 1;

      transform:
        translate(-50%, 0);
    }


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .site {
        width: 100%;
        margin: 0;
    }

    .header {
        padding: 0 35px;
    }

    .nav {
        gap: 14px;
    }

    .header-actions {
        gap: 12px;
    }

    .socials {
        display: none;
    }

    .hero-content {
        padding-left: 40px;
    }

    .hero-person {
        right: 8%;
    }

    .bolt {
        right: 2%;
    }

    .about,
    .solutions,
    .services,
    .projects {
        padding-left: 40px;
        padding-right: 40px;
    }
    .brand {
                flex: 0 0 calc((100% - 40px) / 3);
            }
}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 700px) {

    .header {
        height: 65px;

        padding: 0 25px;
    }

    .header-actions {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .nav {
        display: none;
    }

    .nav.active {
        position: absolute;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        left: 0;
        right: 0;

        top: 65px;

        padding: 25px;

        background: #000;

        border-top: 1px solid #222;
    }

    .nav.active a {
        font-size: 10px;
    }


    /* HERO */

    .hero {
        min-height: 650px;
    }

    .hero-content {
        width: 100%;

        padding: 45px 25px;
    }

    .hero h1 {
        max-width: 340px;

        font-size: 35px;
    }

    .hero-content > p {
        max-width: 310px;
    }

    .hero-person {
        width: 210px;
        height: 275px;

        right: 50%;

        transform: translateX(50%);
    }

    .bolt {
        top: 270px;
        right: 2%;

        font-size: 70px;
    }


    /* ABOUT */

    .about {
        padding: 70px 25px;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image {
        height: 290px;
    }

    .about-content h2 {
        font-size: 30px;
    }


    /* SOLUTIONS */

    .solutions {
        padding: 70px 25px;
    }

    .solutions-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .solutions-left h2 {
        font-size: 31px;
    }


    /* SERVICES */

    .services {
        padding: 65px 25px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .service-grid {
        grid-template-columns: 1fr;

        max-width: 400px;
    }

    .service-image {
        height: 200px;
    }


    /* PROJECTS */

    .projects {
        padding: 65px 25px;
    }

    .projects-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

    .projects-heading h2 {
        font-size: 28px;
    }

    .project-grid {
        height: auto;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(3, 250px);
    }

    .project-large {
        grid-row: auto;
    }


    /* CONTACT */

    .contact {
        min-height: 300px;

        padding: 50px 25px;
    }

    .contact h2 {
        font-size: 31px;
    }


    /* FOOTER */

    .footer {
        padding: 40px 25px;
    }

    .footer-links {
        flex-wrap: wrap;

        gap: 15px;
    }
	 .cards {
        grid-template-columns: 1fr;

        max-width: 360px;
      }

      .companies {
        min-height: 250px;

        padding-top: 155px;
      }
	  .brand-slider {
                padding: 0 45px;
            }

            .brand {
                flex: 0 0 calc((100% - 20px) / 2);

                height: 130px;
            }

            .slider-btn {
                width: 38px;
                height: 38px;

                font-size: 20px;
            }
}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 31px;
    }

    .solution-cards {
        grid-template-columns: 1fr;
    }

    .statistics {
        gap: 35px;
    }

}