/* SETTING THE THEME */

:root{
      --gait-primary: #2DC4A0;   /* mint/teal — growth, clarity */
      --gait-secondary: #0E2217; /* deep green — trust, depth */
      --gait-accent: #A6D32B;    /* energy, optimism */
      --gait-bg:   #F5F8F6;      /* light neutral background */
      --gait-card-bg: #F9FBF8;
      --gait-border:  #D8E7DC;
      --gait-text: #111827;
}

/* GENERAL STYLES */
body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--gait-bg);
}

.coming-soon{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 520px at 20% 20%, rgba(45, 196, 160, 0.22), transparent 60%),
        radial-gradient(820px 520px at 80% 15%, rgba(166, 211, 43, 0.18), transparent 60%),
        radial-gradient(900px 620px at 70% 90%, rgba(14, 34, 23, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(245, 248, 246, 1) 0%, rgba(249, 251, 248, 1) 100%);
}

.coming-soon::before,
.coming-soon::after{
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    z-index: 0;
    opacity: 0.85;
}

.coming-soon::before{
    top: -220px;
    left: -220px;
    background: rgba(45, 196, 160, 0.16);
    box-shadow: 0 18px 60px rgba(14, 34, 23, 0.08);
}

.coming-soon::after{
    bottom: -260px;
    right: -240px;
    background: rgba(166, 211, 43, 0.14);
    box-shadow: 0 18px 60px rgba(14, 34, 23, 0.06);
}

