/* =====================================================
   CRYSTAL INC
   GLOBAL STYLE
===================================================== */

:root {

    --primary: #102c92;
    --primary-dark: #071e69;

    --blue: #008fd5;
    --cyan: #08bde8;

    --dark: #101828;
    --text: #344054;
    --muted: #667085;

    --light: #f5faff;
    --white: #ffffff;

    --border: #e5edf5;

    --shadow:
        0 18px 50px rgba(10, 45, 110, .12);

    --transition:
        all .35s cubic-bezier(.2,.8,.2,1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: 'Jost', sans-serif;

    color: var(--text);

    background: #fff;

    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


button,
input {
    font-family: inherit;
}


button {
    border: none;
    outline: none;
    cursor: pointer;
}


.site-container {

    width: min(94%, 1450px);

    margin: auto;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {

    height: 36px;

    background:
        linear-gradient(
            90deg,
            var(--primary-dark),
            var(--primary),
            #087cb9
        );

    color: white;

    font-size: 13px;
}


.top-bar-inner {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.top-message,
.top-contact {

    display: flex;

    align-items: center;

    gap: 18px;
}


.top-message {

    font-weight: 500;

    letter-spacing: .3px;
}


.top-message i {

    color: #54d8ff;
}


.top-contact a {

    display: flex;

    align-items: center;

    gap: 7px;

    transition: var(--transition);
}


.top-contact a:hover {

    color: #69dcff;
}


.top-divider {

    width: 1px;

    height: 14px;

    background: rgba(255,255,255,.3);
}


/* =====================================================
   HEADER
===================================================== */

.main-header {

    position: relative;

    z-index: 999;

    height: 88px;

    background: rgba(255,255,255,.97);

    border-bottom: 1px solid rgba(15,45,100,.08);

    transition: var(--transition);
}


.main-header.sticky {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    height: 76px;

    box-shadow:
        0 12px 40px rgba(6,35,90,.10);

    animation: headerSlide .4s ease;
}


@keyframes headerSlide {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}


.header-inner {

    height: 100%;

    display: flex;

    align-items: center;
}


/* =====================================================
   LOGO
===================================================== */

.brand-logo {

    width: 205px;

    display: flex;

    align-items: center;

    flex-shrink: 0;
}


.brand-logo img {

    display: block;

    width: 100%;

    max-height: 70px;

    object-fit: contain;

    transition: var(--transition);
}


.brand-logo:hover img {

    transform: scale(1.025);
}


/* =====================================================
   NAVIGATION
===================================================== */

.desktop-nav {

    margin-left: auto;

    height: 100%;
}


.nav-list {

    list-style: none;

    display: flex;

    align-items: center;

    height: 100%;

    gap: 3px;
}


.nav-list > li {

    height: 100%;

    display: flex;

    align-items: center;
}


.nav-link {

    position: relative;

    height: 100%;

    padding: 0 14px;

    display: flex;

    align-items: center;

    gap: 7px;

    color: #1d2939;

    font-size: 15px;

    font-weight: 600;

    transition: var(--transition);
}


.nav-link i {

    font-size: 10px;

    transition: transform .3s ease;
}


.nav-link::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 3px;

    border-radius: 5px 5px 0 0;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--primary)
        );

    transform: translateX(-50%);

    transition: width .3s ease;
}


.nav-link:hover,
.nav-link.active {

    color: var(--primary);
}


.nav-link:hover::after,
.nav-link.active::after {

    width: 55%;
}


.has-dropdown:hover > .nav-link i,
.has-mega-menu:hover > .nav-link i {

    transform: rotate(180deg);
}


/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {

    margin-left: 18px;

    display: flex;

    align-items: center;

    gap: 10px;
}


.search-trigger {

    width: 43px;

    height: 43px;

    border-radius: 50%;

    background: #f2f7fc;

    color: var(--primary);

    font-size: 16px;

    transition: var(--transition);
}


.search-trigger:hover {

    color: white;

    background: var(--primary);

    transform: translateY(-2px);
}


.header-cta {

    min-height: 45px;

    padding: 0 19px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

    font-size: 14px;

    font-weight: 600;

    background:
        linear-gradient(
            120deg,
            var(--primary),
            var(--blue)
        );

    box-shadow:
        0 8px 25px rgba(0,115,185,.22);

    transition: var(--transition);
}


.header-cta i {

    transition: transform .3s ease;
}


.header-cta:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,115,185,.32);
}


.header-cta:hover i {

    transform: translateX(4px);
}


/* =====================================================
   STANDARD DROPDOWN
===================================================== */

.has-dropdown {

    position: relative;
}


.dropdown-menu {

    position: absolute;

    top: calc(100% + 12px);

    left: 0;

    width: 285px;

    padding: 12px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    box-shadow: var(--shadow);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px)
        scale(.97);

    transform-origin: top;

    transition:
        opacity .25s ease,
        transform .3s ease,
        visibility .25s;

    pointer-events: none;
}


.has-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);

    pointer-events: auto;
}


.dropdown-menu::before {

    content: "";

    position: absolute;

    top: -13px;

    left: 0;

    width: 100%;

    height: 15px;
}


.dropdown-menu a {

    min-height: 48px;

    padding: 10px 12px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #344054;

    font-size: 14px;

    font-weight: 500;

    transition: var(--transition);
}


.dropdown-menu a i {

    width: 28px;

    height: 28px;

    border-radius: 8px;

    display: grid;

    place-items: center;

    color: var(--blue);

    background: #ecf8ff;

    font-size: 12px;
}


.dropdown-menu a:hover {

    padding-left: 17px;

    color: var(--primary);

    background:
        linear-gradient(
            90deg,
            #effaff,
            #f7f9ff
        );
}


.dropdown-menu a small {

    color: var(--muted);

    font-size: 11px;
}


.dropdown-separator {

    height: 1px;

    margin: 8px 5px;

    background: var(--border);
}


.special-dropdown-link {

    font-weight: 600 !important;

    color: var(--primary) !important;
}


/* =====================================================
   PRODUCTS MEGA MENU
===================================================== */

.has-mega-menu {

    position: static;
}


.mega-menu {

    position: absolute;

    top: calc(100% + 1px);

    left: 50%;

    width: min(94vw, 1320px);

    transform:
        translateX(-50%)
        translateY(20px);

    background: white;

    border-radius: 0 0 22px 22px;

    border: 1px solid var(--border);

    border-top: 3px solid var(--blue);

    box-shadow:
        0 30px 70px rgba(5,40,100,.16);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: var(--transition);
}


.has-mega-menu:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


.mega-menu-inner {

    display: grid;

    grid-template-columns:
        .9fr
        1.9fr
        .8fr;

    min-height: 390px;
}


/* INTRO */

.mega-intro {

    position: relative;

    padding: 43px 36px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f2fbff,
            #f5f7ff
        );
}


.mega-intro::after {

    content: "";

    position: absolute;

    width: 190px;

    height: 190px;

    left: -90px;

    bottom: -90px;

    border-radius: 50%;

    background:
        rgba(0,174,230,.08);
}


.mega-label {

    display: block;

    margin-bottom: 12px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.mega-intro h3 {

    color: var(--dark);

    font-size: 29px;

    line-height: 1.18;
}


.mega-intro h3 span {

    display: block;

    color: var(--primary);
}


.mega-intro p {

    margin: 16px 0 25px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


.mega-main-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;
}


.mega-main-btn i {

    transition: transform .3s ease;
}


.mega-main-btn:hover i {

    transform: translateX(5px);
}


/* MEGA LINKS */

.mega-links {

    padding: 35px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 9px;
}


.mega-link-card {

    min-height: 72px;

    padding: 12px;

    border: 1px solid transparent;

    border-radius: 12px;

    display: flex;

    align-items: center;

    gap: 13px;

    transition: var(--transition);
}


.mega-link-card:hover {

    border-color: #dceffc;

    background:
        linear-gradient(
            120deg,
            #f3fbff,
            #f7f9ff
        );

    transform: translateY(-2px);
}


.mega-icon {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    border-radius: 12px;

    display: grid;

    place-items: center;

    color: var(--blue);

    background:
        linear-gradient(
            135deg,
            #e8f9ff,
            #eef1ff
        );

    transition: var(--transition);
}


.mega-link-card:hover .mega-icon {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--primary)
        );
}


.mega-link-card strong {

    display: block;

    margin-bottom: 3px;

    color: #1d2939;

    font-size: 14px;
}


.mega-link-card small {

    color: var(--muted);

    font-size: 12px;
}


/* FEATURE */

.mega-feature {

    padding: 38px 30px;

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            var(--primary-dark),
            var(--primary),
            #087dbb
        );
}


.feature-water-icon {

    width: 55px;

    height: 55px;

    margin-bottom: 22px;

    border-radius: 17px;

    display: grid;

    place-items: center;

    color: #7fe7ff;

    font-size: 23px;

    background:
        rgba(255,255,255,.1);

    border:
        1px solid rgba(255,255,255,.15);
}


.mega-feature > span {

    color: #71dcff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.mega-feature h4 {

    margin: 10px 0;

    color: white;

    font-size: 22px;

    line-height: 1.25;
}


.mega-feature p {

    margin-bottom: 22px;

    color: rgba(255,255,255,.72);

    font-size: 13px;

    line-height: 1.7;
}


.mega-feature a {

    display: flex;

    align-items: center;

    gap: 9px;

    color: white;

    font-size: 14px;

    font-weight: 600;
}


.mega-feature a i {

    transition: transform .3s ease;
}


.mega-feature a:hover i {

    transform: translateX(5px);
}


/* =====================================================
   SEARCH
===================================================== */

.search-overlay {

    position: fixed;

    inset: 0;

    z-index: 5000;

    padding: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    background:
        rgba(4,20,55,.96);

    backdrop-filter: blur(10px);

    opacity: 0;

    visibility: hidden;

    transition: .4s ease;
}


.search-overlay.active {

    opacity: 1;

    visibility: visible;
}


.search-close {

    position: absolute;

    top: 35px;

    right: 40px;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    color: white;

    background:
        rgba(255,255,255,.1);

    font-size: 20px;

    transition: var(--transition);
}


.search-close:hover {

    background: var(--blue);

    transform: rotate(90deg);
}


.search-content {

    width: min(850px, 95%);

    text-align: center;
}


.search-content > span {

    color: #58d8ff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.search-content form {

    margin: 20px 0;

    display: flex;

    border-bottom:
        2px solid rgba(255,255,255,.5);
}


.search-content input {

    flex: 1;

    padding: 18px 5px;

    border: none;

    outline: none;

    color: white;

    background: transparent;

    font-size: clamp(20px, 3vw, 34px);
}


.search-content input::placeholder {

    color: rgba(255,255,255,.45);
}


.search-content form button {

    width: 60px;

    color: #65dcff;

    background: transparent;

    font-size: 23px;
}


