/* Hormone Diagnostics Landing Page - 17578ccc */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --hd-cream: #FAF7F2;
    --hd-beige: #F0EBE3;
    --hd-beige-dark: #E5DDD1;
    --hd-green: #7A8B6F;
    --hd-green-dark: #5E6E54;
    --hd-green-light: #A8B89E;
    --hd-blush: #D4A89A;
    --hd-blush-light: #E8CFC7;
    --hd-earth: #8B7355;
    --hd-earth-light: #B09A7E;
    --hd-charcoal: #2C2C2C;
    --hd-text: #3D3D3D;
    --hd-text-light: #6B6B6B;
    --hd-white: #FFFFFF;
    --hd-font-serif: 'Cormorant Garamond', Georgia, serif;
    --hd-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --hd-radius: 12px;
    --hd-radius-lg: 20px;
    --hd-shadow: 0 4px 24px rgba(0,0,0,0.06);
    --hd-shadow-hover: 0 8px 40px rgba(0,0,0,0.1);
    --hd-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hd-page-17578ccc {
    font-family: var(--hd-font-sans);
    color: var(--hd-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.hd-page-17578ccc *, .hd-page-17578ccc *::before, .hd-page-17578ccc *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hd-container-17578ccc {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ANIMATIONS ===== */
.hd-fade-up-17578ccc {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hd-fade-up-17578ccc.hd-visible-17578ccc {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO SECTION ===== */
.hd-hero-17578ccc {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7A8B6F 0%, #5E6E54 30%, #4A5A42 60%, #3D4D35 100%);
    overflow: hidden;
}

.hd-hero-17578ccc::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212,168,154,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hd-hero-17578ccc::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(168,184,158,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hd-hero-overlay-17578ccc {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hd-hero-content-17578ccc {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}

.hd-hero-badge-17578ccc {
    display: inline-block;
    font-family: var(--hd-font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(4px);
}

.hd-hero-title-17578ccc {
    font-family: var(--hd-font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--hd-white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hd-hero-subtitle-17578ccc {
    font-family: var(--hd-font-sans);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hd-hero-buttons-17578ccc {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hd-btn-primary-17578ccc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--hd-white);
    color: var(--hd-green-dark);
    font-family: var(--hd-font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--hd-transition);
    border: 2px solid transparent;
}

.hd-btn-primary-17578ccc:hover {
    background: transparent;
    color: var(--hd-white);
    border-color: var(--hd-white);
    transform: translateY(-2px);
}

.hd-btn-secondary-17578ccc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: transparent;
    color: var(--hd-white);
    font-family: var(--hd-font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: var(--hd-transition);
}

.hd-btn-secondary-17578ccc:hover {
    border-color: var(--hd-white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.hd-hero-scroll-17578ccc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hd-scroll-line-17578ccc {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    animation: hd-scroll-pulse-17578ccc 2s ease-in-out infinite;
}

@keyframes hd-scroll-pulse-17578ccc {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== SECTION COMMON ===== */
.hd-section-label-17578ccc {
    display: inline-block;
    font-family: var(--hd-font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--hd-green);
    margin-bottom: 16px;
}

.hd-section-title-17578ccc {
    font-family: var(--hd-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--hd-charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.hd-section-desc-17578ccc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--hd-text-light);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.hd-section-header-17578ccc {
    text-align: center;
    margin-bottom: 64px;
}

.hd-section-divider-17578ccc {
    padding: 0 24px;
}

.hd-divider-line-17578ccc {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hd-beige-dark), transparent);
}

/* ===== INTRODUCTION ===== */
.hd-intro-17578ccc {
    padding: 120px 0;
    background: var(--hd-white);
}

.hd-intro-grid-17578ccc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.hd-intro-text-17578ccc .hd-section-title-17578ccc {
    text-align: left;
}

.hd-intro-desc-17578ccc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--hd-text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}

.hd-symptoms-grid-17578ccc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hd-symptom-card-17578ccc {
    background: var(--hd-cream);
    padding: 24px;
    border-radius: var(--hd-radius);
    transition: var(--hd-transition);
}

.hd-symptom-card-17578ccc:hover {
    transform: translateY(-4px);
    box-shadow: var(--hd-shadow);
}

.hd-symptom-icon-17578ccc {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hd-white);
    border-radius: 10px;
    color: var(--hd-green);
    margin-bottom: 14px;
}

.hd-symptom-card-17578ccc h4 {
    font-family: var(--hd-font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hd-charcoal);
    margin-bottom: 6px;
}

.hd-symptom-card-17578ccc p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--hd-text-light);
    line-height: 1.6;
}

/* ===== SERVICES ===== */
.hd-services-17578ccc {
    padding: 120px 0;
    background: var(--hd-cream);
}

.hd-services-grid-17578ccc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hd-service-card-17578ccc {
    background: var(--hd-white);
    padding: 40px 32px;
    border-radius: var(--hd-radius-lg);
    transition: var(--hd-transition);
    border: 1px solid transparent;
}

.hd-service-card-17578ccc:hover {
    transform: translateY(-6px);
    box-shadow: var(--hd-shadow-hover);
    border-color: var(--hd-beige-dark);
}

.hd-service-icon-17578ccc {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hd-cream), var(--hd-beige));
    border-radius: 16px;
    color: var(--hd-green);
    margin-bottom: 24px;
    transition: var(--hd-transition);
}

.hd-service-card-17578ccc:hover .hd-service-icon-17578ccc {
    background: linear-gradient(135deg, var(--hd-green), var(--hd-green-dark));
    color: var(--hd-white);
}

.hd-service-card-17578ccc h3 {
    font-family: var(--hd-font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--hd-charcoal);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hd-service-card-17578ccc p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--hd-text-light);
    line-height: 1.7;
}

/* ===== PROCESS ===== */
.hd-process-17578ccc {
    padding: 120px 0;
    background: var(--hd-white);
}

.hd-process-grid-17578ccc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.hd-process-grid-17578ccc::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hd-beige-dark), var(--hd-beige-dark), transparent);
}

.hd-process-step-17578ccc {
    text-align: center;
    position: relative;
}

.hd-step-number-17578ccc {
    font-family: var(--hd-font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--hd-green);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    background: var(--hd-white);
    display: inline-block;
    padding: 0 16px;
}

.hd-step-line-17578ccc {
    width: 40px;
    height: 2px;
    background: var(--hd-green-light);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.hd-process-step-17578ccc h3 {
    font-family: var(--hd-font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hd-charcoal);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hd-process-step-17578ccc p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--hd-text-light);
    line-height: 1.7;
}

/* ===== BENEFITS ===== */
.hd-benefits-17578ccc {
    padding: 120px 0;
    background: var(--hd-cream);
}

.hd-benefits-grid-17578ccc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hd-benefit-card-17578ccc {
    background: var(--hd-white);
    padding: 36px 28px;
    border-radius: var(--hd-radius-lg);
    text-align: center;
    transition: var(--hd-transition);
    border: 1px solid var(--hd-beige);
}

.hd-benefit-card-17578ccc:hover {
    transform: translateY(-6px);
    box-shadow: var(--hd-shadow-hover);
    border-color: var(--hd-green-light);
}

.hd-benefit-icon-17578ccc {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hd-cream), var(--hd-beige));
    border-radius: 50%;
    color: var(--hd-green);
    margin: 0 auto 20px;
    transition: var(--hd-transition);
}

