:root {
    /* Colors */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray-50: #98989F;
    --color-gray-80: #E1E1E1;
    --color-gray-90: #F7F7F7;
    --color-gray-100: #FAFAFA;

    --color-primary: #2D6BCF;
    --color-primary-10: rgba(45, 107, 207, 0.1);
    --color-primary-30: rgba(45, 107, 207, 0.3);
    --color-secondary: #EA526E;
    --color-secondary-10: rgba(234, 82, 110, 0.1);
    --color-third: #20A0C4;
    --color-third-10: rgba(32, 160, 196, 0.1);
    /*--color-orange: #F25C46;
    --color-teal: #2FB6B2;*/

    /*--color-red-10: rgba(220, 47, 47, 0.1);
    --color-red: #DC2F2F;
    --color-purple-10: rgba(123, 111, 224, 0.1);
    --color-purple: #7B6FE0;*/

    /* Typography */
    --font-family: 'DM Sans', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;

    /* Spacing */
    --container-width: 1040px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: var(--font-family), serif;
}

body {
    font-family: var(--font-family) serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Hide scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    z-index: 305;
}

.nav-logo {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    /* min-height: 1200px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-white);
    z-index: 400;
    /*padding-top: 110px;*/
}

.hero-bg {
    position: absolute;
    /* top: -45px; */
    left: 0;
    right: 0;
    height: 1280px;
    overflow: hidden;
    z-index: 301;
}

.wave-bg {
    width: 100%;
    height: 100%;
    min-width: 1920px;
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
    filter: opacity(0.3);

    /* --- ANIMATION SETUP --- */
    /* 1. Start fully hidden (clipped 100% from the right) */
    clip-path: inset(0 100% 0 0);

    /* 2. Run the animation */

}

@keyframes wipeIn {
    0% {
        /* Start: Hidden from Right side */
        clip-path: inset(0 100% 0 0);
    }
    100% {
        /* End: Fully Visible (No clipping) */
        clip-path: inset(0 0 0 0);
    }
}

.wave-bg-2 {
    background-image: url('images/hero-main.svg');
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 100vh; /* Full viewport height */
    width: 100%;
    z-index: 1;
    background-color: #ffffff;
}

.hero-content {
    position: relative;
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 1040px;
    padding: 0 20px;
    z-index: 302;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-title-line {
    display: block;
}

.hero-title-line-2 {
    clip-path: inset(100% 100% 100 100);

    /* 2. Run the animation */
    animation: wipeIn 2s cubic-bezier(1, 1, 1, 1) forwards;
}

.gradient-text {
    color: var(--color-primary);
    /*-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;*/
    font-weight: 600;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 303;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px var(--color-primary-30);
}

.warning-text {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #98989f;
    text-align: center;
    margin-top: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.warning-text strong {
    font-weight: 700;
}

/* Dark Section */
.dark-section {
    background-color: var(--color-black);
    padding: var(--section-padding) 0;
}

/* Team Introduction Section */
.team-intro-section {
    background-color: var(--color-black);
    padding: var(--section-padding) 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-intro-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    width: 100%;
}

.team-intro-title {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    justify-content: center;
}

.team-intro-heading-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 24px;
}

.team-intro-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

.team-intro-heading-title {
    color: var(--color-gray-50);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.team-intro-description {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-gray-50);
    margin: 0;
    line-height: 1.4;
    text-align: center;
    align-self: stretch;
    max-width: 1000px;
}

.team-intro-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.team-intro-image {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 30px 5px rgba(243, 228, 228, 0.48);
}

.team-intro-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -0.4px;
    line-height: 1.36;
}

.team-into-bio-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-intro-bio {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray-50);
    margin: 0;
    letter-spacing: -0.16px;
    /*line-height: 1.2;*/
}

.team-intro-bio-btn {
    padding: 8px 14px;
    color: white;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 1);
    cursor: pointer;
}