.search-content p {

    color: rgba(255,255,255,.55);

    font-size: 13px;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu-btn {

    width: 43px;

    height: 43px;

    padding: 10px;

    display: none;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    border-radius: 10px;

    background: #f2f7fc;
}


.mobile-menu-btn span {

    display: block;

    width: 100%;

    height: 2px;

    background: var(--primary);
}


.mobile-nav {

    position: fixed;

    z-index: 6000;

    top: 0;

    right: -100%;

    width: min(390px, 90%);

    height: 100vh;

    background: white;

    transition:
        right .45s cubic-bezier(.7,0,.2,1);

    overflow-y: auto;
}


.mobile-nav.active {

    right: 0;
}


.mobile-overlay {

    position: fixed;

    inset: 0;

    z-index: 5999;

    background:
        rgba(4,20,50,.6);

    opacity: 0;

    visibility: hidden;

    transition: .35s;
}


.mobile-overlay.active {

    opacity: 1;

    visibility: visible;
}


.mobile-nav-header {

    height: 90px;

    padding: 15px 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}


.mobile-nav-header img {

    width: 165px;

    max-height: 65px;

    object-fit: contain;
}


.mobile-nav-header button {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    color: var(--primary);

    background: #edf7ff;

    font-size: 18px;
}


.mobile-nav-body {

    padding: 15px 22px 40px;
}


.mobile-main-link,
.mobile-dropdown-btn {

    width: 100%;

    min-height: 57px;

    border-bottom: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: var(--dark);

    background: transparent;

    font-size: 16px;

    font-weight: 600;

    text-align: left;
}


.mobile-dropdown-btn i {

    color: var(--blue);

    font-size: 12px;

    transition: transform .3s ease;
}


.mobile-dropdown-btn.active i {

    transform: rotate(45deg);
}


.mobile-submenu {

    max-height: 0;

    padding-left: 15px;

    overflow: hidden;

    transition:
        max-height .4s ease;
}


.mobile-submenu a {

    display: block;

    padding: 11px 0;

    color: var(--muted);

    font-size: 14px;
}


.mobile-submenu a:hover {

    color: var(--blue);
}


.mobile-assistance-btn {

    margin-top: 25px;

    min-height: 52px;

    padding: 0 20px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: white;

    background:
        linear-gradient(
            120deg,
            var(--primary),
            var(--blue)
        );

    font-weight: 600;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1220px) {

    .nav-link {

        padding-left: 9px;

        padding-right: 9px;

        font-size: 14px;
    }


    .brand-logo {

        width: 175px;
    }


    .header-cta span {

        display: none;
    }


    .header-cta {

        width: 45px;

        padding: 0;

        justify-content: center;
    }

}


@media (max-width: 1050px) {

    .desktop-nav {

        display: none;
    }


    .header-actions {

        margin-left: auto;
    }


    .mobile-menu-btn {

        display: flex;
    }


    .header-cta {

        width: auto;

        padding: 0 18px;
    }


    .header-cta span {

        display: inline;
    }

}


@media (max-width: 650px) {

    .top-bar {

        display: none;
    }


    .main-header {

        height: 75px;
    }


    .site-container {

        width: 92%;
    }


    .brand-logo {

        width: 155px;
    }


    .brand-logo img {

        max-height: 58px;
    }


    .header-cta {

        display: none;
    }


    .search-trigger,
    .mobile-menu-btn {

        width: 40px;

        height: 40px;
    }

}


@media (max-width: 400px) {

    .brand-logo {

        width: 135px;
    }


    .header-actions {

        gap: 5px;
    }

}

/* =====================================================
   CRYSTAL INC FOOTER
===================================================== */

.crystal-footer {

    position: relative;

    overflow: hidden;

    color: rgba(255,255,255,.82);

    background:
        linear-gradient(
            135deg,
            #061f55 0%,
            #0b376c 48%,
            #063c69 100%
        );

}


/* subtle water glow */

.footer-glow {

    position: absolute;

    width: 550px;

    height: 550px;

    top: -350px;

    right: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,196,244,.18),
            transparent 68%
        );

    pointer-events: none;
}


.crystal-footer::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #08c6ef,
            #008fd5,
            #142b9b,
            #08c6ef
        );

}


/* =====================================================
   FOOTER MAIN
===================================================== */

.footer-main {

    position: relative;

    display: grid;

    grid-template-columns:
        1.45fr
        .8fr
        1fr
        1fr;

    gap: 55px;

    padding: 75px 0 55px;

}


/* =====================================================
   FOOTER BRAND
===================================================== */

.footer-brand {

    max-width: 390px;
}


.footer-logo {

    display: inline-flex;

    align-items: center;

    width: 205px;

    padding: 12px 16px;

    margin-bottom: 8px;

    border-radius: 14px;

    background: rgba(255,255,255,.97);

    transition: var(--transition);
}


.footer-logo:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 35px rgba(0,0,0,.15);
}


.footer-logo img {

    display: block;

    width: 100%;

    max-height: 75px;

    object-fit: contain;
}


.footer-tagline {

    margin: 3px 0 28px;

    color: #62dcff;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1.5px;

}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 22px;
}


.footer-contact-icon {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    border: 1px solid rgba(102,220,255,.25);

    border-radius: 10px;

    display: grid;

    place-items: center;

    color: #59d8ff;

    background:
        rgba(0,183,232,.09);

    font-size: 14px;
}


.footer-contact-item strong {

    display: block;

    margin-bottom: 4px;

    color: white;

    font-size: 13px;

    font-weight: 600;
}


.footer-contact-item p {

    margin: 0;

    color: rgba(255,255,255,.67);

    font-size: 13px;

    line-height: 1.65;
}


.footer-contact-item a {

    color: rgba(255,255,255,.75);

    font-size: 14px;

    transition: var(--transition);
}


.footer-contact-item a:hover {

    color: #5bdcff;
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h3 {

    position: relative;

    margin-bottom: 25px;

    color: white;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: .4px;
}


.footer-column h3::after {

    content: "";

    display: block;

    width: 28px;

    height: 2px;

    margin-top: 9px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #06c7ee,
            #1584d0
        );
}


.footer-column ul {

    padding: 0;

    margin: 0;

    list-style: none;
}


.footer-column li {

    margin-bottom: 13px;
}


.footer-column a {

    position: relative;

    display: inline-block;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    transition: var(--transition);
}


.footer-column a::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: -3px;

    width: 0;

    height: 1px;

    background: #5bdcff;

    transition: width .3s ease;
}


.footer-column a:hover {

    color: white;

    transform: translateX(4px);
}


.footer-column a:hover::before {

    width: 100%;
}


/* =====================================================
   FOOTER CTA
===================================================== */

.footer-cta {

    position: relative;

    padding: 28px 30px;

    border-top:
        1px solid rgba(255,255,255,.13);

    border-bottom:
        1px solid rgba(255,255,255,.13);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-cta-content span {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 7px;

    color: #5edcff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.footer-cta-content h2 {

    margin: 0;

    color: white;

    font-size: 25px;

    font-weight: 500;
}


.footer-cta-content h2 strong {

    color: #54d8ff;

    font-weight: 700;
}


.footer-cta-btn {

    min-height: 48px;

    padding: 0 23px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #082b63;

    background: white;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    transition: var(--transition);
}


.footer-cta-btn i {

    transition: transform .3s ease;
}


.footer-cta-btn:hover {

    color: white;

    background:
        linear-gradient(
            120deg,
            #05bde9,
            #087cc8
        );

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.18);
}


.footer-cta-btn:hover i {

    transform: translateX(5px);
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {

    min-height: 78px;

    display: grid;

    grid-template-columns:
        1fr auto auto;

    align-items: center;

    gap: 30px;
}


.footer-copyright {

    color: rgba(255,255,255,.5);

    font-size: 12px;
}


.footer-links {

    display: flex;

    align-items: center;

    gap: 13px;
}


.footer-links a {

    color: rgba(255,255,255,.55);

    font-size: 12px;

    transition: var(--transition);
}


.footer-links a:hover {

    color: white;
}


.footer-links span {

    width: 3px;

    height: 3px;

    border-radius: 50%;

    background: rgba(255,255,255,.3);
}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {

    display: flex;

    align-items: center;

    gap: 7px;
}


.footer-social a {

    width: 35px;

    height: 35px;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: rgba(255,255,255,.7);

    background:
        rgba(255,255,255,.04);

    font-size: 13px;

    transition: var(--transition);
}


.footer-social a:hover {

    color: white;

    border-color: #4fdcff;

    background:
        linear-gradient(
            135deg,
            #05bce8,
            #1432a0
        );

    transform:
        translateY(-4px);
}


/* =====================================================
   FOOTER RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .footer-main {

        grid-template-columns:
            1.3fr 1fr 1fr;

        gap: 40px;
    }


    .footer-brand {

        grid-row: span 2;
    }

}


@media (max-width: 800px) {

    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 30px;

        padding: 55px 0 40px;
    }


    .footer-brand {

        grid-row: auto;

        grid-column: 1 / -1;

        max-width: 600px;
    }


    .footer-bottom {

        grid-template-columns: 1fr;

        gap: 17px;

        padding: 25px 0;

        text-align: center;
    }


    .footer-links {

        justify-content: center;

        flex-wrap: wrap;
    }


    .footer-social {

        justify-content: center;
    }

}


@media (max-width: 550px) {

    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-brand {

        grid-column: auto;
    }


    .footer-cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 25px 0;
    }


    .footer-cta-content h2 {

        font-size: 21px;
    }


    .footer-logo {

        width: 185px;
    }

}

/* =====================================================
   CRYSTAL INC — HERO
===================================================== */

.crystal-hero {

    position: relative;

    min-height: calc(100vh - 124px);

    overflow: hidden;

    color: white;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(0,183,235,.22),
            transparent 25%
        ),
        radial-gradient(
            circle at 15% 20%,
            rgba(0,126,210,.22),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #041a49 0%,
            #06295c 42%,
            #073b73 72%,
            #031d4d 100%
        );
}


/* =====================================================
   BACKGROUND GLOW
===================================================== */

.hero-bg-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(5px);

    pointer-events: none;
}


.glow-one {

    width: 520px;
    height: 520px;

    top: -260px;
    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(0,202,242,.16),
            transparent 68%
        );

    animation:
        glowFloat 10s ease-in-out infinite;
}


.glow-two {

    width: 650px;
    height: 650px;

    right: -260px;
    bottom: -330px;

    background:
        radial-gradient(
            circle,
            rgba(15,91,202,.22),
            transparent 68%
        );

    animation:
        glowFloat 13s ease-in-out infinite reverse;
}


.glow-three {

    width: 250px;
    height: 250px;

    top: 35%;
    left: 42%;

    background:
        radial-gradient(
            circle,
            rgba(47,220,255,.08),
            transparent 70%
        );

    animation:
        pulseGlow 5s ease-in-out infinite;
}


@keyframes glowFloat {

    0%,100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(35px,-25px) scale(1.1);
    }

}


@keyframes pulseGlow {

    0%,100% {
        opacity: .4;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


/* =====================================================
   GRID
===================================================== */

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .13;

    background-image:

        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 90%
        );

    animation:
        gridMove 20s linear infinite;
}


@keyframes gridMove {

    from {
        background-position: 0 0;
    }

    to {
        background-position: 70px 70px;
    }

}


/* =====================================================
   PARTICLES
===================================================== */

.hero-particles {

    position: absolute;

    inset: 0;

    pointer-events: none;
}


.hero-particles span {

    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #64dcff;

    box-shadow:
        0 0 12px #23c9f5;

    opacity: .45;

    animation:
        particleFloat
        var(--duration, 8s)
        ease-in-out
        infinite;
}


.hero-particles span:nth-child(1) {
    left: 8%;
    top: 32%;
    --duration: 7s;
}

.hero-particles span:nth-child(2) {
    left: 17%;
    top: 70%;
    --duration: 11s;
}

.hero-particles span:nth-child(3) {
    left: 27%;
    top: 20%;
    --duration: 8s;
}

