@import '/styles/global.css';
@import '/styles/HeaderManager.css';
@import '/styles/FooterManager.css';
@import '/styles/SignupElement.css';
@import '/styles/SignupPopup.css';
@import '/styles/CookieConsent/CookieConsent.css';
@import '/styles/CookieConsent/CookiePreferences.css';

/* ------------ */
/*  AURA Hero Section */
/* ------------ */
.aura-hero-section {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: var(--color-black); /* Black background for areas beyond 1800px */
}
.aura-hero-image {
    position: relative; /* needed so ::before positions against this */
    min-height: 500px;
    max-height: 55vh;
    background-image: url('/assets/images-v3/Hero_AURA2.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
}
.aura-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.0) 50%
    );
    z-index: 1; /* sits above background, below content */
}
.aura-hero-content {
    position: relative;
    z-index: 2; /* sits above the ::before overlay */
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding-inline: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: clamp(3rem, 8vh, 6rem);
}
.hero-title {
    font-size: clamp(1rem, 1vw, 1.4rem);
    max-width: 50%;
    color: var(--color-white);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin-left: 0; 
}
.aura-hero-content h1 {
    max-width: 50%;
    color: var(--color-white);
    margin-left: 0; 
    font-weight: 500;
    padding-bottom: 30px;
}
.aura-hero-content p {
    max-width: 45%;
    color: var(--color-white);
    margin-left: 0;
}
/*------------*/


.aura-hero-navigation-section {
    height: 55px;
    background-color: var(--color-blue-nav-carousel);
    display: flex; 
    width: 100%;
    margin: 0 auto;
}
.aura-hero-navigation-section.is-sticky {
    position: fixed;
    /* your header height - happens in JS */
    left: 0;
    width: 100%;
    z-index: 50;
}
/*------------*/
.aura-sub-nav {
    max-width: 1500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    padding-inline: 120px; 
}
.aura-sub-nav a {
    margin-left: 0;
    margin-right: 26px;
    text-decoration: none;
    position: relative;
    padding-bottom: 1px;
}
.aura-sub-nav a:last-child {
    margin-right: 0px;
}
.aura-sub-nav a h5 {
    color: var(--color-white);
    font-weight: 700;
    font-family: "Inter", sans-serif;
    font-size: .8rem;
    margin: 0;
}
.aura-sub-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-underline-cta);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.aura-sub-nav a:not(.active):hover::after {
    transform: scaleX(1);
}

.aura-sub-nav a.active::after {
    transform: scaleX(1);
}

    
    
    .aura-hero-content h1 {
        max-width: 60%;
    }


    


/* ------------ */
/*  Overview — What is AURA  */
/* ------------ */

.aura-overview-background {
    width: 100%;
}
.aura-overview-section {
    max-width: 1500px;
    padding: 80px 120px;
    margin: 0 auto;
}
.what-is-aura {
    display: flex;
    align-items: center;
    gap: 40px;
}
.what-is-aura-text {
    width: 60%;
}

.what-is-aura-image {
    width: 40%;
}


/* ------------ */
/*  AURA - Capabilities  */
/* ------------ */
.aura-capabilities-background {
    width: 100%;
    background-image: url('/assets/images-v3/Waves_Background.webp');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 50px;
}
.aura-capabilities {
    width: 100%;
    
}
.capabilities-title h5 {
    text-align: center;
}
.capabilities-title h2 {
    text-align: center;
    padding-bottom: 50px;
}
.capabilities-assets {
    display: flex;
    column-gap: 20px;
    padding-inline: 120px;
    max-width: 1500px;
    margin: 0 auto;
}
.asset-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25%;
}
.asset-box img {
    height: 50px;
    padding-bottom: 20px;
}
.asset-box h3 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    padding-block: 15px;
    text-align: center;
}
.asset-box p {
    margin: auto;
    text-align: center;
}

/* ------------ */
/* ------------ */
.grey-card-container {
    text-align: center;
    width: 100%;
    max-width: 1500px;
    padding: 0px 120px 50px 120px;
    margin: auto;
}
.grey-card-container h2 {
    max-width: 600px;
}
.grey-card-container p {
    max-width: 900px;
    padding-bottom: 30px;
}
.card-grid {
    max-width: 1500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 340px);
    box-sizing: border-box;
    gap: 0;
    padding-top: 30px;
}
.card-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    margin-bottom: 25px;
}
.card-item-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.card-item-flex-left {
    display: flex;
    flex-direction: column;
    width: 65%;
    justify-content: center;
}
.card-item-flex-left h2 {
    font-weight: 500;
    transition: transform 0.3s ease-in-out;
}

