/* =========================================================
   SAMICLYN
   PREMIUM CORPORATE DESIGN
========================================================= */

:root {

    --navy: #03152f;
    --navy-light: #06284c;

    --blue: #0787dc;
    --blue-light: #52bdff;

    --white: #ffffff;

    --off-white: #f6f9fc;

    --text: #647585;
    --dark: #15283a;

    --border: #e4ebf1;

    --container: 1240px;

}


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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    color: var(--dark);

    background: #fff;

    line-height: 1.6;

    overflow-x: hidden;

}


body.menu-open {
    overflow: hidden;
}


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


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


button {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width:
        min(
            calc(100% - 60px),
            var(--container)
        );

    margin:
        0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 99999;

    background:
        rgba(3,21,47,.72);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(255,255,255,.10);

    transition:
        .35s ease;

}


.site-header.scrolled {

    background:
        rgba(3,21,47,.97);

    box-shadow:
        0 15px 45px
        rgba(0,0,0,.20);

}


/* =========================================================
   NAV CONTAINER
========================================================= */

.nav-container {

    width:
        min(
            calc(100% - 60px),
            var(--container)
        );

    height: 90px;

    margin:
        0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    transition:
        height .35s ease;

}


.site-header.scrolled
.nav-container {

    height: 70px;

}


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

.logo {

    position: relative;

    z-index: 100002;

}


.logo img {

    width: 215px;

    height: auto;

    transition:
        .35s ease;

}


.site-header.scrolled
.logo img {

    width: 190px;

}


/* =========================================================
   DESKTOP MENU
========================================================= */

.desktop-menu {

    display: flex;

    align-items: center;

    gap: 31px;

}


.desktop-menu > a {

    position: relative;

    color:
        rgba(255,255,255,.88);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .2px;

    transition:
        .25s ease;

}


.desktop-menu > a:hover {

    color:
        #fff;

}


.desktop-menu > a:not(.nav-contact)::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -9px;

    width: 0;

    height: 2px;

    border-radius: 10px;

    background:
        var(--blue-light);

    transition:
        .3s ease;

}


.desktop-menu > a:hover::after,
.desktop-menu > a.active::after {

    width: 100%;

}


.desktop-menu > a.active {

    color: #fff;

}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.nav-contact {

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        12px 18px;

    color: #fff !important;

    background:
        var(--blue);

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

    border-radius: 4px;

    transition:
        .3s ease;

}


.nav-contact span {

    font-size: 14px;

}


.nav-contact:hover {

    background:
        var(--blue-light);

    border-color:
        var(--blue-light);

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(7,135,220,.25);

}


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

.mobile-menu-button {

    display: none;

    width: 46px;

    height: 46px;

    position: relative;

    z-index: 100003;

    border:
        1px solid
        rgba(255,255,255,.20);

    border-radius: 6px;

    background:
        rgba(255,255,255,.06);

    cursor: pointer;

}


.mobile-menu-button span {

    position: absolute;

    left: 13px;

    width: 19px;

    height: 2px;

    border-radius: 20px;

    background: #fff;

    transition:
        .3s ease;

}


.mobile-menu-button span:nth-child(1) {
    top: 14px;
}


.mobile-menu-button span:nth-child(2) {
    top: 21px;
}


.mobile-menu-button span:nth-child(3) {
    top: 28px;
}


/* X */

.mobile-menu-button.open span:nth-child(1) {

    top: 21px;

    transform:
        rotate(45deg);

}


.mobile-menu-button.open span:nth-child(2) {

    opacity: 0;

}


.mobile-menu-button.open span:nth-child(3) {

    top: 21px;

    transform:
        rotate(-45deg);

}


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

.mobile-menu {

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-15px);

    background:
        rgba(3,21,47,.98);

    border-top:
        1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 30px 60px
        rgba(0,0,0,.35);

    transition:
        max-height .55s ease,
        opacity .35s ease,
        transform .45s ease,
        visibility .45s ease;

}


