.elementor-6879 .elementor-element.elementor-element-74b6872{--display:flex;}/* Start custom CSS for container, class: .elementor-element-74b6872 *//* ===================================================================
   SUPER-OPTIMIZED STYLESHEET FOR SUPER WHATSAPP CRM
   - Single file for max performance.
   - Uses CSS variables for easy theme changes.
   - Mobile-first responsive design.
   - Clean, modern, high-conversion design.
   ===================================================================
*/

/* --- 1. Global Reset & Variables --- */

:root {
    --dark-bg: #0B0F19;
    --card-bg: #1e293b;
    --card-bg-light: #111827;
    --border-color: #334155;
    --primary-blue: #38bdf8;
    --primary-green: #34d399;
    --primary-purple: #818cf8;
    --danger-red: #ef4444;
    --danger-red-light: #fca5a5;
    --warning-yellow: #facc15;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-dark: #0B0F19;
    --text-white: #ffffff;
    --font-primary: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
iframe,
video {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
}

ul {
    list-style: none;
}

/* --- 2. Utility Classes --- */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden {
    display: none !important;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.gradient-text-danger {
    background: linear-gradient(90deg, var(--danger-red-light), var(--danger-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
}

.cta-button i {
    margin-right: 0.5rem;
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* --- 3. Header & Navigation --- */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0 1.5rem;
    height: 80px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(10px);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px; /* Adjusted logo size */
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: var(--primary-green);
}

.nav-cta {
    background-color: var(--primary-green);
    color: var(--text-dark) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: opacity 0.3s ease;
}

.nav-cta:hover {
    color: var(--text-dark) !important;
    opacity: 0.9;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-nav-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* --- 4. Hero Section --- */

.hero-section {
    padding-top: 140px; /* 80px header + 60px padding */
    padding-bottom: 60px;
    text-align: center;
}

.social-proof-stars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.social-proof-stars img {
    height: 25px;
    width: auto;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* --- 5. Pain Points Section --- */

.pain-points-section {
    background-color: var(--card-bg-light);
    padding: 60px 0;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.pain-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.pain-card i {
    font-size: 2rem;
    color: var(--danger-red);
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pain-card p {
    color: var(--text-secondary);
}

/* --- 6. Video / Demo Section --- */

.video-lang-section {
    padding: 60px 0;
}

.lang-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.lang-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-label.active {
    color: var(--primary-blue);
    font-weight: 700;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--card-bg);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary-green);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.video-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-responsive {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- 7. Features Section --- */

.features-section {
    background-color: var(--card-bg-light);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* --- 8. Testimonials Section --- */

.testimonials-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    /* Fade out edges for seamless loop */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-carousel {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    width: fit-content;
    /* Double the number of cards * (width + gap) */
    animation: scroll 60s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* (4 cards * (350px width + 24px gap)) = 1496px */
        transform: translateX(calc(-4 * (350px + 1.5rem)));
    }
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    width: 350px;
    flex-shrink: 0;
    text-align: left;
    margin-right: 1.5rem;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: var(--warning-yellow);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    margin: 0 0 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.author-title {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* --- 9. How It Works Section --- */

.how-it-works-section {
    background-color: var(--card-bg-light);
    padding: 60px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    background: linear-gradient(145deg, var(--primary-green), var(--primary-blue));
    color: var(--text-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.3);
}

.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
}

/* --- 10. Pricing Section --- */

.pricing-section {
    padding: 60px 0;
}

.pricing-toggle {
    display: inline-flex;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.5rem;
    margin: 2rem auto 3rem;
}

.toggle-btn {
    background-color: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background-color: var(--primary-blue);
    color: var(--text-white);
    box-shadow: 0 4px 10px rgba(56, 189, 248, 0.2);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center; /* Align cards vertically */
}

.plan-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform .3s ease, border-color .3s ease;
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.1);
}

.plan-badge {
    background-color: var(--primary-blue);
    color: var(--text-white);
    font-weight: 700;
    padding: .5rem 1rem;
    border-radius: 99px;
    align-self: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.plan-price-original {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.plan-price {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-white);
}

.plan-term {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.plan-card ul {
    list-style: none;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin: 0 0 2rem;
}

.plan-card li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: var(--text-secondary);
}

.plan-card li i {
    color: var(--primary-green);
    margin-top: 5px;
    font-size: 0.9rem;
}

.plan-card .cta-button {
    width: 100%;
}

.reseller-heading {
    margin-top: 5rem;
    font-size: 1.8rem;
    color: var(--text-primary);
    text-align: center;
}

.reseller-card-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.reseller-card-wrapper .plan-card {
    max-width: 450px;
    width: 100%;
    border-color: var(--warning-yellow);
}

/* --- 11. Value Stack & Urgency --- */

.value-stack-section {
    background-color: var(--card-bg-light);
    padding: 60px 0;
}

.value-stack-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.value-list-wrapper {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.value-list-wrapper .section-title {
    text-align: left;
    font-size: 2rem;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.value-item:last-child {
    border-bottom: none;
}

.value-item span:first-child {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.value-item i {
    color: var(--primary-green);
}

.value-price {
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.bonus-item .value-price {
    color: var(--primary-green);
    text-decoration: none;
}

.total-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.offer-box {
    background-color: var(--card-bg);
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.1);
}

.offer-box h3 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.offer-box .plan-price {
    font-size: 3.5rem;
}

.offer-box .plan-compare {
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.urgency-section {
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid var(--danger-red);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.urgency-section h3 {
    color: var(--danger-red-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.urgency-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.timer-box {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
}

.timer-box .time {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1.1;
    color: var(--text-white);
}

.timer-box .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: block;
}

/* --- 12. Final CTA & Guarantee --- */

.final-cta-section {
    padding: 60px 0;
    text-align: center;
}

.final-cta-gif {
    max-width: 700px;
    width: 100%;
    margin: 0 auto 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.final-cta-section .cta-button {
    margin-top: 1.5rem;
}

/* --- 13. FAQ Section --- */

.faq-section {
    background-color: var(--card-bg-light);
    padding: 60px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    transition: transform 0.3s ease;
    margin-left: 1rem;
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    padding-bottom: 1.5rem;
    margin: 0;
    text-align: left;
    line-height: 1.7;
}

.faq-item.active .faq-question {
    color: var(--primary-blue);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- 14. Footer --- */

.footer {
    background-color: #030712;
    padding: 3rem 1.5rem;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer .disclaimer {
    font-size: 0.8rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;
}

/* --- 15. Floating CTA & FOMO (Conversion Trinity) --- */

.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green), var(--primary-purple), var(--primary-blue));
    background-size: 300% 100%;
    animation: gradient-animation 4s linear infinite;
    color: var(--text-dark);
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, animation-duration 0.3s ease;
    cursor: pointer;
}

.floating-cta:hover {
    box-shadow: 0 -7px 20px rgba(56, 189, 248, 0.2);
    animation-duration: 2s;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#fomo-notification-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1002;
    background-color: var(--text-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    max-width: 320px;
    width: 90%;
    opacity: 0;
    transform: translateY(100px);
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

#fomo-notification-widget.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.fomo-icon {
    font-size: 1.5rem;
}

.fomo-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.fomo-timestamp {
    font-size: 0.8rem;
    color: #64748b;
}

/* --- 16. Popup Form --- */

#form-popup {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none; /* Changed to flex by JS */
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-content {
    background-color: var(--text-white);
    color: var(--text-dark);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    font-weight: 300;
    color: #aaa;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.popup-content h5 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.popup-subtext {
    text-align: center;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.checkout-form .form-field {
    margin-bottom: 1rem;
}

.checkout-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.checkout-form input,
.checkout-form select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.form-field-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.secure-payment-info {
    text-align: center;
    margin-top: 1.5rem;
}

.secure-payment-info img {
    height: 35px;
    width: auto;
    margin-bottom: 0.5rem;
}

.secure-payment-info p {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* --- 17. Responsive Styles --- */

@media (max-width: 1024px) {
    .plan-card.featured {
        transform: scale(1); /* Disable zoom on tablet */
    }
}

@media (max-width: 768px) {
    /* --- Nav --- */
    .main-nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--dark-bg);
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
    }
    .main-nav ul.nav-open {
        display: flex;
    }
    .main-nav ul li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    .mobile-nav-toggle {
        display: block;
    }

    /* --- Pricing --- */
    .plan-card.featured {
        order: -1; /* Make featured card appear first on mobile */
    }

    /* --- Value Stack --- */
    .value-stack-container {
        grid-template-columns: 1fr;
    }

    /* --- How it Works --- */
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .step-card:not(:last-child)::after {
        display: none; /* Hide desktop connecting line */
    }
    
    /* --- FOMO --- */
    #fomo-notification-widget {
        left: 50%;
        bottom: 80px; /* Above the floating cta */
        transform: translateX(-50%) translateY(100px);
    }
    #fomo-notification-widget.show {
        transform: translateX(-50%) translateY(0);
    }
}

@media (min-width: 769px) {
    /* --- Floating CTA on Desktop --- */
    .floating-cta {
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
        width: auto;
        right: auto;
        padding: 1rem 2.5rem;
        border-radius: 50px;
    }
    .floating-cta:hover {
        transform: translateX(-50%) translateY(-5px);
    }
    
    /* --- How it works desktop line --- */
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 48px; /* Vertically center with the icons */
        right: -1rem; /* Half the gap width */
        width: 2rem; /* Same as the gap width */
        height: 2px;
        background-image: linear-gradient(to right, var(--border-color) 50%, transparent 50%);
        background-size: 10px 2px;
        background-repeat: repeat-x;
        z-index: 0;
    }
}

@media (min-width: 1025px) {
    .value-stack-container {
        grid-template-columns: 1fr 1fr;
    }
}/* End custom CSS */