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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
}

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

/* Header */
.header {
    background: #ffffff;
    border-bottom: 2px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    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 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: 3.25rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.375rem;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: -0.3px;
    max-width: 700px;
    margin: 0 auto;
}

/* Product Section */
.product-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.carousel-slides {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f8f8;
}

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

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

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

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: #ffffff;
    padding: 20px;
}

.carousel-slide img.packaging-slide-image {
    object-position: center bottom;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 14px 18px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

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

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 6px;
    background-color: #d0d0d0;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #1a1a1a;
    transform: scale(1.3);
}

.product-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.product-description {
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-features {
    margin-bottom: 2.5rem;
    display: grid;
    gap: 0.875rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid #1a1a1a;
}

.feature:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.feature-icon {
    color: #1a1a1a;
    min-width: 28px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.product-specs {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #e8e8e8;
}

.product-specs h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.375rem;
    font-weight: 700;
}

.specs-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    gap: 0.7rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
}

.spec-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.8rem;
    min-height: 100%;
    scroll-snap-align: start;
}

.spec-card strong {
    color: var(--text);
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.spec-card span {
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.9rem;
}

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

.price-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 26, 26, 0.4);
    background: #2d2d2d;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.flow-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
    align-items: start;
}

.flow-visual {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.9rem;
    position: sticky;
    top: 94px;
    box-shadow: 0 12px 28px rgba(18, 53, 58, 0.1);
}

.flow-visual img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.flow-steps {
    display: grid;
    gap: 0.85rem;
}

.flow-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.9rem;
    box-shadow: 0 8px 22px rgba(18, 53, 58, 0.08);
}

.flow-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(145deg, #0ea5a4 0%, #0b8a89 100%);
}

.flow-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.flow-step h3 {
    margin-bottom: 0.2rem;
    color: var(--text);
    font-size: 1.08rem;
}

.flow-step p {
    color: var(--muted);
    line-height: 1.65;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--bg);
}

.benefits-alt {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.4rem;
    align-items: start;
}