.hero-particles span:nth-child(4) {
    left: 36%;
    top: 78%;
    --duration: 12s;
}

.hero-particles span:nth-child(5) {
    left: 48%;
    top: 30%;
    --duration: 9s;
}

.hero-particles span:nth-child(6) {
    left: 58%;
    top: 12%;
    --duration: 10s;
}

.hero-particles span:nth-child(7) {
    left: 65%;
    top: 80%;
    --duration: 8s;
}

.hero-particles span:nth-child(8) {
    left: 74%;
    top: 22%;
    --duration: 13s;
}

.hero-particles span:nth-child(9) {
    left: 83%;
    top: 65%;
    --duration: 9s;
}

.hero-particles span:nth-child(10) {
    left: 91%;
    top: 35%;
    --duration: 12s;
}

.hero-particles span:nth-child(11) {
    left: 42%;
    top: 55%;
    --duration: 10s;
}

.hero-particles span:nth-child(12) {
    left: 13%;
    top: 48%;
    --duration: 8s;
}


@keyframes particleFloat {

    0%,100% {
        transform:
            translateY(0)
            scale(.7);

        opacity: .15;
    }

    50% {
        transform:
            translateY(-60px)
            scale(1.3);

        opacity: .75;
    }

}


/* =====================================================
   HERO CONTAINER
===================================================== */

.hero-container {

    position: relative;

    min-height:
        calc(100vh - 210px);

    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    align-items: center;

    gap: 30px;

    padding-top: 45px;

    padding-bottom: 90px;

    z-index: 5;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: relative;

    z-index: 10;

    max-width: 650px;

    animation:
        heroContentIn
        1s
        cubic-bezier(.2,.8,.2,1)
        both;
}


@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: #66ddff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.eyebrow-line {

    width: 38px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #57ddff
        );
}


.eyebrow-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #5cddff;

    box-shadow:
        0 0 10px #5cddff;
}


.hero-content h1 {

    max-width: 650px;

    margin: 0;

    color: white;

    font-size:
        clamp(48px, 6vw, 86px);

    line-height: .98;

    font-weight: 600;

    letter-spacing: -3px;
}


.hero-content h1 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #ffffff 5%,
            #66e4ff 55%,
            #1ca4e1 100%
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    margin-top: 9px;
}


.hero-description {

    max-width: 520px;

    margin: 28px 0 32px;

    color:
        rgba(255,255,255,.68);

    font-size: 17px;

    line-height: 1.75;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;
}


.hero-btn {

    min-height: 55px;

    padding: 0 9px 0 22px;

    border-radius: 50px;

    display: inline-flex;

    align-items: center;

    gap: 17px;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}


.hero-btn span {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: grid;

    place-items: center;
}


.hero-btn.primary {

    color: #062b63;

    background: white;

    box-shadow:
        0 15px 40px rgba(0,0,0,.15);
}


.hero-btn.primary span {

    color: white;

    background:
        linear-gradient(
            135deg,
            #0cc9ee,
            #112c9b
        );
}


.hero-btn.primary:hover {

    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.25);
}


.hero-btn.secondary {

    padding-left: 21px;

    color: white;

    border:
        1px solid rgba(255,255,255,.23);

    background:
        rgba(255,255,255,.06);

    backdrop-filter: blur(10px);
}


.hero-btn.secondary span {

    border:
        1px solid rgba(255,255,255,.2);

    background:
        rgba(255,255,255,.08);
}


.hero-btn.secondary:hover {

    transform: translateY(-4px);

    border-color: #5bddff;

    background:
        rgba(255,255,255,.12);
}


/* =====================================================
   HERO TRUST
===================================================== */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 24px;

    margin-top: 40px;
}


.trust-item {

    display: flex;

    align-items: center;

    gap: 10px;
}


.trust-icon {

    width: 38px;

    height: 38px;

    border-radius: 11px;

    display: grid;

    place-items: center;

    color: #60ddff;

    border:
        1px solid rgba(92,220,255,.18);

    background:
        rgba(0,190,235,.08);
}


.trust-item strong,
.trust-item span {

    display: block;
}


.trust-item strong {

    color: white;

    font-size: 13px;
}


.trust-item span {

    margin-top: 2px;

    color: rgba(255,255,255,.48);

    font-size: 11px;
}


.trust-divider {

    width: 1px;

    height: 35px;

    background:
        rgba(255,255,255,.15);
}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {

    position: relative;

    min-height: 570px;

    display: grid;

    place-items: center;
}


.water-sphere {

    position: absolute;

    width: min(460px, 72vw);

    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(117,236,255,.25),
            rgba(0,147,219,.13) 38%,
            rgba(4,36,107,.06) 70%,
            transparent 71%
        );

    border:
        1px solid rgba(103,227,255,.17);

    box-shadow:
        inset 0 0 70px rgba(20,192,238,.08),
        0 0 80px rgba(0,180,235,.08);

    animation:
        sphereFloat
        6s
        ease-in-out
        infinite;
}


@keyframes sphereFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

}


.sphere-inner {

    position: absolute;

    inset: 18px;

    border-radius: 50%;

    overflow: hidden;
}


.sphere-highlight {

    position: absolute;

    width: 180px;

    height: 80px;

    top: 40px;

    left: 70px;

    border-radius: 50%;

    transform: rotate(-25deg);

    background:
        rgba(255,255,255,.09);

    filter: blur(4px);
}


/* =====================================================
   WATER DROP
===================================================== */

.water-drop-large {

    position: absolute;

    width: 185px;

    height: 235px;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%,-50%);

    animation:
        dropFloat
        5s
        ease-in-out
        infinite;
}


.water-drop-large svg {

    width: 100%;

    height: 100%;
}


@keyframes dropFloat {

    0%,100% {

        transform:
            translate(-50%,-50%)
            translateY(0)
            rotate(-2deg);
    }

    50% {

        transform:
            translate(-50%,-50%)
            translateY(-15px)
            rotate(2deg);
    }

}


/* =====================================================
   RIPPLES
===================================================== */

.sphere-ripple {

    position: absolute;

    left: 50%;

    top: 65%;

    width: 100px;

    height: 28px;

    border:
        1px solid rgba(82,224,255,.35);

    border-radius: 50%;

    transform:
        translate(-50%,-50%);

    animation:
        ripplePulse
        3s
        ease-out
        infinite;
}


.ripple-two {

    animation-delay: 1s;
}


.ripple-three {

    animation-delay: 2s;
}


@keyframes ripplePulse {

    0% {

        width: 80px;

        opacity: .7;
    }

    100% {

        width: 300px;

        opacity: 0;
    }

}


/* =====================================================
   ORBITS
===================================================== */

.water-orbit {

    position: absolute;

    width: 540px;

    height: 180px;

    border:
        1px solid rgba(73,214,255,.15);

    border-radius: 50%;

    transform:
        rotate(-25deg);

    animation:
        orbitSpin
        16s
        linear
        infinite;
}


.orbit-two {

    width: 470px;

    height: 160px;

    transform:
        rotate(45deg);

    animation-duration: 20s;

    animation-direction: reverse;
}


.orbit-three {

    width: 600px;

    height: 200px;

    transform:
        rotate(70deg);

    animation-duration: 25s;
}


@keyframes orbitSpin {

    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }

}


/* =====================================================
   PRODUCT
===================================================== */

.hero-product {

    position: absolute;

    z-index: 5;

    right: 7%;

    bottom: 30px;

    width: 260px;

    animation:
        productFloat
        5s
        ease-in-out
        infinite;
}


.hero-product img {

    width: 100%;

    display: block;

    filter:
        drop-shadow(
            0 30px 35px rgba(0,0,0,.32)
        );
}


.product-glow {

    position: absolute;

    width: 220px;

    height: 80px;

    left: 50%;

    bottom: -5px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(0,202,244,.28);

    filter: blur(30px);

    z-index: -1;
}


@keyframes productFloat {

    0%,100% {

        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {

        transform:
            translateY(-16px)
            rotate(1deg);
    }

}


/* =====================================================
   FLOATING CARDS
===================================================== */

.floating-card {

    position: absolute;

    z-index: 10;

    padding: 12px 16px;

    display: flex;

    align-items: center;

    gap: 10px;

    border:
        1px solid rgba(255,255,255,.16);

    border-radius: 15px;

    color: white;

    background:
        rgba(4,33,75,.63);

    backdrop-filter:
        blur(16px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.18);

    animation:
        cardFloat
        5s
        ease-in-out
        infinite;
}


.floating-card-icon {

    width: 36px;

    height: 36px;

    border-radius: 11px;

    display: grid;

    place-items: center;

    color: #63ddff;

    background:
        rgba(20,194,239,.12);
}


.floating-card span {

    display: block;

    color: rgba(255,255,255,.45);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


.floating-card strong {

    display: block;

    margin-top: 2px;

    font-size: 12px;
}


.card-purity {

    top: 15%;

    right: 4%;
}


.card-solutions {

    bottom: 17%;

    left: 2%;

    animation-delay: 1.5s;
}


@keyframes cardFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =====================================================
   MINI RING
===================================================== */

.mini-ring {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    border:
        2px solid rgba(80,220,255,.5);

    color: #64ddff;

    font-size: 9px;

    font-weight: 700;
}


/* =====================================================
   TINY DROPS
===================================================== */

.tiny-drop {

    position: absolute;

    color: #58dfff;

    font-size: 13px;

    filter:
        drop-shadow(
            0 0 10px rgba(80,220,255,.7)
        );

    animation:
        tinyDropFloat
        4s
        ease-in-out
        infinite;
}


.drop-one {

    top: 25%;

    left: 12%;
}


.drop-two {

    top: 72%;

    right: 10%;

    animation-delay: 1s;
}


.drop-three {

    top: 14%;

    right: 25%;

    font-size: 8px;

    animation-delay: 2s;
}


@keyframes tinyDropFloat {

    0%,100% {

        opacity: .35;

        transform:
            translateY(0)
            scale(.8);
    }

    50% {

        opacity: 1;

        transform:
            translateY(-18px)
            scale(1.15);
    }

}


/* =====================================================
   BOTTOM STATS
===================================================== */

.hero-bottom {

    position: absolute;

    z-index: 20;

    left: 0;

    right: 0;

    bottom: 30px;
}


.hero-bottom-inner {

    display: flex;

    align-items: center;

    gap: 50px;
}


.hero-stat {

    display: flex;

    align-items: center;

    gap: 12px;

    padding-right: 35px;

    border-right:
        1px solid rgba(255,255,255,.14);
}


.hero-stat strong {

    color: white;

    font-size: 28px;

    font-weight: 600;
}


.hero-stat span {

    color: rgba(255,255,255,.45);

    font-size: 10px;

    line-height: 1.35;

    text-transform: uppercase;

    letter-spacing: .6px;
}


.hero-scroll {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 12px;

    color: rgba(255,255,255,.42);

    font-size: 9px;

    letter-spacing: 1.5px;
}


.hero-scroll i {

    color: #5bdcff;

    animation:
        scrollArrow
        1.5s
        ease-in-out
        infinite;
}


@keyframes scrollArrow {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

}


/* =====================================================
   WAVE
===================================================== */

.hero-wave {

    position: absolute;

    z-index: 30;

    left: 0;

    right: 0;

    bottom: -1px;

    height: 90px;

    pointer-events: none;
}


.hero-wave svg {

    width: 100%;

    height: 100%;

    display: block;
}


.hero-wave path {

    fill: white;
}


/* =====================================================
   HERO RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .hero-container {

        grid-template-columns:
            1fr 1fr;

        gap: 10px;
    }


    .hero-content h1 {

        font-size: 62px;
    }


    .hero-visual {

        min-height: 500px;
    }


    .hero-product {

        width: 210px;
    }


    .hero-stat {

        padding-right: 20px;
    }

}


@media (max-width: 850px) {

    .crystal-hero {

        min-height: auto;

        padding-bottom: 80px;
    }


    .hero-container {

        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 70px;

        padding-bottom: 420px;
    }


    .hero-content {

        max-width: 700px;
    }


    .hero-content h1 {

        font-size:
            clamp(48px, 10vw, 72px);
    }


    .hero-visual {

        position: absolute;

        width: 100%;

        height: 420px;

        min-height: 0;

        bottom: 55px;

        left: 0;
    }


    .water-sphere {

        width: 350px;
    }


    .hero-product {

        width: 180px;

        right: 23%;
    }


    .card-purity {

        right: 7%;
    }


    .card-solutions {

        left: 8%;
    }


    .hero-bottom {

        display: none;
    }


    .hero-wave {

        height: 55px;
    }

}


@media (max-width: 550px) {

    .hero-container {

        padding-top: 50px;

        padding-bottom: 370px;
    }


    .hero-eyebrow {

        font-size: 9px;

        letter-spacing: 1.2px;
    }


    .hero-content h1 {

        font-size: 48px;

        letter-spacing: -2px;
    }


    .hero-description {

        font-size: 15px;

        margin-top: 22px;
    }


    .hero-trust {

        gap: 12px;

        margin-top: 30px;
    }


    .trust-divider {

        display: none;
    }


    .hero-visual {

        height: 350px;

        bottom: 35px;
    }


    .water-sphere {

        width: 290px;
    }


    .water-orbit {

        width: 360px;

        height: 120px;
    }


    .orbit-two {

        width: 330px;

        height: 100px;
    }


    .orbit-three {

        width: 400px;

        height: 140px;
    }


    .hero-product {

        width: 145px;

        right: 19%;

        bottom: 30px;
    }


    .floating-card {

        transform: scale(.85);
    }


    .card-purity {

        top: 8%;

        right: 1%;
    }


    .card-solutions {

        bottom: 10%;

        left: 0;
    }


    .hero-btn {

        min-height: 50px;

        font-size: 13px;
    }


    .hero-wave {

        height: 40px;
    }

}

/* =====================================================
   WATER SOLUTIONS SECTION
===================================================== */

.water-solutions-section {

    position: relative;

    padding: 110px 0 115px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5faff 100%
        );
}


/* subtle background glow */

.water-solutions-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: -280px;

    left: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,174,231,.10),
            transparent 70%
        );

    pointer-events: none;
}