.mobile-menu.open {

    max-height: 650px;

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.mobile-menu-inner {

    width:
        min(
            calc(100% - 40px),
            600px
        );

    margin:
        0 auto;

    padding:
        20px 0 25px;

}


/* =========================================================
   MOBILE MENU TOP
========================================================= */

.mobile-menu-top {

    display: flex;

    justify-content:
        space-between;

    padding:
        0 4px 16px;

    color:
        rgba(255,255,255,.38);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


/* =========================================================
   MOBILE LINKS
========================================================= */

.mobile-link {

    display: grid;

    grid-template-columns:
        40px 1fr 30px;

    align-items: center;

    min-height: 66px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.72);

    transition:
        .3s ease;

}


.mobile-link:hover {

    color:
        #fff;

    padding-left:
        10px;

}


.mobile-number {

    color:
        var(--blue-light);

    font-size: 9px;

    font-weight: 800;

}


.mobile-link-text {

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 20px;

    font-weight: 700;

}


.mobile-arrow {

    text-align: right;

    font-size: 17px;

    opacity: .5;

}


.mobile-link.active {

    color: #fff;

}


.mobile-link.active
.mobile-number {

    color:
        var(--blue-light);

}


.mobile-link.active
.mobile-arrow {

    color:
        var(--blue-light);

    opacity: 1;

}


/* =========================================================
   MOBILE CONTACT
========================================================= */

.mobile-menu-bottom {

    padding-top: 20px;

}


.mobile-contact-button {

    min-height: 54px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 20px;

    color: #fff;

    background:
        linear-gradient(
            110deg,
            #0877c9,
            #0b9bea
        );

    border-radius: 5px;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 15px 30px
        rgba(7,135,220,.20);

}


.mobile-contact-button span {

    font-size: 17px;

}


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

.hero {

    position: relative;

    min-height:
        100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #fff;

    background:
        #03152f;

}


.hero-background {

    position: absolute;

    inset: 0;

    overflow: hidden;

}


.hero-glow {

    position: absolute;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    filter:
        blur(90px);

    opacity: .25;

}


.glow-one {

    top: -250px;

    right: -100px;

    background:
        #008cff;

}


.glow-two {

    bottom: -350px;

    left: -200px;

    background:
        #0065ad;

}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .15;

    background-image:
        linear-gradient(
            rgba(255,255,255,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.06) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

}


.hero-container {

    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 60px),
            var(--container)
        );

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 80px;

    padding-top: 110px;

}


.hero-content {

    max-width: 720px;

}


.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color:
        var(--blue-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.eyebrow-line {

    width: 35px;

    height: 1px;

    background:
        var(--blue-light);

}


.hero h1 {

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(
            52px,
            6.5vw,
            86px
        );

    line-height:
        1.02;

    letter-spacing:
        -4px;

}


.hero h1 span {

    display: block;

    color:
        var(--blue-light);

}


.hero-description {

    max-width: 580px;

    margin:
        30px 0;

    color:
        rgba(255,255,255,.64);

    font-size: 14px;

    line-height:
        1.9;

}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 50px;

}


.primary-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    min-height: 52px;

    padding:
        0 22px;

    color: #fff;

    background:
        var(--blue);

    border-radius: 4px;

    font-size: 11px;

    font-weight: 800;

    transition:
        .3s ease;

}


.primary-button:hover {

    background:
        var(--blue-light);

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(7,135,220,.28);

}


.primary-button span {

    font-size: 17px;

}


.secondary-button {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    min-height: 52px;

    padding:
        0 20px;

    color:
        rgba(255,255,255,.8);

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 4px;

    font-size: 11px;

    font-weight: 700;

    transition:
        .3s ease;

}


.secondary-button:hover {

    color: #fff;

    border-color:
        rgba(255,255,255,.5);

}


/* =========================================================
   TRUST
========================================================= */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 20px;

}


.trust-item {

    display: flex;

    flex-direction: column;

}


