:root {
    --primary-blue: #3B82F6;
    --primary-dark: #1d4ed8;
    --accent-gold: #FFC107;
    --text-dark: #1F2937;
    --bg-beige: #FDF8F6;
    --bg-light: #F3F4F6;
    --green-success: #10B981;
    --red-error: #EF4444;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    background-color: white;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.rounded {
    border-radius: 15px;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Headlines */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

/* Buttons */
.btn-cta-blue {
    background: var(--primary-blue);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    transition: 0.3s;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-cta-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.sm-btn {
    padding: 12px 30px;
    font-size: 1rem;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Navbar */
.top-bar {
    background: #f8fafc;
    padding: 10px 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

.navbar {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    margin-left: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
}

/* 1. Hero */
.hero-section {
    background: var(--bg-beige);
    padding: 50px 0 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    padding-bottom: 40px;
}

.highlight-blue {
    color: var(--primary-blue);
}

.discount-badge-lg {
    display: inline-block;
    background: #fbbf24;
    color: black;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    max-width: 100%;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-list i {
    color: var(--green-success);
}

.hero-img {
    width: 55%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
}

/* 2. Transform */
.section-transform {
    padding: 60px 0;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    color: #4b5563;
}

.feature-img-full {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    margin-top: 20px;
}

/* 3. Stars */
.section-stars {
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stars-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stars-gold {
    color: #F59E0B;
    font-size: 1.2rem;
}

.star-item h3 {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #6b7280;
    letter-spacing: 1px;
}

/* 4. Anatomy Text */
.section-anatomy-text {
    padding: 60px 0;
}

.anatomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.anatomy-box {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.anatomy-box h4 {
    margin: 0 0 5px;
    color: var(--primary-blue);
    font-size: 1rem;
}

.anatomy-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

/* 5. Pain & GIF */
.section-pain {
    padding: 60px 0;
    background: white;
}

.pain-gif {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
}

.highlight-orange {
    color: #F97316;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.compare-card {
    text-align: center;
}

.img-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.compare-card img {
    width: 100%;
    border-radius: 12px;
    height: 300px;
    object-fit: cover;
}

.badge-icon {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    border: 4px solid white;
}

.badge-icon.bad {
    background: var(--red-error);
}

.badge-icon.good {
    background: var(--green-success);
}

.compare-card h4 {
    margin-top: 30px;
    font-weight: 800;
    font-size: 1rem;
}

/* 6. Breath */
.breath-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
}

.breath-content {
    flex: 1;
}

.breath-img {
    width: 50%;
    border-radius: 12px;
}

.check-list-breath li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.check-list-breath i {
    color: var(--primary-blue);
}

/* 7. Numbers */
.bg-numbers {
    background: #eff6ff;
    padding: 60px 0;
}

.stats-img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
}

/* 8. Relax */
.section-relax {
    padding: 60px 0;
}

.relax-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.relax-text {
    flex: 1;
}

.relax-img {
    width: 45%;
    max-width: 500px;
    border-radius: 15px;
}

.sub-relax {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.r-feat {
    background: #f3f4f6;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.r-feat i {
    color: var(--primary-blue);
}

/* 9. Layers & 12. Positions (Image Grids) */
.section-layers,
.section-positions {
    padding: 60px 0;
}

.layers-grid-images,
.positions-grid-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.layer-card,
.pos-card {
    text-align: center;
}

.layer-card img,
.pos-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.layer-card img:hover,
.pos-card img:hover {
    transform: scale(1.03);
}

.layer-card h4,
.pos-card span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #374151;
}

/* 14. Size */
.section-size {
    padding: 60px 0;
}

.size-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.size-img {
    width: 50%;
    max-width: 450px;
    border-radius: 10px;
}

/* GIF 2 */
.section-gif-2 {
    padding: 40px 0;
    background: #fafafa;
}

/* 16. PRICING FIXED */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    /* Allows wrapping on small screens */
    align-items: flex-end;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    color: white;
    flex: 1;
    min-width: 280px;
    /* Ensures readable width */
    max-width: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    border: 1px solid transparent;
}

.gold {
    background: linear-gradient(180deg, #F59E0B 0%, #D97706 100%);
    transform: scale(1.05);
    z-index: 10;
    border: 3px solid #FCD34D;
    padding-top: 40px;
    /* Space for the big tag */
}

.blue {
    background: linear-gradient(180deg, #3B82F6 0%, #1D4ED8 100%);
}

.popular-tag {
    position: absolute;
    top: -3px;
    /* Pull up to cover top border */
    left: -3px;
    /* Pull left to cover corner */
    width: calc(100% + 6px);
    /* Stretch to cover both corners */
    background: #FF3D00;
    padding: 8px 0;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 14px 14px 0 0;
    /* Matches card radius */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* FIX: Image Box Relative Positioning */
.pricing-img-box {
    background: rgba(255, 255, 255, 0.2);
    height: 130px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    /* Key fix */
}

.placeholder-icon {
    font-size: 2rem;
    margin-bottom: 5px;
    opacity: 0.7;
}

/* FIX: Price Overlay anchored INSIDE */
.price-overlay {
    background: #008744;
    border: 2px solid white;
    color: white;
    padding: 5px 12px;
    border-radius: 25px;
    position: absolute;
    bottom: -12px;
    right: 5px;
    /* Tucked inside */
    font-weight: 800;
    font-size: 0.9rem;
    transform: rotate(-3deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
    white-space: nowrap;
}

.gold .price-overlay {
    background: #B45309;
}

.blue .price-overlay {
    background: #2563EB;
}

.val {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin: 5px 0;
}

.btn-white,
.btn-green {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    font-weight: 800;
    margin-top: 20px;
    text-transform: uppercase;
    box-sizing: border-box;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-white {
    background: white;
    color: black;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-green {
    background: #10B981;
    color: white;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content,
    .breath-flex,
    .relax-flex,
    .size-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-img,
    .breath-img,
    .relax-img,
    .size-img {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
        order: -1;
    }

    .hero-img {
        order: -1;
        margin-bottom: 20px;
        margin-top: 0;
    }

    .size-img,
    .relax-img {
        order: 1;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing Fix for Mobile */
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 95%;
        max-width: 340px;
        margin: 0 auto 30px;
    }

    /* Centered perfectly */
    .gold {
        transform: scale(1);
        order: -1;
        margin-bottom: 40px;
        padding-top: 40px;
    }

    .btn-cta-blue {
        width: 100%;
    }
}