/* General Setup */
body {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    background-color: #FFFFFF;
    color: #4A4A4A;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reusable Components */
.emmo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.emmo-section {
    padding: 6rem 0;
}

.emmo-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.emmo-heading-primary {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.emmo-heading-secondary {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.emmo-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
    max-width: 550px;
}

.emmo-highlight-gradient {
    background: linear-gradient(90deg, #8253C2, #F45346);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.emmo-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.emmo-btn-primary {
    background: #611F69;
    color: #fff;
}
.emmo-btn-primary:hover {
    background: #5a359a;
    transform: translateY(-2px);
}

.emmo-btn-secondary {
    background-color: #fff;
    color: #611F69;
    border: 1px solid #611F69;
}
.emmo-btn-secondary:hover {
    background-color: #f5f0ff;
    transform: translateY(-2px);
}

.emmo-btn-dark {
    background-color: #611F69;
    color: #fff;
}
.emmo-btn-dark:hover {
    background-color: #4d1954;
    transform: translateY(-2px);
}

.emmo-text-center {
    text-align: center;
}

/* Animation Keyframes */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Section Appear Animation */
.emmo-animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.emmo-animate-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Hero Section */
.emmo-hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.emmo-hero-box {
    max-width: 1200px;
    margin: 0 auto;
    background: #F5F0FD;
    border-radius: 24px;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.emmo-hero-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.emmo-hero-content {
    flex-basis: 60%;
    z-index: 10;
    padding-left: 2rem;
}

.emmo-hero-assessed {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.emmo-assessed-faces {
    display: flex;
}

.emmo-assessed-faces img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: -15px;
}

.emmo-assessed-faces img:first-child {
    margin-left: 0;
}

.emmo-hero-assessed p {
    margin: 0;
    font-weight: 500;
}

.emmo-hero-image-area {
    flex-basis: 40%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emmo-hero-bg-circles {
    position: absolute;
    top: 90%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.emmo-hero-bg-circles .circle {
    position: absolute;
    border-radius: 50%;
    background-color: #CEBAD1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.emmo-hero-bg-circles .circle-1 {
    width: 1000px;
    height: 1000px;
    opacity: 0.4;
}
.emmo-hero-bg-circles .circle-2 {
    width: 800px;
    height: 800px;
    opacity: 0.6;
}
.emmo-hero-bg-circles .circle-3 {
    width: 600px;
    height: 600px;
    opacity: 0.6;
}


.emmo-hero-main-img {
    max-width: 450px;
    position: relative;
    z-index: 5;
    top: 6.2rem;
}

.emmo-hero-icon {
    position: absolute;
    z-index: 6;
    animation: floatAnimation 4s ease-in-out infinite;
}
.emmo-hero-icon-1 { top: 40%; left: -2%; width: 130px; animation-delay: 0.5s; }
.emmo-hero-icon-2 { top: 47%; right: -2%; width: 130px; animation-delay: 1s; }


/* Best EI Tests Section */
.emmo-best-bg-section {
    background: #f3efff;
}

.best-ei-grid .emmo-heading-secondary span{
 bottom:-24px;
}

.best-ei-grid {
    align-items: start;
}

.best-ei-grid .emmo-best-image-area {
    grid-column: 2;
    grid-row: 1 / 3;
}
.best-ei-grid .emmo-heading-secondary {
    grid-column: 1;
    grid-row: 1;
}
.best-ei-grid .emmo-paragraph {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
}

.emmo-best-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.emmo-best-main-img {
    position: relative;
    z-index: 5;
    top: 3.2rem;
    max-width: 350px;
    border-radius: 20px;
}

.emmo-best-bg-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.emmo-best-bg-circles .circles {
    position: absolute;
    border-radius: 50%;
    background-color: #611F69;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.emmo-best-bg-circles .circles-1 {
    width: 400px;
    height: 400px;
    opacity: 0.1;
}
.emmo-best-bg-circles .circles-2 {
    width: 300px;
    height: 300px;
    opacity: 0.1;
}
.emmo-best-bg-circles .circles-3 {
    width: 200px;
    height: 200px;
    opacity: 0.1;
}

.emmo-emoji-icon {
    position: absolute;
    z-index: 6;
    width: 80px;
    height: 80px;
    animation: floatAnimation 5s ease-in-out infinite;
}
.emmo-emoji-icon-1 { top: 10%; right: 15%; animation-delay: 0.2s; }
.emmo-emoji-icon-2 { top: -15%; left: 30%; animation-delay: 1.2s; }
.emmo-emoji-icon-3 { top: 40%; left: 5%; animation-delay: 0.8s; }
.emmo-emoji-icon-4 { bottom: 5%; left: 10%; animation-delay: 1.5s; }
.emmo-emoji-icon-5 { bottom: 15%; right: 10%; animation-delay: 0.5s; }


/* What Are Tests Section */
.emmo-light-bg {
    background-color: #fff;
}
.emmo-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.emmo-list-item {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}
.emmo-list-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.emmo-what-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.emmo-what-main-img {
    border-radius: 20px;
    position: relative;
    z-index: 5;
}

.emmo-banner {
    background: #EFE9F0;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.emmo-banner p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #611F69;
}
.emmo-banner-buttons {
    display: flex;
    gap: 1rem;
}


/* Types of Tests Section */
.emmo-cards-bg-section{
    background: #F7F2FF;
}

.emmo-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.emmo-type-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 6px 2px rgba(0, 0, 0, 0.05);
    position: relative;
}
.emmo-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.emmo-type-card-icon-bg {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1;
}
.emmo-type-card-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}
.emmo-type-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}
.emmo-type-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}


/* Why Use MyAnatomy's Section */
.emmo-dark-purple-bg {
    background: #833AAF;
}
.emmo-why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}
.emmo-why-header .emmo-heading-secondary {
    flex-basis: 60%;
    margin: 0;
}
.emmo-why-header .emmo-subheading-white {
    flex-basis: 40%;
    margin: 0;
    max-width: none;
}
.emmo-text-white {
    color: #fff;
}
.emmo-subheading-white {
    color: #E9D5FF;
    font-size: 1.125rem;
    line-height: 1.7;
}
.emmo-stats-box {
    background-color: #fff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.emmo-stat-item {
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}
.emmo-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: #e5e7eb;
}
.emmo-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #66A349;
}
.emmo-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin-top: 0.5rem;
    display: block;
}