/* Health Revolution Section (Section 1.3) */
.health-revolution-section {
    background-color: var(--color-white);
    padding: var(--section-padding) 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.health-revolution-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    width: 100%;
}

.health-revolution-title {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.health-revolution-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    line-height: 1.2;
}

.health-revolution-heading-title {
    color: var(--color-gray-50);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.health-revolution-description {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-gray-50);
    margin: 0;
    line-height: 1.4;
}

.health-revolution-cards {
    display: flex;
    gap: 42px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1040px;
}

.health-revolution-card {
    flex: 1;
    background: rgba(247, 247, 247, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 24px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.health-revolution-card:hover {
    background: rgba(247, 247, 247, 0.9);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
}

.health-revolution-cards.animate .health-revolution-card:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.health-revolution-cards.animate .health-revolution-card:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

.health-revolution-cards.animate .health-revolution-card:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.health-revolution-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    line-height: 1.2;
}

.health-revolution-card .card-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray-50);
    margin: 0;
    line-height: 1.5;
}

/* Responsive styles for health revolution moved to consolidated media queries at end of file */

/* Pricing Explanation Section (Section 1.4) */
.pricing-explanation-section {
    background: linear-gradient(90deg, rgba(238, 238, 238, 0.3) 0%, rgba(238, 238, 238, 0.3) 100%);
    padding: var(--section-padding) 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-explanation-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    width: 100%;
    max-width: 1040px;
}

.pricing-explanation-title {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.pricing-explanation-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    line-height: 1.2;
}

.price-highlight {
    color: var(--color-primary);
}

.pricing-explanation-description {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-gray-50);
    margin: 0;
    line-height: 1.4;
}

.pricing-explanation-card {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 24px;
    width: 100%;
    max-width: 1040px;
}

.pricing-explanation-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pricing-explanation-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}


.pricing-explanation-item-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    letter-spacing: -1px;
    text-align: center;
}

/* Responsive styles for pricing explanation moved to consolidated media queries at end of file */

/* Section 1.5: Why Only 100 Spots */
.why-100-section {
    background: var(--color-white);
    padding: var(--section-padding) 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-100-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    width: 100%;
    max-width: 1040px;
    text-align: center;
}

.why-100-title {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.why-100-heading {
    /*font-family: 'DM Sans', sans-serif;*/
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: -1px;
    margin: 0;
}

.spots-highlight {
    color: var(--color-primary);
}

.why-100-description {
    /*font-family: 'DM Sans', sans-serif;*/
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-gray-50);
    margin: 0;
}

.why-100-statement {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.statement-bold {
    /*font-family: 'DM Sans', sans-serif;*/
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: -0.5px;
    margin: 0;
}



/* Responsive styles for Why 100 section moved to consolidated media queries at end of file */

/* Section 1.6: Who This Is For */
.who-this-for-section {
    background: linear-gradient(90deg, rgba(238, 238, 238, 0.3) 0%, rgba(238, 238, 238, 0.3) 100%);
    padding: var(--section-padding) 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-this-for-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    width: 100%;
    max-width: 1040px;
}

.who-this-for-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    gap: 24px;
}

.who-this-for-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0;
}

.who-this-for-description {
    color: var(--color-gray-50);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 15px;
}

.who-this-for-cards {
    display: flex;
    gap: 42px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1040px;
}

.who-card {
    flex: 1;
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-90);
    border-radius: 24px;
    padding: 24px;
    height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    letter-spacing: -1px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}



.who-card:hover,
.who-card.active {
    background-color: var(--color-black);
    border-color: var(--color-black);
}

.who-card-title {
    /*font-family: 'DM Sans', sans-serif;*/
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0;
    transition: color 0.3s ease;
}

.who-card:hover .who-card-title,
.who-card.active .who-card-title {
    color: var(--color-white);
}

.who-card-list {
    list-style-position: outside;
    padding-left: 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.who-card-list li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-gray-50);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.who-card:hover .who-card-list li,
.who-card.active .who-card-list li {
    color: var(--color-gray-90);
}

