* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

:root {
    --primary-color: #FF6B9D;
    --secondary-color: #FFC0CB;
    --accent-color: #FF8FAB;
    --warm-pink: #FFB6C1;
    --fresh-green: #7BC99C;
    --light-green: #B5EAD7;
    --sky-blue: #87CEEB;
    --baby-blue: #B0E0E6;
    --soft-purple: #E6E6FA;
    --cream: #FFF8DC;
    --text-primary: #333;
    --text-secondary: #666;
    --bg-light: #FFF9F9;
    --bg-green: #F0FFF4;
    --bg-blue: #F0F9FF;
}

.floating-process {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    width: 260px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(135, 206, 235, 0.25);
    transition: all 0.4s ease;
}

.floating-process:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 15px 50px rgba(123, 201, 156, 0.3);
}

.floating-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.3rem;
    color: var(--fresh-green);
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--baby-blue);
}

.floating-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    margin-bottom: 16px;
}

.floating-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.floating-step:hover {
    background: var(--bg-green);
}

.floating-step-num {
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--fresh-green), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(123, 201, 156, 0.3);
    position: relative;
    z-index: 2;
}

.floating-steps-wrapper::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--fresh-green), var(--sky-blue));
    z-index: 0;
}

.floating-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, var(--fresh-green), var(--sky-blue));
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-contact:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(123, 201, 156, 0.3);
}

.contact-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

.contact-phone {
    font-size: 1.1rem;
    font-weight: 700;
}

.floating-step-content h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 3px;
    font-weight: 600;
}

.floating-step-content p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-52%);
    }
}