.water-solutions-section::after {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    right: -220px;

    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(16,44,146,.08),
            transparent 70%
        );

    pointer-events: none;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.solutions-heading {

    position: relative;

    z-index: 2;

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.solutions-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-bottom: 15px;

    color: #008fd5;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.solutions-eyebrow span {

    width: 28px;

    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #08c6ef,
            #102c92
        );
}


.solutions-heading h2 {

    margin: 0;

    color: #102c92;

    font-size:
        clamp(34px, 4vw, 52px);

    line-height: 1.08;

    font-weight: 600;

    letter-spacing: -1.5px;
}


.solutions-heading h2 strong {

    display: block;

    background:
        linear-gradient(
            90deg,
            #008fd5,
            #102c92
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.solutions-heading p {

    max-width: 620px;

    margin: 18px auto 0;

    color: #667085;

    font-size: 15px;

    line-height: 1.75;
}


/* =====================================================
   CARDS GRID
===================================================== */

.solutions-grid {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* =====================================================
   CARD
===================================================== */

.solution-card {

    position: relative;

    overflow: hidden;

    border:
        1px solid #0d6099;

    border-radius: 11px;

    background:
        linear-gradient(
            180deg,
            #f4fbff 0%,
            #edf5f9 100%
        );

    box-shadow:
        0 10px 30px rgba(7,52,100,.06);

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        box-shadow .5s ease;

    opacity: 0;

    transform:
        translateY(35px);
}


.solution-card.visible {

    opacity: 1;

    transform:
        translateY(0);
}


.solution-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 25px 55px rgba(8,58,110,.16);
}


/* =====================================================
   IMAGE
===================================================== */

.solution-image {

    position: relative;

    margin: 15px;

    height: 345px;

    overflow: hidden;

    border-radius: 10px;
}


.solution-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.2,.8,.2,1);
}


.solution-card:hover
.solution-image img {

    transform:
        scale(1.075);
}


/* image dark/light overlay */

.image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,30,70,.02) 30%,
            rgba(2,35,75,.32) 100%
        );

    transition: opacity .4s ease;
}


.solution-card:hover
.image-overlay {

    opacity: .65;
}


/* =====================================================
   NUMBER
===================================================== */

.solution-number {

    position: absolute;

    top: 14px;

    right: 14px;

    width: 38px;

    height: 38px;

    border:
        1px solid rgba(255,255,255,.55);

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: white;

    background:
        rgba(5,38,82,.45);

    backdrop-filter:
        blur(10px);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    transition:
        background .3s ease,
        transform .3s ease;
}


.solution-card:hover
.solution-number {

    background:
        linear-gradient(
            135deg,
            #08c6ef,
            #102c92
        );

    transform:
        rotate(10deg);
}


/* =====================================================
   CORNER ACCENT
===================================================== */

.corner-accent {

    position: absolute;

    top: -1px;

    left: 90px;

    width: 50px;

    height: 17px;

    background:
        #0d456f;

    clip-path:
        polygon(
            0 0,
            100% 0,
            65% 100%,
            35% 100%
        );
}


/* =====================================================
   CONTENT
===================================================== */

.solution-content {

    position: relative;

    padding: 0 20px 20px;
}


/* =====================================================
   ICON
===================================================== */

.solution-icon {

    width: 42px;

    height: 42px;

    margin-top: -7px;

    margin-bottom: 10px;

    border:
        1px solid rgba(0,143,213,.16);

    border-radius: 12px;

    display: grid;

    place-items: center;

    color: #008fd5;

    background: white;

    box-shadow:
        0 8px 20px rgba(5,80,130,.08);

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease;
}


.solution-card:hover
.solution-icon {

    color: white;

    background:
        linear-gradient(
            135deg,
            #08c6ef,
            #102c92
        );

    transform:
        translateY(-3px)
        rotate(-4deg);
}


/* =====================================================
   TITLE
===================================================== */

.solution-content h3 {

    margin: 0 0 8px;

    color: #005991;

    font-size: 22px;

    line-height: 1.2;

    font-weight: 600;

    transition:
        color .3s ease;
}


.solution-card:hover
.solution-content h3 {

    color: #102c92;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.solution-content p {

    min-height: 66px;

    margin: 0 0 18px;

    color: #344054;

    font-size: 14px;

    line-height: 1.45;
}


/* =====================================================
   BUTTON
===================================================== */

.solution-btn {

    min-height: 43px;

    width: 100%;

    padding: 0 18px;

    border:
        2px solid #005d94;

    border-radius: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    color: #005d94;

    background:
        rgba(255,255,255,.35);

    font-size: 13px;

    font-weight: 700;

    transition:
        color .35s ease,
        background .35s ease,
        border-color .35s ease,
        transform .35s ease;
}


.solution-btn i {

    transition:
        transform .35s ease;
}


.solution-btn:hover {

    color: white;

    border-color: #102c92;

    background:
        linear-gradient(
            90deg,
            #008fd5,
            #102c92
        );

    transform:
        translateY(-2px);
}


.solution-btn:hover i {

    transform:
        translateX(5px);
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.solutions-bottom {

    position: relative;

    z-index: 3;

    margin-top: 45px;

    padding: 20px 25px;

    border:
        1px solid #dcebf4;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background:
        rgba(255,255,255,.72);

    box-shadow:
        0 12px 35px rgba(5,65,110,.06);

    backdrop-filter:
        blur(12px);
}


.solutions-bottom span {

    display: block;

    margin-bottom: 3px;

    color: #008fd5;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.solutions-bottom strong {

    color: #102c92;

    font-size: 16px;

    font-weight: 600;
}


.solutions-bottom > a {

    min-height: 44px;

    padding: 0 20px;

    border-radius: 30px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: white;

    background:
        linear-gradient(
            120deg,
            #102c92,
            #008fd5
        );

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.solutions-bottom > a:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0,104,170,.22);
}


.solutions-bottom > a i {

    transition:
        transform .3s ease;
}


.solutions-bottom > a:hover i {

    transform:
        translateX(4px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {

    .solutions-grid {

        grid-template-columns:
            repeat(2, 1fr);

        max-width: 900px;

        margin: auto;
    }

}


@media (max-width: 650px) {

    .water-solutions-section {

        padding: 75px 0 80px;
    }


    .solutions-heading {

        margin-bottom: 35px;
    }


    .solutions-heading h2 {

        font-size: 36px;
    }


    .solutions-grid {

        grid-template-columns: 1fr;

        max-width: 420px;
    }


    .solution-image {

        height: 300px;
    }


    .solution-content p {

        min-height: auto;
    }


    .solutions-bottom {

        flex-direction: column;

        align-items: flex-start;

        padding: 22px;
    }


    .solutions-bottom > a {

        width: 100%;

        justify-content: center;
    }

}

/* =====================================================
   CRYSTAL INC — ABOUT SECTION
===================================================== */

.crystal-about {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5fbff 100%
        );
}


/* =====================================================
   BACKGROUND DECORATION
===================================================== */

.about-bg-circle {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.about-circle-one {

    width: 600px;

    height: 600px;

    left: -350px;

    top: -220px;

    background:
        radial-gradient(
            circle,
            rgba(0,177,230,.09),
            transparent 68%
        );
}


.about-circle-two {

    width: 500px;

    height: 500px;

    right: -300px;

    bottom: -260px;

    background:
        radial-gradient(
            circle,
            rgba(16,44,146,.07),
            transparent 68%
        );
}


/* =====================================================
   MAIN WRAPPER
===================================================== */

.about-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    align-items: center;

    gap: 90px;
}


/* =====================================================
   VISUAL
===================================================== */

.about-visual {

    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.about-image-main {

    position: relative;

    width: 88%;

    height: 520px;

    overflow: hidden;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #dff7ff,
            #edf3ff
        );

    box-shadow:
        0 30px 70px rgba(8,55,100,.15);

    transform:
        rotate(-2deg);

    transition:
        transform .6s
        cubic-bezier(.2,.8,.2,1);
}


.about-visual:hover
.about-image-main {

    transform:
        rotate(0deg)
        translateY(-6px);
}


.about-image-main img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s
        cubic-bezier(.2,.8,.2,1);
}


.about-visual:hover
.about-image-main img {

    transform:
        scale(1.06);
}


.about-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,43,82,.02),
            rgba(0,52,100,.30)
        );

    pointer-events: none;
}


/* =====================================================
   DECORATIVE RING
===================================================== */

.about-ring {

    position: absolute;

    width: 470px;

    height: 470px;

    border:
        1px solid rgba(0,143,213,.18);

    border-radius: 50%;

    right: -20px;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: -1;

    animation:
        aboutRingRotate
        18s
        linear
        infinite;
}


