/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00B8D4;
    --secondary-color: #00BFA5;
    --dark-bg: #0a1628;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #00B8D4 0%, #00BFA5 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: var(--shadow-lg);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-trial {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #00B8D4 0%, #00BFA5 100%);
    color: var(--white);
    padding: 4rem 0;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    text-align: left;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 500px;
}

.hero-image-main {
    position: relative;
    z-index: 2;
    max-width: 280px;
    animation: floatMain 3s ease-in-out infinite;
}

.hero-image-main img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image-secondary {
    position: absolute;
    right: -20px;
    bottom: 40px;
    z-index: 1;
    max-width: 260px;
    animation: floatSecondary 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-image-secondary img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.hero-visual:hover .hero-image-main img {
    transform: scale(1.05) rotate(-2deg);
}

.hero-visual:hover .hero-image-secondary img {
    transform: scale(1.05) rotate(2deg);
}

@keyframes floatMain {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatSecondary {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* System Capabilities */
.capabilities {
    padding: 4rem 0;
    background: var(--light-bg);
}

.section-note {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* Core Services Section */
.core-services {
    padding: 5rem 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.core-service-card {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.core-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.core-service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.core-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.core-service-card:hover .core-service-image img {
    transform: scale(1.1);
}

.core-service-content {
    padding: 2rem;
}

.core-service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.core-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.core-service-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.core-service-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.core-service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.core-service-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.core-service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.core-service-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.core-service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Lifestyle & Nutrition Services */
.lifestyle-services {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfeff 100%);
}

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

.lifestyle-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.lifestyle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 184, 212, 0.15);
}

.lifestyle-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.lifestyle-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(255,255,255,0.8));
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.lifestyle-card:hover .lifestyle-image img {
    transform: scale(1.1);
}

.lifestyle-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lifestyle-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.lifestyle-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.lifestyle-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.lifestyle-content > p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.lifestyle-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.lifestyle-features li {
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.lifestyle-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    display: inline-block;
    margin-bottom: 1rem;
}

.service-icon .icon {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Approach Card Specific Styles */
.approach-card {
    grid-template-columns: 2fr 1fr;
}

.approach-card .service-content {
    grid-column: 1;
}

.full-width {
    width: 100%;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.approach-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.approach-icon {
    width: 32px;
    height: 32px;
    stroke: var(--primary-color);
    stroke-width: 2;
    flex-shrink: 0;
}

.approach-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.approach-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Product Advantages */
.advantages {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.advantage-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-light);
}

/* New Product Advantages Grid */
.advantages-grid-new {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.advantage-card-new {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-card-new:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.advantage-card-new:nth-child(even) .advantage-image-wrapper {
    order: 2;
}

.advantage-card-new:nth-child(even) .advantage-content {
    order: 1;
}

.advantage-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage-image-wrapper img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 184, 212, 0.15);
    transition: transform 0.3s;
}

.advantage-card-new:hover .advantage-image-wrapper img {
    transform: scale(1.05);
}

.advantage-content {
    text-align: left;
}

.advantage-card-new:nth-child(even) .advantage-content {
    text-align: left;
}

.advantage-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.advantage-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantage-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Performance Chart */
.performance {
    padding: 5rem 0 2rem 0;
    background: var(--white);
}

/* Product Showcase */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    width: 100%;
    max-width: 280px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 184, 212, 0.2);
}

.product-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.product-item:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-info {
    width: 100%;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

#performanceChart {
    width: 100%;
    height: 400px;
    margin-top: 2rem;
}

/* Partners Section */
.partners {
    padding: 3rem 0 5rem 0;
    background: var(--light-bg);
}

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

.partner-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-visual {
        order: 1;
        min-height: 400px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image-main {
        max-width: 200px;
    }

    .hero-image-secondary {
        max-width: 180px;
        right: -10px;
        bottom: 20px;
    }

    .core-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .core-service-image {
        height: 180px;
    }

    .core-service-content h3 {
        font-size: 1.25rem;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lifestyle-image {
        height: 180px;
    }

    .lifestyle-content h3 {
        font-size: 1.15rem;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card .service-image {
        order: -1;
    }

    .approach-card {
        grid-template-columns: 1fr;
    }

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

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-image-wrapper {
        max-width: 220px;
    }

    .advantage-card-new {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 2rem;
    }

    .advantage-card-new:nth-child(even) .advantage-image-wrapper {
        order: -1 !important;
    }

    .advantage-card-new:nth-child(even) .advantage-content {
        order: 0 !important;
    }

    .advantage-image-wrapper img {
        max-width: 240px;
    }

    .advantage-content h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.6s ease-out;
}