/* Responsive styles for Who This Is For section moved to consolidated media queries at end of file */

/* Section 6: FAQ */
.faq-section {
    background-color: var(--color-black);
    padding: var(--section-padding) 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.faq-container {
    display: flex;
    gap: 100px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1040px;
}

.faq-header {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-title {
    /*font-family: 'DM Sans', sans-serif;*/
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
}

.faq-subtitle {
    /*font-family: 'DM Sans', sans-serif;*/
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-gray-50);
    margin: 10px;
}

.faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    letter-spacing: -1px;
}

.faq-question {
    /*font-family: 'DM Sans', sans-serif;*/
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
}

.faq-answer {
    /*font-family: 'DM Sans', sans-serif;*/
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-gray-50);
    margin: 0;
}

.faq-answer strong {
    color: var(--color-white);
    font-weight: 400;
}

/* Responsive styles for FAQ section moved to consolidated media queries at end of file */

/* Responsive styles for team intro moved to consolidated media queries at end of file */

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title.white {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 24px;
    line-height: 1.3;
    color: var(--color-gray-50);
}

.section-subtitle .gray {
    color: var(--color-gray-50);
}

.features-grid {
    display: flex;
    gap: 42px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.features-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-item {
    flex: 1;
    max-width: 318px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -1px;
}

.feature-desc {
    font-size: 17px;
    color: var(--color-gray-50);
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.feature-desc-first {
    padding: 0 65px;
}

.features-grid.animate .feature-desc {
    opacity: 1;
    transform: translateY(0);
}

/* AI Section */
.ai-section {
    background-color: var(--color-white);
    padding: var(--section-padding) 0;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.gradient-text-ai {
    /*background: linear-gradient(163.455deg, #F25C46 0%, #F7806A 40%, #2FB6B2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;*/
    color: var(--color-primary);
}

.ai-content {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ai-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.phone-display {
    flex: 0 0 490px;
    height: 484px;
    background-color: var(--color-gray-90);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
}

.phone-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.phone-image.active {
    opacity: 1;
    pointer-events: auto;
}

/* Breathing Screen */
.breathing-image-wrapper {
    position: relative;
}

.breathing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    z-index: 0;
}

.breathing-background-inner {
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 100;
}

.breathing-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 24px 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.breathing-header {
    text-align: center;
    z-index: 2;
    margin-top: 40px;
}

.breathing-title {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    color: var(--color-black);
    margin-bottom: 8px;
    letter-spacing: -1px;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.breath-text {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Text visibility controlled by JavaScript */

.breathing-subtitle {
    font-size: 16px;
    color: var(--color-gray-50);
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.breathing-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex: 1;
    position: relative;
}

.breathing-circle-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
}

.breathing-circle-outer,
.breathing-circle-inner {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    transform-origin: center;
}

.breathing-circle-outer {
    width: 180px;
    height: 180px;
    border: 3px solid rgba(242, 92, 70, 0.6);
    box-shadow: 0 0 25px rgba(242, 92, 70, 0.25);
    transition: transform 0.1s linear, opacity 0.1s linear;
    transform: scale(1.2);
    opacity: 0.8;
}

.breathing-circle-inner {
    width: 140px;
    height: 140px;
    border: 2.5px solid rgba(47, 182, 178, 0.7);
    box-shadow: 0 0 20px rgba(47, 182, 178, 0.35);
    transition: transform 0.1s linear, opacity 0.1s linear;
    transform: scale(1.2);
    opacity: 0.85;
}

.countdown-number {
    font-size: 50px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1;
    animation: countdownPulse 1s infinite ease-in-out;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Circle animations are now controlled by JavaScript for perfect synchronization */

@keyframes countdownPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.95);
        opacity: 0.9;
    }
}


/* ANS Score Screen */
.ans-score-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9F9F9 100%);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ans-header {
    text-align: center;
}

.ans-date {
    font-size: 14px;
    color: var(--color-gray-50);
    font-weight: 500;
}

.ans-score-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.score-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(
        from 180deg,
        #F25C46 0deg,
        #F7806A 120deg,
        #2FB6B2 240deg,
        #4ECDC4 300deg,
        #E1E1E1 300deg,
        #E1E1E1 360deg
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.score-ring::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 50%;
    z-index: 1;
}

.score-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-black);
    z-index: 2;
    line-height: 1;
}

