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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4c1d95;
    background-color: #fce8fc;
}

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

/* Navigation Header */
body > header {
    background: transparent; /* gradient handled on .nav */
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Article Headers - ensure they scroll normally */
.blog-header {
    position: relative !important;
}

.nav {
    position: relative;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(233, 213, 255, 0.6);
}

/* Very subtle soft pink gradient bar with blur overlay */
.nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 250, 252, 0.95) 0%, rgba(254, 244, 248, 0.85) 50%, rgba(255, 248, 250, 0.9) 100%);
    backdrop-filter: saturate(140%) blur(6px);
    -webkit-backdrop-filter: saturate(140%) blur(6px);
    z-index: -1;
}

/* Add extra space below sticky header when navigating via anchors */
#products, #how-it-works, #reviews {
    scroll-margin-top: 140px;
}

/* New header layout */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-menu {
    display: none; /* hidden on mobile by default */
}

@media (min-width: 769px) {
  .nav-menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex: 1 1 auto;
  }
}

.nav-link {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.9;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover {
    color: #7c3aed;
    opacity: 1;
}

.nav-cta {
    display: inline-block;
    padding: 0.7rem 1.1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.45);
    filter: brightness(1.03);
}

.nav-brand h1 {
    color: #4c1d95;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.brand-icon {
    flex-shrink: 0;
    background: transparent;
    mix-blend-mode: multiply;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #ddd6fe 100%);
    color: #4c1d95;
    text-align: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.5rem;
}

/* Pricing */
.pricing {
    display: grid;
    grid-template-columns: repeat(2, minmax(460px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

/* Plan Toggle */
.plan-toggle {
    display: flex;
    align-items: center;
    background: #fefcff;
    border: 1px solid #e9d5ff;
    border-radius: 9999px;
    padding: 0.25rem;
    gap: 0.25rem;
    box-shadow: 0 10px 20px rgba(196, 181, 253, 0.25);
    margin: 0 auto;
    width: fit-content; /* shrink to content to avoid full-width pill */
}

.toggle-option {
    appearance: none;
    border: none;
    background: transparent;
    color: #4c1d95;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
}

.toggle-option.active {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
}

/* Show either Basic or Premium */
.pricing.show-basic .price-card.premium { display: none; }
.pricing.show-premium .price-card:not(.premium) { display: none; }

.price-card {
    background: #fefcff;
    color: #4c1d95;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(196, 181, 253, 0.2);
    text-align: left;
    width: 100%;
    border: 1px solid #e9d5ff;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4c1d95;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.price-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.price-card li:before {
    display: none;
}

/* CTA Button */
.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #4c1d95;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 181, 253, 0.6);
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: #f9f5ff;
    text-align: center;
}

.benefits h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4c1d95;
}

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

.benefit {
    padding: 2rem;
    border-radius: 15px;
    background: #fefcff;
    border: 1px solid #e9d5ff;
}

.benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4c1d95;
}

.benefit p {
    color: #666;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 2rem 0 4rem 0;
    background: #fdf4ff;
    text-align: center;
}

.reviews h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4c1d95;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background: #fefcff;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(196, 181, 253, 0.2);
    text-align: center;
    border: 1px solid #e9d5ff;
    max-width: 400px;
    margin: 0 auto;
}

.facebook-review-screenshot {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.facebook-link {
    margin-top: 2rem;
}

.fb-profile-link {
    display: inline-block;
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #4c1d95;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 2rem;
}

.fb-profile-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 181, 253, 0.5);
}

/* Footer */
footer {
    background: #4c1d95;
    color: #fce8fc;
    text-align: center;
    padding: 2rem 0;
}

/* Product Tier Labels */
.product-tier {
    background: #ddd6fe;
    color: #4c1d95;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.premium-tier {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    color: white;
}

.price-card.premium {
    border: 2px solid #7c3aed;
    position: relative;
}


/* Book Now Buttons */
.book-now-btn {
    width: 100%;
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #4c1d95;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 181, 253, 0.6);
}

.premium-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    color: white;
}