.card-item-flex-left p {
    transition: transform 0.3s ease-in-out;
    padding-bottom: 60px !important;
}
.card-item-flex-right {
    display: flex;
    align-items: flex-end;
    width: 35%;
}
.card-item-flex-right img {
    width: auto;
    height: 250px;
}
.card-item-1 {
    grid-column: 1 / 3;
    width: 100%;
    background-color: var(--color-grey-card-bckgrnd);
    border-radius: 20px;
    margin-bottom: 25px;
    padding: 60px 60px 0px 60px;
}
.card-item-2 {
    background-color: var(--color-grey-card-bckgrnd);
    border-radius: 20px;
    grid-column: 1 / 2; 
    margin-right: 12px;
}
.card-item-3 {
    background-color: var(--color-grey-card-bckgrnd);
    border-radius: 20px;
    grid-column: 2 / 3;
    margin-left: 12px;
}
.card-item h2 {
    font-weight: 500;
    transition: transform 0.3s ease-in-out;
    padding-inline: 60px;
}
.card-item p {
    transition: transform 0.3s ease-in-out;
    padding-inline: 60px;
}
.enlarged h2,
.enlarged p {
    transform: scale(1.1); /* Enlarge text by 10% */
}
.card-title {
    font-weight: 500;
    text-transform: capitalize;
    color: var(--color-black);
    padding-bottom: 20px;
    text-align: left;
    margin-left: 0;
    line-height: 1.4;
}
.card-text {
    color: var(--color-black);
    text-align: left;
}

