:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --primary-color: #00ff88;
    /* Neon Green */
    --secondary-color: #00ccff;
    /* Neon Blue */
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-green {
    color: var(--primary-color);
}

.highlight {
    background: -webkit-linear-gradient(right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Sticky Bar */
.sticky-bar {
    background: #FFD700;
    /* Yellow */
    color: #000000;
    text-align: center;
    padding: 0.4rem 0.5rem;
    /* Reduced padding */
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    /* Reduced gap */
    flex-wrap: wrap;
    border-bottom: 2px solid #fff;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.sticky-bar p {
    font-size: 0.75rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown {
    display: flex;
    gap: 5px;
    /* Reduced gap */
}

.time-unit {
    background: #000000;
    padding: 2px 6px;
    /* Reduced padding */
    border-radius: 4px;
    text-align: center;
    min-width: 32px;
    /* Reduced width */
}

.time-unit span {
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1;
    color: #FFD700;
}

.time-unit small {
    font-size: 0.5rem;
    text-transform: uppercase;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.95)), url('hero-bg-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.highlight {
    background: linear-gradient(to top, #FFD700, #ffea80);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.hero-title {
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    width: fit-content;
    margin: 0 auto 2.5rem;
    align-items: center;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: default;
}

.hero-subtitle:hover {
    transform: translateY(-2px);
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-video-wrapper {
    width: 100%;
    max-width: 380px;
    /* Mobile phone width style */
    aspect-ratio: 9/16;
    /* Vertical video ratio */
    background: #000;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    /* Slightly more rounded for phone look */
    margin: 1.5rem auto 2.5rem;
    /* Adjusted margins */
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.15);
}

.hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: black;
    cursor: pointer;
    margin-bottom: 1rem;
    animation: pulse-green 2s infinite;
}

.video-placeholder p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Buttons */
/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #ffae00 100%);
    /* Yellow gradient */
    color: #000000;
    font-weight: 800;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    text-shadow: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.cta-button.small {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Phone Mockup */


.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    width: 100%;
    max-width: 400px;
}

.cta-button.red {
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.4);
}

.cta-button.red:hover {
    box-shadow: 0 0 40px rgba(255, 51, 51, 0.6);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Coach Floating Image */
.coach-showcase {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.coach-img {
    width: 100%;
    max-width: 500px;
    /* Good size for portrait or landscape */
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
    /* Green flow matching theme */
    border: 1px solid var(--primary-color);
    animation: float 4s ease-in-out infinite;
    display: block;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-features i {
    color: var(--primary-color);
    margin-right: 5px;
}

.support-link {
    display: block;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: underline;
}

.support-link i {
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 1.1rem;
}

/* Animations */
@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.pulse {
    animation: pulse-yellow 2s infinite;
}

/* Bonus Alert */
.bonus-alert {
    background: linear-gradient(to bottom, #050505, #111111, #050505);
    /* Fade in and out for seamless flow */
    border: none;
    /* Remove borders */
    padding: 4rem 0;
    text-align: center;
    margin: 0;
    /* Remove margin for seamless flow */
}

.bonus-badge {
    background: #FFD700;
    color: black;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.price-strike {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.price-strike span {
    font-weight: bold;
    font-size: 1.4rem;
}

.old-price-red {
    color: #ff4444;
    text-decoration: line-through;
    font-weight: bold;
    font-size: 1.3rem;
    /* Slightly larger */
}

.highlight-title {
    font-size: 1.8rem;
    background: linear-gradient(90deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

.highlight-title.small {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.bonus-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1rem;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

.bonus-card p {
    text-align: left;
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    color: #ccc;
    font-size: 0.95rem;
}

.bonus-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
}

.bonus-card h4 {
    color: var(--primary-color);
    margin-bottom: 0;
    grid-column: 2;
    grid-row: 1;
    font-size: 1.1rem;
    text-align: left;
}

.scarcity {
    color: #ff4444;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Success Stories */
.stories {
    padding: 4rem 0;
}

.stories h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.story-card {
    background: var(--card-bg);
    margin-bottom: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    color: #FFD700;
}

.story-tag {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 0;
    /* Removed margin as it's now inside flex */
    font-weight: 600;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.story-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #555;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.story-card:hover .story-img {
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.featured-story {
    border: 1px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.result {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border-left: 3px solid var(--primary-color);
}

/* Gallery & Methodology */
.gallery {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(to bottom, #050505, #111111, #050505);
}

/* Gallery Marquee */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 2rem 0;
    padding: 1rem 0;
    position: relative;
    /* Soft edges mask */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.gallery-img {
    width: 220px;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
    flex-shrink: 0;
    /* Prevent squishing */
}

.gallery-img:hover {
    transform: scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    z-index: 2;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.methodology {
    padding: 4rem 0;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

/* Benefits */
.benefits {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #050505, #0d1a15);
    text-align: center;
}

.benefit-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: left;
}

.benefit-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Audience Section */
.audience {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(to bottom, #0d1a15, #050505);
    /* Seamless transition from benefits */
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.audience-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.audience-card h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.audience-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
}

.pricing-card {
    background: #111;
    border: 1px solid #FFD700;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

.pricing-header {
    background: #000;
    padding: 2rem;
    text-align: center;
    color: #FFD700;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.pricing-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.offer-tag {
    display: inline-block;
    background: #000;
    color: #FFD700;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pricing-body {
    padding: 2rem;
    text-align: center;
}

.inclusions {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.inclusions li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.inclusions i {
    color: #FFD700;
    width: 20px;
    margin-top: 4px;
    /* Align with first line of text */
    flex-shrink: 0;
}

.inclusions strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.inclusions p {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.inclusions i.fa-gift {
    color: var(--secondary-color);
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price-box {
    text-align: center;
    padding: 1.5rem 0;
    margin: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.offer-alert {
    color: #FFD700;
    font-weight: 700;
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.main-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.main-price .prefix {
    font-size: 1rem;
    color: #fff;
}

.price-value-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    line-height: 1;
    margin: 0.5rem 0;
}

.price-value-container .currency {
    font-size: 1.5rem;
    color: #FFD700;
    margin-top: 5px;
}

.price-value-container .amount {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.main-price .method {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 500;
}

.guarantees-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #888;
}

/* Guarantees */
.guarantees-detailed {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #050505, #111111, #050505);
    text-align: center;
}

.guarantee-box {
    background: var(--glass-bg);
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    transition: 0.3s;
}

.guarantee-box:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

.icon-box {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Footer & FAQ */
.faq {
    padding: 4rem 0;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    padding: 0 1rem;
    color: #ccc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background: black;
    color: #555;
    font-size: 0.9rem;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    color: #999;
    font-size: 1rem;
    transition: 0.3s;
}

.footer-social:hover {
    color: #E1306C;
    /* Instagram Color */
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media(max-width: 900px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

@media(max-width: 768px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .sticky-bar {
        flex-direction: column;
        text-align: center;
    }

    .sticky-bar p {
        margin-bottom: 0.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero {
        background-attachment: scroll !important;
        background-position: center top !important;
        background-size: cover !important;
        /* Ensure the gradient and image remain defined for mobile context */
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.95)), url('hero-bg-2.jpg');
    }

    .pricing-header h2 {
        font-size: 1.8rem;
    }

    .installments {
        font-size: 1.5rem;
    }
}

@media(max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        width: 100%;
        padding: 0 1.2rem;
    }

    /* Hero adjustments */
    .hero {
        padding: 5rem 0 3rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        /* Ensure long words break if needed */
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Sticky bar tweaks */
    .sticky-bar p {
        font-size: 0.85rem;
    }

    .countdown {
        gap: 8px;
    }

    .time-unit {
        min-width: 35px;
        padding: 3px;
    }

    .time-unit span {
        font-size: 1rem;
    }

    /* Button sizing */
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .cta-button.large {
        font-size: 1.1rem;
        padding: 1.2rem;
    }

    /* Mobile Text Adjustments */
    .highlight-title {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .gallery {
        padding-top: 2rem;
        /* Reduced from 4rem */
    }

    .stories {
        padding-bottom: 2rem;
        /* Reduced implicit padding if any, or ensuring tighter fit */
    }

    /* Cards and Grids */
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }

    .pricing-header h2 {
        font-size: 1.6rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .feature-item i {
        margin-bottom: 0;
        font-size: 1.8rem;
        min-width: 40px;
        text-align: center;
    }

    .pricing-card,
    .bonus-card,
    .story-card,
    .pillar,
    .guarantee-box {
        margin-bottom: 1.5rem;
    }

    .pricing-card,
    .bonus-card,
    .story-card,
    .guarantee-box {
        padding: 1.5rem;
    }

    .pricing-header {
        padding: 1.5rem;
    }

    .pricing-body {
        padding: 1.5rem;
    }

    .inclusions li {
        font-size: 0.95rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    /* Respect Safe Area */
    left: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    /* Highest priority */
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Ensure visibility on small screens */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 15px;
        left: 15px;
    }
}

/* Phones Preview */
.phones-container {
    margin-top: 4rem;
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phones-img {
    max-width: 100%;
    width: 700px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease, filter 0.5s ease;
    animation: float-phones 6s ease-in-out infinite;
}

.phones-img:hover {
    transform: scale(1.02) translateY(-15px);
    filter: drop-shadow(0 30px 50px rgba(0, 255, 136, 0.15));
}

@keyframes float-phones {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media(max-width: 768px) {
    .phones-container {
        margin-top: 3rem;
    }

    .phones-img {
        width: 100%;
    }
}