.about-ring::before {

    content: "";

    position: absolute;

    width: 12px;

    height: 12px;

    top: 15px;

    left: 50%;

    border-radius: 50%;

    background:
        #08bde8;

    box-shadow:
        0 0 20px rgba(8,189,232,.7);
}


@keyframes aboutRingRotate {

    from {
        transform:
            translateY(-50%)
            rotate(0deg);
    }

    to {
        transform:
            translateY(-50%)
            rotate(360deg);
    }

}


/* =====================================================
   SIDE LABEL
===================================================== */

.about-side-label {

    position: absolute;

    left: -3px;

    bottom: 105px;

    padding: 12px 8px;

    border:
        1px solid rgba(0,111,180,.12);

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: #0d4d79;

    background:
        rgba(255,255,255,.85);

    box-shadow:
        0 15px 35px rgba(5,65,110,.10);

    backdrop-filter:
        blur(12px);
}


.about-side-label span {

    writing-mode:
        vertical-rl;

    transform:
        rotate(180deg);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.about-side-label i {

    color: #08bde8;

    font-size: 15px;
}


/* =====================================================
   FLOATING CARD
===================================================== */

.about-floating-card {

    position: absolute;

    z-index: 5;

    right: -5px;

    bottom: 75px;

    width: 270px;

    padding: 17px;

    display: flex;

    align-items: center;

    gap: 13px;

    border:
        1px solid rgba(255,255,255,.7);

    border-radius: 16px;

    background:
        rgba(255,255,255,.90);

    box-shadow:
        0 20px 50px rgba(6,60,105,.16);

    backdrop-filter:
        blur(15px);

    animation:
        aboutCardFloat
        5s
        ease-in-out
        infinite;
}


@keyframes aboutCardFloat {

    0%,100% {

        transform:
            translateY(0);
    }

    50% {

        transform:
            translateY(-9px);
    }

}


.about-drop-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border-radius: 14px;

    display: grid;

    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #08c8ee,
            #102c92
        );

    box-shadow:
        0 8px 20px rgba(0,130,210,.20);
}


.about-floating-card span {

    display: block;

    margin-bottom: 4px;

    color: #008fd5;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.about-floating-card strong {

    display: block;

    color: #102c92;

    font-size: 14px;

    line-height: 1.3;
}


/* =====================================================
   CONTENT
===================================================== */

.about-content {

    max-width: 650px;
}


.about-eyebrow {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 18px;

    color: #008fd5;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.about-eyebrow span {

    width: 34px;

    height: 2px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #08c6ef,
            #102c92
        );
}


.about-content h2 {

    max-width: 620px;

    margin: 0 0 22px;

    color: #102c92;

    font-size:
        clamp(38px, 4vw, 57px);

    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -1.8px;
}


.about-content h2 strong {

    display: block;

    background:
        linear-gradient(
            90deg,
            #008fd5,
            #102c92
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.about-content p {

    max-width: 610px;

    margin-bottom: 14px;

    color: #667085;

    font-size: 15px;

    line-height: 1.75;
}


.about-content .about-intro {

    color: #344054;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.7;
}


/* =====================================================
   HIGHLIGHTS
===================================================== */

.about-highlights {

    margin-top: 30px;

    padding-top: 27px;

    border-top:
        1px solid #e3edf4;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px 30px;
}


.about-highlight {

    display: flex;

    align-items: center;

    gap: 12px;
}


.highlight-icon {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    border:
        1px solid #d9edf6;

    border-radius: 12px;

    display: grid;

    place-items: center;

    color: #008fd5;

    background:
        #f2fbff;

    transition:
        all .35s ease;
}


.about-highlight:hover
.highlight-icon {

    color: white;

    background:
        linear-gradient(
            135deg,
            #08c6ef,
            #102c92
        );

    transform:
        translateY(-3px)
        rotate(-4deg);
}


.about-highlight strong {

    display: block;

    margin-bottom: 2px;

    color: #102c92;

    font-size: 13px;

    font-weight: 700;
}


.about-highlight span {

    display: block;

    color: #7a8698;

    font-size: 11px;

    line-height: 1.4;
}


/* =====================================================
   ACTIONS
===================================================== */

.about-actions {

    margin-top: 35px;

    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}


.about-primary-btn {

    min-height: 52px;

    padding: 0 8px 0 21px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    gap: 15px;

    color: white;

    background:
        linear-gradient(
            120deg,
            #102c92,
            #008fd5
        );

    font-size: 13px;

    font-weight: 600;

    box-shadow:
        0 12px 30px rgba(0,105,175,.18);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.about-primary-btn span {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #102c92;

    background: white;
}


.about-primary-btn i {

    transition:
        transform .3s ease;
}


.about-primary-btn:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 18px 40px rgba(0,105,175,.27);
}


.about-primary-btn:hover i {

    transform:
        translateX(4px);
}


.about-text-btn {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #102c92;

    font-size: 13px;

    font-weight: 700;
}


.about-text-btn i {

    color: #008fd5;

    transition:
        transform .3s ease;
}


.about-text-btn:hover i {

    transform:
        translateX(5px);
}


/* =====================================================
   WATER LINE
===================================================== */

.about-water-line {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 3px;

    display: flex;

    gap: 0;

    opacity: .7;
}


.about-water-line span {

    flex: 1;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            #08c6ef,
            #102c92,
            transparent
        );

    animation:
        waterLineMove
        4s
        ease-in-out
        infinite;
}


.about-water-line span:nth-child(2) {

    animation-delay: 1s;
}


.about-water-line span:nth-child(3) {

    animation-delay: 2s;
}


@keyframes waterLineMove {

    0%,100% {
        opacity: .35;
        transform: scaleX(.7);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .about-wrapper {

        grid-template-columns:
            1fr 1fr;

        gap: 50px;
    }


    .about-visual {

        min-height: 500px;
    }


    .about-image-main {

        height: 460px;
    }


    .about-floating-card {

        right: -15px;

        width: 245px;
    }

}


@media (max-width: 800px) {

    .crystal-about {

        padding: 90px 0;
    }


    .about-wrapper {

        grid-template-columns: 1fr;

        gap: 70px;
    }


    .about-visual {

        min-height: 500px;

        max-width: 600px;

        width: 100%;

        margin: auto;
    }


    .about-content {

        max-width: 700px;
    }


    .about-content h2 {

        font-size: 44px;
    }

}


@media (max-width: 550px) {

    .crystal-about {

        padding: 75px 0;
    }


    .about-visual {

        min-height: 410px;
    }


    .about-image-main {

        width: 90%;

        height: 380px;

        border-radius: 20px;
    }


    .about-floating-card {

        right: 0;

        bottom: 45px;

        width: 220px;

        padding: 12px;
    }


    .about-drop-icon {

        width: 40px;

        height: 40px;
    }


    .about-ring {

        width: 350px;

        height: 350px;
    }


    .about-side-label {

        left: 0;

        bottom: 90px;
    }


    .about-content h2 {

        font-size: 37px;

        letter-spacing: -1px;
    }


    .about-content .about-intro {

        font-size: 15px;
    }


    .about-highlights {

        grid-template-columns: 1fr;

        gap: 16px;
    }


    .about-actions {

        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }

}
/* =====================================================
   CRYSTAL INC — TECHNOLOGY SECTION
===================================================== */

.crystal-technology {

    position: relative;

    padding: 95px 0;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(
            circle at 78% 50%,
            rgba(0,190,235,.14),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #020c2d 0%,
            #041944 45%,
            #061d4d 100%
        );
}


/* =====================================================
   BACKGROUND
===================================================== */

.technology-container {

    position: relative;

    overflow: hidden;

    max-width: 1400px;

    width: 94%;

    margin: auto;

    padding: 70px 65px 0;

    border:
        1px solid rgba(77,211,255,.15);

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(5,25,65,.96),
            rgba(2,14,43,.98)
        );

    box-shadow:
        0 35px 90px rgba(0,18,55,.30);
}


.technology-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(5px);
}


.tech-glow-one {

    width: 500px;

    height: 500px;

    right: -170px;

    top: -220px;

    background:
        radial-gradient(
            circle,
            rgba(0,206,245,.16),
            transparent 70%
        );

    animation:
        technologyGlow
        8s
        ease-in-out
        infinite;
}


.tech-glow-two {

    width: 350px;

    height: 350px;

    left: -180px;

    bottom: -200px;

    background:
        radial-gradient(
            circle,
            rgba(20,76,210,.15),
            transparent 70%
        );

}


@keyframes technologyGlow {

    0%,100% {
        transform:
            scale(1)
            translate(0,0);
    }

    50% {
        transform:
            scale(1.15)
            translate(-25px,25px);
    }

}


/* =====================================================
   TECH GRID
===================================================== */

.technology-grid-bg {

    position: absolute;

    inset: 0;

    opacity: .07;

    background-image:

        linear-gradient(
            rgba(86,220,255,.4) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(86,220,255,.4) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 75%
        );

    animation:
        techGridMove
        20s
        linear
        infinite;
}


@keyframes techGridMove {

    from {
        background-position:
            0 0;
    }

    to {
        background-position:
            55px 55px;
    }

}


/* =====================================================
   LAYOUT
===================================================== */

.technology-layout {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .72fr 1.28fr;

    align-items: center;

    gap: 40px;

    min-height: 420px;
}


/* =====================================================
   CONTENT
===================================================== */

.technology-content {

    max-width: 470px;
}


.technology-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #50ddff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.technology-eyebrow span {

    width: 32px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #04c7ed,
            transparent
        );
}


.technology-content h2 {

    margin: 0 0 20px;

    color: white;

    font-size:
        clamp(38px, 4vw, 57px);

    line-height: 1.04;

    font-weight: 600;

    letter-spacing: -1.8px;
}


.technology-content h2 strong {

    display: block;

    color: #4edfff;
}


.technology-content p {

    max-width: 440px;

    margin-bottom: 28px;

    color:
        rgba(255,255,255,.58);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   BUTTON
===================================================== */

.technology-main-btn {

    min-height: 49px;

    padding: 0 8px 0 19px;

    border:
        1px solid rgba(89,221,255,.45);

    border-radius: 50px;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    color: white;

    background:
        rgba(15,192,235,.08);

    font-size: 12px;

    font-weight: 600;

    backdrop-filter:
        blur(10px);

    transition:
        all .35s ease;
}


.technology-main-btn span {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #082c62;

    background: white;
}


.technology-main-btn i {

    transition:
        transform .3s ease;
}


.technology-main-btn:hover {

    transform:
        translateY(-4px);

    border-color:
        #50ddff;

    background:
        rgba(0,191,235,.18);

    box-shadow:
        0 12px 30px rgba(0,188,235,.15);
}


.technology-main-btn:hover i {

    transform:
        translateX(4px);
}


/* =====================================================
   TECHNOLOGY NODES
===================================================== */

.technology-nodes {

    position: relative;

    min-height: 430px;

    width: 100%;
}


/* =====================================================
   CENTER
===================================================== */

.technology-center {

    position: absolute;

    left: 50%;

    top: 50%;

    z-index: 5;

    transform:
        translate(-50%,-50%);

    text-align: center;
}


.center-ring {

    width: 125px;

    height: 125px;

    border:
        1px solid rgba(70,219,255,.55);

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle,
            rgba(10,186,232,.16),
            rgba(5,27,67,.8)
        );

    box-shadow:
        0 0 35px rgba(0,198,239,.12),
        inset 0 0 25px rgba(0,198,239,.08);

    animation:
        centerPulse
        4s
        ease-in-out
        infinite;
}


