/* ============================================================
   IOT LYNK WEBSITE
   Global stylesheet
   ============================================================ */


/* ============================================================
   VARIABLES
   ============================================================ */

:root {
    --navy: #0a2540;
    --navy-light: #153956;
    --blue: #0b63ce;
    --blue-light: #3182f6;
    --teal: #14b8b2;
    --teal-dark: #0fa39e;
    --green: #16a34a;
    --text: #102a43;
    --muted: #64788b;
    --background: #ffffff;
    --background-soft: #f5f8fc;
    --background-blue: #f2f7fc;
    --border: #e3ebf4;
    --shadow: 0 20px 60px rgba(18, 54, 87, .12);
    --shadow-soft: 0 12px 35px rgba(18, 54, 87, .08);
    --radius: 18px;
    --transition: all .25s ease;
}


/* ============================================================
   RESET
   ============================================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

main {
    overflow: hidden;
}


/* ============================================================
   HEADER
   ============================================================ */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

    .main-header .navbar,
    .main-header .container {
        min-height: 82px;
    }

    .main-header .navbar {
        padding: 0;
    }


/* ============================================================
   BRAND
   ============================================================ */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
}

    .brand:hover {
        color: var(--navy);
    }

.brand-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: var(--teal);
    font-size: 29px;
}

.brand-name {
    color: var(--navy);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: .5px;
}

    .brand-name strong {
        color: var(--teal);
        font-weight: 800;
    }


/* ============================================================
   NAVIGATION
   ============================================================ */

.main-navigation {
    margin-left: auto;
    margin-right: 35px;
    gap: 17px;
}

    .main-navigation .nav-link {
        padding: 29px 7px !important;
        color: #253b50;
        font-size: 14px;
        font-weight: 500;
        transition: var(--transition);
    }

        .main-navigation .nav-link:hover,
        .main-navigation .nav-link:focus {
            color: var(--blue);
        }


/* ============================================================
   DROPDOWN
   ============================================================ */

.dropdown-menu {
    min-width: 235px;
    margin-top: 0;
    padding: 9px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 8px;
    color: #44596d;
    font-size: 13px;
    transition: var(--transition);
}

    .dropdown-item i {
        width: 18px;
        color: var(--teal);
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        color: var(--blue);
        background: #f4f8fc;
    }


/* ============================================================
   HEADER ACTIONS
   ============================================================ */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login,
.btn-contact {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 19px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-login {
    color: var(--blue);
    border: 1px solid var(--blue);
    background: #ffffff;
}

    .btn-login:hover {
        color: #ffffff;
        background: var(--blue);
    }

.btn-contact {
    color: #ffffff;
    border: 1px solid var(--blue);
    background: var(--blue);
    box-shadow: 0 10px 25px rgba(11, 99, 206, .20);
}

    .btn-contact:hover {
        color: #ffffff;
        background: #0956b5;
        transform: translateY(-1px);
    }


/* ============================================================
   HERO
   ============================================================ */

.home-hero {
    position: relative;
    min-height: 690px;
    padding: 95px 0 70px;
    background: radial-gradient( circle at 78% 38%, rgba(49, 130, 246, .10), transparent 34% ), radial-gradient( circle at 12% 80%, rgba(20, 184, 178, .08), transparent 28% ), #ffffff;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #078f8b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

    .hero-label span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--teal);
        box-shadow: 0 0 0 6px rgba(20, 184, 178, .12);
    }