.score-label {
    font-size: 12px;
    color: var(--color-gray-50);
    z-index: 2;
    margin-top: 4px;
}

.ans-chart {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 16px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 100px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(123, 111, 224, 0.3) 0%, rgba(123, 111, 224, 0.1) 100%);
    border-radius: 8px 8px 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
}

.bar.active {
    background: linear-gradient(180deg, #7B6FE0 0%, #9B8FFF 100%);
    box-shadow: 0 -2px 8px rgba(123, 111, 224, 0.3);
}

/* Daily Meal Screen */
.daily-meal-screen {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.meal-background {
    width: 90%;
    height: 100%;
    margin-top: 15%;
    margin-left: -30px;
    object-fit: contain;
    display: block;
}

.meal-images-container {
    position: absolute;
    width: 145%;
    height: 45%;
    top: 65%;
    left: 12%;
    right: 0;
    display: flex;
    gap: 12px;
    padding: 16px;
    transform: translateY(100%);
    transition: transform 0.6s ease-out;
    overflow: hidden;
}

.phone-image.active[data-screen="daily-meal"] .meal-images-container {
    transform: translateY(0);
}

.meal-image-item {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 80%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: white;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Staggered animation delays for each meal item */
.phone-image.active[data-screen="daily-meal"] .meal-image-item:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.phone-image.active[data-screen="daily-meal"] .meal-image-item:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.phone-image.active[data-screen="daily-meal"] .meal-image-item:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.phone-image.active[data-screen="daily-meal"] .meal-image-item:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.meal-image-item img {
    width: 100%;
    height: auto;
    display: block;
}

.ai-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 490px;
}

.ai-feature-row {
    display: flex;
    gap: 24px;
}

.ai-card {
    flex: 1;
    padding: 16px;
    border: 2px solid var(--color-gray-90);
    border-radius: 24px;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    touch-action: pan-y;
}

.ai-card h4 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--color-black);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.ai-card p {
    font-size: 16px;
    color: var(--color-gray-50);
    letter-spacing: -1px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.ai-card.active {
    background-color: var(--color-black);
    border-color: var(--color-black);
}

.ai-card.active h4 {
    color: var(--color-white);
}

.ai-card.active p {
    color: var(--color-gray-90);
}

/* Hover effects only on devices that support hover (desktop) */
@media (hover: hover) and (pointer: fine) {
    .ai-card:hover {
        background-color: var(--color-black);
        border-color: var(--color-black);
    }

    .ai-card:hover h4 {
        color: var(--color-white);
    }

    .ai-card:hover p {
        color: var(--color-gray-90);
    }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(90deg, rgba(238, 238, 238, 0.3) 0%, rgba(238, 238, 238, 0.3) 100%);
    padding: var(--section-padding) 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pricing-header.animate {
    opacity: 1;
    transform: translateY(0);
}



.primary {
    color: var(--color-primary);
}

.secondary {
    color: var(--color-secondary);
}


/* Pricing section money amounts animation */
.pricing-section .primary {
    opacity: 0;
    transform: scale(0.8);
    display: inline-block;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.pricing-section .secondary {
    opacity: 0;
    transform: scale(0.1);
    display: inline-block;
    transition: opacity 1s ease-in, transform 1s ease-in;
}

.pricing-section .primary.show-amount,
.pricing-section .secondary.show-amount {
    opacity: 1;
    transform: scale(1);
}

.pricing-content {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 24px;
    padding-bottom: 30px;
}

.product-image {
    flex: 0 0 auto;
}

.product-image img {
    width: 100%;
    border-radius: 12px;
    height: 250%;
}

.benefits-list {
    flex: 1;
    max-width: 992px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-80);
    border-radius: 24px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefits-list.animate .benefit-card:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateX(0);
}

.benefits-list.animate .benefit-card:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateX(0);
}

.benefits-list.animate .benefit-card:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateX(0);
}

.benefits-list.animate .benefit-card:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateX(0);
}