.center-ring::before {

    content: "";

    position: absolute;

    width: 145px;

    height: 145px;

    border:
        1px dashed rgba(65,215,255,.22);

    border-radius: 50%;

    animation:
        centerRotate
        15s
        linear
        infinite;
}


.center-icon {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #62e4ff;

    background:
        rgba(8,193,237,.08);

    font-size: 25px;

    filter:
        drop-shadow(
            0 0 10px rgba(67,220,255,.55)
        );
}


.technology-center > span {

    display: block;

    margin-top: 15px;

    color:
        rgba(255,255,255,.7);

    font-size: 8px;

    font-weight: 700;

    line-height: 1.5;

    letter-spacing: 2px;
}


@keyframes centerPulse {

    0%,100% {
        box-shadow:
            0 0 25px rgba(0,198,239,.08),
            inset 0 0 20px rgba(0,198,239,.06);
    }

    50% {
        box-shadow:
            0 0 60px rgba(0,198,239,.20),
            inset 0 0 35px rgba(0,198,239,.12);
    }

}


@keyframes centerRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =====================================================
   NODES
===================================================== */

.technology-node {

    position: absolute;

    z-index: 8;

    width: 108px;

    height: 108px;

    border:
        1px solid rgba(76,221,255,.45);

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: white;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(21,188,235,.18),
            rgba(3,25,63,.95)
        );

    box-shadow:
        0 0 25px rgba(0,180,235,.06);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease,
        background .4s ease;
}


.technology-node:hover {

    color: white;

    border-color:
        #56e2ff;

    background:
        radial-gradient(
            circle,
            rgba(0,196,240,.25),
            rgba(4,29,70,.95)
        );

    box-shadow:
        0 0 35px rgba(24,205,246,.28);

    transform:
        translateY(-7px)
        scale(1.07);
}


.node-icon {

    width: 32px;

    height: 32px;

    margin-bottom: 5px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #53ddff;

    font-size: 14px;

    transition:
        transform .4s ease;
}


.technology-node:hover
.node-icon {

    transform:
        rotate(12deg)
        scale(1.15);
}


.technology-node > span {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .8px;
}


.technology-node small {

    margin-top: 2px;

    color:
        rgba(255,255,255,.4);

    font-size: 7px;

    letter-spacing: .8px;

    text-transform: uppercase;
}


/* =====================================================
   NODE POSITIONS
===================================================== */

.node-1 {

    left: 3%;

    top: 10%;
}


.node-2 {

    left: 30%;

    top: 0;
}


.node-3 {

    right: 7%;

    top: 13%;
}


.node-4 {

    left: 3%;

    bottom: 7%;
}


.node-5 {

    left: 31%;

    bottom: 0;
}


.node-6 {

    right: 7%;

    bottom: 10%;
}


/* =====================================================
   CONNECTING LINES
===================================================== */

.tech-line {

    position: absolute;

    z-index: 1;

    height: 1px;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            rgba(52,216,255,.05),
            rgba(52,216,255,.45),
            rgba(52,216,255,.05)
        );
}


.line-1 {

    width: 190px;

    left: 17%;

    top: 28%;

    transform:
        rotate(20deg);
}


.line-2 {

    width: 170px;

    left: 37%;

    top: 21%;

    transform:
        rotate(78deg);
}


.line-3 {

    width: 190px;

    right: 17%;

    top: 29%;

    transform:
        rotate(158deg);
}


.line-4 {

    width: 190px;

    left: 17%;

    bottom: 28%;

    transform:
        rotate(-20deg);
}


.line-5 {

    width: 170px;

    left: 37%;

    bottom: 21%;

    transform:
        rotate(-78deg);
}


.line-6 {

    width: 190px;

    right: 17%;

    bottom: 29%;

    transform:
        rotate(-158deg);
}


/* moving light on lines */

.tech-line::after {

    content: "";

    position: absolute;

    width: 35px;

    height: 2px;

    top: -1px;

    left: -35px;

    background:
        #4edfff;

    box-shadow:
        0 0 10px #4edfff;

    animation:
        lineTravel
        3s
        linear
        infinite;
}


.line-2::after {
    animation-delay: .5s;
}

.line-3::after {
    animation-delay: 1s;
}

.line-4::after {
    animation-delay: 1.5s;
}

.line-5::after {
    animation-delay: 2s;
}

.line-6::after {
    animation-delay: 2.5s;
}


@keyframes lineTravel {

    from {
        left: -35px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    to {
        left: 100%;
        opacity: 0;
    }

}


/* =====================================================
   PARTICLES
===================================================== */

.tech-particle {

    position: absolute;

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: #58dfff;

    box-shadow:
        0 0 12px #58dfff;

    animation:
        techParticle
        5s
        ease-in-out
        infinite;
}


.particle-1 {
    left: 22%;
    top: 18%;
}

.particle-2 {
    left: 78%;
    top: 25%;
    animation-delay: 1s;
}

.particle-3 {
    left: 19%;
    bottom: 23%;
    animation-delay: 2s;
}

.particle-4 {
    right: 21%;
    bottom: 18%;
    animation-delay: 3s;
}

.particle-5 {
    left: 50%;
    top: 5%;
    animation-delay: 1.5s;
}

.particle-6 {
    left: 53%;
    bottom: 4%;
    animation-delay: 2.5s;
}


@keyframes techParticle {

    0%,100% {

        opacity: .15;

        transform:
            translateY(0)
            scale(.7);
    }

    50% {

        opacity: 1;

        transform:
            translateY(-15px)
            scale(1.4);
    }

}


/* =====================================================
   BOTTOM STRIP
===================================================== */

.technology-strip {

    position: relative;

    z-index: 5;

    min-height: 65px;

    margin-top: 30px;

    border-top:
        1px solid rgba(255,255,255,.10);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    color:
        rgba(255,255,255,.42);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.technology-strip i {

    width: 3px;

    height: 3px;

    border-radius: 50%;

    background:
        #43d9fa;

    box-shadow:
        0 0 8px #43d9fa;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .technology-container {

        padding:
            60px 40px 0;
    }


    .technology-layout {

        grid-template-columns:
            1fr 1.2fr;
    }


    .technology-node {

        width: 92px;

        height: 92px;
    }


    .node-1 {
        left: 0;
    }

    .node-3 {
        right: 0;
    }

    .node-4 {
        left: 0;
    }

    .node-6 {
        right: 0;
    }

}


@media (max-width: 800px) {

    .crystal-technology {

        padding: 70px 0;
    }


    .technology-container {

        width: 94%;

        padding:
            55px 25px 0;

        border-radius: 20px;
    }


    .technology-layout {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .technology-content {

        max-width: 600px;

        text-align: center;

        margin: auto;
    }


    .technology-eyebrow {

        justify-content: center;
    }


    .technology-content p {

        margin-left: auto;

        margin-right: auto;
    }


    .technology-nodes {

        min-height: 470px;

        max-width: 600px;

        margin: auto;
    }


    .technology-strip {

        flex-wrap: wrap;

        padding: 18px 0;

        gap: 12px;
    }

}


@media (max-width: 550px) {

    .technology-container {

        padding:
            45px 15px 0;
    }


    .technology-content h2 {

        font-size: 38px;
    }


    .technology-content p {

        font-size: 13px;
    }


    .technology-nodes {

        min-height: 390px;

        transform:
            scale(.78);

        transform-origin:
            center top;

        margin-bottom: -70px;
    }


    .technology-node {

        width: 92px;

        height: 92px;
    }


    .technology-center {

        transform:
            translate(-50%,-50%)
            scale(.9);
    }


    .technology-strip {

        font-size: 7px;

        letter-spacing: 1px;
    }

}

/* =====================================================
   CRYSTAL INC — FAQ SECTION
===================================================== */

.crystal-faq {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f7fbfe 0%,
            #ffffff 100%
        );
}


/* =====================================================
   BACKGROUND GLOW
===================================================== */

.faq-bg-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.faq-glow-one {

    width: 600px;

    height: 600px;

    left: -400px;

    top: -250px;

    background:
        radial-gradient(
            circle,
            rgba(0,184,235,.08),
            transparent 68%
        );
}


.faq-glow-two {

    width: 500px;

    height: 500px;

    right: -300px;

    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(16,44,146,.06),
            transparent 68%
        );
}


/* =====================================================
   WRAPPER
===================================================== */

.faq-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .78fr 1.22fr;

    gap: 85px;

    align-items: start;
}


/* =====================================================
   INTRO
===================================================== */

.faq-intro {

    position: sticky;

    top: 120px;
}


.faq-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #008fd5;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.faq-eyebrow span {

    width: 32px;

    height: 2px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #08c6ef,
            #102c92
        );
}


.faq-intro h2 {

    max-width: 470px;

    margin: 0 0 22px;

    color: #102c92;

    font-size:
        clamp(38px, 4vw, 56px);

    line-height: 1.04;

    letter-spacing: -1.7px;

    font-weight: 600;
}


.faq-intro h2 strong {

    display: block;

    background:
        linear-gradient(
            90deg,
            #008fd5,
            #102c92
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.faq-intro > p {

    max-width: 470px;

    margin: 0;

    color: #667085;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   WATER MARK
===================================================== */

.faq-water-mark {

    position: relative;

    width: 140px;

    height: 140px;

    margin: 45px 0 30px;

    display: grid;

    place-items: center;
}


.faq-water-circle {

    position: relative;

    z-index: 3;

    width: 72px;

    height: 72px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #08c8ee,
            #102c92
        );

    box-shadow:
        0 12px 35px rgba(0,133,207,.25);

    font-size: 22px;

    animation:
        faqDropFloat
        4s
        ease-in-out
        infinite;
}


@keyframes faqDropFloat {

    0%,100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }

}


.faq-water-ripple {

    position: absolute;

    width: 90px;

    height: 90px;

    border:
        1px solid rgba(0,150,215,.25);

    border-radius: 50%;

    animation:
        faqRipple
        3.5s
        ease-out
        infinite;
}


.ripple-b {

    animation-delay:
        1.7s;
}


@keyframes faqRipple {

    0% {

        opacity: .7;

        transform:
            scale(.6);
    }

    100% {

        opacity: 0;

        transform:
            scale(1.6);
    }

}


/* =====================================================
   HELP CARD
===================================================== */

.faq-help-card {

    max-width: 430px;

    min-height: 72px;

    padding: 13px 14px;

    border:
        1px solid #dbeaf3;

    border-radius: 15px;

    display: flex;

    align-items: center;

    gap: 12px;

    background:
        rgba(255,255,255,.85);

    box-shadow:
        0 15px 40px rgba(5,60,105,.07);

    backdrop-filter:
        blur(12px);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.faq-help-card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 20px 45px rgba(5,60,105,.12);
}


.faq-help-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    border-radius: 12px;

    display: grid;

    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #08c8ee,
            #102c92
        );
}


.faq-help-content {

    flex: 1;
}


.faq-help-content span {

    display: block;

    margin-bottom: 3px;

    color: #008fd5;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.4px;
}


.faq-help-content strong {

    color: #102c92;

    font-size: 13px;

    font-weight: 700;
}


.faq-help-card > a {

    width: 39px;

    height: 39px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: white;

    background:
        #102c92;

    transition:
        transform .3s ease,
        background .3s ease;
}


.faq-help-card > a:hover {

    background:
        #008fd5;

    transform:
        translateX(4px);
}


/* =====================================================
   FAQ LIST
===================================================== */