/* CTA Section */
.emmo-cta-box {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(35deg, rgba(225, 244, 255, 0.60) 12%, rgba(249, 225, 255, 0.80) 27%, rgba(255, 230, 233, 0.60) 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
}
.emmo-cta-heading {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}
.emmo-cta-subheading {
    color: #555;
    font-size: 1.2rem;
    margin: 0 auto 2rem auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .emmo-grid-2col {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .emmo-paragraph {
        margin-left: auto;
        margin-right: auto;
    }
    .emmo-hero-flex-container {
        flex-direction: column;
    }
    .emmo-hero-box {
        padding: 2rem;
    }
    .emmo-hero-content {
        order: 1;
        padding: 0;
        width: 100%;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }
    .emmo-hero-icon-1 { top: 40%; left: -29%; width: 130px; animation-delay: 0.5s; }
    .emmo-hero-icon-2 { top: 47%; right: -29%; width: 130px; animation-delay: 1s; }
    .emmo-hero-image-area {
        order: 2;
        width: 100%;
        margin-top: 3rem;
    }

    .emmo-emoji-icon-1 { top: 10%; right: 0%; animation-delay: 0.2s; }
    .emmo-emoji-icon-2 { top: -15%; left: 10%; animation-delay: 1.2s; }
    .emmo-emoji-icon-3 { top: 40%; left: -5%; animation-delay: 0.8s; }
    .emmo-emoji-icon-4 { bottom: 5%; left: 0%; animation-delay: 1.5s; }
    .emmo-emoji-icon-5 { bottom: 15%; right: 0%; animation-delay: 0.5s; }
    
    .best-ei-grid {
        align-items: center;
    }
    .best-ei-grid .emmo-best-image-area,
    .best-ei-grid .emmo-heading-secondary,
    .best-ei-grid .emmo-paragraph {
        grid-column: 1;
        grid-row: auto;
    }
    .best-ei-grid .emmo-heading-secondary { order: 1; }
    .best-ei-grid .emmo-best-image-area { order: 2; }
    .best-ei-grid .emmo-paragraph { order: 3; }

    .emmo-list {
        display: inline-flex;
        text-align: left;
    }

    .emmo-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .emmo-stats-box {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .emmo-banner {
        flex-direction: column;
        gap: 1.5rem;
    }
    .emmo-hero-assessed {
        justify-content: center;
    }
    .emmo-why-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    .emmo-stat-item {
        padding: 1.5rem 1rem;
    }
    .emmo-stat-item:not(:last-child)::after {
        display: none;
    }
    .emmo-stat-item:not(:last-child) {
        border-bottom: 1px solid #e5e7eb;
    }
}

@media (max-width: 768px) {
    .emmo-heading-primary { font-size: 2.25rem; }
    .emmo-heading-secondary { font-size: 2rem; }
    .emmo-section { padding: 3rem 0; }
    .emmo-container { padding: 0 1.5rem; }
    
    .emmo-hero-content { 
        margin-top: 0;
    }
    .emmo-hero-assessed {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .emmo-types-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .emmo-type-card {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .emmo-what-image-wrapper {
        display: none;
    }

    .emmo-banner p { font-size: 1.1rem; }
    .emmo-banner-buttons { flex-direction: column; width: 100%;}
    .emmo-btn { width: 100%; box-sizing: border-box; text-align: center;}

    .emmo-why-header {
        text-align: center;
    }
}