.benefit-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    display: block;
    width: 40px;
    height: 40px;
}


.benefit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 40px;
}

.benefit-header h4 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    white-space: nowrap;
}

.badge {
    font-size: 16px;
    font-weight: 400;
    padding: 4px 16px;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: -1px;
}

.badge.main {
    background-color: var(--color-secondary-10);
    color: var(--color-secondary);
}

.badge.sec {
    background-color: var(--color-third-10);
    color: var(--color-third);
}

.benefit-content p {
    font-size: 16px;
    color: var(--color-gray-50);
    letter-spacing: -1px;
    line-height: 1.3;
}

/* Join Section */
.join-section {
    background: linear-gradient(100deg, var(--color-primary-10) 20%, var(--color-primary-10) 40%, var(--color-primary-10) 100%);
    padding: var(--section-padding) 0;
}

.steps-container {
    position: relative;
    margin: 100px auto;
    max-width: 722px;
    width: 100%;
    height: 280px;
}

.steps-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 0;
}

.step {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    width: 240px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step:nth-child(2) {
    left: 40px;
    transform: translateX(-50%);
}

.step:nth-child(3) {
    left: 50%;
    transform: translateX(-50%);
}

.step:nth-child(4) {
    right: 40px;
    transform: translateX(50%);
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    border-radius: 50%;
    z-index: -1;
}

.step-icon.outline {
    border: 4px solid var(--color-primary-10);
    background: linear-gradient(90deg, var(--color-primary-10) 0%, var(--color-primary-10) 100%);
}

.step-icon svg path {
    transition: fill 0.3s ease;
}

/* Hover effect: outline icons become black */
.step:hover .step-icon.outline {
    background-color: var(--color-black);
    border-color: var(--color-black);
}

.step-hover-for-click {
    .step-icon.outline {
        background-color: var(--color-black);
        border-color: var(--color-black);
    }

    .step-icon.outline svg path {
        fill: var(--color-white);
    }
}

/* Hover effect: SVG inside step-icon becomes white */
.step:hover .step-icon.outline svg path {
    fill: var(--color-white);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.step p {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-gray-50);
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

/* Hover effect: description text becomes black */
.step:hover p {
    color: var(--color-black);
}

/* Email Form */
.email-form {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    background-color: var(--color-white);
    border: transparent;
    border-radius: 999px;
    padding: 16px 16px 16px 32px;
    align-items: center;
}

.email-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 20px;
    /*font-family: var(--font-family);*/
    color: var(--color-gray-50);
}

.email-form input::placeholder {
    color: var(--color-gray-50);
}

.btn-gradient {

    background: linear-gradient(0deg, var(--color-primary) 0%, var(--color-primary) 100%), #FFF;
    box-shadow: 0 0 16px 0 rgba(32, 160, 196, 0.30);
    /*background: linear-gradient(111.238deg, #F25C46 0%, #F7806A 40%, #2FB6B2 100%);*/
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px var(--color-primary-30);
}

.btn-gradient:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}


/* Toast Notifications */
.toast-notifications {
    position: relative;
    margin: 40px auto 0;
    max-width: 720px;
    display: flex;
    justify-content: center;
    z-index: 10;
}



/* Toast animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(0px); /* Starts 30px to the left */
    }
    to {
        opacity: 0.3;
        transform: translateX(0); /* Ends at natural position */
    }
}

.toast {
    background-color: var(--color-white);
    border-radius: 999px;
    padding: 16px 24px;
    box-shadow: 0px 4px 20px rgba(145, 145, 145, 0.4);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    animation: fadeInUp 0.5s ease forwards;
}