.benefits-alt-intro {
    position: sticky;
    top: 94px;
    background: linear-gradient(160deg, #0f8f8e 0%, #0b6f6f 100%);
    color: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 16px 34px rgba(11, 111, 111, 0.22);
}

.benefits-label {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.85rem;
}

.benefits-alt-intro h2 {
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: 0.9rem;
}

.benefits-alt-intro p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

.benefits-steps {
    display: grid;
    gap: 0.8rem;
}

.benefits-step {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.85rem;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.9rem;
    box-shadow: 0 6px 18px rgba(18, 53, 58, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefits-step:nth-child(odd) {
    margin-right: 1.3rem;
}

.benefits-step:nth-child(even) {
    margin-left: 1.3rem;
}

.benefits-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(18, 53, 58, 0.1);
}

.step-num {
    min-width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    background: linear-gradient(145deg, #831843 0%, #db2777 100%);
    color: #fff;
}

.benefits-step h3 {
    font-size: 1.06rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.benefits-step p {
    color: var(--muted);
    line-height: 1.58;
    font-size: 0.95rem;
}

/* Social Responsibility Section */
.social-responsibility {
    padding: 5rem 0;
    background: #f8f8f8;
}

.responsibility-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.responsibility-image {
    margin-bottom: 2.5rem;
}

.responsibility-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.responsibility-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.9;
}

/* Guarantee Section */
.guarantee {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    color: #fff;
}

.guarantee .section-title {
    color: #fff;
}

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

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #ffffff;
}

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

.faq-item {
    background: linear-gradient(145deg, #ffffff 0%, #f7fcfb 100%);
    border: 1px solid #cfe6e4;
    border-radius: 16px;
    padding: 1.15rem 1.2rem;
    margin-bottom: 1.25rem;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0ea5a4 0%, #db2777 100%);
    opacity: 0.85;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(18, 53, 58, 0.12);
    border-color: #b6dedd;
}

.faq-item h3 {
    color: var(--text);
    margin-bottom: 0;
    font-size: 1.14rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding: 0.25rem 3rem 0.25rem 0.45rem;
    line-height: 1.45;
}

.faq-item p {
    color: var(--muted);
    line-height: 1.78;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
    padding-left: 0.45rem;
}

.faq-item h3::after {
    content: "+";
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    background: linear-gradient(145deg, #0ea5a4 0%, #0b8a89 100%);
    box-shadow: 0 6px 14px rgba(11, 138, 137, 0.35);
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.active h3::after {
    content: "−";
    background: linear-gradient(145deg, #db2777 0%, #9d174d 100%);
    transform: translateY(-50%) rotate(180deg);
}

.faq-item.active p {
    max-height: 420px;
    opacity: 1;
    margin-top: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

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

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-item strong {
    display: block;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item span {
    color: #666;
    font-size: 0.95rem;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 1.5rem;
}

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

.footer-legal h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 700;
}

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

.legal-info p {
    color: #d0d0d0;
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.legal-info strong {
    color: #fff;
    font-weight: 600;
}

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

.health-notice h4 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.health-notice p {
    color: #d0d0d0;
    line-height: 1.9;
}

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

.contact-info-footer p {
    color: #d0d0d0;
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.contact-info-footer strong {
    color: #fff;
    font-weight: 600;
}

.contact-info-footer a {
    color: #d0d0d0;
    text-decoration: none;
}

.contact-info-footer a:hover {
    color: #fff;
}

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

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom p {
    color: #999;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 0;
    min-height: 60vh;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
}

.legal-page section {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e8e8e8;
}

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

.legal-page h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page p {
    margin-bottom: 1.25rem;
    color: #4a4a4a;
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid #1a1a1a;
}

.legal-page a:hover {
    color: #2d2d2d;
    border-bottom-color: #2d2d2d;
}

.withdrawal-form {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    border: 1px solid #e8e8e8;
}

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

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

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

    .flow-layout {
        grid-template-columns: 1fr;
    }

    .flow-visual {
        position: static;
    }

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

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

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

    .subtitle {
        font-size: 1.1rem;
    }

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

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

    .carousel-slides {
        height: 400px;
    }

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

/* Image Placeholders */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure images don't break layout if missing */
.product-image img,
.comparison-image img,
.advisor-image img {
    background-color: #f0f0f0;
    min-height: 200px;
    display: block;
}

/* Conversion-focused redesign overrides */
:root {
    --bg: #f2f8f7;
    --surface: #ffffff;
    --text: #12353a;
    --muted: #4b6f73;
    --primary: #0ea5a4;
    --primary-strong: #0b8a89;
    --accent: #f9738a;
    --line: #d4e7e6;
}

body {
    background: var(--bg);
    color: var(--text);
}

.header {
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.95);
}

.logo {
    color: var(--text);
    text-transform: none;
    letter-spacing: -0.6px;
}

.hero {
    background: radial-gradient(circle at top right, rgba(14, 165, 164, 0.35), transparent 45%),
        linear-gradient(135deg, #eefcf9 0%, #e7f8f7 100%);
    padding: 6rem 0 4.5rem;
    color: var(--text);
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 680px;
}

.hero-kicker {
    display: inline-block;
    background: rgba(14, 165, 164, 0.12);
    border: 1px solid rgba(14, 165, 164, 0.22);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
}

.hero-list li::before {
    content: "•";
    margin-right: 0.45rem;
    color: var(--primary);
}

.hero-media {
    position: relative;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
}

.hero-media img {
    width: 100%;
    border-radius: 14px;
}

.hero-media-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f9738a;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
}

.hero-actions {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #831843 0%, #db2777 55%, #fbcfe8 100%);
    box-shadow: 0 10px 24px rgba(190, 24, 93, 0.35);
    border-radius: 12px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #701a75 0%, #be185d 50%, #f9a8d4 100%);
}

.btn-hero {
    width: auto;
    min-width: 260px;
    padding: 1rem 2rem;
}

.trust-bar {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-bar span {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.9rem;
    color: var(--text);
}

.result-strip {
    background: #ffffff;
    padding: 1rem 0 1.4rem;
    border-bottom: 1px solid var(--line);
}

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

.result-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.95rem;
    background: #fff;
}

.result-item strong {
    display: block;
    font-size: 1.35rem;
    color: var(--primary-strong);
}

.result-item span {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.phone-gallery-section {
    background: var(--bg);
    padding: 1rem 0 4rem;
}

.phone-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.phone-frame {
    width: 100%;
    max-width: 320px;
    justify-self: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 14px;
    background: #d9ecea;
    border-radius: 36px;
    box-shadow: 0 16px 32px rgba(18, 53, 58, 0.14);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 18px;
    border-radius: 0 0 12px 12px;
    background: #b6d7d4;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.phone-screen {
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
}

.phone-screen img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-section,
.benefits-section,
.faq {
    background: var(--bg);
}

.product-grid,
.comparison-grid,
.benefits-grid {
    gap: 1.5rem;
}

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

.product-info,
.comparison-item,
.benefit-card,
.faq-item,
.contact-item,
.legal-page section {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    border-radius: 14px;
}

.product-info {
    padding: 1.25rem;
}

.product-headline {
    background: linear-gradient(135deg, rgba(14, 165, 164, 0.14) 0%, rgba(249, 168, 212, 0.16) 100%);
    border: 1px solid #c8e6e4;
    border-radius: 16px;
    padding: 1rem 1rem 0.85rem;
    margin-bottom: 1rem;
}

.product-info-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
    align-items: start;
}

.product-info-main,
.product-info-side {
    min-width: 0;
}

.product-info-side {
    text-align: center;
}

.product-info-main .product-price {
    text-align: center;
}

.product-info-main .btn-primary {
    max-width: 380px;
    margin: 0 auto;
    display: block;
}

.product-badge {
    background: #ffffff;
    color: #9d174d;
    text-transform: none;
    font-weight: 700;
    border: 1px solid #f5bfd8;
    margin-bottom: 0.75rem;
}

.product-headline h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    line-height: 1.18;
    margin-bottom: 0.8rem;
}

.product-headline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-headline-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #cde5e3;
    color: #355b60;
    font-size: 0.82rem;
    font-weight: 600;
}

.feature {
    background: #f8fafc;
    border-left: 3px solid var(--primary);
}

.feature-icon {
    color: var(--primary);
}

.feature-rail {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.75rem;
    position: relative;
}

.feature-rail-section {
    padding: 1rem 0 4rem;
    background: var(--bg);
}

.rail-item {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) 1.1fr;
    gap: 0.85rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cde5e3;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    box-shadow: 0 6px 16px rgba(18, 53, 58, 0.07);
    position: relative;
    overflow: hidden;
    width: 88%;
}

.rail-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #0ea5a4 0%, #db2777 100%);
}

.rail-item::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42px;
    border-top: 2px dashed rgba(14, 165, 164, 0.55);
}

.rail-item:nth-child(odd) {
    justify-self: start;
}

.rail-item:nth-child(even) {
    justify-self: end;
}

.rail-item:nth-child(odd)::after {
    right: -42px;
}

.rail-item:nth-child(even)::after {
    left: -42px;
}

.rail-item:last-child::after {
    display: none;
}

.rail-item h4 {
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.35;
    padding-left: 0.6rem;
}

.rail-item p {
    color: #355b60;
    font-size: 0.94rem;
    line-height: 1.55;
}

.product-info-side .btn-primary {
    margin-top: 0.5rem;
}

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

.guarantee {
    background: linear-gradient(135deg, #eefcf9 0%, #e6f6f5 100%);
    color: var(--text);
}

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

.footer {
    background: #eaf5f4;
    color: var(--text);
}

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

.guarantee p {
    color: var(--muted);
}

.footer-legal h3 {
    color: var(--text);
}

.legal-info p {
    color: var(--muted);
}

.legal-info strong {
    color: var(--text);
}

.health-notice {
    background: rgba(14, 165, 164, 0.08);
    border: 1px solid var(--line);
}

.health-notice h4 {
    color: var(--text);
}

.health-notice p {
    color: var(--muted);
}

.contact-info-footer p {
    color: var(--muted);
}

.contact-info-footer strong {
    color: var(--text);
}

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

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

.footer-bottom {
    border-top: 1px solid var(--line);
}

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

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

.footer-bottom p {
    color: var(--muted);
}

.legal-page {
    background: var(--bg);
}

.legal-page .container {
    max-width: 980px;
}

.legal-page section {
    padding: 1.4rem;
    margin-bottom: 1rem;
}

.sticky-cta {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    z-index: 1200;
    background: linear-gradient(135deg, #831843 0%, #db2777 55%, #fbcfe8 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(190, 24, 93, 0.4);
    letter-spacing: 0.2px;
}

.sticky-cta:hover {
    background: linear-gradient(135deg, #701a75 0%, #be185d 50%, #f9a8d4 100%);
}

@media (min-width: 1024px) {
    .sticky-cta {
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-list {
        justify-items: center;
    }

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

    .phone-gallery {
        grid-template-columns: 1fr;
    }

    .phone-screen img {
        height: 460px;
    }

    .product-info-layout {
        grid-template-columns: 1fr;
    }

    .product-headline {
        padding: 0.9rem;
    }

    .product-headline-meta span {
        font-size: 0.78rem;
    }

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

    .btn-hero {
        width: 100%;
        min-width: 0;
    }

    .sticky-cta {
        width: calc(100% - 24px);
        text-align: center;
        border-radius: 12px;
    }

    .rail-item {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        width: 100%;
        justify-self: stretch;
    }

    .rail-item h4 {
        padding-left: 0.45rem;
    }

    .rail-item::after {
        display: none;
    }

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

    .benefits-alt-intro {
        position: static;
        padding: 1.4rem;
    }

    .benefits-alt-intro h2 {
        font-size: 1.7rem;
    }

    .benefits-step:nth-child(odd),
    .benefits-step:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }
}
