/* HERO */
.hero{
    background: var(--color-scheme-1-bg);
    display: flex;
    align-items: center;
    min-height: 95vh;
}
.hero-inner{ 
    padding: 2rem 0; 
}
.hero-title{
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.8rem;
    color: var(--color-scheme-1-text);
    /* responsive font-sizing with clamp */
    font-size: clamp(2rem, 6vw, 5.2rem);
    letter-spacing: .5px;
}
.hero-sub{
    font-family: Raleway;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-scheme-1-text);
}
.hero-img{
    position: relative;
    max-height: 80vh;
    object-fit: contain;
    display:block;
}
.btn-start-tool, .btn-contact-us{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    border: 1px solid var(--dodger);
    border-radius: 0.5rem;
    color: var(--color-white);
}
.btn-learn-more{
    border: 1px solid var(--neutral-15);
    border-radius: 0.5rem;
    color: var(--color-scheme-1-text);
    background: transparent;
}
.btn-learn-more:hover{
    color: var(--color-scheme-1-text-muted) !important;
}


/* Cards */
.card-title{
    font-family: Nunito;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: .6rem;
    color: var(--color-scheme-1-text);
}
.card-img-fit{
    width: 100%;
    height: auto;
    display: block;
}
.card-text{
    font-size: 1.125rem;
    color: var(--color-scheme-1-text);
}
.link-btn{
    display:inline-flex; 
    align-items:center; 
    gap:.5rem;
    font-size: 1rem;
    text-decoration:none; 
    font-weight:500;
    color: var(--color-scheme-1-text);
    margin-top: .75rem;
    transition: ease-in 0.1s all;
}
.link-btn > .bi-chevron-right {
    transition: ease-out 0.1s all;
}
.link-btn:hover > .bi-chevron-right {
    transform: translate(0.6rem, 0);
    transition: ease-in 0.2s all;
}
.no-bullets{
    list-style: none;
    padding-left: 1rem;
    color: var(--color-scheme-1-text);
}
.product-card {
    position: relative;
    border: 1px solid var(--product-card-border-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--product-card-bg);
    transition: transform .15s ease, box-shadow .15s ease;
    color: var(--color-scheme-1-text);
    text-decoration: none;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(12,8,1,0.06);
}
.product-img-container {
    position: relative;
    width: 100%;
    display: inline-block;
}
.watermark {
    position: absolute;
    top: 15%;
    left: 30%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 1rem;
    color: rgba(200, 0, 0, 0.5);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 3px solid rgba(200, 0, 0, 0.5);
    padding: 0.5em 1em;
    border-radius: 5px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    pointer-events: none;
    z-index: 10;
}
.product-img {
    width:100%;
    height:200px;
    object-fit: contain;
    display: block;
    background:var(--product-card-img-bg);
}
.img-blur {
    filter: blur(12px);
    transform: scale(1.05);
    transition: filter 0.4s ease, transform 0.4s ease;
}
.img-blur.loaded {
    filter: blur(0);
    transform: scale(1);
}
.product-name {
    font-family: "Nunito", sans-serif;
    font-weight:600;
    font-size:1.05rem;
}
.tag-pill {
    display:inline-block;
    padding:.35rem .6rem;
    border-radius:6px;
    background:var(--tag-pill-bg);
    border:1px solid var(--neutral-15);
    font-weight:600;
    font-size:.9rem;
    color: var(--color-scheme-1-text);
}


/* Tool explained section */
.tool-explained-card{
    overflow: hidden;
    border: 3px solid var(--color-card-border);
    border-radius: 0.8rem;
    background-color: var(--color-scheme-1-bg);
}
.tool-explained-card .card-body{
    padding: 1.25rem;
}
.tool-explained-img{
    /* max-height: 250px; */
    max-width: 300px;
}

/* Advantage section */
.advantage-card{
    overflow: hidden;
    border: 3px solid var(--color-card-border);
    border-radius: 0.8rem;
    background-color: var(--color-scheme-2-bg);
}
.advantage-card .card-body{
    padding: 1.25rem;
}
.advantage-icon{
    width: 50px;
    height: auto;
    filter: var(--image-filter);
}


/* Tool section */
.tool-body {
    font-family: Raleway;
    font-size: 1rem;
}
.tool-body .card {
    background: var(--product-card-bg);
    color: var(--color-scheme-1-text);
}
.tool-animate {
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}
.tool-animate.show {
    max-height: fit-content;
    opacity: 1;
    transform: translateY(0);
}
.step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--step-circle-border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    color: var(--color-scheme-1-text);
}
.step-circle.active, .step-circle.done {
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
}
.tool-sub{
    font-family: Raleway;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-scheme-1-text);
}
.btn-send{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    border: 1px solid var(--dodger);
    border-radius: 0.5rem;
    color: var(--color-white);
}


/* Contact form */
.check-input-hide{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    opacity: 0%;
    transform: translate(0, 150%);
    z-index: -1;
    transition: transform 800ms, opacity 400ms, z-index 800ms;
}
.check-input{
    opacity: 100%;
    transform: translate(0, 15%);
    z-index: 0;
    transition: transform 800ms, opacity 400ms, z-index 800ms;
}
label {
    color: var(--color-scheme-1-text);
    transition: all 500ms ease-in-out;
}
#emailHelp{
    color: var(--color-scheme-1-text-muted);
}


/* Extra small devices (phones, portrait) */
@media (max-width: 575.98px) {
    .hero{
        padding-top: 1rem;
    }
}

/* Small devices (phones, landscape) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* CSS for larger phones / small tablets */
}

/* Only for medium screens */
@media (min-width: 768px) and (max-width: 991.98px) {
    
}

/* Large devices (desktops) */
@media (min-width: 992px) {
    /* CSS for desktops */
}