* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(71, 85, 105, 0.5);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
}

.heart-icon {
    width: 32px;
    height: 32px;
    color: #f43f5e;
}

.cta-button {
    padding: 8px 24px;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(244, 63, 94, 0.5);
}

.hero {
    padding: 160px 20px 80px;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: 50px;
    color: #fb7185;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.sparkles-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fb7185, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 48px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.primary-button {
    padding: 16px 32px;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(244, 63, 94, 0.3);
}

.primary-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 50px rgba(244, 63, 94, 0.5);
}

.secondary-button {
    padding: 16px 32px;
    background: #1e293b;
    color: white;
    border: 1px solid #475569;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #334155;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    color: #94a3b8;
    font-size: 14px;
}

.cta-banner {
    padding: 64px 20px;
    background: linear-gradient(135deg, #be123c, #ec4899, #be123c);
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 20px;
    color: #fecdd3;
    margin-bottom: 32px;
}

.cta-white-button {
    padding: 16px 40px;
    background: white;
    color: #be123c;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-white-button:hover {
    transform: scale(1.05);
    background: #fef2f2;
}

.girlfriends {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}

.section-description {
    font-size: 20px;
    color: #94a3b8;
}

.girlfriends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.girlfriend-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.girlfriend-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(244, 63, 94, 0.5);
    box-shadow: 0 20px 60px rgba(244, 63, 94, 0.2);
}

.girlfriend-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.girlfriend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.girlfriend-card:hover .girlfriend-image img {
    transform: scale(1.1);
}

.girlfriend-info {
    padding: 24px;
}

.girlfriend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.girlfriend-header h3 {
    font-size: 24px;
    font-weight: bold;
}

.age {
    color: #94a3b8;
    font-size: 18px;
}

.girlfriend-description {
    color: #cbd5e1;
    margin-bottom: 16px;
}

.girlfriend-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.girlfriend-button:hover {
    background: linear-gradient(135deg, #be123c, #db2777);
}

.features {
    padding: 80px 20px;
    background: rgba(30, 41, 59, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(244, 63, 94, 0.5);
    box-shadow: 0 15px 40px rgba(244, 63, 94, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.feature-description {
    color: #cbd5e1;
}

.comparison {
    padding: 80px 20px;
}

.comparison-table-wrapper {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 16px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead tr {
    background: rgba(15, 23, 42, 0.5);
}

.comparison-table th,
.comparison-table td {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(71, 85, 105, 0.5);
}

.comparison-table th.text-left,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table th {
    font-weight: 600;
    color: #94a3b8;
}

.brand-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.brand-column strong {
    color: white;
    font-size: 18px;
}

.brand-column span {
    color: #fb7185;
    font-size: 12px;
}

.comparison-table tbody tr:hover {
    background: rgba(51, 65, 85, 0.3);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #22c55e;
    font-size: 20px;
    font-weight: bold;
}

.brand-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    border-radius: 50%;
    color: white;
}

.cross-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #64748b;
    font-size: 20px;
}

.pricing {
    padding: 80px 20px;
    background: rgba(30, 41, 59, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border-color: #f43f5e;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(244, 63, 94, 0.2);
}

.pricing-card:hover {
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50px;
}

.plan-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 8px;
}

.price {
    font-size: 48px;
    font-weight: bold;
}

.plan-period {
    color: #94a3b8;
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
    color: #cbd5e1;
}

.feature-check {
    color: #f43f5e;
    font-weight: bold;
    flex-shrink: 0;
}

.plan-button {
    width: 100%;
    padding: 16px;
    background: #475569;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: #334155;
}

.plan-button.primary {
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.3);
}

.plan-button.primary:hover {
    background: linear-gradient(135deg, #be123c, #db2777);
}

.faq {
    padding: 80px 20px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(244, 63, 94, 0.5);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 16px;
}

.faq-icon {
    color: #f43f5e;
    font-size: 32px;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 2000px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #cbd5e1;
    line-height: 1.8;
}

.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #be123c, #ec4899, #be123c);
    text-align: center;
}

.final-cta-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
}

.final-cta-description {
    font-size: 20px;
    color: #fecdd3;
    margin-bottom: 40px;
}

.final-cta-button {
    padding: 20px 48px;
    background: white;
    color: #be123c;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.final-cta-button:hover {
    transform: scale(1.05);
    background: #fef2f2;
}

.final-cta-note {
    margin-top: 24px;
    color: #fecdd3;
    font-size: 14px;
}

.footer {
    padding: 48px 20px;
    background: #0f172a;
    border-top: 1px solid #1e293b;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: bold;
}

.footer-logo .heart-icon {
    width: 24px;
    height: 24px;
}

.footer-text {
    color: #94a3b8;
    font-size: 14px;
    text-align: center;
}

.footer-links {
    margin: 16px 0;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #f43f5e, #ec4899);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(244, 63, 94, 0.4);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(244, 63, 94, 0.6);
}

.contact-button svg {
    display: inline-block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: 24px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(244, 63, 94, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #94a3b8;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #f43f5e;
    background: rgba(244, 63, 94, 0.1);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 28px;
    font-weight: bold;
    padding: 32px 32px 24px;
    text-align: center;
    color: white;
}

.modal-body {
    padding: 0 32px 32px;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

.modal-body iframe {
    min-height: 600px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .girlfriends-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .final-cta-title {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .girlfriends-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