.trust-item strong {

    color: #fff;

    font-size: 9px;

    letter-spacing: 1px;

}


.trust-item span {

    color:
        rgba(255,255,255,.4);

    font-size: 8px;

}


.trust-divider {

    width: 1px;

    height: 25px;

    background:
        rgba(255,255,255,.15);

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 550px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-orbit {

    position: absolute;

    border:
        1px solid
        rgba(82,189,255,.18);

    border-radius: 50%;

}


.orbit-one {

    width: 480px;

    height: 480px;

}


.orbit-two {

    width: 350px;

    height: 350px;

}


.hero-card {

    position: relative;

    width: 330px;

    height: 410px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.13),
            rgba(255,255,255,.025)
        );

    border:
        1px solid
        rgba(255,255,255,.17);

    border-radius: 10px;

    backdrop-filter:
        blur(20px);

    box-shadow:
        0 35px 90px
        rgba(0,0,0,.35);

    transform:
        rotate(3deg);

}


.hero-card-top {

    display: flex;

    justify-content:
        space-between;

    color:
        rgba(255,255,255,.55);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.hero-status {

    color:
        #45d6a0;

}


.hero-card-main {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.medical-symbol {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    color:
        #fff;

    background:
        rgba(8,135,220,.35);

    border:
        1px solid
        rgba(82,189,255,.35);

    border-radius: 50%;

    font-size: 35px;

}


.hero-card-main span {

    color:
        rgba(255,255,255,.45);

    font-size: 9px;

    letter-spacing: 2px;

}


.hero-card-main strong {

    color: #fff;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 36px;

    line-height: 1;

    letter-spacing: -2px;

}


.hero-card-bottom {

    display: flex;

    justify-content:
        space-between;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.12);

    color:
        rgba(255,255,255,.45);

    font-size: 8px;

    letter-spacing: 1px;

}


/* =========================================================
   FLOATING PILLS
========================================================= */

.floating-pill {

    position: absolute;

    padding:
        9px 13px;

    color:
        #fff;

    background:
        rgba(3,21,47,.85);

    border:
        1px solid
        rgba(82,189,255,.25);

    border-radius: 30px;

    backdrop-filter:
        blur(10px);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

    box-shadow:
        0 15px 30px
        rgba(0,0,0,.2);

}


.pill-one {

    top: 25%;

    right: 2%;

}


.pill-two {

    bottom: 20%;

    left: 3%;

}


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

.hero-scroll {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 15px;

    color:
        rgba(255,255,255,.35);

    font-size: 8px;

    letter-spacing: 2px;

}


.scroll-line {

    width: 45px;

    height: 1px;

    background:
        rgba(255,255,255,.25);

}


/* =========================================================
   INTRO
========================================================= */

.intro-section {

    padding:
        130px 0;

}


.intro-grid {

    display: grid;

    grid-template-columns:
        .65fr 1.35fr;

    gap: 100px;

}


.intro-label {

    color:
        #8798a7;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.intro-label span {

    display: block;

    margin-bottom: 25px;

    color:
        var(--blue);

}


.intro-content {

    max-width: 760px;

}


.intro-content h2 {

    margin-bottom: 25px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(38px,5vw,62px);

    line-height:
        1.06;

    letter-spacing:
        -3px;

}


.intro-content h2 span {

    color:
        var(--blue);

}


.intro-content p {

    max-width: 700px;

    margin-bottom: 18px;

    color:
        var(--text);

    font-size: 14px;

    line-height: 1.9;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 15px;

    color:
        var(--blue);

    font-size: 11px;

    font-weight: 800;

}


.text-link span {

    font-size: 17px;

    transition:
        .25s ease;

}


.text-link:hover span {

    transform:
        translate(4px,-4px);

}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {

    padding:
        120px 0;

    background:
        var(--off-white);

}


.section-top {

    display: grid;

    grid-template-columns:
        1fr .65fr;

    gap: 80px;

    margin-bottom: 60px;

}


.section-label {

    color:
        var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.section-top h2 {

    max-width: 700px;

    margin-top: 14px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(38px,4.5vw,58px);

    line-height:
        1.05;

    letter-spacing:
        -3px;

}


.section-top h2 span {

    color:
        var(--blue);

}


.section-top > p {

    align-self: end;

    color:
        var(--text);

    font-size: 13px;

    line-height: 1.9;

}


.product-grid {

    display: grid;

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

    gap: 18px;

}


.product-card {

    position: relative;

    min-height: 360px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    background:
        #fff;

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

    border-radius: 6px;

    overflow: hidden;

    transition:
        .4s ease;

}


.product-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(7,135,220,.3);

    box-shadow:
        0 25px 50px
        rgba(3,21,47,.10);

}


.product-card.featured {

    color: #fff;

    background:
        var(--navy);

}


.product-number {

    position: absolute;

    top: 25px;

    left: 30px;

    color:
        #a7b5c0;

    font-size: 9px;

    font-weight: 800;

}


.featured
.product-number {

    color:
        var(--blue-light);

}


.product-icon {

    position: absolute;

    top: 65px;

    right: 30px;

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        var(--blue);

    border:
        1px solid
        rgba(7,135,220,.2);

    border-radius: 50%;

    font-size: 25px;

}


.featured .product-icon {

    color:
        var(--blue-light);

    border-color:
        rgba(82,189,255,.25);

}


.product-card h3 {

    margin-bottom: 12px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 24px;

}


.product-card p {

    max-width: 350px;

    color:
        var(--text);

    font-size: 11px;

    line-height: 1.8;

}


.featured p {

    color:
        rgba(255,255,255,.55);

}


.product-arrow {

    position: absolute;

    right: 30px;

    bottom: 30px;

    color:
        var(--blue);

    font-size: 20px;

}


.featured .product-arrow {

    color:
        var(--blue-light);

}


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

.services-section {

    padding:
        130px 0;

}


.services-heading {

    max-width: 700px;

    margin-bottom: 70px;

}


.services-heading h2 {

    margin:
        13px 0 18px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(40px,5vw,62px);

    line-height: 1;

    letter-spacing:
        -3px;

}


.services-heading p {

    max-width: 550px;

    color:
        var(--text);

    font-size: 13px;

}


.service-row {

    min-height: 120px;

    display: grid;

    grid-template-columns:
        80px 1fr 1fr 50px;

    align-items: center;

    gap: 30px;

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

    transition:
        .3s ease;

}


.service-row:last-child {

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

}


.service-row:hover {

    padding-left: 15px;

}


.service-number {

    color:
        var(--blue);

    font-size: 10px;

    font-weight: 800;

}


.service-row h3 {

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 20px;

}


.service-row p {

    color:
        var(--text);

    font-size: 11px;

}


.service-arrow {

    color:
        var(--blue);

    font-size: 22px;

}


/* =========================================================
   QUALITY
========================================================= */

.quality-section {

    position: relative;

    padding:
        130px 0;

    overflow: hidden;

    color: #fff;

    background:
        var(--navy);

}


.quality-pattern {

    position: absolute;

    inset: 0;

    opacity: .15;

    background-image:
        linear-gradient(
            30deg,
            transparent 12%,
            rgba(82,189,255,.2) 12.5%,
            transparent 13%
        );

    background-size:
        100px 100px;

}


.quality-content {

    position: relative;

    z-index: 2;

}


.quality-content h2 {

    max-width: 750px;

    margin:
        15px 0 25px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(50px,6vw,80px);

    line-height:
        1;

    letter-spacing:
        -4px;

}


.quality-content h2 span {

    color:
        var(--blue-light);

}


.quality-content p {

    color:
        rgba(255,255,255,.55);

    font-size: 14px;

}


.quality-points {

    display: flex;

    gap: 70px;

    margin-top: 60px;

}


.quality-points div {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.quality-points strong {

    color:
        var(--blue-light);

    font-size: 9px;

}


.quality-points span {

    color:
        rgba(255,255,255,.7);

    font-size: 11px;

}


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

.contact-section {

    padding:
        110px 0;

    background:
        #eef6fb;

}


.contact-box {

    min-height: 330px;

    padding:
        60px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 50px;

    background:
        #fff;

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

    border-radius: 8px;

    box-shadow:
        0 30px 70px
        rgba(3,21,47,.08);

}


.contact-box h2 {

    max-width: 700px;

    margin-top: 15px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(38px,5vw,60px);

    line-height:
        1.05;

    letter-spacing:
        -3px;

}


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {

    position: relative;

    min-height:
        620px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(
            120deg,
            #03152f,
            #075b96
        );

}


.about-hero-grid {

    position: absolute;

    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.1) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

}


.about-hero-content {

    position: relative;

    z-index: 2;

    padding-top: 80px;

}


.about-hero-content h1 {

    max-width: 900px;

    margin:
        15px 0 25px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(52px,7vw,90px);

    line-height:
        1;

    letter-spacing:
        -5px;

}


.about-hero-content h1 span {

    display: block;

    color:
        var(--blue-light);

}


.about-hero-content p {

    max-width: 560px;

    color:
        rgba(255,255,255,.62);

    font-size: 14px;

    line-height: 1.9;

}


.about-hero-number {

    position: absolute;

    right: 6%;

    bottom: 35px;

    color:
        rgba(255,255,255,.15);

    font-family:
        "Plus Jakarta Sans";

    font-size:
        120px;

    font-weight: 800;

}


/* =========================================================
   ABOUT MAIN
========================================================= */

.about-main {

    padding:
        130px 0;

}


.about-intro {

    display: grid;

    grid-template-columns:
        .65fr 1.35fr;

    gap: 100px;

}


.about-side-title {

    color:
        #8596a4;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.about-side-title span {

    display: block;

    margin-bottom: 25px;

    color:
        var(--blue);

}


.about-story h2 {

    margin-bottom: 30px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(40px,5vw,65px);

    line-height: 1;

    letter-spacing:
        -3px;

}


.about-story h2 span {

    color:
        var(--blue);

}


.about-story p {

    max-width: 730px;

    margin-bottom: 20px;

    color:
        var(--text);

    font-size: 14px;

    line-height: 1.95;

}


/* =========================================================
   MISSION
========================================================= */

.mission-section {

    display: grid;

    grid-template-columns:
        1fr 1fr;

}


.mission-card {

    min-height: 500px;

    padding:
        65px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.mission-card.mission {

    color: #fff;

    background:
        var(--navy);

}


.mission-card.vision {

    background:
        #eef6fb;

}


.card-number {

    margin-bottom: 60px;

    color:
        var(--blue-light);

    font-size: 9px;

    font-weight: 800;

}


.mission-card h2 {

    max-width: 600px;

    margin:
        15px 0 20px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(34px,4vw,52px);

    line-height:
        1.05;

    letter-spacing:
        -2px;

}


.mission-card p {

    max-width: 560px;

    font-size: 13px;

    line-height: 1.9;

}


.mission p {

    color:
        rgba(255,255,255,.55);

}


.vision p {

    color:
        var(--text);

}


/* =========================================================
   VALUES
========================================================= */

.values-section {

    padding:
        130px 0;

}


.section-heading {

    max-width: 750px;

    margin-bottom: 60px;

}


.section-heading h2 {

    margin-top: 15px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(40px,5vw,62px);

    line-height: 1;

    letter-spacing:
        -3px;

}


.section-heading h2 span {

    color:
        var(--blue);

}


.values-grid {

    display: grid;

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

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

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

}


.value-box {

    min-height: 280px;

    padding:
        35px 30px;

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

}


.value-box:last-child {

    border-right: none;

}


.value-box > span {

    color:
        var(--blue);

    font-size: 9px;

    font-weight: 800;

}


.value-box h3 {

    margin:
        70px 0 15px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size: 22px;

}


.value-box p {

    color:
        var(--text);

    font-size: 11px;

    line-height: 1.8;

}


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

.about-final {

    padding:
        100px 0;

    background:
        #eef6fb;

}


.about-final-box {

    min-height: 280px;

    padding:
        55px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 40px;

    background:
        #fff;

    border-radius: 8px;

}


.about-final-box h2 {

    margin-top: 12px;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    font-size:
        clamp(35px,5vw,58px);

    line-height: 1;

    letter-spacing:
        -3px;

}


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

footer {

    padding-top:
        75px;

    color:
        rgba(255,255,255,.65);

    background:
        var(--navy);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 70px;

    padding-bottom:
        60px;

}


.footer-brand img {

    width: 200px;

    margin-bottom: 22px;

}


.footer-brand p {

    max-width: 350px;

    color:
        rgba(255,255,255,.45);

    font-size: 11px;

    line-height: 1.9;

}


footer h4 {

    margin-bottom: 20px;

    color: #fff;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


footer a {

    display: block;

    margin-bottom: 11px;

    color:
        rgba(255,255,255,.52);

    font-size: 10px;

}


footer a:hover {

    color:
        var(--blue-light);

}


.footer-bottom {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.35);

    font-size: 8px;

    letter-spacing: .5px;

}


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

.whatsapp-button {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 9000;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        10px 15px 10px 10px;

    color: #fff;

    background:
        #18b85a;

    border-radius: 40px;

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.2);

    transition:
        .3s ease;

}


.whatsapp-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 18px 35px
        rgba(0,0,0,.25);

}


