/* HERO */

.hero{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;

    padding: 20px;
    padding-top: 120px;

    background-color: #111;
    color: #fff;
}

.hero-image{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;

    width: 550px;
    height: 550px;
    border-radius: 30px;

    background-image: url("../images/photos/hero-image-pay-as-you-go-inference.webp");
    background-size: cover;
    background-position: center;
}

.hero-content{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
}

.hero-content > h1{
    font-size: 60px;
    line-height: 64px;
    /* max-width: 480px; */
}

.hero-content > h1 > span{
    background: linear-gradient(to right, #c6168d, #7d03ef);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content > p{
    font-size: 20px;
    max-width: 550px;
}

.hero-buttons{
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}

.hero-buttons > a{
    padding: 15px 0;
    width: 200px;
    text-align: center;

    color: #fff;
    font-size: 16px;
    border-radius: 13px;

    text-decoration: none;
}

.hero-buttons > a:nth-child(1){ background: linear-gradient(to right, #EE2CC0, #AB0884); }
.hero-buttons > a:nth-child(1):hover{ background: linear-gradient(to right, #AB0884, #AB0884); }

.hero-buttons > a:nth-child(2){ background: linear-gradient(to right, #272727, #111111); border: 1px solid #4D4D4D; }
.hero-buttons > a:nth-child(2):hover{ background: linear-gradient(to right, #111111, #111111); }

@media (max-width: 1200px) {
    .hero{
        gap: 20px;
    }
}

@media (max-width: 1050px) {
    .hero{
        flex-direction: column-reverse;
    }
    
    .hero-image{
        width: 100%;
        height: 250px;
    }

    .hero-content{
        align-items: center;
        text-align: center;
    }

    .hero-content > h1{max-width: 800px;}
    .hero-content > p{max-width: 800px;}
}

@media (max-width: 600px) {
    .hero-content{gap: 20px}
    .hero-content > h1{font-size: 25px;line-height: 30px;}
    .hero-content > p{font-size: 14px;}
}

/* NEMOCLAW */

.container-nemoclaw{
display: flex;
justify-content: center;
align-items: center;
gap: 50px;

padding: 70px 20px;
}

.container-nemoclaw > img{
width: 500px;
border-radius: 15px;
}

.container-nemoclaw > div{
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
gap: 20px;
}

.container-nemoclaw > div > h2{
font-size: 40px;
color: #fff;
max-width: 600px;
}

.container-nemoclaw > div > p{
font-size: 16px;
color: #fff;
max-width: 600px;
}

.container-nemoclaw > div > ul{
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
gap: 10px;
}

.container-nemoclaw > div > ul > li{
display: flex;
justify-content: center;
align-items: flex-start;
gap: 10px;

list-style: none;
}

.container-nemoclaw > div > ul > li > img{
width: 20px;
height: 20px;
}

.container-nemoclaw > div > ul > li > span{
font-size: 15px;
color: #fff;
}

@media(max-width: 1047px){
.container-nemoclaw{flex-direction: column; gap: 20px;}
}

@media(max-width: 600px){
.container-nemoclaw > div > h2{font-size: 25px;}
.container-nemoclaw > div > p{font-size: 14px;}
.container-nemoclaw > div > ul > li > span{font-size: 14px;}
}

@media (max-width: 540px) {
    .container-nemoclaw > img{
        width: 100%;
    }
}

/* FUNCTION */

.container-function{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 30px;

padding: 70px 20px;
background-color: #111;
border-top: 1px solid #323232;
border-bottom: 1px solid #323232;
}

.container-function > h2{
font-size: 40px;
color: #fff;
text-align: center;
}

.number-and-card-function{
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
}

.number-and-card-function > p{
position: relative;
font-size: 25px;
color: #A4A4A4;
}

.function-vertical-line{
position: absolute;
top: 110px;
left: 50%;
transform: translate(-50%, -50%);

width: 1px;
height: 120px;
background-color: #323232;
}

.card-function{
display: flex;
justify-content: flex-start;
align-items: center;
gap: 30px;

width: 800px;
padding: 30px;

background-color: transparent;
border: 2px solid #323232;
border-radius: 25px;
}

.card-function > img{
width: 60px;
height: 60px;
}

.card-function > div{
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
gap: 15px;
}

.card-function > div > h3{
font-size: 16px;
text-align: left;
color: #fff;
}

.card-function > div > p{
font-size: 16px;
text-align: left;
color: #fff;
}

@media(max-width: 890px){ .card-function{ width: 100%; } }

@media(max-width: 700px){
.number-and-card-function > p{ display:none }
.function-vertical-line{ display: none; }
.container-function > h2{ font-size: 25px; }
}

@media(max-width: 450px){ .card-function{ flex-direction: column; align-items: flex-start; } }

/* WORK ENVIRONMENT */

.container-work-environment{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding: 0 20px;
    padding-bottom: 70px;

    background-color: #111;
    color: #fff;
    text-align: center;
}

.container-work-environment > h2{
    font-size: 40px;
}

.work-environment-cards{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

    max-width: 1200px;

    padding-top: 30px;
}

.work-environment-card{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;

    width: 350px;
    height: 350px;

    padding: 30px 20px;

    background: linear-gradient(135deg, #383838, #242424);
    border-radius: 15px;
    text-align: left;
}

.work-environment-card > h3{
    font-size: 20px;
}

.work-enviroment-card > p{
font-size: 16px;
}

@media (max-width: 600px) {
    .container-work-environment > h2{font-size: 25px;}
}

@media (max-width: 759px) {
    .work-environment-card{
        width: 100%;
        height: auto;
    }
}

/* MODELS */

.container-models{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding: 70px 20px;
    background-color: #111;
    color: #fff;
}

.box-models{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding: 50px;
    width: 100%;
    max-width: 1200px;

    border: 2px solid #464646;
    background: linear-gradient(to right, #1D1D1D, #111111);
    color: #fff;
    border-radius: 30px;
}

.box-models > h2{
    font-size: 40px;
    text-align: center;
    padding-bottom: 20px;
}

.box-models > p{
    font-size: 20px;
    text-align: center;
    padding-bottom: 50px;
    max-width: 700px;
}

.models{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.models > div{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;

    width: 650px;
}

.models > div > img{
display: flex;
flex-shrink: 0;
}

.models > div > p{
    font-size: 25px;
    font-weight: 600;
}

@media (max-width: 1043px) {
    .models{
        gap: 25px 50px;
    }
}

@media (max-width: 993px) {
    .models > div{
        width: 100%;
    }
}

@media (max-width: 600px) {
    .container-models{
        padding: 0;
    }

    .box-models{
        border: 0;
        border-radius: 0;
        padding: 50px 20px;
    }

    .box-models > h2{
        font-size: 25px;
    }

    .box-models > p{
        font-size: 14px;
    }

    .models > div > p{
        font-size: 14px;
    }
}

/* FORM */

.form-container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;

    padding: 50px 20px;
    padding-bottom: 0;
    background-color: #111;
    color: #fff;
}

.form-container > div{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.form-container > div > h2{
    font-size: 40px;
    max-width: 300px;
}

.form-container > div > p{
    font-size: 18px;
    max-width: 300px;
}

.form-container > form{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

    width: 700px;

    padding: 40px;
    background-color: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 15px;
}

.form-container > form > h2{
    font-size: 30px;
    padding-bottom: 10px;
}

.form-container > form > p{
    font-size: 12px;
    padding-bottom: 10px;
}

.form-container > form > p > span{
    color: #19AAA8;
}

.form-container > form > h3{
    font-size: 14px;
    padding-top: 30px;
}

.form-container > form > input,
.form-container > form > select,
.form-container > form > textarea{
    font-size: 14px;
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #262626;
    border-radius: 5px;
    padding: 10px;
    width: 100%;

    margin-top: 20px;
}

.form-container > form > textarea{
    resize: vertical;
    height: 200px;
}

.form-container > form > input:focus,
.form-container > form > select:focus,
.form-container > form > textarea:focus{
    outline: 0;
    border: 1px solid #E24D99;
}

.form-container > form > input::placeholder,
.form-container > form > textarea::placeholder{
    color: #949494;
}

.custom-input-field-phone-number{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;

    width: 100%;
    margin-top: 20px;

    background-color: #1a1a1a;
    border: 1px solid #262626;
    border-radius: 5px;
}

.custom-input-field-phone-number:focus-within{
    border: 1px solid #E24D99;
}

.custom-input-field-phone-number > select{
    display: flex;
    flex-shrink: 0;

    padding: 10px;

    font-size: 14px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 5px;
    border: 0;

    cursor: pointer;
}

.custom-input-field-phone-number > select:focus{
    outline: none;
}

.custom-input-field-phone-number > input{
    width: 100%;
    padding: 10px;

    font-size: 14px;
    background-color: transparent;
    color: #fff;
    border: 0;
}

.custom-input-field-phone-number > input:focus{
    outline: none;
}

.custom-input-field-phone-number > input::placeholder{
    color: #949494;
}

.container-legal-information{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;

    padding-top: 20px;
}

.container-legal-information > input{
    width: 15px;
    height: 15px;

    display: flex;
    flex-shrink: 0;

    accent-color: #c6168d;
    cursor: pointer;
}

.container-legal-information > p{
    font-size: 12px;
    color: #fff;
    user-select: none;
}

.container-legal-information > p > a{
    font-family: Poppins, sans-serif;
    color: #fff;
}

.container-submit-button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

    padding-top: 30px;
}

.container-submit-button > button{
    padding: 10px;
    width: 60%;

    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    border: 0;

    background-color: #c6168d;
    color: #fff;

    cursor: pointer;
}

@media (max-width: 1094px) {
    .form-container{
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .form-container > div{
        justify-content: center;
        align-items: center;
    }

    .form-container > div > h2{
        text-align: center;
        max-width: none;
        font-size: 30px;
    }

    .form-container > div > p{
        max-width: 500px;
        text-align: center;
    }
}

@media (max-width: 740px) {
    .form-container > form{
        width: 100%;
    }
}

@media (max-width: 600px) {
    .form-container > form{
        padding: 20px;
    }

    .form-container > form > h2{
        font-size: 25px;
    }

    .form-container > form > input,
    .form-container > form > select,
    .form-container > form > textarea{
        font-size: 12px;
    }

    .custom-input-field-phone-number > select{
        font-size: 12px;
    }

    .custom-input-field-phone-number > input{
        font-size: 12px;
    }

    .container-submit-button > button{
        width: 100%;
        font-size: 12px;
    }
}

/* FORM VALIDATION ERRORS */

.form-container > form > .error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    padding: 0;
}


/* CTA BUTTONS */

.container-cta-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;

    padding: 70px 20px;

    background-image: url("../images/photos/serious-ai-cta.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;
}

.container-cta-buttons > h3{
    font-size: 40px;
    text-align: center;

    max-width: 850px;
}

.container-cta-buttons > p{
font-size: 20px;
text-align: center;
max-width: 550px;
}

.cta-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cta-buttons > a{
    padding: 15px 20px;

    color: #fff;
    border-radius: 13px;
    text-align: center;

    text-decoration: none;
}

.cta-buttons > a:nth-child(1){
    background: linear-gradient(to right, #EE2CC0, #AB0884);
}
.cta-buttons > a:nth-child(1):hover{
    background: linear-gradient(to right, #AB0884, #AB0884);
}

.cta-buttons > a:nth-child(2){
    background: linear-gradient(to right, #383838, #242424);
}
.cta-buttons > a:nth-child(2):hover{
    background: linear-gradient(to right, #242424, #242424);
}

@media (max-width: 600px) {
    .container-cta-buttons > h3{
        font-size: 25px;
    }

    .container-cta-buttons > p{
        font-size: 16px;
    }

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

/* TABLE SECTION */

.pricing-table {
    max-width: 1200px;
    padding-bottom: 70px;
    margin: 0 auto;
    color: #fff;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2.5fr 3fr 1fr;
    align-items: center;
    padding: 26px 20px;
    border-bottom: 1px solid #323232;
    transition: background 0.25s ease;
}

.pricing-row:hover {
    background: rgba(255,255,255,0.03);
}

.plan-name {
    font-weight: 600;
    font-size: 0.95rem;
}
/*
.plan-desc {
    padding: 0 10px;
}
*/

.plan-price {
    text-align: right;
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .plan-price {
        text-align: left;
        font-size: 1rem;
    }
}

/* SECTION ANIMATION */

.js-enabled .animate {
  opacity : 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}
