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

:root {
    --primary-color: #023436;
    --secondary-color: #012A2B;
    --accent-color: #D9FF43;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-color: #012A2B;
    --light-color: #f8fafc;
    --white: #ffffff;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #023436 0%, #012A2B 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background:#D9FF43;
    color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--secondary-color);
    color: #ffffff;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand h2 {
    color: var(--primary-color);
    margin: 0;
}

.nav-brand span {
    color: var(--accent-color);
}
.hero-span{
    color: var(--accent-color);
    font-weight: bold;

}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, rgba(2, 52, 54, 0.05) 100%);
    z-index: -2;
}

.trading-chart {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23023436;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23012A2B;stop-opacity:0.05" /></linearGradient></defs><path d="M0,200 Q100,150 200,100 T400,80" stroke="%2310b981" stroke-width="3" fill="none" opacity="0.6"/><path d="M0,250 Q100,200 200,180 T400,150" stroke="%23023436" stroke-width="2" fill="none" opacity="0.4"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 1;
}
.hero-titles{
    font-size: 54px;
    
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}
.stat-number-main{
    color: #012A2B !important;
}

.hero-cta {
    text-align: left;
}

.cta-subtitle {
    margin-top: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(217, 255, 67, 0.12);
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 18px rgba(1, 42, 43, 0.12);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.forex-image {
    position: relative;
    max-width: 900px;
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

.trading-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.profit-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.profit-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.profit-label {
    display: block;
    font-size: 0.875rem;
    color: var(--white);
    margin-top: 0.25rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(2, 52, 54, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 255, 67, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(217, 255, 67, 0.08) 100%);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(217, 255, 67, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-icon i {
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: var(--primary-color);
}
.reviews-text{
    color: #ffffff !important;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.review-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.reviewer strong {
    color: var(--text-primary);
    font-weight: 600;
}

.reviewer span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: block;
    margin-top: 0.25rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--white);
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    border: 3px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
}

.pricing-header h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

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

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    padding: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.pricing-card-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem 2rem;
}

.pricing-card .btn {
    width: 100%;
    max-width: 320px;
    margin: 0;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
}

.footer-section h3 span {
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Chat Button */
/* Live Chat Widget (WhatsApp) */
.live-chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.live-chat-widget.hide {
    transform: translateY(calc(100% + 100px));
    opacity: 0;
    pointer-events: none;
}

.live-chat-widget.live-chat-bounce-in {
    animation: live-chat-bounce-in 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes live-chat-bounce-in {
    0% {
        transform: translateY(calc(100% + 80px));
        opacity: 0;
    }
    55% {
        transform: translateY(-14px);
        opacity: 1;
    }
    72% {
        transform: translateY(6px);
    }
    86% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.live-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem 0.75rem 1rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: none;
    letter-spacing: 0.02em;
}

.live-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.live-chat-btn:focus {
    outline: 2px solid rgba(37, 211, 102, 0.6);
    outline-offset: 2px;
}

.live-chat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: live-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.live-chat-btn .fab {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.live-chat-label {
    white-space: nowrap;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-text,
.hero-image,
.feature-card,
.review-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .live-chat-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .live-chat-btn {
        padding: 0.6rem 1rem 0.6rem 0.85rem;
        font-size: 0.875rem;
    }

    .live-chat-btn .fab {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .trading-dashboard {
        padding: 1.5rem;
    }

    .profit-amount {
        font-size: 1.5rem;
    }
}
/* Mobile Responsive - Fixed Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px; /* Adjust based on your header height */
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: block;
    }

    /* Ensure logo is visible on mobile */
    .nav-brand {
        display: flex;
        align-items: center;
    }

    .nav-brand img {
        max-height: 40px;
        width: auto;
    }

    /* Make sure nav links are properly styled in mobile */
    .nav-menu .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }

    .nav-menu .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav-menu .btn {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .live-chat-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .live-chat-btn {
        padding: 0.55rem 0.9rem 0.55rem 0.75rem;
        font-size: 0.8rem;
    }

    .live-chat-btn .fab {
        font-size: 1.15rem;
    }

    .hero-titles{
        font-size: 44px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        top: 70px; /* Adjust for smaller header on very small screens */
    }

    .hero {
        padding-top: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .trading-dashboard {
        padding: 1.5rem;
    }

    .profit-amount {
        font-size: 1.5rem;
    }
}


.poolfx-screenshots-section {
    padding: 5rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.poolfx-screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 255, 67, 0.05) 0%, rgba(1, 42, 43, 0.1) 100%);
    pointer-events: none;
}

.poolfx-screenshots-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.poolfx-screenshots-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--white);
}