.whatsapp-icon {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.18);

    font-size: 16px;

}


.whatsapp-text {

    font-size: 10px;

    font-weight: 800;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .desktop-menu {

        gap: 20px;

    }


    .desktop-menu > a {

        font-size: 10px;

    }


    .hero-container {

        gap: 40px;

    }

}


@media (max-width: 900px) {

    .desktop-menu {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    .nav-container {

        height: 78px;

    }


    .site-header.scrolled
    .nav-container {

        height: 68px;

    }


    .logo img {

        width: 190px;

    }


    .hero-container {

        grid-template-columns:
            1fr;

        padding-top: 140px;

        padding-bottom: 100px;

    }


    .hero-visual {

        display: none;

    }


    .hero h1 {

        font-size:
            clamp(50px,10vw,76px);

    }


    .intro-grid,
    .about-intro {

        grid-template-columns:
            1fr;

        gap: 40px;

    }


    .section-top {

        grid-template-columns:
            1fr;

        gap: 25px;

    }


    .product-grid {

        grid-template-columns:
            1fr;

    }


    .product-card {

        min-height: 320px;

    }


    .mission-section {

        grid-template-columns:
            1fr;

    }


    .values-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .value-box:nth-child(2) {

        border-right: none;

    }


    .value-box {

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

    }


    .service-row {

        grid-template-columns:
            55px 1fr 35px;

        gap: 15px;

    }


    .service-row p {

        display: none;

    }


    .contact-box,
    .about-final-box {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

    }

}


@media (max-width: 600px) {

    .container,
    .nav-container,
    .hero-container {

        width:
            calc(100% - 36px);

    }


    .logo img {

        width: 165px;

    }


    .site-header.scrolled
    .logo img {

        width: 150px;

    }


    .hero {

        min-height:
            100svh;

    }


    .hero-container {

        padding-top: 130px;

    }


    .hero h1 {

        font-size: 48px;

        letter-spacing:
            -2.5px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-buttons {

        flex-direction:
            column;

        align-items:
            stretch;

    }


    .primary-button,
    .secondary-button {

        justify-content:
            center;

    }


    .hero-trust {

        gap: 12px;

    }


    .trust-divider {

        height: 20px;

    }


    .intro-section,
    .products-section,
    .services-section,
    .values-section {

        padding:
            85px 0;

    }


    .intro-content h2,
    .section-top h2,
    .services-heading h2,
    .section-heading h2 {

        letter-spacing:
            -2px;

    }


    .service-row {

        min-height: 95px;

        grid-template-columns:
            35px 1fr 25px;

    }


    .service-row h3 {

        font-size: 15px;

    }


    .mission-card {

        min-height: 420px;

        padding:
            40px 28px;

    }


    .values-grid {

        grid-template-columns:
            1fr;

    }


    .value-box {

        min-height: 220px;

        border-right: none;

    }


    .value-box h3 {

        margin-top:
            45px;

    }


    .quality-section {

        padding:
            90px 0;

    }


    .quality-content h2 {

        font-size: 50px;

        letter-spacing:
            -2.5px;

    }


    .quality-points {

        flex-direction:
            column;

        gap: 25px;

    }


    .contact-section {

        padding:
            70px 0;

    }


    .contact-box,
    .about-final-box {

        padding:
            35px 25px;

    }


    .contact-box h2,
    .about-final-box h2 {

        letter-spacing:
            -2px;

    }


    .about-hero {

        min-height:
            540px;

    }


    .about-hero-content h1 {

        font-size:
            50px;

        letter-spacing:
            -3px;

    }


    .about-hero-number {

        font-size:
            80px;

    }


    .about-main {

        padding:
            85px 0;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 40px;

    }


    .footer-bottom {

        min-height:
            90px;

        flex-direction:
            column;

        justify-content:
            center;

        align-items:
            flex-start;

        gap: 8px;

    }


    .whatsapp-button {

        right: 15px;

        bottom: 15px;

        width: 50px;

        height: 50px;

        padding: 0;

        justify-content:
            center;

    }


    .whatsapp-text {

        display: none;

    }


    .whatsapp-icon {

        width: 38px;

        height: 38px;

    }

}


/* =====================================================
   SAMICLYN PRODUCTS PAGE
===================================================== */

.products-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(110deg, #062b55 0%, #07559b 55%, #0875c9 100%);
}

.products-hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.14), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,.08), transparent 35%);
}

