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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
}

/* Hero Logo */
.hero-logo {
    width: 120px; /* Mobile first size */
    height: auto;
    transition: width 0.3s ease;
}

@media (min-width: 768px) {
    .hero-logo {
        width: 180px; /* Larger size for desktop */
    }
}

/* Hero background slideshow */
.bg-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    will-change: transform;
}

.bg-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: bgCrossfade 10s infinite;
    will-change: opacity;
    transition: opacity 800ms ease;
}

.bg-slideshow .slide:nth-child(1) { animation-delay: 0s; background-image: url('img01.jpg'); }
.bg-slideshow .slide:nth-child(2) { animation-delay: 5s; background-image: url('img02.jpg'); }

/* Mobile: use img03/img04 for the hero slideshow */
@media (max-width: 768px) {
    .bg-slideshow .slide:nth-child(1) { background-image: url('img03.jpg'); }
    .bg-slideshow .slide:nth-child(2) { background-image: url('img04.jpg'); }
}

@keyframes bgCrossfade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    45% { opacity: 1; }
    55% { opacity: 0; }
    100% { opacity: 0; }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceSubtle {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(252, 211, 77, 0.5); }
    50% { box-shadow: 0 0 40px rgba(252, 211, 77, 0.8); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.3s both;
}

.animate-bounce-subtle {
    animation: bounceSubtle 2s infinite;
}

.animate-pulse-slow {
    animation: pulse 3s ease-in-out infinite;
}

/* Utility classes */
.min-h-screen { min-height: 100vh; }
.h-screen { height: 100vh; }

@supports (height: 100svh) {
  .min-h-screen { min-height: 100svh; }
  .h-screen { height: 100svh; }
}
@supports (height: 100dvh) {
  .min-h-screen { min-height: 100dvh; }
  .h-screen { height: 100dvh; }
}
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.overflow-hidden { overflow: hidden; }

/* Spacing */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.ml-3 { margin-left: 0.75rem; }

/* Grid layouts */
.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Max widths */
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }

