section {
    padding: 100px 0 120px;
    position: relative
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.section-header h2 {
    font-size: clamp(38px, 6vw, 64px);
    margin-bottom: 28px;
    font-weight: 300;
    letter-spacing: -1.5px;
    color: var(--text-main);
    line-height: 1.15
}

.section-header p {
    font-size: 24px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: .2px
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    padding-bottom: 80px
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 70px 56px;
    border-radius: 60px;
    transition: all .8s cubic-bezier(.165, .84, .44, 1);
    position: relative;
    /* overflow: hidden; Removed to fix Best Value tag clipping */
    box-shadow: 0 15px 40px -15px rgba(0, 0, 0, .03)
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, var(--card-glow), transparent 70%);
    opacity: 0;
    transition: opacity .8s ease
}

.glass-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 50px 90px -25px rgba(0, 0, 0, .08);
    border-color: rgba(13, 148, 136, .15)
}

.icon-container {
    width: 140px;
    height: 140px;
    margin-bottom: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.premium-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .8s cubic-bezier(.165, .84, .44, 1)
}

.glass-card:hover .premium-icon {
    transform: scale(1.15) rotate(8deg)
}

.glass-card h3 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -.8px;
    color: var(--text-main)
}

.glass-card p {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300
}

.features {
    background-color: #faf9f6;
    background-image: radial-gradient(circle at 10% 10%, rgba(13, 148, 136, .015) 0, transparent 40%), radial-gradient(circle at 90% 90%, rgba(217, 119, 6, .015) 0, transparent 40%)
}

.daily-rhythm {
    background-color: #f8fbff;
    background-image: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, .015) 0, transparent 40%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border)
}

.impact-section {
    background-color: #fffaf8
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: .03;
    pointer-events: none;
    z-index: 9999
}

.rhythm-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 80px
}

.rhythm-item {
    padding: 90px 70px;
    border-radius: 70px;
    background: #f8fafc;
    border: 1px solid var(--glass-border);
    text-align: left;
    transition: all .8s cubic-bezier(.165, .84, .44, 1)
}

.rhythm-item:hover {
    transform: scale(1.03);
    background: #fff;
    border-color: var(--accent-teal);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .06)
}

.rhythm-item h3 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main)
}

.rhythm-item p {
    font-size: 21px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300
}

.immersive-feature {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 140px
}

.feature-image {
    flex: 1.2;
    aspect-ratio: 1;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 50px 120px -30px rgba(0, 0, 0, .12)
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease
}

.feature-image:hover img {
    transform: scale(1.05)
}

.feature-content {
    flex: 1
}

.feature-content h3 {
    font-size: 52px;
    margin-bottom: 28px;
    color: var(--text-main);
    font-weight: 300;
    letter-spacing: -1.2px
}

footer {
    padding: 140px 0 80px;
    background: #f1f5f9;
    border-top: 1px solid var(--glass-border)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 100px;
    text-align: left
}

.footer-logo {
    margin-bottom: 30px
}

.footer-links h4 {
    color: var(--text-main);
    margin-bottom: 24px;
    font-size: 19px;
    font-weight: 600
}

.footer-links li {
    margin-bottom: 14px
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all .4s;
    font-weight: 300;
    font-size: 17px
}

.footer-links a:hover {
    color: var(--accent-teal);
    transform: translateX(8px);
    display: inline-block
}

.copyright-bar {
    padding-top: 50px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 300
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(.165, .84, .44, 1), transform 1.2s cubic-bezier(.165, .84, .44, 1);
    will-change: transform, opacity
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0)
}

.stagger-1 {
    transition-delay: 0.1s
}

.stagger-2 {
    transition-delay: 0.2s
}

.stagger-3 {
    transition-delay: 0.3s
}