.products-hero .container {
    position: relative;
    z-index: 2;
}

.products-hero-content {
    max-width: 800px;
    padding: 120px 0 90px;
    color: #fff;
}

.products-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 25px;
    opacity: .8;
}

.products-hero h1 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.03;
    letter-spacing: -3px;
    font-weight: 500;
}

.products-hero h1 strong {
    font-weight: 800;
}

.products-hero p {
    max-width: 620px;
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.82);
}

.products-breadcrumb {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
    font-size: 14px;
}

.products-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.products-breadcrumb span {
    opacity: .5;
}


/* INTRO */

.products-introduction {
    padding: 120px 0;
    background: #fff;
}

.products-introduction-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 100px;
    max-width: 1150px;
    margin: auto;
}

.products-introduction-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #0872c9;
}

.vertical-line {
    width: 1px;
    height: 80px;
    background: #0872c9;
    opacity: .3;
}

.section-label {
    display: block;
    color: #0872c9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.products-introduction-text h2 {
    max-width: 800px;
    margin: 0 0 30px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -2px;
    color: #082d52;
}

.products-introduction-text p {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.85;
    color: #66778a;
}


/* PORTFOLIO */

.product-portfolio {
    padding: 110px 0 130px;
    background: #f4f8fb;
}

.portfolio-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 75px;
}