.toast.hidden {
    animation: fadeOutUp 0.5s ease forwards;
    pointer-events: none;
}

.toast-icon {
    flex-shrink: 0;
}

/* SVG Layered Animation */
.svg-outer,
.svg-inner,
.svg-innermost {
    transform-origin: center;
    opacity: 0;
    transform: scale(0.3);
}

@keyframes svgScaleIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}



/* Toast icon animation - trigger when toast appears */
.toast:not(.hidden) .svg-outer {
    animation: svgScaleIn 0.4s ease-out forwards;
}

.toast:not(.hidden) .svg-inner {
    animation: svgScaleIn 0.4s ease-out 0.2s forwards;
}

.toast:not(.hidden) .svg-innermost {
    animation: svgScaleIn 0.4s ease-out 0.4s forwards;
}

.toast-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.toast-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-gray-50);
}

.toast-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -0.32px;
}

/* ============================================
   CONSOLIDATED RESPONSIVE DESIGN STYLES
   ============================================ */

/* 1440px Breakpoint */
@media (max-width: 1440px) {
    .health-revolution-section {
        padding: var(--section-padding) 240px;
    }

    .pricing-explanation-section {
        padding: var(--section-padding) 240px;
    }

    .why-100-section {
        padding: var(--section-padding) 240px;
    }

    .who-this-for-section {
        padding: var(--section-padding) 240px;
    }

    .faq-section {
        padding: var(--section-padding) 240px;
    }

    .team-intro-section {
        padding: var(--section-padding) 240px;
    }
}