.faq-list {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* =====================================================
   FAQ ITEM
===================================================== */

.faq-item {

    position: relative;

    overflow: hidden;

    border:
        1px solid #dfeaf1;

    border-radius: 14px;

    background: white;

    box-shadow:
        0 5px 20px rgba(4,55,95,.035);

    transition:
        border-color .35s ease,
        box-shadow .35s ease;
}


.faq-item:hover {

    border-color:
        #b9ddeb;

    box-shadow:
        0 10px 30px rgba(5,70,115,.07);
}


.faq-item.active {

    border-color:
        rgba(0,145,211,.35);

    box-shadow:
        0 15px 35px rgba(0,105,170,.08);
}


/* =====================================================
   QUESTION
===================================================== */

.faq-question {

    width: 100%;

    min-height: 78px;

    padding: 12px 20px;

    border: 0;

    display: grid;

    grid-template-columns:
        42px 1fr 38px;

    align-items: center;

    gap: 14px;

    text-align: left;

    color: #102c92;

    background: transparent;

    cursor: pointer;
}


.faq-number {

    color: #8a9aaa;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    transition:
        color .3s ease;
}


.faq-item.active
.faq-number {

    color: #008fd5;
}


.faq-question-text {

    color: #263f61;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.5;

    transition:
        color .3s ease;
}


.faq-item.active
.faq-question-text {

    color:
        #102c92;
}


/* =====================================================
   TOGGLE
===================================================== */

.faq-toggle {

    width: 36px;

    height: 36px;

    border:
        1px solid #d9e7ef;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #008fd5;

    background: #f7fbfd;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease,
        border-color .4s ease;
}


.faq-toggle i {

    font-size: 11px;

    transition:
        transform .4s ease;
}


.faq-item.active
.faq-toggle {

    color: white;

    border-color:
        transparent;

    background:
        linear-gradient(
            135deg,
            #08c8ee,
            #102c92
        );

    transform:
        rotate(45deg);
}


/* =====================================================
   ANSWER
===================================================== */

.faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .45s
        cubic-bezier(.2,.8,.2,1);
}


.faq-answer > div {

    overflow: hidden;
}


.faq-answer p {

    max-width: 720px;

    margin: 0;

    padding:
        0 72px 0 76px;

    color: #667085;

    font-size: 13px;

    line-height: 1.75;

    opacity: 0;

    transform:
        translateY(-8px);

    transition:
        opacity .3s ease,
        transform .4s ease,
        padding .45s ease;
}


.faq-item.active
.faq-answer {

    grid-template-rows: 1fr;
}


.faq-item.active
.faq-answer p {

    padding:
        0 72px 24px 76px;

    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .faq-wrapper {

        grid-template-columns:
            1fr 1.3fr;

        gap: 45px;
    }


    .faq-intro h2 {

        font-size: 43px;
    }

}


@media (max-width: 800px) {

    .crystal-faq {

        padding: 85px 0;
    }


    .faq-wrapper {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .faq-intro {

        position: relative;

        top: auto;

        max-width: 650px;
    }


    .faq-water-mark {

        display: none;
    }


    .faq-help-card {

        margin-top: 30px;
    }

}


@media (max-width: 550px) {

    .crystal-faq {

        padding: 70px 0;
    }


    .faq-intro h2 {

        font-size: 37px;

        letter-spacing: -1px;
    }


    .faq-intro > p {

        font-size: 14px;
    }


    .faq-question {

        min-height: 72px;

        padding: 10px 14px;

        grid-template-columns:
            27px 1fr 34px;

        gap: 8px;
    }


    .faq-question-text {

        font-size: 13px;
    }


    .faq-toggle {

        width: 32px;

        height: 32px;
    }


    .faq-answer p {

        padding:
            0 20px 0 49px;

        font-size: 12px;
    }


    .faq-item.active
    .faq-answer p {

        padding:
            0 20px 20px 49px;
    }


    .faq-help-card {

        padding: 10px;
    }

}

/* =====================================================
   CRYSTAL INC — TESTIMONIAL SECTION
===================================================== */

.crystal-testimonials {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f4faff 100%
        );
}


/* =====================================================
   BACKGROUND
===================================================== */

.testimonial-bg-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.testimonial-glow-one {

    width: 600px;

    height: 600px;

    left: -350px;

    top: -300px;

    background:
        radial-gradient(
            circle,
            rgba(0,188,235,.09),
            transparent 68%
        );
}


.testimonial-glow-two {

    width: 550px;

    height: 550px;

    right: -350px;

    bottom: -320px;

    background:
        radial-gradient(
            circle,
            rgba(16,44,146,.07),
            transparent 68%
        );
}


/* =====================================================
   HEADING
===================================================== */

.testimonial-heading {

    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.testimonial-eyebrow {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 11px;

    margin-bottom: 16px;

    color: #008fd5;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.testimonial-eyebrow span {

    width: 30px;

    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #08c6ef,
            #102c92
        );
}


.testimonial-heading h2 {

    margin: 0;

    color: #102c92;

    font-size:
        clamp(36px, 4vw, 53px);

    line-height: 1.06;

    font-weight: 600;

    letter-spacing: -1.7px;
}


.testimonial-heading h2 strong {

    display: block;

    background:
        linear-gradient(
            90deg,
            #008fd5,
            #102c92
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.testimonial-heading p {

    max-width: 650px;

    margin: 18px auto 0;

    color: #667085;

    font-size: 14px;

    line-height: 1.75;
}


/* =====================================================
   MAIN LAYOUT
===================================================== */

.testimonial-layout {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap: 22px;

    align-items: stretch;
}


/* =====================================================
   FEATURED TESTIMONIAL
===================================================== */

.featured-testimonial {

    position: relative;

    min-height: 440px;

    padding: 48px;

    overflow: hidden;

    border-radius: 24px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #061a45 0%,
            #0b3870 55%,
            #006da5 100%
        );

    box-shadow:
        0 25px 60px rgba(4,52,95,.18);

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}


.featured-testimonial:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 35px 75px rgba(4,52,95,.25);
}


/* background water glow */

.featured-testimonial::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    right: -150px;

    top: -160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(73,225,255,.24),
            transparent 70%
        );
}


.featured-testimonial::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    left: -180px;

    bottom: -190px;

    border-radius: 50%;

    border:
        1px solid rgba(100,225,255,.14);
}


/* =====================================================
   QUOTE MARK
===================================================== */

.testimonial-quote-mark {

    position: absolute;

    top: 25px;

    right: 35px;

    color:
        rgba(92,222,255,.15);

    font-size: 85px;

    line-height: 1;
}


.testimonial-stars {

    position: relative;

    z-index: 2;

    margin-bottom: 24px;

    color: #5cddff;

    font-size: 13px;

    letter-spacing: 4px;
}


.featured-testimonial blockquote {

    position: relative;

    z-index: 2;

    max-width: 620px;

    margin: 0 0 35px;

    color: rgba(255,255,255,.94);

    font-size:
        clamp(19px, 2vw, 25px);

    line-height: 1.55;

    font-weight: 400;
}


/* =====================================================
   PERSON
===================================================== */

.testimonial-person {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 12px;
}


.testimonial-avatar {

    width: 48px;

    height: 48px;

    border:
        1px solid rgba(255,255,255,.35);

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #073369;

    background: white;

    font-size: 11px;

    font-weight: 800;
}


.testimonial-person strong {

    display: block;

    margin-bottom: 3px;

    color: white;

    font-size: 13px;
}


.testimonial-person span {

    display: block;

    color:
        rgba(255,255,255,.55);

    font-size: 10px;
}


.verified-review {

    margin-left: auto;

    color:
        rgba(255,255,255,.6);

    font-size: 9px;

    font-weight: 600;
}


.verified-review i {

    margin-right: 3px;

    color: #5cddff;
}


/* =====================================================
   WATER SHAPE
===================================================== */

.testimonial-water-shape {

    position: absolute;

    right: 35px;

    bottom: 30px;

    width: 95px;

    height: 125px;

    border:
        1px solid rgba(89,225,255,.12);

    border-radius:
        70% 30% 65% 35% /
        60% 45% 55% 40%;

    transform:
        rotate(25deg);

    opacity: .8;

    animation:
        testimonialWater
        6s
        ease-in-out
        infinite;
}


@keyframes testimonialWater {

    0%,100% {

        transform:
            rotate(25deg)
            translateY(0);
    }

    50% {

        transform:
            rotate(15deg)
            translateY(-12px);
    }

}


/* =====================================================
   SMALL CARDS
===================================================== */

.testimonial-cards {

    display: grid;

    grid-template-rows:
        repeat(3, 1fr);

    gap: 12px;
}


.testimonial-card {

    position: relative;

    padding: 20px 22px;

    border:
        1px solid #dceaf2;

    border-radius: 16px;

    background:
        rgba(255,255,255,.88);

    box-shadow:
        0 8px 25px rgba(5,65,105,.045);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


.testimonial-card:hover {

    transform:
        translateX(6px);

    border-color:
        #b6ddec;

    box-shadow:
        0 15px 35px rgba(5,65,105,.09);
}


/* =====================================================
   CARD TOP
===================================================== */

.testimonial-card-top {

    display: flex;

    align-items: center;

    gap: 10px;
}


.small-avatar {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #08c6ef,
            #102c92
        );

    font-size: 9px;

    font-weight: 800;
}


.small-person {

    flex: 1;
}


.small-person strong {

    display: block;

    margin-bottom: 2px;

    color: #102c92;

    font-size: 12px;
}


.small-person span {

    display: block;

    color: #8995a5;

    font-size: 9px;
}


.small-stars {

    color: #08aedd;

    font-size: 10px;

    letter-spacing: 1px;
}


/* =====================================================
   CARD TEXT
===================================================== */

.testimonial-card p {

    margin: 15px 0 12px;

    color: #667085;

    font-size: 12px;

    line-height: 1.6;
}


/* =====================================================
   CARD BOTTOM
===================================================== */

.testimonial-card-bottom {

    padding-top: 10px;

    border-top:
        1px solid #edf2f5;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.testimonial-card-bottom span {

    color: #008fd5;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .5px;
}


.testimonial-card-bottom i {

    color:
        rgba(0,143,213,.35);

    font-size: 12px;
}


/* =====================================================
   TRUST STRIP
===================================================== */

.testimonial-trust {

    position: relative;

    z-index: 2;

    margin-top: 30px;

    min-height: 95px;

    padding: 20px 30px;

    border:
        1px solid #dceaf2;

    border-radius: 17px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 25px;

    background:
        rgba(255,255,255,.7);

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 10px 30px rgba(5,65,105,.04);
}


.trust-item {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;
}


.trust-item > i {

    color: #008fd5;

    font-size: 21px;
}


.trust-item strong {

    display: block;

    margin-bottom: 2px;

    color: #102c92;

    font-size: 11px;
}


.trust-item span {

    display: block;

    color: #8995a5;

    font-size: 9px;
}


.trust-divider {

    width: 1px;

    height: 35px;

    background:
        #dce8ef;
}


/* =====================================================
   VIEW ALL
===================================================== */

.testimonial-view-all {

    margin-top: 28px;

    text-align: center;
}


.testimonial-view-all a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #102c92;

    font-size: 12px;

    font-weight: 700;
}


.testimonial-view-all i {

    color: #008fd5;

    transition:
        transform .3s ease;
}