.poolfx-screenshots-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.poolfx-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.poolfx-screenshot-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.poolfx-screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.poolfx-screenshot-wrapper {
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
    aspect-ratio: 9/16; /* Mobile mockup ratio */
    max-height: 500px;
    margin: 0 auto;
    border-radius: 1.5rem;
    border: 8px solid #2d3748;
    box-shadow: inset 0 0 0 2px #4a5568;
}

.poolfx-screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.poolfx-screenshot-card:hover .poolfx-screenshot-img {
    transform: scale(1.05);
}

.poolfx-screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 52, 54, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.poolfx-screenshot-card:hover .poolfx-screenshot-overlay {
    opacity: 1;
}

.poolfx-screenshot-icon {
    font-size: 2rem;
    color: var(--accent-color);
    cursor: pointer;
}

.poolfx-screenshot-info {
    padding: 2rem;
    text-align: center;
}

.poolfx-screenshot-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.poolfx-screenshot-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Responsive for Screenshots Section */
@media (max-width: 768px) {
    .poolfx-screenshots-section {
        padding: 4rem 0;
    }
    
    .poolfx-screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
        gap: 2rem;
    }
    
    .poolfx-screenshot-wrapper {
        max-height: 400px;
        border-width: 6px;
    }
    
    .poolfx-screenshot-info {
        padding: 1.5rem;
    }
    
    .poolfx-screenshots-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .poolfx-screenshots-section {
        padding: 3rem 0;
    }
    
    .poolfx-screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .poolfx-screenshot-wrapper {
        max-height: 350px;
        border-width: 4px;
    }
    
    .poolfx-screenshot-info {
        padding: 1.25rem;
    }
    
    .poolfx-screenshot-heading {
        font-size: 1.125rem;
    }
    
    .poolfx-screenshot-desc {
        font-size: 0.9rem;
    }
}



/* Download Section Styles */
.download-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    margin-bottom: 5%;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.download-text {
    flex: 1;
}

.download-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.download-text > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-features {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 24px;
}

.download-steps {
    margin-bottom: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(1, 42, 43, 0.9);
    border-radius: 0.75rem;
    border: 1px solid rgba(217, 255, 67, 0.4);
}

.download-steps h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.download-steps ol {
    padding-left: 1.5rem;
}

.download-steps li {
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.download-btn {
    margin-bottom: 1rem;
    background: var(--accent-color);
    color: var(--dark-color);
}

.download-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.download-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

.download-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.app-screenshot {
    max-width: 300px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    z-index: 2;
    position: relative;
}

.mobile-frame {
    position: absolute;
    width: 320px;
    height: 650px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Design */
@media (max-width: 968px) {
    .download-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .feature {
        justify-content: center;
    }
    
    .download-steps ol {
        text-align: left;
        display: inline-block;
    }
    .download-btn{
        margin-top: 5%;
    }
}

@media (max-width: 640px) {
    .download-section {
        padding: 3rem 0;
    }
    
    .app-screenshot {
        max-width: 250px;
    }
    
    .mobile-frame {
        width: 270px;
        height: 550px;
    }
    .marketing-download-box{       
        margin-top: -10%;
    }
    .marketing-download-box p{       
        margin-top: -5%;
    }
}



/* Marketing Modal Styles - Specific to avoid conflicts */
.marketing-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 42, 43, 0.95);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
   
}

.marketing-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.marketing-modal-content {
    background: var(--white);
    border-radius: 1.5rem;
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: flex;
    transform: scale(0.9);
    transition: transform 0.4s ease;
    position: relative;

}

.marketing-modal.show .marketing-modal-content {
    transform: scale(1);
}

.marketing-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
}

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

.marketing-modal-body {
    display: flex;
    width: 100%;
}