.hero-title {
    margin: 0 0 27px;
    color: var(--navy);
    font-size: clamp(52px, 5vw, 76px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: -4px;
}

    .hero-title strong {
        color: var(--teal);
        font-weight: 800;
    }

.hero-description {
    max-width: 550px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-button-primary,
.hero-button-secondary {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.hero-button-primary {
    color: #ffffff !important;
    background: var(--teal);
    border: 1px solid var(--teal);
    box-shadow: 0 12px 28px rgba(20, 184, 178, .22);
}

    .hero-button-primary:hover {
        color: #ffffff !important;
        background: var(--teal-dark);
        border-color: var(--teal-dark);
        transform: translateY(-2px);
    }

.hero-button-secondary {
    color: var(--blue) !important;
    border: 1px solid #adc9ed;
    background: #ffffff;
}

    .hero-button-secondary:hover {
        color: var(--blue) !important;
        border-color: var(--blue);
        background: #f6faff;
        transform: translateY(-2px);
    }


/* ============================================================
   HERO BENEFITS
   ============================================================ */

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px;
    margin-top: 38px;
}

    .hero-benefits > div {
        display: flex;
        align-items: center;
        gap: 11px;
    }

        .hero-benefits > div > span {
            flex: 0 0 39px;
            width: 39px;
            height: 39px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: var(--blue);
            background: #eef6ff;
            font-size: 16px;
        }

    .hero-benefits strong,
    .hero-benefits small {
        display: block;
    }

    .hero-benefits strong {
        color: var(--navy);
        font-size: 11px;
    }

    .hero-benefits small {
        margin-top: 2px;
        color: #8394a5;
        font-size: 9px;
    }


/* ============================================================
   HERO IMAGE
   ============================================================ */

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.hero-main-image {
    display: block;
    width: 115%;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow( 0 28px 45px rgba(20, 55, 90, .14) );
}


/* ============================================================
   CONNECTIVITY STRIP
   ============================================================ */

.connectivity-strip {
    position: relative;
    z-index: 10;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #ffffff;
}

.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

    .connectivity-grid > div {
        min-height: 55px;
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 5px 25px;
        border-right: 1px solid #e8eef4;
    }

        .connectivity-grid > div:last-child {
            border-right: 0;
        }

        .connectivity-grid > div > span {
            flex: 0 0 43px;
            width: 43px;
            height: 43px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: var(--teal);
            background: #edfafa;
            font-size: 19px;
        }

    .connectivity-grid strong,
    .connectivity-grid small {
        display: block;
    }

    .connectivity-grid strong {
        color: var(--navy);
        font-size: 11px;
    }

    .connectivity-grid small {
        margin-top: 2px;
        color: #718598;
        font-size: 9px;
    }


/* ============================================================
   SOLUTIONS SECTION
   ============================================================ */

.solutions-section {
    padding: 100px 0 110px;
    background: var(--background-soft);
}

.section-intro {
    margin-bottom: 0;
}

    .section-intro > span {
        color: var(--teal);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.2px;
    }

    .section-intro h2 {
        margin: 7px 0 5px;
        color: var(--navy);
        font-size: 38px;
        font-weight: 800;
        letter-spacing: -1.4px;
    }

    .section-intro p {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
    }


/* ============================================================
   IMPORTANT :
   SOLUTION CARD LINK
   ============================================================ */

.solution-card-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

    .solution-card-link:hover,
    .solution-card-link:focus,
    .solution-card-link:visited {
        color: inherit;
        text-decoration: none;
    }


/* ============================================================
   SOLUTION CARDS
   ============================================================ */

.solution-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 390px;
    overflow: hidden;
    border-radius: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 14px 35px rgba(16, 47, 75, .13);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .solution-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 25px 55px rgba(16, 47, 75, .19);
    }


/* ============================================================
   SOLUTION OVERLAY
   ============================================================ */

.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(5, 28, 48, .96) 0%, rgba(5, 28, 48, .65) 25%, rgba(5, 28, 48, .08) 65%, transparent 100% );
    pointer-events: none;
}


/* ============================================================
   SOLUTION DATA CARD
   ============================================================ */