.portfolio-heading h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 5vw, 60px);
    letter-spacing: -2px;
    color: #082d52;
}

.portfolio-heading p {
    max-width: 450px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #718096;
}


/* FEATURED PRODUCT */

.featured-product {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 580px;
    margin-bottom: 45px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(7,43,78,.07);
}

.featured-product.reverse {
    grid-template-columns: .9fr 1.1fr;
}

.featured-product.reverse .featured-product-image {
    order: 2;
}

.featured-product.reverse .featured-product-content {
    order: 1;
}

.featured-product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 580px;
    padding: 50px;
    overflow: hidden;
    background: #f8fafc;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    max-width: 560px;
    max-height: 500px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform .6s ease;
}

.featured-product:hover .featured-product-image img {
    transform: scale(1.05);
}

.featured-product-image::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(8,114,201,.06);
}

.product-number {
    position: absolute;
    top: 30px;
    left: 35px;
    z-index: 5;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0872c9;
}

.featured-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.product-category {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0872c9;
}

.featured-product-content h3 {
    margin: 20px 0 8px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #082d52;
}

.product-type {
    font-size: 18px;
    color: #66778a;
}

.product-line {
    width: 60px;
    height: 2px;
    margin: 30px 0;
    background: #0872c9;
}

.featured-product-content p {
    max-width: 480px;
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.8;
    color: #718096;
}