.hd-benefit-card-17578ccc:hover .hd-benefit-icon-17578ccc {
    background: linear-gradient(135deg, var(--hd-green), var(--hd-green-dark));
    color: var(--hd-white);
}

.hd-benefit-card-17578ccc h3 {
    font-family: var(--hd-font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hd-charcoal);
    margin-bottom: 10px;
}

.hd-benefit-card-17578ccc p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--hd-text-light);
    line-height: 1.7;
}

/* ===== TRUST ===== */
.hd-trust-17578ccc {
    padding: 120px 0;
    background: var(--hd-white);
}

.hd-trust-inner-17578ccc {
    max-width: 1100px;
    margin: 0 auto;
}

.hd-trust-grid-17578ccc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.hd-trust-card-17578ccc {
    text-align: center;
    padding: 40px 28px;
    background: var(--hd-cream);
    border-radius: var(--hd-radius-lg);
    transition: var(--hd-transition);
}

.hd-trust-card-17578ccc:hover {
    transform: translateY(-4px);
    box-shadow: var(--hd-shadow);
}

.hd-trust-icon-17578ccc {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hd-white);
    border-radius: 50%;
    color: var(--hd-green);
    margin: 0 auto 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.hd-trust-card-17578ccc h3 {
    font-family: var(--hd-font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--hd-charcoal);
    margin-bottom: 12px;
}

.hd-trust-card-17578ccc p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--hd-text-light);
    line-height: 1.7;
}

/* Testimonials */
.hd-testimonials-17578ccc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.hd-testimonial-card-17578ccc {
    background: var(--hd-cream);
    padding: 36px;
    border-radius: var(--hd-radius-lg);
    border: 1px solid var(--hd-beige);
    transition: var(--hd-transition);
}

.hd-testimonial-card-17578ccc:hover {
    box-shadow: var(--hd-shadow);
}

.hd-testimonial-stars-17578ccc {
    display: flex;
    gap: 4px;
    color: var(--hd-blush);
    margin-bottom: 16px;
}

.hd-testimonial-text-17578ccc {
    font-family: var(--hd-font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--hd-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hd-testimonial-author-17578ccc {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hd-testimonial-avatar-17578ccc {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hd-green);
    color: var(--hd-white);
    border-radius: 50%;
    font-family: var(--hd-font-serif);
    font-size: 1.1rem;
    font-weight: 600;
}

.hd-testimonial-author-17578ccc strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hd-charcoal);
}

