* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E8427B;
    --dark: #1a0710;
    --accent: #FF6B8A;
    --bg-white: #FFFFFF;
    --text-dark: #111827;
    --shadow: rgba(232, 66, 123, 0.15);
    --border-radius: 24px;
    --border-radius-sm: 16px;
    --border-radius-lg: 32px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--dark);
    box-shadow: 0 4px 24px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.header.menu-open {
    border-radius: 0;
    box-shadow: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bg-white);
}

.logo i {
    font-size: 28px;
    color: var(--primary);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--bg-white);
    letter-spacing: -0.5px;
}

.nav {
    display: none;
    gap: 32px;
}

.nav-link {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    background: var(--dark);
    flex-direction: column;
    padding: 0 40px 20px 40px;
    box-shadow: 0 4px 24px var(--shadow);
    border-radius: 0 0 24px 24px;
    margin-top: 0;
}

.nav.active .nav-link {
    color: var(--bg-white);
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav.active .nav-link:last-child {
    border-bottom: none;
}

.nav.active .nav-link:hover {
    color: var(--primary);
    background: rgba(232, 66, 123, 0.1);
    padding-left: 12px;
    border-radius: 12px;
}

.header-cta {
    display: none;
}

.mobile-menu-toggle {
    display: block;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--bg-white);
    cursor: pointer;
}

.cta-button {
    background: var(--accent);
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(255, 107, 138, 0.35);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 66, 123, 0.45);
}

.cta-large {
    padding: 18px 48px;
    font-size: 18px;
}

.hero {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, rgba(232, 66, 123, 0.08) 0%, rgba(232, 66, 123, 0.03) 100%);
}

.hero--centered {
    text-align: center;
}

.hero--centered .hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(232, 66, 123, 0.12);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-description {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.product-card {
    background: linear-gradient(135deg, rgba(232, 66, 123, 0.06) 0%, rgba(232, 66, 123, 0.02) 100%);
    border: 2px solid rgba(232, 66, 123, 0.2);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: var(--text-dark);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px var(--shadow);
    background: linear-gradient(135deg, rgba(232, 66, 123, 0.12) 0%, rgba(232, 66, 123, 0.06) 100%);
}

.product-card__icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.product-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-card__discount {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.product-card__badge {
    display: inline-block;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 8px;
    text-transform: uppercase;
}

.content-section {
    padding: 80px 0 20px 0;
    background: var(--bg-white);
}

.content-wrapper {
    margin-bottom: 60px;
}

.text-block {
    margin-bottom: 40px;
}

.text-block h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.text-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.text-block h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.text-block a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.text-block a:hover {
    color: var(--accent);
}

.text-block ul {
    margin: 20px 0;
    padding-left: 24px;
}

.text-block li {
    margin-bottom: 12px;
    font-size: 16px;
}

.text-block figure a img {
    cursor: pointer;
    animation: pulse-anim 2.5s ease-in-out infinite;
}

.inline-image {
    margin: 24px 0;
    text-align: center;
}

.inline-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inline-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(232, 66, 123, 0.25);
}

@keyframes pulse-anim {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 0 rgba(232, 66, 123, 0);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 30px rgba(232, 66, 123, 0.5);
    }
}

.highlight-block {
    background: linear-gradient(135deg, rgba(232, 66, 123, 0.12) 0%, rgba(232, 66, 123, 0.06) 100%);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    color: var(--text-dark);
    box-shadow: 0 12px 48px var(--shadow);
    border: 2px solid var(--primary);
}

.highlight-block h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
}

.highlight-block p {
    font-size: 17px;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Steps */
.steps-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 28px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(232, 66, 123, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    border-left: 4px solid var(--primary);
}

.step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--primary);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.step-text {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-dark);
    padding-top: 4px;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2.5rem 0;
    background: linear-gradient(135deg, rgba(232, 66, 123, 0.08), rgba(232, 66, 123, 0.03));
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px var(--shadow);
    border: 2px solid rgba(232, 66, 123, 0.25);
}
.comparison-table thead {
    background: linear-gradient(135deg, #E8427B 0%, #c42e5e 100%);
}
.comparison-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 800;
    font-size: 1rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.comparison-table th:first-child {
    border-top-left-radius: 22px;
}
.comparison-table th:last-child {
    border-top-right-radius: 22px;
}
.comparison-table tbody tr {
    transition: all 0.3s ease;
    background: #FFFFFF;
}
.comparison-table tbody tr:hover {
    background: rgba(232, 66, 123, 0.04);
    transform: translateX(4px);
}
.comparison-table td {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(232, 66, 123, 0.1);
    font-size: 0.93rem;
    line-height: 1.6;
    color: #111827;
}
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}
.comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 22px;
}
.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 22px;
}
.comparison-table td:first-child {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.97rem;
    background: rgba(232, 66, 123, 0.06);
}
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
        border-radius: 16px;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 0.9rem 0.8rem;
    }
}

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(232, 66, 123, 0.06) 0%, rgba(232, 66, 123, 0.02) 100%);
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark);
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(232, 66, 123, 0.04);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    padding-right: 16px;
}