.pricing {
    background-color: #fff;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 40px;
    text-align: center;
    transition: all .5s cubic-bezier(.165, .84, .44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px -20px rgba(0, 0, 0, .08);
    border-color: var(--accent-teal)
}

.pricing-card.popular {
    border: 2px solid var(--accent-teal);
    transform: scale(1.05);
    z-index: 2
}

.pricing-card.popular::before {
    content: 'Best Value';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-teal);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -1px
}

.plan-price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted)
}

.plan-benefit {
    font-size: 14px;
    color: var(--accent-teal);
    font-weight: 500;
    margin-bottom: 24px
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left
}

.plan-features li {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px
}

.plan-features li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: 700
}

.pricing-cta {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
    background: var(--bg-deep);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    border: 1px solid var(--glass-border);
    display: block;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    outline: 0;
    text-align: center
}

.pricing-card.corporate .pricing-cta,
.pricing-card.popular .pricing-cta {
    background: var(--accent-teal);
    color: #fff;
    border: none
}

.pricing-cta:hover {
    filter: brightness(.95);
    transform: scale(.98)
}

.masked-price-container {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    overflow: hidden
}

.price-mask {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    filter: blur(8px);
    user-select: none;
    opacity: .6
}

.mask-overlay-text {
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, .8);
    padding: 4px 12px;
    border-radius: 20px;
    pointer-events: none
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite
}

@keyframes shimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s cubic-bezier(.165, .84, .44, 1)
}

.modal-overlay.active {
    opacity: 1;
    display: flex
}

.modal-container {
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(.9) translateY(20px);
    transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, .15);
    border: 1px solid var(--glass-border);
    position: relative
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0)
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: 0 0;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    transition: transform .3s ease
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--text-main)
}

.modal-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
    letter-spacing: -.5px
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 300
}

.copy-box {
    background: #f8fafc;
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    cursor: pointer;
    transition: all .3s ease
}

.copy-box:hover {
    border-color: var(--accent-teal);
    background: #fff;
    box-shadow: 0 10px 20px -5px rgba(13, 148, 136, .1)
}

.email-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-main)
}

.copy-icon {
    color: var(--accent-teal);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-main);
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    z-index: 3000;
    transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
    opacity: 0
}

.toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1
}

@media (max-width:992px) {
    .rhythm-box {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .immersive-feature {
        flex-direction: column;
        text-align: center
    }

    section {
        padding: 120px 0
    }
}

/* Social Proof Row */
.social-proof {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.social-proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.social-proof-logos:hover {
    opacity: 1;
    filter: grayscale(0);
}

.social-proof-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: -1px;
}

/* Walkthrough Refinement */
.walkthrough-display {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px;
    background: radial-gradient(circle at center, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
    border-radius: 60px;
}

.mockup-container {
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    overflow: hidden;
    line-height: 0;
}

.mockup-container img {
    width: 100%;
    height: auto;
    display: block;
}


/* New Section Styles */
.search-intent-phrases {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.intent-tag {
    font-size: 14px;
    color: var(--text-muted);
    background: rgba(13, 148, 136, 0.05);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.ba-column {
    padding: 48px;
    border-radius: 40px;
    text-align: left;
}

.ba-before {
    background: #fef2f2;
    border: 1px solid #fee2e2;
}

.ba-after {
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
}

.ba-column h3 {
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ba-column ul {
    list-style: none;
}

.ba-column li {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.ba-before li::before {
    content: '✕';
    color: #ef4444;
    font-weight: 700;
}

.ba-after li::before {
    content: '✓';
    color: #0d9488;
    font-weight: 700;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-badge i {
    color: var(--accent-teal);
    font-size: 20px;
}

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

.testimonial-card {
    padding: 40px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    text-align: left;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-teal);
    font-size: 14px;
}

.author-info h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.science-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.science-item {
    padding: 30px;
    background: #fafaf9;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.science-item h3 {
    margin-bottom: 12px;
    color: var(--accent-teal);
}

@media (max-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .ba-column {
        padding: 32px;
    }
}