.coming-soon h1{
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 28px 30px;
    border-radius: 24px;
    border: 1px solid var(--gait-border);
    background: rgba(249, 251, 248, 0.88);
    box-shadow: 0 18px 55px rgba(14, 34, 23, 0.12);

    font-size: clamp(44px, 5.6vw, 88px);
    font-weight: 900;
    font-style: oblique;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;

    background-image: linear-gradient(90deg, var(--gait-primary), var(--gait-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 575.98px){
    .coming-soon{ padding: 100px 18px; }
    .coming-soon h1{ padding: 22px 18px; border-radius: 18px; }
}


/*  HEADER  */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 130px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: var(--gait-bg) !important;
}

.left {
    display: flex;
    align-items: center;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu li {
    margin-left: 20px;
}

.menu a {
    text-decoration: none;
    color: var(--gait-primary);
}

.menu a:active{
    text-decoration: underline;
    color: var(--gait-text)
}

.menu a:hover {
    text-decoration: underline;
    color: var(--gait-text)
}

.menu a.active {
    text-decoration: underline;
    color: var(--gait-text);
}

.right-button{
    padding: 15px 25px;
    background-color: var(--gait-primary);
    border-radius: 12px;
}

.right-button:hover{
    background-color: var(--gait-accent);
    cursor: pointer;
}

.right-button a{
    color: white;
    text-decoration: none;
    font-weight: 600;
}



/* INTRO SECTION */
.intro {
    background-color: var(--gait-secondary);
    height: 120vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro img {
    width: 100%;
    max-width: 480px;
    height: auto;
}

.intro .image1 img {
    margin-top: -24px;
}

.intro .tag-line p{
    color: white;
}

.intro .for-only p{
    color: var(--gait-accent);
}

.btn-large {
    text-decoration: none;
    color: var(--gait-bg);
    background-color: var(--gait-primary);
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 600;
    display: inline-block;
}

.btn-large:hover {
    background-color: var(--gait-accent);
}

.intro .container .for-only p{
    text-transform: uppercase;
}

.container{
    padding-top: 90px;
}


/* INFO 1 */
.info1 {
    background-color: var(--gait-bg);
    padding: 30px 20px;
}

.info1 .title-info1 h1{
    text-transform: uppercase;
    text-align: center;
    font-size: 80px;
    font-weight: 900;
    font-style: oblique;
    line-height: 1.2;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--gait-text);
}

.info1 .title-info1 .blue{
    color: var(--gait-primary); 
}

.info1 .title-info1 .green{
    color: var(--gait-accent);
}

.info1 .tag-line p{
    text-align: center;
    font-size: 32px;
    padding-left: 100px;
    padding-right: 100px;
    color: var(--gait-text);
    margin-top: 10px;
    font-weight: 100;
}   

.info1 .description-info1 .green{
    color: var(--gait-accent);
}

.info1 .description-info1{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info1 .description-info1 .block1{
    margin-left: -500px;
}

.info1 .description-info1 .block2{
    margin-left: 0px;
}

.info1 .description-info1 .block3{
    margin-left: 500px;
}

.info1 .description-info1 .block1, .info1 .description-info1 .block2, .info1 .description-info1 .block3{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--gait-bg);
    background-color: var(--gait-secondary);
    width: 550px;
    height: 90px;
    border-radius: 15px;
    transform: skewX(-15deg);
    margin-bottom: 20px;;
}

.info1 .description-info1 .block1 p, .info1 .description-info1 .block2 p, .info1 .description-info1 .block3 p{
    padding-left: 90px;
    padding-right: 90px;
    margin-top: 16px;
}

.button-info1{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.button-info1 a{
   text-decoration: none;
   color: var(--gait-bg);
   background-color: var(--gait-primary);
   padding: 15px 30px;
   border-radius: 15px;
}


.button-info1 a:hover{
   text-decoration: none;
   color: var(--gait-bg);
   background-color: var(--gait-accent);
   padding: 15px 30px;
   border-radius: 15px;
}

/* WHAT YOU GET */

.what-you-get {
    background: #2DC4A0;
    background: linear-gradient(90deg, rgba(45, 196, 160, 1) 0%, rgba(166, 211, 43, 1) 100%);
    padding-top: 50px;
    padding-bottom: 50px;
    color: white;
    text-align: center;
}

.what-you-get .title-what-you-get h1{
    text-align: center;
    font-size: 72px;
    color: var(--gait-text);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-style: oblique;
    font-weight: 900;
    padding-right: 300px;
    padding-left: 300px;
}

.what-you-get .title-what-you-get .white{
    color: white;
}

.what-you-get .button-what-you-get {
    color: white;
    text-align: center;
}

.what-you-get .prompts,
.what-you-get .prompts h6,
.what-you-get .prompts p {
    color: white;
    text-align: left !important;
}

.what-you-get .tag-line{
    margin-top: -10px;
}

.what-you-get .tag-line p {
    color: var(--gait-text);
    text-align: center;
    font-size: 36px;
    font-weight: 100;
    padding-left: 200px;
    padding-right: 200px;
}

.what-you-get .prompts {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 60px;
}

.button-what-you-get{
    margin-top: 30px;
    margin-bottom: 50px;
}

.btn-assessment{
    background-color: transparent;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
}

.btn-assessment:hover{
    background-color: var(--gait-text);
    color: white;
    text-decoration: none;
    border: 2px solid var(--gait-primary)
}

.what-you-get .prompts h6{
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    color: var(--gait-bg);
}

.what-you-get .prompts p{
    color: var(--gait-bg);
    line-height: 1.8;
    margin: 0;
}

.what-you-get .prompt1, .what-you-get .prompt2, .what-you-get .prompt3{
    width: 300px;
    height: 320px;
    background-color: var(--gait-secondary);
    border-radius: 20px 150px 19px 20px / 20px 160px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 32px;
}


/* HOW IT WORKS */
.how-it-works{
    background: var(--gait-secondary);
    color: var(--gait-bg);
    padding-bottom: 50px;
    justify-content: center;
    text-align: center;
}

.title-how-it-works h1{
    text-align: center;
    font-size: 36px;
    color: var(--gait-bg);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-style: oblique;
    font-weight: 900;
    padding-top: 50px;
    padding-bottom: 20px;
}

.how-it-works h1{
    color: var(--gait-accent);
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
}

.how-it-works .tag-line p{
    color: var(--gait-primary);
    font-size: 24px;
    font-weight: 100;
    padding-left: 200px;
    padding-right: 200px;
    margin-bottom: 40px;
}

.how-it-works .tag-line .bold{
    font-weight: 600;
}

.how-it-works .steps h6, .how-it-works .steps p {
    color: var(--gait-text);
    text-align: left !important;
}

.how-it-works .steps h6{
    font-weight: 900;
    font-size: 20px;
}

.how-it-works .steps .white{
    color: var(--gait-bg);
}

.btn-assessment2{
    background-color: transparent;
    border: 2px solid var(--gait-bg);
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--gait-bg);
}

.btn-assessment2:hover{
    background-color: var(--gait-primary);
    color: var(--gait-bg);
    text-decoration: none;
    border: 2px solid var(--gait-primary)
}

.steps{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;;
}

.how-it-works .steps{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-it-works .steps .step1{
    margin-left: -500px;
}

.how-it-works .steps .step2{
    margin-left: 0px;
}

.how-it-works .steps .step3{
    margin-left: 500px;
}

.how-it-works .steps .step1, .how-it-works .steps .step2, .how-it-works .steps .step3{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--gait-bg);
    background-color: var(--gait-accent);
    width: 550px;
    height: 98px;
    border-radius: 15px;
    transform: skewX(-15deg);
    margin-bottom: 20px;
    padding-top: 25px;
    padding-left: 30px;
    padding-bottom: 8px;
}

.how-it-works .steps .step1 h6,
.how-it-works .steps .step2 h6,
.how-it-works .steps .step3 h6 {
    text-align: left !important;
    width: 100%;
    margin: 0 0 6px 0;
}

/* WHO WE WORK WITH */
.who-we-work-with{
    background-color: var(--gait-bg);
    padding: 80px 60px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.who-we-work-with .col1,
.who-we-work-with .col2{
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
    min-width: 0;
}

.who-we-work-with .col1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 40px;
}

.who-we-work-with .title-who-we-work-with h1{
    text-transform: uppercase;
    font-size: 64px;
    font-weight: 900;
    font-style: oblique;
    line-height: 1.05;
    margin: 0 0 10px 0;
    color: var(--gait-text);
}

.who-we-work-with .col1 .list{
    padding-left: 24px;
    margin: 12px 0 18px 0;
}

.who-we-work-with .col1 .tag-line p{
    padding: 0;
    margin: 0 0 20px 0;
    color: #8b968f;
}

.who-we-work-with .col2{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.who-we-work-with .col2 .blocky1{
    border-radius: 20px 172px 20px 20px / 20px 173px 20px 20px;
    width: 340px;
    height: 360px;
    background-color: var(--gait-secondary);
}

.who-we-work-with .col2 .blocky2{
    border-radius: 20px 132px 20px 20px / 20px 113px 20px 20px;
    width: 260px;
    height: 260px;
    background-color: var(--gait-primary);
    position: absolute;
    right: 50px;
    bottom: -50px;
}

.btn-partner{
    text-decoration: none;
    color: var(--gait-primary);
    background-color: transparent;
    padding: 12px 26px;
    border-radius: 15px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    border: 1px solid var(--gait-primary);
}

.btn-partner:hover {
    background-color: var(--gait-primary);
    color: var(--gait-bg);
}


/* FOOTER */
footer {
    background-color: var(--gait-secondary);
    color: white;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.col1, .col2, .col3 {
    flex: 1;
    margin: 0 10px;
}

.col1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.col1 .btn {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: var(--gait-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.col1 .btn:hover {
    background-color: var(--gait-accent);
}

.col2 h3 {
    margin-bottom: 15px;
    color: var(--gait-primary);
}

.col2 ul {
    list-style: none;
    padding: 0;
}

.col2 li {
    margin-bottom: 8px;
}

.col2 a {
    color: white;
    text-decoration: none;
}

.col2 a:hover {
    text-decoration: underline;
}

.col3 {
    display: flex;
    flex-direction: column;
}

.socials, .contact {
    margin-bottom: 15px;
}

.socials h3, .contact h3 {
    margin: 0 0 10px 0;
    color: var(--gait-primary);
}

.contact a {
    color: white;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--gait-border);
    padding-top: 20px;
    text-align: center;
}

.row1, .row2 {
    margin-bottom: 10px;
    font-size: 14px;
}

.row2 a {
    color: white;
    text-decoration: none;
}

.row2 a:hover {
    text-decoration: underline;
}
