/* ============================================================
   HERO SECTION — Mobile-First Responsive CSS
   Breakpoints:
     Mobile      : 0 → 480px      (base styles, no query)
     Small Tab   : 481px → 600px
     Medium Tab  : 601px → 768px
     Large Tab   : 769px → 1024px
     Small Desk  : 1025px → 1280px
     Medium Desk : 1281px → 1440px
     Large Desk  : 1441px → 1920px
     XL Screens  : 1921px+
   Units : clamp() + vw — zero px in property values
   Colors: ONLY from .white-hero / .blue-hero theme classes
============================================================ */


/* =============================== */
/* Hero Section — Mobile Base      */
/* =============================== */
.hero-section {
    position: relative;
    padding: 0 clamp(0.8em, 4vw, 1.2em);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: clamp(0.8em, 3vw, 1.5em) clamp(0.5em, 3vw, 1.2em) 0;
    position: relative;
    z-index: 10;
}

.hero-container a {
    color: currentColor;
    text-decoration: underline currentColor;
}

.hero-content {
    width: 100%;
    margin-bottom: clamp(1.5rem, 6vw, 3rem);
    text-align: center;
}

/* =============================== */
/* Hero Title                      */
/* =============================== */
.hero-title {
    font-size: clamp(1.15rem, 5.5vw, 1.6rem);
    font-weight: 700;
    margin-block: clamp(0.6em, 2.5vw, 1em);
    line-height: 1.5;
}

.hero-title.main-title {
    font-size: clamp(1.15rem, 5.5vw, 1.6rem);
    font-weight: 700;
    margin-block: clamp(0.6em, 2.5vw, 1em);
    position: relative;
    text-align: center;
    padding-bottom: clamp(0.4em, 1.5vw, 0.7em);
    margin-bottom: clamp(0.6em, 2vw, 0.9em);
}


.hero-title.main-title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: clamp(0.18rem, 0.5vw, 0.32rem);
    border-radius: clamp(1rem, 3vw, 1.5rem);
    bottom: 0;
    left: 0;
    background-color: currentColor;
}

.hero-title.sub-title {
    font-size: clamp(0.95rem, 4vw, 1.2rem);
    margin-right: 0;
    text-align: start;
    margin-top: clamp(1em, 3vw, 1.5em);
}


.hero-content .none {
    display: block;
}