.solution-reading {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 132px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .11);
    backdrop-filter: blur(7px);
}

    .solution-reading strong,
    .solution-reading span,
    .solution-reading small {
        display: block;
    }

    .solution-reading strong {
        color: var(--navy);
        font-size: 14px;
    }

    .solution-reading span {
        margin: 1px 0 8px;
        color: #8192a3;
        font-size: 8px;
    }

    .solution-reading small {
        color: var(--green);
        font-size: 8px;
    }


/* ============================================================
   SOLUTION CONTENT
   ============================================================ */

.solution-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.solution-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #0ea5e9;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(14, 165, 233, .25);
}

    .solution-icon.poultry {
        background: #f59e0b;
    }

    .solution-icon.industry {
        background: #eab308;
    }

.solution-content h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.solution-content p {
    max-width: 300px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 10px;
    line-height: 1.5;
}


/* ============================================================
   PRODUCT TYPOGRAPHY
   ============================================================ */

.product-eyebrow {
    margin-bottom: 12px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.product-title {
    margin: 0 0 22px;
    color: var(--navy);
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -2px;
}

    .product-title strong {
        color: var(--navy);
        font-weight: 800;
    }

.product-description {
    max-width: 620px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}


/* ============================================================
   CONTROLLER SECTION
   ============================================================ */

.product-controller-section {
    position: relative;
    padding: 115px 0;
    background: radial-gradient( circle at 18% 45%, rgba(20, 184, 178, .07), transparent 28% ), #ffffff;
}

.controller-product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    padding: 35px;
    overflow: hidden;
    border-radius: 28px;
    background: radial-gradient( circle at 50% 50%, #ffffff, #f3f7fa 72% );
    border: 1px solid #edf2f6;
}

    .controller-product-image::after {
        content: "";
        position: absolute;
        left: 15%;
        right: 15%;
        bottom: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(15, 38, 58, .13);
        filter: blur(18px);
    }

    .controller-product-image img {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 700px;
        transition: transform .35s ease;
    }

    .controller-product-image:hover img {
        transform: scale(1.025);
    }


/* ============================================================
   CONTROLLER FEATURES
   ============================================================ */

.controller-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}

    .controller-features > div {
        display: flex;
        align-items: center;
        gap: 13px;
        min-height: 78px;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: #ffffff;
        transition: var(--transition);
    }

        .controller-features > div:hover {
            transform: translateY(-3px);
            border-color: rgba(20, 184, 178, .35);
            box-shadow: var(--shadow-soft);
        }

        .controller-features > div > span {
            flex: 0 0 42px;
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 11px;
            color: var(--teal);
            background: #edfafa;
            font-size: 18px;
        }

    .controller-features strong,
    .controller-features small {
        display: block;
    }

    .controller-features strong {
        color: var(--navy);
        font-size: 12px;
    }

    .controller-features small {
        margin-top: 3px;
        color: #8191a0;
        font-size: 9px;
    }


/* ============================================================
   PLATFORM SECTION
   ============================================================ */

.platform-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background: radial-gradient( circle at 78% 45%, rgba(49, 130, 246, .08), transparent 32% ), var(--background-soft);
}