.faq-toggle {
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.3s;
    min-width: 24px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.finale-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8427B 0%, #c42e5e 100%);
    text-align: center;
}

.finale-content {
    max-width: 800px;
    margin: 0 auto;
}

.finale-title {
    font-size: 42px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.finale-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 40px;
    line-height: 1.8;
}

.footer {
    background: var(--dark);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    color: #FFFFFF;
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    box-shadow: 0 -4px 24px var(--shadow);
    padding: 14px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
    border-top: 2px solid var(--primary);
}

.sticky-bottom-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sticky-cta-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-white);
    text-align: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    border-top: 5px solid var(--primary);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(232, 66, 123, 0.1);
    color: var(--primary);
}

.modal-content {
    text-align: center;
}

.modal-icon {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 20px;
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.modal-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Promo Code Block */
.promo-code {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(232, 66, 123, 0.07);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    overflow: visible;
}

.promo-code__icon {
    width: 48px;
    height: 48px;
    font-size: 48px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: promo-code-flip 1.5s ease-in-out infinite;
}

@keyframes promo-code-flip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.promo-code__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.promo-code__title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark);
    margin: 0;
}

.promo-code__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
}

.promo-code__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.promo-code__display {
    border: 2px dashed var(--primary);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
    font-size: 20px;
    color: var(--dark);
    background: transparent;
    text-align: center;
    letter-spacing: 0.08em;
}

.promo-code__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    width: 100%;
    border-radius: var(--border-radius-sm);
    background: var(--accent);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 138, 0.35);
}

.promo-code__btn:hover {
    background: var(--primary);
    transform: scale(1.02);
}

.promo-code__btn:active {
    transform: scale(0.98);
}

.promo-code__btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.promo-code__btn svg {
    width: 20px;
    height: 20px;
}

.promo-code__btn .icon-copy {
    display: block;
}

.promo-code__btn .icon-copied {
    display: none;
}

.promo-code__btn.copied .icon-copy {
    display: none;
}

.promo-code__btn.copied .icon-copied {
    display: block;
}

.promo-code__btn.copied {
    background: #25B896;
    color: #FFFFFF;
}

/* Hero Promo Code Variant */
.promo-code--hero {
    max-width: 500px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    box-shadow: 0 12px 40px var(--shadow);
}

/* Two-column content */
.content-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.content-row--reverse {
    direction: ltr;
}

.content-row__text {
    direction: ltr;
}

.content-row__image {
    direction: ltr;
}

.content-row__image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px var(--shadow);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.content-row__image img:hover {
    transform: scale(1.02);
}

.content-row__text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.content-row__text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-row__text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

/* Highlight block with image */
.highlight-block--with-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
    align-items: center;
}

.highlight-block--with-image .highlight-content {
    text-align: center;
}

.highlight-block--with-image .highlight-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: block;
    margin: 0 auto;
}

/* Responsive */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .header-cta {
        display: inline-block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .content-row {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .content-row--reverse {
        direction: rtl;
    }

    .highlight-block--with-image {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .highlight-block--with-image .highlight-content {
        text-align: left;
    }

    .promo-code {
        flex-direction: row;
        align-items: flex-start;
        padding: 24px;
    }

    .promo-code__content {
        text-align: left;
    }

    .promo-code__title {
        font-size: 22px;
    }

    .promo-code__actions {
        flex-direction: row;
        gap: 16px;
    }

    .promo-code__btn {
        width: auto;
        padding: 12px 32px;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .hero-title {
        font-size: 46px;
    }

    .steps-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 44px;
    }

    .finale-title {
        font-size: 50px;
    }

    .hero-title {
        font-size: 52px;
    }

    .content-row {
        gap: 80px;
    }
}