.product-action {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    width: fit-content;
    padding-bottom: 10px;
    border-bottom: 1px solid #0872c9;
    color: #082d52;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    text-decoration: none;
    transition: gap .3s ease;
}

.product-action span {
    font-size: 20px;
    color: #0872c9;
}

.product-action:hover {
    gap: 30px;
}


/* QUALITY */

.product-quality-section {
    padding: 90px 0;
    background: #082d52;
    color: #fff;
}

.product-quality-inner {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 45px;
}

.quality-symbol {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    font-size: 25px;
}

.quality-text span {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
    opacity: .7;
}

.quality-text h2 {
    margin: 8px 0;
    font-family: "Manrope", sans-serif;
    font-size: 32px;
}

.quality-text p {
    margin: 0;
    max-width: 700px;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
}

.quality-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.quality-link span {
    margin-left: 15px;
    font-size: 20px;
}


/* CTA */

.products-cta {
    padding: 140px 0;
    text-align: center;
    background: #fff;
}

.products-cta-inner {
    max-width: 800px;
    margin: auto;
}

.products-cta-inner > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #0872c9;
}

.products-cta h2 {
    margin: 20px 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: #082d52;
}

.products-cta p {
    max-width: 600px;
    margin: auto;
    color: #718096;
    font-size: 17px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 17px 28px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: .3s ease;
}