/* =============================== */
/* Hero List                       */
/* =============================== */
.hero-section ul {
    width: 100%;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.hero-section ul li {
    margin-bottom: clamp(0.4em, 1.8vw, 0.7em);
    display: flex;
    align-items: flex-start;
    gap: clamp(0.4em, 1.5vw, 0.7em);
    font-size: clamp(0.82rem, 3.5vw, 1rem);
    text-align: start;
    justify-content: start;
}


/* =============================== */
/* Dot Circle                      */
/* =============================== */
.dot-circle {
    border: 4px solid currentColor;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.hero-section ul li .dot-circle {
    margin-top: clamp(0.2em, 0.8vw, 0.4em);
    width: clamp(0.3rem, 3.2vw, 1.3rem);
    height: clamp(0.3rem, 3.2vw, 1.3rem);
}


/* =============================== */
/* CTA Button                      */
/* =============================== */
.hero-content .btn {
    justify-self: center;
    margin-top: clamp(1rem, 4vw, 2rem);
    width: 100%;
    display: block;
    text-align: center;
    font-size: clamp(0.88rem, 3.5vw, 1rem);
    font-weight: 500;
    padding: clamp(0.5em, 2vw, 0.8em);
    border-radius: clamp(0.8rem, 3vw, 1.3rem);
    border: clamp(0.12rem, 0.4vw, 0.2rem) solid;
    background-image: linear-gradient(90deg, transparent 0%, transparent 100%);
    text-decoration: none;
    transition: all 0.3s ease;
}


/* =============================== */
/* Small Tablet  481px → 600px     */
/* =============================== */
@media (min-width: 481px) {
    .hero-title.main-title,
    .hero-title {
        font-size: clamp(1.2rem, 4.5vw, 1.7rem);
    }

    .hero-title.sub-title {
        font-size: clamp(1rem, 3.5vw, 1.25rem);
    }

    .hero-section ul li {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }

    .hero-content .btn {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content .none {
        display: none;
    }
    
    .dot-circle {
    border: 5px solid currentColor;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

   .hero-section ul li .dot-circle {
    margin-top: clamp(0.2em, 0.8vw, 0.4em);
    width: clamp(0.3rem, 3.2vw, 1rem);
    height: clamp(0.3rem, 3.2vw, 1rem);
}
}


/* =============================== */
/* Medium Tablet  601px → 768px    */
/* =============================== */
@media (min-width: 601px) {
    .hero-title.main-title,
    .hero-title {
        font-size: clamp(1.3rem, 4vw, 1.9rem);
        text-align: center;
    }

    .hero-title.sub-title {
        font-size: clamp(1rem, 3vw, 1.3rem);
        text-align: center;
    }

    .hero-section ul li {
        font-size: clamp(0.88rem, 2.5vw, 1.05rem);
        justify-content: start;
    }

    .hero-content {
        padding: 0 clamp(0.5em, 2vw, 1em);
    }

    .hero-content .btn {
        width: 70%;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }



}


/* =============================== */
/* Large Tablet  769px → 1024px    */
/* =============================== */
@media (min-width: 769px) {
    .hero-section {
        padding: 0 clamp(1em, 3vw, 2em);
    }

    .hero-container {
        padding-top: clamp(1em, 2.5vw, 2em);
    }

    .hero-title.main-title,
    .hero-title {
        font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    }

    .hero-title.sub-title {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    }

    .hero-section ul li {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        gap: clamp(0.5em, 1.5vw, 0.8em);
    }

    .hero-content .btn {
        width: 60%;
        font-size: clamp(0.95rem, 2vw, 1.05rem);
    }


}


/* =============================== */
/* Small Desktop  1025px → 1280px  */
/* =============================== */
@media (min-width: 1025px) {
    .hero-section {
        padding: 0 clamp(1.5em, 3vw, 2.5em);
    }

    .hero-container {
        padding-top: clamp(1.5em, 2vw, 2.5em);
        max-width: clamp(60rem, 90vw, 80rem);
    }

    .hero-content {
        /* width: 60%; */
        margin-bottom: clamp(2rem, 4vw, 3.5rem);
        /* text-align: right; */
    }

    .hero-title.main-title,
    .hero-title {
        font-size: clamp(1.6rem, 2.5vw, 2.2rem);
        /* text-align: right; */
    }

    .hero-title.sub-title {
        font-size: clamp(1.1rem, 1.8vw, 1.4rem);
        /* text-align: right; */
    }

    .hero-section ul li {
        font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    }

    .hero-content .btn {
        width: clamp(12rem, 22vw, 18rem);
        font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    }

    .hero-content .none {
        display: none;
    }
}


/* =============================== */
/* Medium Desktop  1281px → 1440px */
/* =============================== */
@media (min-width: 1281px) {
    .hero-title.main-title,
    .hero-title {
        font-size: clamp(1.8rem, 2.3vw, 2.4rem);
    }

    .hero-title.sub-title {
        font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    }

    .hero-section ul li {
        font-size: clamp(0.95rem, 1.2vw, 1.15rem);
        margin-bottom: clamp(0.5em, 1vw, 0.8em);
    }

    .hero-content .btn {
        font-size: clamp(1rem, 1.1vw, 1.1rem);
        padding: clamp(0.6em, 1vw, 0.9em);
    }
}


/* =============================== */
/* Large Desktop  1441px → 1920px  */
/* =============================== */
@media (min-width: 1441px) {
    .hero-title.main-title,
    .hero-title {
        font-size: clamp(2rem, 2vw, 2.6rem);
    }

    .hero-title.sub-title {
        font-size: clamp(1.3rem, 1.4vw, 1.6rem);
    }

    .hero-section ul li {
        font-size: clamp(1rem, 1.1vw, 1.2rem);
    }

    .hero-container {
        max-width: clamp(70rem, 88vw, 90rem);
    }
}


/* =============================== */
/* Extra Large  1921px+            */
/* =============================== */
@media (min-width: 1921px) {
    .hero-title.main-title,
    .hero-title {
        font-size: clamp(2.2rem, 1.8vw, 3rem);
    }

    .hero-title.sub-title {
        font-size: clamp(1.4rem, 1.2vw, 1.8rem);
    }

    .hero-section ul li {
        font-size: clamp(1.1rem, 1vw, 1.3rem);
    }
}




/* =============================== */
/* .white-hero                     */
/* =============================== */
.white-hero {
    background-image: linear-gradient(180deg, var(--white) 55%, var(--white));
    color: var(--helperColor);
}

.white-hero .hero-container a {
    color: var(--helperColor);
}

.white-hero .hero-title,
.white-hero .hero-title.main-title,
.white-hero .hero-title.sub-title {
    color: var(--helperColor);
}

.white-hero .hero-title.main-title::after {
    background-color: var(--lightHelper);
}

.white-hero .hero-section ul li,
.white-hero .hero-section ul li span {
    color: var(--helperColor);
}

.white-hero .dot-circle {
    border-color: var(--lightHelper);
}

.white-hero .hero-content .btn {
    color: var(--white);
    border-color: var(--lightHelper);
    background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--lightHelper) 100%);
}

.white-hero .hero-content .btn:hover {
    background-image: linear-gradient(90deg, var(--helperColor) 0%, var(--helperColor) 100%);
    border-color: var(--helperColor);
}


/* =============================== */
/* .blue-hero                      */
/* =============================== */
.blue-hero {
    background-image: linear-gradient(180deg, var(--lightHelper) 55%, var(--lightHelper));
    color: var(--white);
}

.blue-hero .hero-container a {
    color: var(--white);
}

.blue-hero .hero-title,
.blue-hero .hero-title.main-title,
.blue-hero .hero-title.sub-title {
    color: var(--white);
}

.blue-hero .hero-title.main-title::after {
    background-color: var(--white);
}

.blue-hero .hero-section ul li,
.blue-hero .hero-section ul li span {
    color: var(--white);
}

.blue-hero .dot-circle {
    border-color: var(--white);
}

.blue-hero .hero-content .btn {
    color: var(--white);
    border-color: var(--white);
    background-image: linear-gradient(90deg, transparent 0%, transparent 100%);
}

.blue-hero .hero-content .btn:hover {
    background-image: linear-gradient(90deg, var(--white) 0%, var(--white) 100%);
    color: var(--lightHelper);
    border-color: var(--white);
}