.platform-image-wrapper {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .platform-image-wrapper img {
        width: 112%;
        max-width: none;
        border-radius: 20px;
        filter: drop-shadow( 0 28px 45px rgba(20, 55, 90, .16) );
    }


/* ============================================================
   PLATFORM FEATURES
   ============================================================ */

.platform-feature-list {
    display: grid;
    gap: 13px;
    margin: 30px 0;
}

    .platform-feature-list > div {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        border: 1px solid transparent;
        border-radius: 13px;
        transition: var(--transition);
    }

        .platform-feature-list > div:hover {
            border-color: var(--border);
            background: #ffffff;
            box-shadow: var(--shadow-soft);
        }

        .platform-feature-list > div > i {
            flex: 0 0 42px;
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 11px;
            color: var(--blue);
            background: #eaf3ff;
            font-size: 17px;
        }

    .platform-feature-list strong,
    .platform-feature-list span {
        display: block;
    }

    .platform-feature-list strong {
        margin-bottom: 2px;
        color: var(--navy);
        font-size: 12px;
    }

    .platform-feature-list span {
        color: #7c8fa1;
        font-size: 10px;
    }


/* ============================================================
   MOBILE SECTION
   ============================================================ */

.mobile-section {
    padding: 90px 0;
    background: #ffffff;
}

.mobile-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    overflow: hidden;
    border-radius: 26px;
    background: radial-gradient( circle at 90% 20%, rgba(49, 130, 246, .13), transparent 32% ), radial-gradient( circle at 10% 90%, rgba(20, 184, 178, .14), transparent 32% ), #0a2540;
    box-shadow: 0 25px 60px rgba(10, 37, 64, .18);
}

    .mobile-box .product-eyebrow {
        color: #6ee7df;
    }

    .mobile-box h2 {
        max-width: 750px;
        margin: 0 0 15px;
        color: #ffffff;
        font-size: clamp(35px, 4vw, 50px);
        line-height: 1.1;
        font-weight: 500;
        letter-spacing: -1.5px;
    }

        .mobile-box h2 strong {
            color: #5ee0d7;
            font-weight: 800;
        }

    .mobile-box p {
        max-width: 650px;
        margin: 0;
        color: rgba(255, 255, 255, .68);
        font-size: 14px;
        line-height: 1.7;
    }

.mobile-features {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .mobile-features span {
        width: 70px;
        height: 70px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 18px;
        color: #ffffff;
        background: rgba(255, 255, 255, .07);
        font-size: 27px;
        backdrop-filter: blur(10px);
        transition: var(--transition);
    }

        .mobile-features span:hover {
            transform: translateY(-6px);
            color: #5ee0d7;
            background: rgba(255, 255, 255, .12);
        }


/* ============================================================
   ABOUT
   ============================================================ */

.about-section {
    padding: 110px 0;
    background: var(--background-soft);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
}

    .about-stats > div {
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 8px 25px rgba(20, 50, 80, .04);
    }

    .about-stats strong,
    .about-stats span {
        display: block;
    }

    .about-stats strong {
        color: var(--navy);
        font-size: 17px;
        font-weight: 800;
    }

    .about-stats span {
        margin-top: 5px;
        color: var(--muted);
        font-size: 9px;
    }


/* ============================================================
   CONTACT
   ============================================================ */

.contact-section {
    padding: 95px 0;
    background: #ffffff;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 55px;
    border: 1px solid #dfe9f2;
    border-radius: 25px;
    background: radial-gradient( circle at 90% 0%, rgba(49, 130, 246, .10), transparent 34% ), radial-gradient( circle at 0% 100%, rgba(20, 184, 178, .10), transparent 30% ), #f8fbfd;
    box-shadow: 0 18px 45px rgba(22, 59, 91, .07);
}

    .contact-box h2 {
        margin: 0 0 13px;
        color: var(--navy);
        font-size: clamp(38px, 4vw, 52px);
        line-height: 1.05;
        font-weight: 800;
        letter-spacing: -1.8px;
    }

    .contact-box p {
        max-width: 700px;
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7;
    }

.contact-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* ============================================================
   FOOTER
   ============================================================ */

.main-footer {
    padding: 75px 0 25px;
    border-top: 1px solid var(--border);
    background: #ffffff;
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 18px;
}

.footer-description {
    max-width: 350px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.main-footer h5 {
    margin-bottom: 19px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.main-footer .col-6 > a,
.main-footer .col-lg-2 > a {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 12px;
}

    .main-footer .col-6 > a:hover,
    .main-footer .col-lg-2 > a:hover {
        color: var(--blue);
    }

.footer-email {
    margin-top: 14px;
    color: var(--muted);
    font-size: 11px;
}


/* ============================================================
   SOCIAL
   ============================================================ */

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 19px;
}

    .footer-social a {
        width: 37px;
        height: 37px;
        display: grid;
        place-items: center;
        border: 1px solid var(--border);
        border-radius: 9px;
        color: var(--blue);
        background: #ffffff;
        transition: var(--transition);
    }

        .footer-social a:hover {
            color: #ffffff;
            border-color: var(--blue);
            background: var(--blue);
            transform: translateY(-2px);
        }


/* ============================================================
   FOOTER BOTTOM
   ============================================================ */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: #8493a1;
    font-size: 10px;
}


/* ============================================================
   SCROLL OFFSET
   ============================================================ */

#solutions,
#cold-room,
#poultry,
#industry,
#controller,
#platform,
#mobile,
#about,
#contact,
#alerts,
#reports {
    scroll-margin-top: 100px;
}