/* 1024px Breakpoint */
@media (max-width: 1024px) {
    .health-revolution-section {
        padding: var(--section-padding) 120px;
    }

    .pricing-explanation-section {
        padding: var(--section-padding) 120px;
    }

    .why-100-section {
        padding: var(--section-padding) 120px;
    }

    .why-100-description {
        font-size: 23px;
    }

    .statement-bold {
        font-size: 36px;
    }

    .who-this-for-section {
        padding: var(--section-padding) 120px;
    }

    .who-this-for-heading {
        font-size: 36px;
    }

    .who-this-for-description {
        font-size: 17px;
    }

    .who-card:nth-child(1) {
        min-height: 360px;
    }

    .who-card:nth-child(2) {
        min-height: 260px;
    }

    .faq-section {
        padding: var(--section-padding) 120px;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-subtitle {
        font-size: 22px;
    }

    .faq-question {
        font-size: 24px;
    }

    .faq-answer {
        font-size: 16px;
    }

    .team-intro-section {
        padding: var(--section-padding) 120px;
    }
}

/* 768px Breakpoint */
@media (max-width: 768px) {
    .warning-text {
        font-size: 16px;
    }

    .team-intro-heading-title {
        font-size: 16px;
    }

    .health-revolution-section {
        padding: var(--section-padding) 60px;
    }

    .health-revolution-container {
        gap: 60px;
    }

    .health-revolution-heading {
        font-size: 32px;
    }

    .health-revolution-heading-title {
        font-size: 16px;
    }

    .health-revolution-description {
        font-size: 20px;
    }

    .health-revolution-cards {
        flex-direction: column;
        gap: 24px;
    }

    .health-revolution-card {
        height: auto;
        min-height: 180px;
    }

    .health-revolution-card .card-description {
        font-size: 18px;
    }

    .pricing-explanation-section {
        padding: var(--section-padding) 60px;
    }

    .pricing-explanation-container {
        gap: 60px;
    }

    .pricing-explanation-heading {
        font-size: 36px;
    }

    .pricing-explanation-description {
        font-size: 19px;
    }

    .pricing-explanation-items {
        gap: 30px;
    }

    .why-100-section {
        padding: var(--section-padding) 60px;
    }

    .why-100-container {
        gap: 60px;
    }

    .why-100-heading {
        font-size: 36px;
    }

    .why-100-description {
        font-size: 19px;
    }

    .statement-bold {
        font-size: 36px;
    }

    .who-this-for-section {
        padding: var(--section-padding) 60px;
    }

    .who-this-for-container {
        gap: 60px;
    }

    .who-this-for-heading {
        font-size: 36px;
    }

    .who-this-for-description {
        font-size: 17px;
    }

    .who-this-for-cards {
        flex-direction: column;
        gap: 24px;
    }

    .who-card:nth-child(1) {
        min-height: 360px;
    }

    .who-card:nth-child(2) {
        min-height: 260px;
    }

    .who-card-title {
        font-size: 22px;
    }

    .who-card-list li {
        font-size: 16px;
    }

    .faq-section {
        padding: 60px 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .faq-container {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .faq-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-list {
        gap: 40px;
        align-items: center;
    }

    .faq-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .faq-question {
        font-size: 24px;
    }

    .faq-answer {
        font-size: 16px;
    }

    .team-intro-section {
        padding: var(--section-padding) 60px;
    }

    .team-intro-container {
        gap: 60px;
    }

    .team-intro-heading {
        font-size: 32px;
    }

    .team-intro-description {
        font-size: 16px;
    }

    .team-intro-name {
        font-size: 20px;
    }

    .team-intro-bio {
        font-size: 14px;
    }
}

/* 480px Breakpoint */
@media (max-width: 480px) {
    .warning-text {
        font-size: 16px;
    }

    .hero-content {
        gap: 30px;
    }

    .health-revolution-section {
        padding: var(--section-padding) 20px;
    }

    .health-revolution-heading {
        font-size: 32px;
    }

    .health-revolution-description {
        font-size: 18px;
    }

    .pricing-explanation-section {
        padding: var(--section-padding) 20px;
    }

    .pricing-explanation-heading {
        font-size: 32px;
    }

    .pricing-explanation-description {
        font-size: 19px;
    }

    .why-100-section {
        padding: var(--section-padding) 20px;
    }

    .why-100-heading {
        font-size: 32px;
    }

    .why-100-description {
        font-size: 17px;
    }

    .statement-bold {
        font-size: 36px;
    }

    .who-this-for-section {
        padding: var(--section-padding) 20px;
    }

    .who-this-for-heading {
        font-size: 36px;
    }

    .who-this-for-description {
        font-size: 17px;
    }

    .who-card {
        padding: 20px;
    }

    .who-card:nth-child(1) {
        min-height: 360px;
    }

    .who-card:nth-child(2) {
        min-height: 260px;
    }

    .faq-section {
        padding: 60px 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .faq-container {
        align-items: center;
    }

    .faq-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-list {
        align-items: center;
    }

    .faq-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .faq-question {
        font-size: 24px;
    }

    .faq-answer {
        font-size: 16px;
    }

    .team-intro-section {
        padding: var(--section-padding) 20px;
    }

    .team-intro-heading {
        font-size: 28px;
    }

    .team-intro-description {
        font-size: 16px;
    }
}

/* ============================================
   ADDITIONAL RESPONSIVE STYLES
   ============================================ */

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }

    .ai-content {
        flex-direction: column;
    }

    .phone-display {
        flex: 0 0 auto;
        width: 100%;
        max-width: 490px;
    }

    .pricing-content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    html, body {
        overflow-x: hidden;
    }

    .wave-bg {
        top: -2%;
        left: -5%;
    }

    .meal-background {
        width: 100%;
    }

    .meal-images-container {
        width: 145%;
        left: 10%;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 140px 20px 80px;
        display: flex;
        align-items: center;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        gap: 8px;
    }

    .hero-content {
        gap: 50px;
    }

    .section-title {
       /* font-size: 32px;*/
    }

    .section-subtitle {
        font-size: 18px;
        margin-top: 16px;
    }

    .features-grid {
        flex-direction: column;
        gap: 48px;
        padding: 0 10px;
    }

    .feature-item {
        max-width: 100%;
    }

    .feature-desc-first {
        padding: 0 75px;
    }

    /* AI Section Mobile */
    .ai-content {
        flex-direction: column;
        gap: 42px;
    }

    .phone-display {
        flex: 0 0 auto;
        width: 100%;
        max-width: 360px; /* Limit width on mobile */
        aspect-ratio: 490/484; /* Maintain aspect ratio */
        height: auto;
        margin: 0 auto;
    }

    .ai-feature-row {
        flex-direction: row;
        gap: 16px;
    }

    /*.ai-feature-row:nth-child(2) {
        display: none;
    }*/

    .ai-features {
        gap: 16px;
    }

    .ai-card {
        height: auto;
        min-height: 230px;
        padding: 20px;
    }

    /* Pricing Section Mobile */
    .product-image img {
        height: auto; /* Fix strict height */
        max-height: 400px;
        object-fit: contain;
    }

    .pricing-header {
        margin-bottom: 60px;
    }

    .pricing-content {
        padding: 0 20px;
    }

    .benefits-list {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .benefit-card {
        flex-direction: row;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .benefit-icon {
        flex-shrink: 0;
    }

    .benefit-content {
        width: 100%;
    }

    .benefit-header {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 8px;
        width: 100%;
    }

    .benefit-header h4 {
        white-space: normal;
        font-size: 18px;
        line-height: 1.3;
    }

    .badge {
        font-size: 14px;
        padding: 4px 12px;
    }

    .benefit-content p {
        font-size: 15px;
        line-height: 1.4;
    }

    .join-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Join Section Mobile */
    .steps-container {
        flex-direction: row;
        display: flex;
        align-items: flex-start;
        height: auto;
        gap: 42px;
        margin: 60px auto;
    }

    .steps-line {
        display: flex;
        max-width: 80%;
        left: 10%;
    }

    .step {
        position: relative;
        width: 100%;
        max-width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
        padding: 0;
    }

    .step-icon {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
    }

    .step-icon svg {
        width: 50px;
        height: 50px;
    }

    .step h3 {
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }

    .step p {
        font-size: 16px;
        margin: 0;
    }


    .email-form {
        display: flex;
        flex-direction: row;
        padding: 8px;
        gap: 8px;
        border-radius: 99px;
        justify-content: space-between;
    }

    .email-form input {
        padding: 16px;
        text-align: start;
        width: 100%;
        border-radius: 12px;
    }

    .btn-gradient {
        width: 40%;
        padding: 16px;
    }

    .toast {
        max-width: calc(100vw - 32px);
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
       /* font-size: 28px;*/
    }

    .feature-desc-first {
        padding: 0 85px;
    }

    .nav-logo {
        font-size: 24px;
    }
    
    .phone-display {
        border-radius: 20px;
    }

    .meal-background {
        width: 100%;
    }

    .meal-images-container {
        width: 145%;
        left: 10%;
    }
}

/* Animation States */
[data-animate] {
    opacity: 0;
}

[data-animate="fade-in"] {
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-in"].animate {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="slide-in"] {
    transform: translateX(-30px);
}

[data-animate="stagger"] {
    opacity: 1;
}

/* Section 2 Title Animation */
.section-title[data-animate="fade-in"] {
    transition-delay: 0s;
}

.section-subtitle[data-animate="fade-in"] {
    transition-delay: 0.2s;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Team Intro Section (1.2) Animations */
.team-intro-title[data-animate="fade-in"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.team-intro-title[data-animate="fade-in"].animate {
    opacity: 1;
    transform: translateY(0);
}

.team-intro-content[data-animate="fade-in"] {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.team-intro-content[data-animate="fade-in"].animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* CEO Image Special Animation */
.team-intro-image {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.team-intro-content.animate .team-intro-image {
    animation: imageReveal 1.2s ease forwards;
}

@keyframes imageReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Hover effect for CEO image */
.team-intro-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