/* Typography */
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.md\:text-7xl { font-size: 4.5rem; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Colors */
.text-white { color: #fff; }
.text-gray-600 { color: #6b7280; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-purple-600 { color: #7c3aed; }
.text-purple-700 { color: #6d28d9; }
.text-pink-700 { color: #be185d; }
.text-indigo-700 { color: #3730a3; }
.text-orange-700 { color: #c2410c; }
.text-emerald-500 { color: #10b981; }
.text-yellow-300 { color: #fcd34d; }

/* Backgrounds */
.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-purple-500 { --tw-gradient-from: #a855f7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }
.via-pink-500 { --tw-gradient-via: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); }
.to-red-500 { --tw-gradient-to: #ef4444; }
.from-slate-50 { --tw-gradient-from: #f8fafc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 250, 252, 0)); }
.to-blue-50 { --tw-gradient-to: #eff6ff; }
.from-purple-100 { --tw-gradient-from: #f3e8ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 232, 255, 0)); }
.via-pink-100 { --tw-gradient-via: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); }
.to-orange-100 { --tw-gradient-to: #fed7aa; }
.from-indigo-50 { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); }
.to-purple-50 { --tw-gradient-to: #faf5ff; }
.from-purple-50 { --tw-gradient-from: #faf5ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); }
.via-pink-50 { --tw-gradient-via: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); }
.to-orange-50 { --tw-gradient-to: #fff7ed; }
.from-purple-600 { --tw-gradient-from: #c026d3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 38, 211, 0)); }
.via-pink-600 { --tw-gradient-via: #db2777; --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); }
.to-pink-600 { --tw-gradient-to: #db2777; }
.to-orange-500 { --tw-gradient-to: #f97316; }

/* Gradient text */
.text-transparent { color: transparent; }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }

/* Opacity */
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }

/* Shadows */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); }

/* Borders */
.border { border-width: 1px; }
.border-purple-200 { border-color: #e9d5ff; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:scale-105:hover { transform: scale(1.05); }

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fcd34d, #f59e0b, #fb923c);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: #7c2d12;
    box-shadow: 0 10px 25px rgba(252, 211, 77, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(252, 211, 77, 0.4);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.cta-button.secondary {
    background: inherit; /* Use the unified animated gradient */
    color: inherit;
    box-shadow: 0 10px 25px rgba(252, 211, 77, 0.3);
}

.cta-button.secondary:hover {
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    animation-duration: 1s;
}

/* Week Cards */
.week-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.week-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.week-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
}

.week-card.week-2::before {
    background: linear-gradient(90deg, #ec4899, #f97316);
}

.week-card.week-3::before {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.week-card.week-4::before {
    background: linear-gradient(90deg, #f97316, #ef4444);
}

.week-number {
    position: absolute;
    top: -1rem; /* Adjust to pull it up */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    line-height: 1;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.25);
}

.week-number::before {
    content: 'Week ';
    margin-right: 0.25rem;
    opacity: 0.95;
}

/* Ensure week titles sit below the badge */
.week-card h3 {
    margin-top: 2.5rem;
}

/* Included Items */
.included-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.included-item:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.15);
}

.included-icon {
    display: block;
}

.included-icon img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

/* Result Items */
.result-item {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden; /* To contain the rounded corners of the image */
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.result-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.result-content {
    padding: 2rem;
}

/* Pricing */
.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: rgb(182 95 0 / 36%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    max-width: 400px;
}

/* (removed) addon-inline styles were unused */

/* Split layout inside main pricing card */
.pricing-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

.pricing-left { text-align: center; }
.pricing-right { text-align: center; }

@media (min-width: 640px) {
    .pricing-card { max-width: 760px; }
    .pricing-split { grid-template-columns: 1fr auto 1fr; }
}

/* Segment boxes */
.pricing-segment { padding: 1.25rem; border-radius: 1rem; }
.pricing-segment--primary { /* clean look, no border/bg */ }

.pricing-segment--addon {
    background: rgb(150 77 146 / 46%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.pricing-segment .addon-header {
    justify-content: center;
}

/* Plus divider between segments */
.pricing-plus {
    display: none;
}
@media (min-width: 640px) {
    .pricing-plus {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        font-weight: 700;
        opacity: 0.9;
        padding: 0 0.5rem;
    }
}

/* CTA margin utility */
.mt-6 { margin-top: 1.5rem; }

/* Unified small price display for add-on */
.price-display--sm { gap: 0.25rem; }
.price-display--sm .currency { font-size: 1rem; }
.price-display--sm .amount { font-size: 2.25rem; }
.amount--sm { font-size: 2.25rem; }

/* CTA full-width at bottom of card */
.cta-block {
    width: 100%;
    justify-content: center;
}

/* Make Pricing CTA button full-width */
.pricing-card .cta-button {
    width: 100%;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    color: #7c2d12;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.875rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: #fcd34d;
}

/* (removed) old .addon-offer card styles were unused */

.addon-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.addon-sparkle {
    font-size: 1.5rem;
}

.addon-price {
    font-size: 2rem;
    font-weight: bold;
    color: #fcd34d;
    margin: 0.5rem 0;
}

/* Guide Section */
.guide-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.guide-image-container {
    position: relative;
    flex-shrink: 0;
}

.guide-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.guide-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(252, 211, 77, 0.4);
}

.guide-decoration::after {
    content: '✨';
}

.guide-content {
    flex: 1;
}

.guide-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3e8ff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    color: #6d28d9;
}

.credential-icon {
    font-size: 1.25rem;
}

.guide-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #a855f7;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

/* Final CTA */
.final-cta-content {
    position: relative;
}

/* Final CTA section background with semi-transparent overlay */
.final-cta-section {
    background-image: linear-gradient(rgb(180 0 0 / 62%), rgb(0 144 201 / 73%)), url(bg5.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-icon {
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Smaller fonts on mobile */
    .text-lg {
        font-size: 1rem;
    }
    .text-xl {
        font-size: 1.125rem;
    }
    .text-2xl {
        font-size: 1.25rem;
    }
    .text-3xl {
        font-size: 1.375rem;
    }
    .text-4xl {
        font-size: 1.5rem;
    }
    .text-5xl {
        font-size: 1.75rem;
    }
    .text-6xl {
        font-size: 2.25rem;
    }
    .md\:text-7xl {
        font-size: 2.3rem;
    }

    .md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    .lg\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
    .lg\:grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .guide-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .guide-stats {
        justify-content: center;
        gap: 1rem;
    }

    .trust-indicators {
        gap: 1rem;
    }

    .trust-item {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .guide-image {
        width: 200px;
        height: 200px;
    }

    .amount {
        font-size: 3rem;
    }

    .hero-section {
        align-items: flex-start; /* Align to the top */
    }
    .hero-content {
        transform: none; /* Remove the previous transform */
        padding-top: 50px; /* Add padding to push it down */
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .px-4 { padding-left: 1rem; padding-right: 1rem; }
    .p-8 { padding: 1.5rem; }
    .guide-container { padding: 2rem; }
    .pricing-card { padding: 2rem 1.5rem; }
    .week-card { padding: 1.5rem; }
    .included-item { padding: 1.5rem; }
    .result-item { padding: 1.5rem; }
}

/* Footer Styles */
.site-footer {
    text-align: center;
    padding: 2rem 1rem;
    background-image: linear-gradient(to right, #581c87, #86198f);
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

/* Included Section Background */
.included-section-bg {
    background-image: url('bg005.jpg');
    background-size: cover;
    background-position: center bottom;
    position: relative;
    z-index: 0; /* For stacking context */
}

.included-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5); /* White overlay with 50% opacity */
    z-index: -1;
}

.pricing-section-bg {
    background-image: url('bg008.jpg');
    background-size: cover;
    background-position: center bottom;
    position: relative;
    z-index: 0;
}

.pricing-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:rgb(191 121 20 / 77%);
    z-index: -1;
}