.hd-testimonial-author-17578ccc span {
    font-size: 0.8rem;
    color: var(--hd-text-light);
}

/* ===== CTA ===== */
.hd-cta-17578ccc {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #7A8B6F 0%, #5E6E54 40%, #4A5A42 100%);
    overflow: hidden;
}

.hd-cta-17578ccc::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 60%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(212,168,154,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hd-cta-overlay-17578ccc {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 100%);
}

.hd-cta-content-17578ccc {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hd-cta-badge-17578ccc {
    display: inline-block;
    font-family: var(--hd-font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.hd-cta-title-17578ccc {
    font-family: var(--hd-font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    color: var(--hd-white);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hd-cta-subtitle-17578ccc {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hd-cta-buttons-17578ccc {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hd-btn-light-17578ccc.hd-btn-primary-17578ccc {
    background: var(--hd-white);
    color: var(--hd-green-dark);
}

.hd-btn-light-17578ccc.hd-btn-primary-17578ccc:hover {
    background: transparent;
    color: var(--hd-white);
    border-color: var(--hd-white);
}

.hd-btn-light-17578ccc.hd-btn-secondary-17578ccc {
    color: var(--hd-white);
    border-color: rgba(255,255,255,0.4);
}

.hd-btn-light-17578ccc.hd-btn-secondary-17578ccc:hover {
    border-color: var(--hd-white);
    background: rgba(255,255,255,0.1);
}

/* ===== FAQ ===== */
.hd-faq-17578ccc {
    padding: 120px 0;
    background: var(--hd-cream);
}

.hd-faq-list-17578ccc {
    max-width: 800px;
    margin: 0 auto;
}

.hd-faq-item-17578ccc {
    border-bottom: 1px solid var(--hd-beige-dark);
}

.hd-faq-item-17578ccc:first-child {
    border-top: 1px solid var(--hd-beige-dark);
}

.hd-faq-question-17578ccc {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--hd-font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--hd-charcoal);
    text-align: left;
    transition: var(--hd-transition);
    gap: 16px;
}

.hd-faq-question-17578ccc:hover {
    color: var(--hd-green);
}

.hd-faq-chevron-17578ccc {
    flex-shrink: 0;
    color: var(--hd-green);
    transition: transform 0.3s ease;
}

.hd-faq-item-17578ccc.hd-faq-active-17578ccc .hd-faq-chevron-17578ccc {
    transform: rotate(180deg);
}

.hd-faq-answer-17578ccc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
}

.hd-faq-item-17578ccc.hd-faq-active-17578ccc .hd-faq-answer-17578ccc {
    max-height: 300px;
}

.hd-faq-answer-17578ccc p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--hd-text-light);
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hd-intro-grid-17578ccc {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hd-services-grid-17578ccc {
        grid-template-columns: repeat(2, 1fr);
    }

    .hd-process-grid-17578ccc {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .hd-process-grid-17578ccc::before {
        display: none;
    }

    .hd-benefits-grid-17578ccc {
        grid-template-columns: repeat(2, 1fr);
    }

    .hd-trust-grid-17578ccc {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hd-testimonials-17578ccc {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hd-hero-content-17578ccc {
        padding: 100px 20px 60px;
    }

    .hd-intro-17578ccc,
    .hd-services-17578ccc,
    .hd-process-17578ccc,
    .hd-benefits-17578ccc,
    .hd-trust-17578ccc,
    .hd-cta-17578ccc,
    .hd-faq-17578ccc {
        padding: 80px 0;
    }

    .hd-section-header-17578ccc {
        margin-bottom: 48px;
    }

    .hd-services-grid-17578ccc,
    .hd-benefits-grid-17578ccc {
        grid-template-columns: 1fr;
    }

    .hd-process-grid-17578ccc {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hd-symptoms-grid-17578ccc {
        grid-template-columns: 1fr;
    }

    .hd-hero-buttons-17578ccc,
    .hd-cta-buttons-17578ccc {
        flex-direction: column;
        align-items: center;
    }

    .hd-btn-primary-17578ccc,
    .hd-btn-secondary-17578ccc {
        width: 100%;
        max-width: 300px;
    }

    .hd-intro-text-17578ccc .hd-section-title-17578ccc {
        text-align: center;
    }

    .hd-intro-text-17578ccc {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hd-container-17578ccc {
        padding: 0 16px;
    }

    .hd-hero-badge-17578ccc,
    .hd-cta-badge-17578ccc {
        font-size: 10px;
        padding: 6px 18px;
    }

    .hd-service-card-17578ccc {
        padding: 28px 24px;
    }

    .hd-testimonial-card-17578ccc {
        padding: 28px;
    }
}