/* ============================================================
   RESPONSIVE TABLET
   ============================================================ */

@media (max-width: 991.98px) {

    .main-header .navbar,
    .main-header .container {
        min-height: 70px;
    }

    .main-navigation {
        margin: 15px 0;
        gap: 0;
    }

        .main-navigation .nav-link {
            padding: 10px !important;
        }

    .navbar-collapse {
        padding-bottom: 18px;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-login,
    .btn-contact {
        width: 100%;
    }


    /* HERO */

    .home-hero {
        padding-top: 65px;
    }

    .hero-image-wrapper {
        min-height: auto;
        margin-top: 30px;
    }

    .hero-main-image {
        width: 100%;
        max-width: 850px;
    }


    /* CONNECTIVITY */

    .connectivity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .connectivity-grid > div:nth-child(2) {
            border-right: 0;
        }


    /* SOLUTIONS */

    .solution-card {
        min-height: 370px;
    }


    /* CONTROLLER */

    .product-controller-section,
    .platform-section {
        padding: 85px 0;
    }

    .controller-product-image {
        min-height: auto;
    }


    /* PLATFORM */

    .platform-image-wrapper {
        min-height: auto;
        margin-top: 30px;
    }

        .platform-image-wrapper img {
            width: 100%;
        }


    /* MOBILE */

    .mobile-box {
        flex-direction: column;
        align-items: flex-start;
    }


    /* CONTACT */

    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-actions {
        flex-direction: row;
    }
}


/* ============================================================
   RESPONSIVE MOBILE
   ============================================================ */

@media (max-width: 767.98px) {

    .home-hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 47px;
        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }


    /* CONNECTIVITY */

    .connectivity-grid {
        grid-template-columns: 1fr;
    }

        .connectivity-grid > div {
            border-right: 0;
            border-bottom: 1px solid var(--border);
        }


    /* SOLUTIONS */

    .solutions-section {
        padding: 75px 0;
    }

    .section-intro h2 {
        font-size: 32px;
    }

    .solution-card {
        min-height: 350px;
    }


    /* CONTROLLER */

    .controller-features {
        grid-template-columns: 1fr;
    }


    /* MOBILE */

    .mobile-box {
        padding: 38px 28px;
    }

    .mobile-features {
        width: 100%;
        justify-content: center;
    }


    /* ABOUT */

    .about-stats {
        grid-template-columns: 1fr;
    }


    /* CONTACT */

    .contact-box {
        padding: 38px 28px;
    }

    .contact-actions {
        width: 100%;
        flex-direction: column;
    }

        .contact-actions a {
            width: 100%;
        }


    /* FOOTER */

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .brand-name {
        font-size: 20px;
    }

    .brand-icon {
        width: 37px;
        height: 37px;
        font-size: 25px;
    }

    .hero-title {
        font-size: 41px;
        letter-spacing: -2px;
    }

    .hero-actions a {
        width: 100%;
    }

    .hero-main-image {
        width: 112%;
        margin-left: -6%;
    }

    .product-title {
        font-size: 38px;
    }

    .mobile-features span {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .solution-reading {
        width: 120px;
        top: 15px;
        right: 15px;
    }

    .solution-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
}