.testimonial-view-all a:hover i {

    transform:
        translateX(5px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .testimonial-layout {

        grid-template-columns: 1fr;
    }


    .featured-testimonial {

        min-height: auto;

        padding: 40px;
    }


    .testimonial-cards {

        grid-template-rows: none;

        grid-template-columns:
            repeat(3, 1fr);
    }


    .testimonial-card:hover {

        transform:
            translateY(-5px);
    }


    .testimonial-trust {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .trust-divider {

        display: none;
    }

}


@media (max-width: 650px) {

    .crystal-testimonials {

        padding: 80px 0;
    }


    .testimonial-heading {

        margin-bottom: 35px;
    }


    .testimonial-heading h2 {

        font-size: 37px;
    }


    .testimonial-layout {

        gap: 15px;
    }


    .featured-testimonial {

        padding: 32px 25px;

        border-radius: 20px;
    }


    .featured-testimonial blockquote {

        font-size: 18px;
    }


    .testimonial-person {

        flex-wrap: wrap;
    }


    .verified-review {

        width: 100%;

        margin-left: 60px;
    }


    .testimonial-cards {

        grid-template-columns: 1fr;
    }


    .testimonial-trust {

        padding: 20px;
    }

}
/* =====================================================
   PREMIUM FINAL CTA
===================================================== */

.crystal-cta-premium {

    position: relative;

    padding: 90px 0 35px;

    overflow: hidden;

    background:
        #f5fbfe;
}


/* =====================================================
   BACKGROUND
===================================================== */

.cta-premium-bg {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(0,195,240,.09),
            transparent 28%
        ),

        radial-gradient(
            circle at 90% 30%,
            rgba(16,44,146,.08),
            transparent 30%
        );
}


/* =====================================================
   WATER BLOBS
===================================================== */

.water-blob {

    position: absolute;

    border-radius: 50%;

    filter: blur(1px);

    pointer-events: none;
}


.blob-one {

    width: 500px;

    height: 500px;

    left: -350px;

    top: 20%;

    border:
        1px solid rgba(0,150,220,.12);

    animation:
        blobMove
        10s
        ease-in-out
        infinite;
}


.blob-two {

    width: 300px;

    height: 300px;

    right: -170px;

    top: 5%;

    border:
        1px solid rgba(0,150,220,.12);

    animation:
        blobMove
        8s
        2s
        ease-in-out
        infinite;
}


.blob-three {

    width: 220px;

    height: 220px;

    right: 20%;

    bottom: -170px;

    border:
        1px solid rgba(0,150,220,.10);
}


@keyframes blobMove {

    0%,100% {
        transform:
            translate(0,0)
            scale(1);
    }

    50% {
        transform:
            translate(20px,-20px)
            scale(1.08);
    }

}


/* =====================================================
   MAIN CARD
===================================================== */

.premium-cta-card {

    position: relative;

    z-index: 3;

    min-height: 520px;

    overflow: hidden;

    border-radius: 30px;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #f9fdff 50%,
            #e9f8fd 100%
        );

    border:
        1px solid #d7eaf3;

    box-shadow:
        0 30px 80px rgba(6,63,105,.13);
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.premium-cta-content {

    position: relative;

    z-index: 5;

    padding:
        70px 20px 70px 70px;
}


.premium-cta-label {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: #008fd5;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.label-line {

    width: 35px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #08c8ee,
            #102c92
        );
}


.premium-cta-content h2 {

    margin: 0 0 22px;

    color: #102c92;

    font-size:
        clamp(48px, 5vw, 72px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 600;
}


.premium-cta-content h2 span {

    color: #008fd5;

    position: relative;
}


.premium-cta-content h2 span::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 75%;

    height: 3px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #08c8ee,
            transparent
        );

    animation:
        ctaUnderline
        3s
        ease-in-out
        infinite;
}


@keyframes ctaUnderline {

    0%,100% {
        width: 35%;
    }

    50% {
        width: 75%;
    }

}


.premium-cta-content > p {

    max-width: 590px;

    margin: 0;

    color: #667085;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   BUTTONS
===================================================== */

.premium-cta-buttons {

    margin-top: 32px;

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


.premium-cta-primary {

    min-height: 61px;

    padding:
        7px 9px 7px 10px;

    border-radius: 50px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

    background:
        linear-gradient(
            110deg,
            #102c92,
            #008fd5
        );

    box-shadow:
        0 15px 35px rgba(0,105,175,.20);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.premium-cta-primary:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 20px 45px rgba(0,105,175,.28);
}


.btn-icon {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: #102c92;

    background: white;

    font-size: 14px;
}


.btn-text {

    min-width: 165px;

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.btn-text small {

    color:
        rgba(255,255,255,.55);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.btn-text {

    font-size: 12px;

    font-weight: 700;
}


.btn-arrow {

    width: 38px;

    height: 38px;

    border:
        1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-size: 11px;

    transition:
        transform .3s ease;
}


.premium-cta-primary:hover
.btn-arrow {

    transform:
        translateX(4px);
}


.premium-cta-secondary {

    min-height: 55px;

    padding:
        0 22px;

    border:
        1px solid #c9dfe9;

    border-radius: 50px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: #102c92;

    background: white;

    font-size: 12px;

    font-weight: 700;

    transition:
        all .35s ease;
}


.premium-cta-secondary:hover {

    color: #008fd5;

    border-color:
        #70cde8;

    transform:
        translateY(-3px);
}


.premium-cta-secondary i {

    transition:
        transform .3s ease;
}


.premium-cta-secondary:hover i {

    transform:
        translateX(4px);
}


/* =====================================================
   TRUST ITEMS
===================================================== */

.premium-cta-trust {

    margin-top: 32px;

    padding-top: 20px;

    border-top:
        1px solid #e1edf2;

    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}


.premium-cta-trust div {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #68798a;

    font-size: 9px;

    font-weight: 600;
}


.premium-cta-trust i {

    color: #08aeda;

    font-size: 10px;
}


/* =====================================================
   VISUAL
===================================================== */

.premium-cta-visual {

    position: relative;

    min-height: 520px;

    display: grid;

    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(0,194,240,.15),
            transparent 48%
        );
}


/* =====================================================
   SPHERE
===================================================== */

.water-sphere {

    position: relative;

    width: 320px;

    height: 320px;

    display: grid;

    place-items: center;
}


.sphere-glow {

    position: absolute;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,190,235,.20),
            transparent 68%
        );

    filter: blur(12px);

    animation:
        sphereGlow
        4s
        ease-in-out
        infinite;
}


@keyframes sphereGlow {

    0%,100% {
        transform:
            scale(.9);
        opacity: .6;
    }

    50% {
        transform:
            scale(1.15);
        opacity: 1;
    }

}


.sphere-inner {

    position: relative;

    z-index: 5;

    width: 135px;

    height: 135px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: white;

    background:
        linear-gradient(
            145deg,
            #08c8ee,
            #102c92
        );

    box-shadow:
        0 25px 55px rgba(0,110,180,.25);

    font-size: 45px;

    animation:
        sphereFloat
        5s
        ease-in-out
        infinite;
}


@keyframes sphereFloat {

    0%,100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-12px);
    }

}


/* =====================================================
   SPHERE WAVES
===================================================== */

.sphere-wave {

    position: absolute;

    border:
        1px solid rgba(0,150,220,.22);

    border-radius: 50%;

    animation:
        sphereWave
        4s
        ease-out
        infinite;
}


.wave-one {

    width: 210px;

    height: 210px;
}


.wave-two {

    width: 300px;

    height: 300px;

    animation-delay:
        1.5s;
}


@keyframes sphereWave {

    0% {

        opacity: 0;

        transform:
            scale(.65);
    }

    30% {

        opacity: 1;
    }

    100% {

        opacity: 0;

        transform:
            scale(1.1);
    }

}


/* =====================================================
   SOLUTION CARDS
===================================================== */

.cta-solution-card {

    position: absolute;

    z-index: 8;

    padding: 12px 15px;

    border:
        1px solid rgba(130,208,232,.4);

    border-radius: 13px;

    display: flex;

    align-items: center;

    gap: 10px;

    background:
        rgba(255,255,255,.78);

    box-shadow:
        0 15px 35px rgba(3,68,110,.12);

    backdrop-filter:
        blur(15px);

    animation:
        solutionFloat
        5s
        ease-in-out
        infinite;
}


.solution-icon {

    width: 38px;

    height: 38px;

    border-radius: 10px;

    display: grid;

    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #08c8ee,
            #102c92
        );

    font-size: 12px;
}


.cta-solution-card strong {

    display: block;

    margin-bottom: 3px;

    color: #102c92;

    font-size: 10px;
}


.cta-solution-card span {

    display: block;

    color: #7b8b9a;

    font-size: 8px;
}


.solution-one {

    left: 5%;

    top: 22%;
}


.solution-two {

    right: 2%;

    bottom: 21%;

    animation-delay:
        1.4s;
}


@keyframes solutionFloat {

    0%,100% {

        transform:
            translateY(0);
    }

    50% {

        transform:
            translateY(-9px);
    }

}


/* =====================================================
   ORBIT
===================================================== */

.water-orbit {

    position: absolute;

    width: 365px;

    height: 365px;

    border:
        1px dashed rgba(0,143,213,.20);

    border-radius: 50%;

    animation:
        orbitRotate
        18s
        linear
        infinite;
}


.water-orbit span {

    position: absolute;

    width: 9px;

    height: 9px;

    top: 25px;

    left: 50%;

    border-radius: 50%;

    background: #08c8ee;

    box-shadow:
        0 0 15px #08c8ee;
}


@keyframes orbitRotate {

    from {
        transform:
            rotate(0);
    }

    to {
        transform:
            rotate(360deg);
    }

}


/* =====================================================
   BOTTOM
===================================================== */

.premium-cta-bottom {

    position: relative;

    z-index: 5;

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    color: #8b9ba8;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.bottom-water-line {

    width: 70px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #08bde8,
            transparent
        );
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .premium-cta-card {

        grid-template-columns: 1fr;

    }


    .premium-cta-content {

        padding:
            60px 50px 20px;

        text-align: center;
    }


    .premium-cta-label {

        justify-content: center;
    }


    .premium-cta-content > p {

        margin-left: auto;

        margin-right: auto;
    }


    .premium-cta-buttons {

        justify-content: center;
    }


    .premium-cta-trust {

        justify-content: center;
    }


    .premium-cta-visual {

        min-height: 440px;
    }

}


@media (max-width: 600px) {

    .crystal-cta-premium {

        padding:
            65px 0 20px;
    }


    .premium-cta-card {

        border-radius: 22px;
    }


    .premium-cta-content {

        padding:
            45px 22px 10px;
    }


    .premium-cta-content h2 {

        font-size: 45px;

        letter-spacing: -2px;
    }


    .premium-cta-content > p {

        font-size: 13px;
    }


    .premium-cta-buttons {

        flex-direction: column;

        width: 100%;
    }


    .premium-cta-primary,
    .premium-cta-secondary {

        width: 100%;

        justify-content: center;
    }


    .premium-cta-trust {

        flex-direction: column;

        align-items: center;

        gap: 11px;
    }


    .premium-cta-visual {

        min-height: 350px;
    }


    .water-sphere {

        transform:
            scale(.72);
    }


    .water-orbit {

        transform:
            scale(.72);
    }


    .solution-one {

        left: 0;

        top: 18%;
    }


    .solution-two {

        right: 0;

        bottom: 16%;
    }


    .premium-cta-bottom {

        flex-wrap: wrap;

        padding: 15px;

        text-align: center;

        line-height: 1.5;
    }

}

