/* ============================================
   MobiMan — Medical / Healthcare Style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Outfit:wght@500;600;700&display=swap');

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

:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #ccfbf1;
    --accent: #0891b2;
    --text: #1e293b;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-soft: #f0fdfa;
    --bg-section: #f8fffe;
    --border: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(13, 148, 136, 0.08);
    --shadow-hover: 0 8px 30px rgba(13, 148, 136, 0.12);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header — medical clean */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(13, 148, 136, 0.06);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Hero — calm medical */
.hero {
    background: linear-gradient(160deg, var(--bg-soft) 0%, var(--white) 50%, var(--primary-light) 100%);
    color: var(--text);
    padding: 4rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(13, 148, 136, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
}

/* Product Section */
.product-section {
    padding: 4rem 0;
    background: var(--bg);
}

.product-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-soft);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    background: var(--white);
    padding: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
    padding: 14px 18px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.25s ease;
    box-shadow: var(--shadow);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--shadow-hover);
}

.carousel-prev { left: 14px; }
.carousel-next { right: 14px; }

.carousel-dots {
    text-align: center;
    padding: 18px 0;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 6px;
    background: var(--border);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.25s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.25);
}

.product-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.product-description {
    margin-bottom: 1.75rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.product-features {
    margin-bottom: 2rem;
    display: grid;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: var(--bg-section);
    border-radius: 10px;
    transition: all 0.25s ease;
    border-left: 3px solid var(--primary);
}

.feature:hover {
    background: var(--primary-light);
}

.feature-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 22px;
}

.product-specs {
    background: var(--bg-section);
    padding: 1.75rem;
    border-radius: 14px;
    margin-bottom: 1.75rem;
    border: 1px solid var(--border);
}

.product-specs h3 {
    margin-bottom: 0.75rem;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 700;
}

.product-specs p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

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

.price-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

/* Section titles */
.section-title {
    font-family: 'Outfit', sans-serif;
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 3rem;
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* How it works */
.how-it-works {
    padding: 4rem 0;
    background: var(--bg-section);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.comparison-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}

.comparison-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.comparison-item h3 {
    margin-bottom: 1.25rem;
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 700;
}

.comparison-image {
    margin-bottom: 1.25rem;
}

.comparison-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.comparison-item p {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Benefits — medical trust */
.benefits-section {
    padding: 4rem 0;
    background: var(--bg);
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 14px;
    text-align: center;
    transition: all 0.25s ease;
    border: 1px solid var(--border);
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(0.2);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Guarantee — medical trust block */
.guarantee {
    padding: 4rem 0;
    background: linear-gradient(150deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.guarantee .section-title {
    color: var(--white);
}

.guarantee p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.85;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: var(--bg-section);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1rem;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--text);
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Contact */
.contact-section {
    padding: 4rem 0;
    background: var(--bg);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--bg-section);
    border-radius: 14px;
    min-width: 200px;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}

.contact-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.contact-item strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.contact-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer — medical dark */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
}

.footer-legal {
    margin-bottom: 2rem;
}

.footer-legal h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.legal-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.6rem;
    line-height: 1.8;
}

.legal-info strong {
    color: var(--white);
    font-weight: 600;
}

.health-notice {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.75rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.health-notice h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.health-notice p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-info-footer {
    margin-bottom: 1.5rem;
}

.contact-info-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.contact-info-footer strong {
    color: var(--white);
    font-weight: 600;
}

.contact-info-footer a {
    color: var(--primary-light);
    text-decoration: none;
}

.contact-info-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Legal pages */
.legal-page {
    padding: 4rem 0;
    min-height: 60vh;
    background: var(--bg);
}

.legal-page h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.35rem;
    margin-bottom: 2.5rem;
    color: var(--text);
    font-weight: 700;
}

.legal-page section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-page section:last-child {
    border-bottom: none;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--text);
    font-weight: 700;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 1rem;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.legal-page a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-page a:hover {
    text-decoration: underline;
}

.withdrawal-form {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid var(--border);
}

.withdrawal-form p {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 0.75rem;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.05rem;
    }

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

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .carousel-slides {
        height: 360px;
    }

    .legal-page h1 {
        font-size: 1.85rem;
    }
}

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

.product-image img,
.comparison-image img {
    background-color: var(--bg-soft);
    min-height: 180px;
    display: block;
}