.floating-process {
    animation: float 3s ease-in-out infinite;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(255, 107, 157, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-text {
    transform: translateX(100px);
}

.logo-container {
    position: relative;
    overflow: visible;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.logo-container:hover .logo-img {
    transform: scale(3);
    position: absolute;
    z-index: 1000;
}

.logo-text {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: transform 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 300;
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.section {
    min-height: 100vh;
    padding: 80px 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section {
    position: relative;
    overflow: hidden;
    transition: background 2s ease;
}

.hero-section.bg-pink {
    background: linear-gradient(135deg, #FFF9F9 0%, #FFE4EC 50%, #FFF0F5 100%);
}

.hero-section.bg-green {
    background: linear-gradient(135deg, #F0FFF4 0%, #E8F5E9 50%, #C8E6C9 100%);
}

.hero-section.bg-blue {
    background: linear-gradient(135deg, #F0F9FF 0%, #E1F5FE 50%, #B3E5FC 100%);
}

.hero-section.bg-purple {
    background: linear-gradient(135deg, #F5F5FF 0%, #EDE7F6 50%, #D1C4E9 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(176, 224, 230, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.ecg-animation {
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 100%;
    height: 60px;
    opacity: 0.3;
    z-index: 0;
}

.ecg-path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: ecg-draw 4s ease-in-out infinite;
}

@keyframes ecg-draw {
    0% {
        stroke-dashoffset: 800;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -800;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title.hidden {
    opacity: 0;
    transform: translateY(-30px);
}

.hero-subtitle {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, 'Ma Shan Zheng', cursive;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle.hidden {
    opacity: 0;
    transform: translateY(-30px);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.8s;
    animation-fill-mode: both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    position: relative;
    flex-shrink: 0;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scrollDown 1.5s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-section {
    background: var(--bg-green);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(123, 201, 156, 0.2);
    border-color: var(--fresh-green);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-family: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", "SimHei", sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.process-section {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--soft-purple) 0%, var(--baby-blue) 100%);
    border-radius: 20px;
    display: none;
}

.process-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step:hover .step-number {
    transform: rotateY(360deg);
    background: var(--primary-color);
    color: white;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.process-step h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.plans-section {
    background: linear-gradient(135deg, #FFF9F9 0%, #FFE4EC 100%);
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.2);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.baby-plan {
    border-top: 4px solid #FFB6C1;
}

.kid-plan {
    border-top: 4px solid #FFD700;
}

.teen-plan {
    border-top: 4px solid #87CEEB;
}

.plan-icon {
    font-size: 4rem;
    margin: 1rem 0;
}

.plan-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-section {
    background: var(--bg-blue);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--fresh-green);
    background: white;
    color: var(--fresh-green);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--fresh-green);
    color: white;
    border-color: var(--fresh-green);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(135, 206, 235, 0.3);
    border-color: var(--sky-blue);
}

.pricing-card.popular {
    border-color: var(--sky-blue);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sky-blue), var(--baby-blue));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.pricing-badge {
    background: var(--light-green);
    color: var(--fresh-green);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-symbol {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.price-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.vip-section {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: all 0.4s ease;
    box-sizing: border-box;
}

.vip-section:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 70px rgba(255, 107, 157, 0.4);
}

.vip-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.vip-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.vip-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vip-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.vip-section .btn-primary:hover {
    background: var(--cream);
}

#testimonials {
    background-image: url('Let-the-Magic-Begin.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.features-container {
    max-width: 1200px;
    margin: 2rem auto 0;
}

.features-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(135, 206, 235, 0.15);
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, var(--sky-blue), var(--baby-blue));
}

.feature-item:hover .feature-icon,
.feature-item:hover h4,
.feature-item:hover p {
    color: white;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 300;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.faq-section {
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--baby-blue);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--fresh-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    background-color: rgba(135, 206, 235, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0 1.5rem 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}



.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 1.5rem 2.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-section {
    background: linear-gradient(135deg, #BA68C8 0%, #CE93D8 50%, #E1BEE7 100%);
    color: white;
    text-align: center;
}

.contact-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-section .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.contact-section .btn-secondary:hover {
    background: white;
    color: #BA68C8;
}

.team-section {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.team-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-member:nth-child(1):hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #42A5F5, #64B5F6);
    box-shadow: 0 20px 50px rgba(66, 165, 245, 0.4);
}

.team-member:nth-child(1):hover .member-info {
    color: #333;
    text-shadow: none;
}

.team-member:nth-child(2):hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #7BC99C, #B5EAD7);
    box-shadow: 0 20px 50px rgba(123, 201, 156, 0.4);
}

.team-member:nth-child(2):hover .member-info {
    color: #333;
    text-shadow: none;
}

.team-member:nth-child(3):hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #87CEEB, #B0E0E6);
    box-shadow: 0 20px 50px rgba(135, 206, 235, 0.4);
}

.team-member:nth-child(3):hover .member-info {
    color: #333;
    text-shadow: none;
}

.team-member:nth-child(4):hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #FFB74D, #FFCC80);
    box-shadow: 0 20px 50px rgba(255, 183, 77, 0.4);
}

.team-member:nth-child(4):hover .member-info {
    color: #333;
    text-shadow: none;
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.member-info {
    color: white;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.8rem;
}

.member-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer {
    background: #333;
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-link-group h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-link-group ul {
    list-style: none;
}

.footer-link-group li {
    padding: 0.3rem 0;
}

.footer-link-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-group a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.audio-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.audio-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.5);
}

.audio-btn:active {
    transform: scale(0.95);
}

.audio-icon {
    display: block;
    width: 24px;
    height: 24px;
    color: white;
}

.audio-btn .pause-icon {
    display: none;
}

.audio-btn.playing .play-icon {
    display: none;
}

.audio-btn.playing .pause-icon {
    display: block;
}

@media (max-width: 834px), (max-device-width: 834px), screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 834px), screen and (max-width: 834px) and (orientation: portrait) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 3.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 3.5rem;
    }

    .hero-buttons {
        margin-top: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .ecg-animation {
        bottom: 350px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .features-container {
        padding: 0 1rem;
    }

    .floating-process {
        display: none;
    }

    .process-section {
        display: block;
        padding: 2rem 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .plans-container {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .testimonials-container {
        padding: 0 1rem;
        overflow: hidden;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}