.premium-btn:hover {
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.booking-footnote {
    display: block;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(76, 29, 149, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefcff;
    margin: 2% auto;
    padding: 0;
    border: none;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px rgba(76, 29, 149, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #e9d5ff;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    color: #4c1d95;
    margin: 0;
    font-size: 1.8rem;
}

.close {
    color: #4c1d95;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #7c3aed;
}

.modal-step {
    display: none;
    padding: 2rem;
}

.modal-step.active {
    display: block;
}

/* Product Summary in Modal */
.selected-product {
    background: #f9f5ff;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e9d5ff;
}

.product-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-summary img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.product-details h3 {
    margin: 0 0 0.5rem 0;
    color: #4c1d95;
    font-size: 1.3rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7c3aed;
}

/* Privacy Notice */
.privacy-notice {
    background: #e9d5ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #7c3aed;
}

.privacy-notice p {
    margin: 0;
    color: #4c1d95;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4c1d95;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9d5ff;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group select {
    cursor: pointer;
}

/* Security Notice */
.security-notice {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 10px;
    border: 1px solid #bbf7d0;
}

.security-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #166534;
}

/* Modal Buttons */
.modal-btn {
    width: 100%;
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
}

.modal-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

.modal-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Payment Section */
.payment-section {
    max-height: 70vh;
    overflow-y: auto;
}

.booking-summary {
    background: #f9f5ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e9d5ff;
}

.booking-summary h4 {
    color: #4c1d95;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9d5ff;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: #4c1d95;
}

.payment-disclosure {
    background: #fff7ed;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #fed7aa;
    border-left: 4px solid #f97316;
}

.payment-disclosure h4 {
    color: #9a3412;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.disclosure-content p {
    color: #9a3412;
    margin-bottom: 1rem;
    font-weight: 600;
}

.disclosure-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.disclosure-content li {
    color: #7c2d12;
    margin-bottom: 0.8rem;
    padding-left: 0;
    line-height: 1.5;
}

.highlight-text {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #fbbf24;
    font-weight: 600;
    color: #92400e !important;
}

.contact-info {
    background: #f0f9ff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #bae6fd;
    text-align: center;
}

.contact-info p {
    margin: 0;
    color: #0c4a6e;
    font-size: 0.95rem;
}

.legal-text {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* FAQ Information Section */
.faq-info {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.faq-info h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4c1d95;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #f9f5ff;
    border-radius: 15px;
    border: 1px solid #e9d5ff;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.05);
}

.faq-question h4 {
    color: #4c1d95;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    color: #7c3aed;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 0 !important;
}

.faq-answer a {
    color: #7c3aed;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.guarantee-banner {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid #bbf7d0;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.guarantee-banner h4 {
    color: #166534;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.guarantee-item {
    text-align: center;
}

.guarantee-item strong {
    color: #166534;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.guarantee-item p {
    color: #15803d;
    margin: 0;
}

.faq-section {
    background: #fefcff;
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid #e9d5ff;
    text-align: left;
}

.faq-section h4 {
    color: #4c1d95;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9d5ff;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item strong {
    color: #4c1d95;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .price-card {
        padding: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .features {
        gap: 1rem;
    }
    
    .feature {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card {
        margin: 0 1rem;
    }
    
    .pricing {
        gap: 1rem;
    }
    
    .reviews h3 {
        font-size: 2rem;
    }
    
    .review-card {
        margin: 0 1rem;
        max-width: 300px;
    }
    
    /* Modal Responsive */
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-step {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 600px;
        justify-items: center; /* center the single-column card */
    }

    .price-card {
        max-width: 480px; /* keep card nicely centered and not too wide */
        width: 100%;
    }

    /* Tighter toggle on mobile */
    .toggle-option { padding: 0.4rem 0.9rem; font-size: 0.95rem; }
}

/* =============================
   Legal / TOS Page Enhancements
   ============================= */
html {
    scroll-behavior: smooth;
}

.legal-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #ddd6fe 100%);
    color: #4c1d95;
    border-bottom: 1px solid #e9d5ff;
}

.legal-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.legal-subtitle {
    opacity: 0.8;
}

.tos-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0 4rem 0;
}

.toc {
    position: sticky;
    top: 100px; /* below sticky header */
    width: 280px;
    flex-shrink: 0;
}

.toc-inner {
    background: #fefcff;
    border: 1px solid #e9d5ff;
    border-radius: 12px;
    padding: 1rem 1rem;
    box-shadow: 0 10px 25px rgba(196, 181, 253, 0.2);
    max-height: calc(100vh - 140px);
    overflow: auto;
    overscroll-behavior: contain;
}

.toc-title {
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #4c1d95;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-item {
    margin: 0.25rem 0;
}

.toc-item.level-3 {
    padding-left: 0.75rem;
}

.toc-link {
    display: block;
    color: #4c1d95;
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}

.toc-link:hover {
    background: #f3e8ff;
}

.toc-link.active {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #4c1d95;
    font-weight: 700;
}

.tos-content {
    flex: 1;
    min-width: 0;
}

.tos-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #4c1d95;
}

.tos-content h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #4c1d95;
}

.tos-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4c1d95;
}

.tos-content p {
    margin-bottom: 1rem;
    color: #4c1d95;
}

.tos-content ul {
    margin: 0 0 1rem 1.25rem;
}

.tos-content li {
    margin-bottom: 0.5rem;
}

.section-divider {
    border: 0;
    height: 1px;
    background: #e9d5ff;
    margin: 2rem 0 1rem 0;
}

.legal-meta {
    font-size: 0.9rem;
    color: #666;
}

.back-to-top a {
    display: inline-block;
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #4c1d95;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.footer-link {
    color: #fce8fc;
    text-decoration: none;
    opacity: 0.9;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .toc { width: 240px; }
}

@media (max-width: 768px) {
    .tos-wrapper {
        flex-direction: column;
    }
    .toc {
        position: static;
        width: auto;
    }
}