/* ------------ */
/*--- Verified Presences with AURA ---*/
/* ------------ */
.full-width {
    background-color: #f7f8f9;
    height: fit-content;
}
.verified-presence {
    max-width: 1500px;
    padding: 60px  120px;
    display: flex;
    column-gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.verified-presence-develop {
    width: 50%;
}
.verified-presence-develop img {
    display: none;
}
.verified-presence-image {
    width: 50%;
}


/* ------------ */
/*  AURA - How It Works  */
/* ------------ */
.aura-how-it-works-background {
    padding-top: 60px;
    width: 100%;
    background-image: url('/assets/images-v3/Waves_Background.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.aura-how-it-works-section {
    max-width: 1500px;
    padding-inline: 120px;
    margin: 0 auto;
}

.how-it-works-text-box {
    width: 70%;
    display: flex;
    justify-content: flex-start;
    background-color: var(--color-grey-card-bckgrnd);
    border-radius: 20px;
    padding: 20px;
    margin-left: 0;
}
.how-it-works-text-box img {
    margin-right: 30px;
}

.how-it-works-image {
    width: 80%;
    display: block;
    margin: 0 auto;
}
/* ------------ */
.aura-gateway {
    width: 100%;
    padding-top: 70px;
}

.gateway-edge-toggle {
    margin-top: 70px;
    text-align: center;
}
.gateway-edge-toggle-switch {
    display: inline-flex;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    overflow: hidden;
}
.toggle-segment {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: #ffffff;
    color: #0a1a44;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
} 
.toggle-segment:not(.active):hover {
    background: #f3f5f8;
}
.toggle-segment.active {
    background: linear-gradient(180deg, #0a1a44, #071133);
    color: #ffffff;
}
  
/* Images */
.how-it-works-img {
    display: none;
    max-width: 100%;
    height: auto;
    margin-top: 70px;
} 
.how-it-works-img.active {
    display: block;
}
.how-it-works-img img {
    width: 100%;
    height: auto;
  }
/* -----------*/ 
.gateway-assets {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: stretch; /* key for equal height */
    padding-top: 50px;
}

.gateway-asset-box {
    flex: 0 0 calc(33.333% - 14px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px;
    background: var(--color-white);
    box-shadow: var(--box-shadow-light-grey);
    border-radius: 8px;
}
.gateway-asset-box img {
    height: 40px;
    padding-bottom: 10px;
    margin: 0 auto;
    margin-left: 0;
}
.gateway-asset-box h3 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    padding-block: 15px;
    text-align: left;
    margin-left: 0;
}
.gateway-asset-box p {
    margin: auto;
    text-align: left;
    margin-left: 0;
}


/* ------------ */
/* Benefits - Why Choose AURA */
/* ------------ */
.aura-benefits-background {
    max-width: 1500px;
    padding: 160px 120px 0px;
    margin: 0 auto;
}
.aura-benefits-section {
    background-color: var(--color-grey-card-bckgrnd);
    border-radius: 20px;
    padding: 40px;
    padding-top: 40px;
}
.benefits-flex-box {
    width: 100%;
    display: flex;
    column-gap: 20px;
}
.benefits-flex-box-left {
    width: 33%;
}
.flex-benefits-left img {
    width: 350px;
    padding-top: 30px;
}
.flex-benefits-middle {
    width: 33%;
}
.flex-benefits-right {
    width: 33%;
}

.aura-benefits-list {
    list-style: none;
    padding-left: 0;
}

.aura-benefits-list li {
    position: relative;
    padding-left: 1.5rem; /* spacing between icon and text */
    padding-bottom: 5px;
}

.aura-benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em;

    width: 1rem;
    height: 1rem;

    background: url("/assets/icons-v3/Black_Checkmark.svg") no-repeat center;
    background-size: contain;
}
  
  /* -----------*/
  
/* ------------ */
/*  AURA Hands-Free Access */
/* ------------ */

.hands-free-access-section {
    position: relative;
    max-width: 1500px;
    padding-inline: 120px;
    margin-inline: auto;
}


.hands-free-access {
    max-width: 1500px;
    padding: 80px 0px;
    display: flex;
    gap: 70px;
    align-items: center;
    justify-content: center;
}
.hands-free-access-text {
    width: 60%;
    align-items: center;
}

.hands-free-access-image-desktop {
    width: 44%;
}
.hands-free-access-image-desktop img {
    width: 100%;
    margin-left: 0px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.hands-free-access-image-mobile {
    display: none;
}
.inline-btns a {
    margin-right: 40px;
    color: var(--color-underline-cta);
}

.hands-free-access-text a {
    margin-bottom: 25px;
}


/* ------------ */
/*  Start Building Today  */
/* ------------ */
.start-today-section {
    max-width: 1500px;
    padding: 80px 120px 0px;
    margin: 0 auto;
}
.get-started {
    display: flex;
    align-items: center;
    gap: 35px;
}
.get-started-text {
    width: 60%;
}
.get-started-text p {
    padding-bottom: 20px;
}
.get-started-text img {
    max-width: 60%;
    min-width: 400px;
    margin-left: 0;
    padding-bottom: 20px;
}
.get-started-image {
    width: 40%;
}
.started-icon-images-mobile {
    display: none;
}
.get-started-image img {
    width: 100%;
}
.started-inline-btns-mobile {
    display: none;
}

.transform-text-temp {
    color: var(--color-underline-cta);
    text-decoration: underline;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    margin-top: auto;
    margin-inline: auto;
}

.transform-text-temp::before {
    content: 'Learn More';
}

.transform-text-temp:hover::before {
    content: 'Coming Q1 2026';
}

.transform-text-temp:hover {
    color: var(--color-black);
    text-decoration: none;
}

/* ------------ */
/*  AURA - Hardware Family  */
/* ------------ */
.hardware-family-section {
    max-width: 1500px;
    padding: 160px 120px 0px;
    margin: 0 auto;
}
.hardware {
    display: flex;
    align-items: center;
    gap: 70px;
    background-color: var(--color-grey-card-bckgrnd);
    border-radius: 20px;
    padding: 40px;
    padding-top: 40px;
}
.hardware-text {
    width: 60%;
}
.hardware-text p {
    padding-bottom: 20px;
}
.hardware-text img {
    max-width: 60%;
    min-width: 400px;
    margin-left: 0;
    padding-bottom: 20px;
}
.hardware-image {
    width: 40%;
}
.started-icon-images-mobile {
    display: none;
}
.hardware-image img {
    width: 100%;
}
.hardware-inline-btns-mobile {
    display: none;
}



/*--------------*/
/*----  Frequently Asked Questions SECTION --------------*/
/*--------------*/
.faq-container {
    max-width: 1500px;
    margin: auto;
    margin-block: 100px;
    padding-inline: 120px;
  }
  .faq-container h2 {
      text-align: center;
      text-transform: capitalize;
      padding-top: 30px;
      padding-bottom: 20px;
  }
  
  /*------------------*/
  .faq__accordion {
        border-bottom: 1px solid #011038;
  }
  .faq__accordion.active .panel {
        max-height: 300px;
        animation: fade 0.5s ease-in-out;
  }
  
  .faq__accordion-title {
        margin-left: 0;
        margin-right: 0;
        padding: 18px 0px;
        cursor: pointer;
        transition: 0.4s;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-left: 0;
    }
    .faq__accordion-title h4 {
        margin-left: 0;
        margin-right: 20px;
        font-family: "Inter";
        font-weight: 700;
        text-transform: normal;
    }
    .faq__accordion-title svg {
        margin-right: 20px;
    }
    .faq__accordion.active svg {
        transform: rotate(180deg);
    }
    svg {
        transition: transform 0.5s ease-in;
    }
   
    .faq__accordion p {
        font-family: 'Inter';
        font-size: .3rem;
        padding: 30px 0px;   
    }
    
    .panel {
        padding: 0px;
        margin: auto;
        max-height: 0;
        overflow: hidden;
        transition: 0.5s ease-in;
    }

    .faq__accordion .panel p {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        padding: 0px 0px 20px 0px;
    }

    .faq__accordion .panel ul {
        padding-left: 20px;
        margin: 0;
    }

    .faq__accordion .panel li {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        padding-bottom: 7px;
        list-style: disc;
        list-style-position: outside;
        margin-left: 0;
    }
    .faq__accordion .panel a {
        color: var(--color-underline-cta);
    }
    .faq__accordion .panel a:hover {
        text-decoration: underline;
    }
    @keyframes fade {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0px);
      }
    }




@media (max-width: 1440px) {
    /* ------------ */
    /*  AURA Hero Section */
    /* ------------ */
    .aura-hero-image {
        max-height: 60vh;
        min-height: 650px;
    }

    /* ------------ */
    /*  Grey Card Containers*/
    /* ------------ */
    .card-item-flex-right img {
        width: auto;
        height: 230px;
    }

} 

@media (max-width: 1024px) {

    /* ------------ */
    /*  AURA Hero Section */
    /* ------------ */
    .aura-hero-content {
        padding-inline: 20px;
    }
    .aura-sub-nav {
        padding-inline: 20px;
    }

    /* ------------ */
    /*  Overview — What is AURA  */
    /* ------------ */
    .aura-overview-section {
        max-width: 1500px;
        padding: 50px 20px; 
    }
    /* ------------ */
    /*  AURA - Capabilities  */
    /* ------------ */
    .capabilities-assets {
        display: flex;
        column-gap: 20px;
        padding-inline: 20px;
        max-width: 1500px;
    }

    /* ------------ */
    /*  Grey Card Containers*/
    /* ------------ */
    .card-opening-p {
        max-width: 650px;
        padding-bottom: 30px;
        padding-inline: 20px;
    }
    .grey-card-container p {
        padding-bottom: 0px;
    }
    .grey-card-container {
        text-align: center;
        width: 100%;
        max-width: 1500px;
        padding: 80px 20px 0px 20px;
        margin: auto;
    }
    .card-item-flex-left p {
        transition: transform 0.3s ease-in-out;
        padding-bottom: 60px !important;
        padding-right: 10px;
    }
    .card-item h2 {
        font-weight: 500;
        transition: transform 0.3s ease-in-out;
        padding-inline: 20px;
    }
    .card-item p {
        transition: transform 0.3s ease-in-out;
        padding-inline: 20px;
    }
    .card-item-1 {
        grid-column: 1 / 3;
        width: 100%;
        background-color: var(--color-grey-card-bckgrnd);
        border-radius: 20px;
        margin-bottom: 25px;
        padding: 20px 20px 0px 20px;
    }



    /* ---------------- */
    /* Verified Presences with AURA */
    /* ---------------- */
    .verified-presence {
        padding:  70px 20px;
    } 
    
    /* ------------ */
    /*  AURA - How It Works  */
    /* ------------ */
    .aura-how-it-works-background {
        padding-top: 120px;
        background-image: none;
    }
    .aura-how-it-works-section {
        padding-inline: 20px; 
    }


    /* ------------ */
    /* Benefits - Why Choose AURA */
    /* ------------ */
    .aura-benefits-background {
        padding-inline: 20px;
    }
    .aura-benefits-section {
        background-color: var(--color-grey-card-bckgrnd);
        border-radius: 20px;
        padding: 20px;
        padding-top: 40px;
    }

    /* ------------ */
    /*  AURA Hands-Free Access */
    /* ------------ */
    .hands-free-access-section {
        max-width: 1500px;
        padding: 40px 20px;
    }
   
    .hands-free-access {
        max-width: 1500px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-block: 0px;
    }
    
    /* ------------ */
    /*  Start Building Today  */
    /* ------------ */
    .start-today-section {
        padding: 80px 20px 0;
    }


    /* ------------ */
    /*  AURA - Hardware Family  */
    /* ------------ */
    .hardware-family-section {
        padding: 80px 20px 0;
    }
    .hardware {
        padding: 20px;
    }
    /*--------------*/
    /*----  Frequently Asked Questions SECTION --------------*/
    /*--------------*/
    .faq-container {
        padding-inline: 20px;
    }

}



 /* SMALLER TABLETS LARGE PHONES  */
@media (max-width: 768px) {
    /* ------------ */
    /*  AURA Hero Section */
    /* ------------ */
    .aura-hero-section {
        min-height: 45svh;
        display: flex;
        flex-direction: column;
        background-color: transparent; /* Remove black background on mobile */
    }
    .aura-hero-image {
        flex: 1;
        min-height: 45vh;
        max-height: 1000px;
        /* background-position: bottom; */
    }
    .aura-hero-image::before {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.0) 40%
        );
    }
    .hero-title {
        font-weight: 700;
        text-align: center;
        margin-inline: auto;
        font-size: 2rem;
        line-height: 1.5;
        max-width: 450px;
        padding-bottom: 0%;
    }
    .aura-hero-content h1 {
        display: none;
    }
    .aura-hero-content p {
        display: none;
    }
    .aura-hero-content a {
        display: none;
    }
    

    .aura-hero-navigation-section {
        height: 30px;
    }
    .aura-sub-nav {
        display: none;
    }
    /*----------------*/
    /*  Grey Card Containers */
    /*----------------*/
    .grey-card-container h2 {
        max-width: 400px;
    }
    /* ------------ */
    /*  AURA - How It Works  */
    /* --------------*/ 
    .how-it-works-text-box {
        width: 100%;
    }
    /* ------------ */
    /*  AURA - Capabilities  */
    /* ------------ */
    .capabilities-title .section-heading {
        padding-bottom: 10px;
    }
    .capabilities-assets {
        display: flex;
        flex-direction: column;
        column-gap: 8px;
        padding-inline: 20px;
        max-width: 1500px;
        margin: 0 auto;
    }
    .asset-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 15px;
        padding: 20px;
        background: var(--color-white);
        box-shadow: var(--box-shadow-light-grey);
        border-radius: 20px;
    }
    .asset-box:first-child {
        margin-top: 0px;
    }
    .asset-box img {
        height: 50px;
        padding-bottom: 10px;
    }
    .asset-box h3 {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        padding-block: 5px;
        text-align: center;
    }
    .asset-box p {
        margin: auto;
        text-align: center;
    }

    /* ------------ */
    /*  AURA - How It Works  */
    /* ------------ */
    .gateway-assets {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .gateway-asset-box {
        width: 33,3%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        margin-inline: 0;
        padding: 30px;
        background: var(--color-white);
        box-shadow: var(--box-shadow-light-grey);
        border-radius: 20px;
    }
    
    .gateway-asset-box img {
        height: 45px;
        padding-bottom: 10px;
        margin-left: 0;
    }
    .gateway-asset-box h3 {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        padding-block: 15px;
        text-align: left;
        margin-left: 0;
    }
    .gateway-asset-box p {
        margin: auto;
        text-align: left;
        margin-left: 0;
    }
    /* ------------ */
    /* Benefits - Why Choose AURA */
    /* ------------ */
    .aura-benefits-background {
        background-color: var(--color-grey-card-bckgrnd);
        padding: 80px 20px 0px;
        margin-top: 100px;
    }
    .aura-benefits-section {
        background-color: none;
        padding-inline: 0;
        padding-top: 0px;
    }
    .aura-benefits-section h2 {
        padding-bottom: 50px;
    }
    .benefits-flex-box {
        width: 100%;
        display: flex;
        column-gap: 0px;
        padding-bottom: 40px;
    }
    .benefits-flex-box-left {
        display: none;
    }
    .flex-benefits-left img {
        display: none;
    }
    .flex-benefits-middle {
        width: 50%;
        padding-right: 12.5px;
    }
    .flex-benefits-right {
        width: 50%;
        padding-left: 12.5px;
    }
    
    /* ------------ */
    /*  Start Building Today  */
    /* ------------ */
    .start-today-section {
        padding: 50px 20px 0;
    }

    .hands-free-access {
        gap: 30px;
    }
    .hardware {
        gap: 30px;
    }
    
 
}