.cta-primary {
    background: #0872c9;
    color: #fff;
}

.cta-primary:hover {
    background: #082d52;
}

.cta-secondary {
    border: 1px solid #dbe3eb;
    color: #082d52;
}

.cta-secondary:hover {
    border-color: #0872c9;
    color: #0872c9;
}


/* WHATSAPP */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 50px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    transition: transform .3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
}

.whatsapp-float svg {
    width: 23px;
    height: 23px;
    fill: #fff;
}


/* MOBILE */

@media (max-width: 900px) {

    .products-introduction-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .products-introduction-label {
        flex-direction: row;
        align-items: center;
    }

    .vertical-line {
        width: 60px;
        height: 1px;
    }

    .portfolio-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-product,
    .featured-product.reverse {
        grid-template-columns: 1fr;
    }

    .featured-product.reverse .featured-product-image,
    .featured-product.reverse .featured-product-content {
        order: initial;
    }

    .featured-product-image {
        min-height: 450px;
    }

    .featured-product-content {
        padding: 55px 40px;
    }

    .product-quality-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .quality-link {
        width: fit-content;
    }

}


@media (max-width: 600px) {

    .products-hero {
        min-height: 500px;
    }

    .products-hero-content {
        padding: 100px 0 70px;
    }

    .products-hero h1 {
        font-size: 47px;
        letter-spacing: -2px;
    }

    .products-introduction {
        padding: 80px 0;
    }

    .product-portfolio {
        padding: 80px 0;
    }

    .featured-product-image {
        min-height: 350px;
        padding: 30px;
    }

    .featured-product-content {
        padding: 45px 28px;
    }

    .featured-product-content h3 {
        font-size: 40px;
    }

    .products-cta {
        padding: 90px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        justify-content: center;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float span:last-child {
        display: none;
    }

}