.marketing-modal-left {
    flex: 1;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marketing-modal-left h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.marketing-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.marketing-stats {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.marketing-stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.marketing-features {
    list-style: none;
    margin-top: 1.5rem;
}

.marketing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.marketing-features i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.marketing-modal-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
  
}

.marketing-download-box {
    text-align: center;
  
}

.marketing-download-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.marketing-download-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.marketing-download-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Fix for mobile guarantee visibility */
.marketing-guarantee {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Mobile specific guarantee styles */
@media (max-width: 768px) {
    .marketing-guarantee {
        font-size: 0.8rem !important;
        padding: 0.4rem !important;
        margin-top: -5% !important;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .marketing-guarantee i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .marketing-guarantee {
        font-size: 0.75rem !important;
        padding: 0.3rem !important;
    }
}

/* Download notification styles */
.download-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    text-align: center;
    max-width: 90%;
    width: 400px;
    display: none;
}

.download-notification.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.download-notification h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.download-notification .spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--success-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.download-notification .download-steps {
    text-align: left;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(1, 42, 43, 0.06);
    border-radius: 0.5rem;
}

.download-notification .download-steps ol {
    margin: 0;
    padding-left: 1.2rem;
}

.download-notification .download-steps li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.notification-close {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .marketing-modal-body {
        flex-direction: column;
    }
    
    .marketing-modal-left,
    .marketing-modal-right {
        padding: 2rem;
    }
    
    .marketing-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .marketing-stat {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .marketing-modal {
        padding: 10px;
    }
    
    .marketing-modal-content {
        border-radius: 1rem;
    }
    
    .marketing-modal-left,
    .marketing-modal-right {
        padding: 1.5rem;
    }
    
    .marketing-modal-left h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Limit modal height and make it centered */
.marketing-modal-content {
  max-height: 90vh;
  overflow-y: auto;
}

/* App Screenshot */
.marketing-app-image {
  max-width: 250px;
  margin: 1rem auto 2rem;
  display: block;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);

}

/* Mobile adjustments */
@media (max-width: 768px) {
  .marketing-modal-content {
    max-width: 95%;
    max-height: 95vh; /* prevent full screen takeover */
  }

  .marketing-app-image {
    max-width: 180px;
    margin: 1rem auto;
    margin-top: -12% !important;
  }
}

@media (max-width: 480px) {
  .marketing-app-image {
    max-width: 150px;
  }
}
/* Make sure modal never exceeds screen height */
.marketing-modal-content {
    max-height: 90vh;
    overflow: hidden; /* prevent scrollbars */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .marketing-modal-body {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }
  
    .marketing-modal-left,
    .marketing-modal-right {
      padding: 1.2rem;
    }
  
    .marketing-modal-left h2 {
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
    }
  
    .marketing-subtitle {
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }
  
    .marketing-stats {
      margin: 1rem 0;
    }
  
    .stat-number {
      font-size: 1.3rem;
    }
  
    .stat-label {
      font-size: 0.75rem;
    }
  
    .marketing-features {
      margin-top: 1rem;
      font-size: 0.85rem;
    }
  
    .marketing-features li {
      margin-bottom: 0.5rem;
    }
  
    /* Shrink app image */
    .marketing-app-image {
      max-width: 120px;
      margin: 0.5rem auto;
    }
  
    /* Buttons smaller */
    .marketing-download-btn {
      font-size: 0.9rem;
      padding: 0.6rem 1rem;
    }
  
    .marketing-guarantee {
      font-size: 0.75rem;
    }
  }
  
  @media (max-width: 480px) {
    .marketing-modal-content {
      max-width: 95%;
      max-height: 100vh;
    }
  
    .marketing-modal-left h2 {
      font-size: 1.4rem;
    }
  
    .marketing-app-image {
      max-width: 100px;
    }
  }
  /* Compact stats row */
.marketing-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1rem 0; /* reduced spacing */
    gap: 1rem;
    flex-wrap: nowrap; /* force single line */
  }
  
  .marketing-stat {
    flex: 1;
    text-align: center;
  }
  
  .stat-number {
    display: inline-block;
    font-size: 1rem;   /* reduced size */
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 0.3rem;
  }
  
  .stat-label {
    display: inline-block;
    font-size: 0.85rem;  /* smaller label */
    color: var(--text-secondary);
  }
  