@media (max-width: 576px) {
    

    /* ------------ */
    /* Grey Card Containers */
    /* ------------ */
    .aura-introduction-right img {
        width: 100%;
    }
    .card-grid {
        display: grid;
        /* Automatically fit items into available space */
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));

        /* Use fractional units for proportional row heights */
        grid-template-rows: 2fr 1fr 1fr;
        box-sizing: border-box;
        gap: 0;
        padding-top: 30px; 
    }
    .card-item {
      grid-column: 1;
      padding: 0px;
      box-sizing: border-box;
      margin-bottom: 25px;
    }
    
    .card-item-1 {
      padding: 60px 30px 0px 30px;
      margin-bottom: 25px;
    }
    .card-item-flex-left p {
        padding-bottom: 0px !important;
        padding-right: 0px;
    }
    .card-item-2,
    .card-item-3 {
        grid-row: auto;
        padding: 0px 30px;
        margin-left: 0;
        margin-right: 0;
    }
    .card-item-flex {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      row-gap: 40px;
    }
    .card-item-flex-left {
      display: flex;
      flex-direction: column;
      width: 100%;
      justify-content: center;
    }
    .card-item-flex-left h2 {
        transition: transform 0.3s ease-in-out;
        padding-inline: 0px;
        padding-bottom: 20px !important;
        margin: 0;
    }
    .card-item-flex-left p {
        transition: transform 0.3s ease-in-out;
        padding-inline: 0px; 
    }
    .card-item-2 h2,
    .card-item-3 h2 {
        font-weight: 700;
        transition: transform 0.3s ease-in-out;
        padding-inline: 0px;
        padding-bottom: 20px !important;
        margin: 0;
    }
    .card-item-2 p,
    .card-item-3 p {
        transition: transform 0.3s ease-in-out;
        padding-inline: 0px; 
    }
    .card-item-flex-right {
      display: flex;
      align-items: flex-end;
      width: 100%;
      padding-inline: 30px;
    }
    .card-item-flex-right img {
        width: 200px;
        height: auto;
        margin: 0 auto;
    }
    .card-item h2,
    .card-item p {
      padding: 0 0 20 0;
    }
    .card-opening-p {
        padding-inline: 0px;
    }

    /*----------------*/
    /* Verified Presences with AURA */
    /*----------------*/
    .verified-presence {
        max-width: 1500px;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        row-gap: 40px;
    }
    .verified-presence-develop {
        width: 100%;
        margin-inline: 0px;
        text-align: center;
    }
    .verified-presence-develop h2 {
        text-align: center;
        line-height: 1.4;
        max-width: 250px;
        padding-bottom: 0;
        margin: 0 auto;
    }
    .verified-presence-develop p {
        padding-top: 0px;
    }
    .verified-presence-develop img {
        display: block;
        width: 100%;
        padding-bottom: 0px;
    }
    .button-small-color-link {
        background-color: transparent;
        color: var(--color-underline-cta);
        font-weight: 700;
        padding-inline: 0px;
        text-align: center;
        margin-top: 20px;
    }
    .verified-presence-image {
        display: none;
    }
    /* ------------ */
    /*  AURA - How It Works  */
    /* ------------ */
    .how-it-works-image {
        width: 100%;
        display: block;
        margin: 0 auto;
    }

    /* ------------ */
    /* Benefits - Why Choose AURA */
    /* ------------ */
    .aura-benefits-section h5, 
    .aura-benefits-section h2 {
        text-align: center;
    }
    .aura-benefits-section h2 {
        padding-bottom: 25px;
    }
    .benefits-flex-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        column-gap: 0px;
        padding-bottom: 40px;
    }
    .benefits-flex-box-left {
        display: flex;
        width: 100%;
    }
    .flex-benefits-left img {
        display: block;
        padding-top: 0px;
        padding-bottom: 30px;
        margin: 0 auto;
    }
    .flex-benefits-middle {
        width: 100%;
        padding-right: 0px;
    }
    .flex-benefits-right {
        width: 100%;
        padding-left: 0px;
    }

    /* ------------ */
    /*  Overview — What is AURA  */
    /* ------------ */
    
    .what-is-aura {
        display: flex;
        flex-direction: column-reverse;
    }
    .what-is-aura-text {
        width: 100%;
        padding-right: 20px;
    }
    .what-is-aura-image {
        width: 100%;
        padding-bottom: 50px;
    }
    .aura-capabilities {
        padding-top: 40px;
    }
    .capabilities-title h2 {
        padding-bottom: 40px;
    }
    .asset-box {
        flex: 0 0 100%;
        box-shadow: var(--box-shadow-light-grey);
    }
    .asset-box img {
        height: 35px;
    }

    .aura-how-it-works-section {
        padding-inline: 20px; 
    }
    /* ------------ */
    /*  AURA Hands-Free Access */
    /* ------------ */

    .hands-free-access {
        max-width: 1500px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px
    }
    .hands-free-access-text {
        width: 100%;
        padding: 0px;
        text-align: center;
    }
    .hands-free-access-text img {
        width: 100%
    }
    .hands-free-access-text h5 {
        padding-top: 40px;
    }
    
    .ship-btn {
        margin-bottom: 0px;
        text-align: left;
        margin-top: -30px;
    }
    .hands-free-access-image-mobile {
        display: block;
        width: 100%;
    }
    .hands-free-access-image-desktop {
        display: none;
    }
    .hands-free-access-image-mobile img {
        width: 100%;
        margin-left: 0px;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    /* ------------ */
    /*  Start Building Today  */
    /* ------------ */
    /* ------------ */
    /*  Start Building Today  */
    /* ------------ */

    .start-today-section {
        height: 670px;
        padding: 0 20px;
      }
      .get-started {
          display: flex;
          flex-direction: column-reverse;
          align-items: center;
          justify-content: center;
          gap: 0px;
      }
      .get-started-text {
          width: 100%;
          padding-top: 25px;
          text-align: center;
      }
      .get-started-text img {
          margin-inline: auto;
          padding-block: 0 25px;
          min-width: 180px;
          max-width: 200px;
      }
      .get-started-image {
          width: 80%;
      }
      .started-icon-images-desktop {
        display: none;
      }
      .started-icon-images-mobile {
        display: block;
        text-align: center;
      }
      .started-inline-btns-desktop {
          display: none;
      }
      .started-inline-btns-mobile {
          display: block;
          text-align: center;
      }
      .started-inline-btns-mobile a {
          margin-top: 0px;
          padding-left: 15px;
          padding-right: 15px;
      }
      .transparent-cta-button {
          padding-top: 10px;
          margin-inline: auto;
      }
    /* ------------ */
    /*  Hardware Family  */
    /* ------------ */
    .hardware {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0px;
        padding: 40px 20px;
    }
    .hardware-text {
        width: 100%;
        text-align: center;
    }
    .hardware-text img {
        max-width: 80%;
        min-width: 350px;
    }
    .hardware-icon-images-desktop {
        display: none;
    }
    .hardware-icon-images-mobile {
        display: inline-block;
        margin-inline: auto;
        padding-block: 25px;
    }
    .hardware-image {
        width: 100%;
    }
    .hardware-text .section-sub-heading {
        padding-top: 30px;
    }
    .hardware-inline-btns-desktop {
        display: none;
    }
    .hardware-inline-btns-mobile {
        display: block;
        text-align: center;
    }

    /* ------------------ */
    /* Grey Card Containers */
    /* ------------------ */
    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-template-rows: 2fr 1fr 1fr;
        box-sizing: border-box;
        gap: 0;
        padding-top: 30px; 
    }
   
}