:root {
    --bg-dark: #0b0c10;
    --bg-secondary: #1f2833;
    --primary: #17890f;
    /* Thanos Green */
    --primary-hover: #12630b;
    --text-main: #c5c6c7;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-glow: radial-gradient(circle, rgba(23, 137, 15, 0.4) 0%, rgba(11, 12, 16, 0) 70%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: var(--text-light);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(90deg, #17890f, #45ffa2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(23, 137, 15, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    box-shadow: 0 0 25px rgba(23, 137, 15, 0.6);
}

.btn-secondary {
    display: inline-block;
    color: #fff;
    padding: 12px 30px;
    margin-left: 15px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.btn-secondary:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(23, 137, 15, 0.1);
}

.btn-secondary:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(23, 137, 15, 0.1);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(11, 12, 16, 0.9);
    /* Darker for readability */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

/* ... existing code ... */

/* Footer */
footer {
    background: #050507;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-main);
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.logo .dot {
    color: var(--primary);
    font-size: 30px;
    line-height: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.badge-new {
    background: rgba(23, 137, 15, 0.2);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(23, 137, 15, 0.4);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.stat-item h3 {
    color: #fff;
    font-size: 1.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Mockup Image */
.image-wrapper {
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.hero-mockup-img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: 0.5s ease-out;
}

.hero-mockup-img:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.floating-anim {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px) rotateY(-10deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-10deg) rotateX(5deg);
    }

    100% {
        transform: translateY(0px) rotateY(-10deg) rotateX(5deg);
    }
}

.gradient-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-glow);
    z-index: -1;
    filter: blur(80px);
    opacity: 0.6;
}

/* Scroll Mouse */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-main);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(20, 25, 30, 0.7);
    backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Finer border */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy hover */
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Subtle gradient top border for depth */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0.5;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(23, 137, 15, 0.15);
    /* Primary glow */
    background: rgba(25, 32, 40, 0.9);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary);
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #ddd;
}

/* Icon Styling */
.icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Very subtle border */
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 30px rgba(23, 137, 15, 0.5);
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
}

/* CTA */
.cta-box {
    background: linear-gradient(135deg, var(--bg-secondary), #000);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.cta-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cta-form input {
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    outline: none;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid var(--glass-border);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 50px;
    }

    .nav-links {
        display: none;
    }

    .cta-form {
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu {
        display: block;
    }
}

/* Desktop: Hide Mobile Toggle & Menu */
@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* Mobile Menu Styling */
.mobile-menu {
    display: none;
    background: rgba(11, 12, 16, 0.95);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--glass-border);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.mobile-nav-links a {
    color: #fff;
    font-size: 1.1rem;
    display: block;
    padding: 10px;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #000;
    margin: 10% auto;
    padding: 0;
    border: 1px solid var(--glass-border);
    width: 80%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(23, 137, 15, 0.2);
    position: relative;
}

.close-modal {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: -40px;
    right: 0;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* New Form Styles */
.cta-form-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px 15px 15px 50px;
    /* Space for icon */
    border-radius: 50px;
    /* Pillow shape */
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    /* Slightly transparent */
    color: #fff;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(23, 137, 15, 0.2);
}

.input-group select {
    appearance: none;
    /* Remove default arrow */
    cursor: pointer;
}

.input-group select option {
    background-color: #000;
    color: #fff;
}

/* Button & Loader */
.btn-block {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.loader {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid #fff;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 1s linear infinite;
    /* Safari */
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Success Section */
.code-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary);
    padding: 15px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

#generated-code {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: 2px;
}

.btn-copy {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-copy:hover {
    color: #fff;
    transform: scale(1.1);
}

.instruction-text {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

/* Detailed Features */
.mb-100 {
    margin-bottom: 100px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.col-md-6 {
    width: 50%;
    padding: 0 15px;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin: 15px 0 20px;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-main);
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #fff;
}

/* =========================================
   BLOG STYLES
   ========================================= */

.blog-header {
    padding: 120px 0 60px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(23, 137, 15, 0.15), transparent 70%);
}

.blog-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.blog-header p {
    font-size: 1.2rem;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    padding-bottom: 80px;
}

.blog-card {
    background: rgba(31, 40, 51, 0.4);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.blog-thumb {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #fff;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: var(--primary);
    gap: 12px;
}

/* Article View */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 80px;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-main);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.article-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d1d1d1;
}

.article-body h2 {
    color: #fff;
    margin-top: 50px;
    margin-bottom: 25px;
    font-size: 2rem;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: #ccc;
}

.feature-list li i {
    color: var(--primary);
    margin-right: 10px;
}

.feature-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

.pl-50 {
    padding-left: 50px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1.1rem;
    color: #fff;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    padding: 30px;
    position: relative;
    background: rgba(31, 40, 51, 0.4);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.user-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-main);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

.faq-question i {
    transition: 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responsive Extra */
@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
        margin-bottom: 40px;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .pl-50 {
        padding-left: 15px;
    }

    .feature-text h2 {
        font-size: 2rem;
    }
}

/* New Section Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.security-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(23, 137, 15, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(200px);
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    padding: 40px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(23, 137, 15, 0.2);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge-discount {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: #fff;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.price .currency {
    font-size: 1.5rem;
    margin-right: 5px;
    color: var(--primary);
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: var(--text-main);
    margin-left: 5px;
}

.billing-cycle {
    color: var(--text-main);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #ddd;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-footer {
    margin-top: auto;
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Footer Styling (Ensuring Responsiveness) */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 20px 0;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--text-main);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-main);
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    margin-top: 40px;
    color: var(--text-main);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }

    .footer-col p {
        text-align: center !important;
        /* Force center on mobile */
    }

    .social-links {
        justify-content: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    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: 1000;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Mobile Hero Fixes */
@media (max-width: 991px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        /* More space for navbar */
        padding-bottom: 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .stats-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .image-wrapper {
        margin-top: 20px;
    }

    /* Ensure image doesn't overlap next section */
    /* Ensure image doesn't overlap next section */
    .hero-mockup-img {
        max-width: 100%;
        height: auto;
    }
}

/* Screenshots Carousel */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
    cursor: grab;
    /* Indicate draggable */
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    user-select: none;
    /* Prevent selection while dragging */
    -webkit-user-select: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.carousel-slide {
    flex: 0 0 60%;
    /* Mobile: smaller items */
    scroll-snap-align: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: zoom-in;
    /* Indicate clickable */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px;
    text-align: center;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s;
}

.carousel-slide:hover .slide-caption {
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    padding: 0 10px;
}

.nav-btn {
    pointer-events: auto;
    background: rgba(23, 137, 15, 0.9);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 769px) {
    .carousel-slide {
        flex: 0 0 25%;
        /* Desktop: Show ~3 items */
    }

    .nav-btn:hover {
        background: var(--primary);
        transform: scale(1.1);
    }

    .nav-btn.prev {
        transform: translateX(-50px);
    }

    .nav-btn.next {
        transform: translateX(50px);
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    /* Large view */
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(23, 137, 15, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-caption {
    margin: 15px auto;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: transparent;
    border: none;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
/* Mobile Performance Fixes */
@media screen and (max-width: 768px) {
    .navbar, .feature-card, .glass-card, .modal, .carousel-slide {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        background: rgba(11, 12, 16, 0.98) !important;
        box-shadow: none !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    .feature-card:hover, .hero-mockup-img:hover {
        transform: none !important;
    }
    .floating-anim {
        animation: none !important;
    }
    .gradient-blob {
        display: none !important; /* Hide heavy gradient blob */
    }
}
