:root {
    --primary-lime: #7FFF2B;
    --primary-lime-dim: rgba(127, 255, 43, 0.1);
    --bg-black: #000000;
    --bg-dark: #0A0A0A;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    --font-heading: 'Red Hat Display', sans-serif;
    --font-body: 'Red Hat Display', sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-lime);
    position: relative;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-lime);
    color: #000000 !important;
    /* Force black text */
    box-shadow: 0 0 15px var(--primary-lime-dim);
}

.btn-primary:hover {
    background-color: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    margin-left: 1rem;
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-black);
}

/* Promo Bar */
.promo-bar {
    position: relative;
    width: 100%;
    height: 35px;
    background-color: var(--primary-lime);
    color: var(--bg-black);
    z-index: 1001;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Header */
.site-header {
    padding: 1rem 0;
    position: absolute;
    width: 100%;
    top: 35px;
    /* Pushed down by promo bar */
    z-index: 1000;
    background: transparent;
    /* Transparent initially */
    transition: background-color 0.3s, padding 0.3s, backdrop-filter 0.3s, top 0.3s;
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 40px;
    width: auto;
    display: block;
}

.logo-small {
    font-weight: 400;
    font-size: 0.8rem;
    display: block;
    line-height: 0.8;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:not(.btn):hover {
    color: var(--primary-lime);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Soft Gradient: Green top-left to Black */
    background: radial-gradient(circle at 10% 10%, rgba(127, 255, 43, 0.2), #000000 60%);
    overflow: hidden;
}

/* Optional: Add a subtle grid pattern overlay for texture */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

/* Features Section */
.features-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(0deg, var(--bg-black) 0%, var(--bg-dark) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-lime);
    box-shadow: 0 10px 30px rgba(127, 255, 43, 0.1);
}

.icon-box {
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ensures everything, including logo, is centered */
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-lime);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        /* Reduced from 3rem, adjusted for mobile */
        margin-top: 2rem;
        /* Add spacing from top to avoid overlap */
    }

    h2 {
        font-size: 2rem;
    }

    .main-nav {
        display: block;
        /* Always block for animation */
        position: fixed;
        top: 0;
        right: -100%;
        /* Start off-screen */
        width: 80%;
        /* Slightly wider for better touch targets */
        max-width: 320px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1100;
        padding: 6rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
        padding-bottom: 0.5rem;
    }

    .main-nav .btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.9rem !important;
        /* Smaller text for mobile menu button */
        padding: 0.8rem;
    }

    .hero-section {
        padding-top: 120px;
        /* Increase top padding for mobile to clear header */
        align-items: flex-start;
        /* Align closer to top */
    }

    .mobile-menu-btn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-white);
        position: absolute;
    }

    .mobile-menu-btn span:nth-child(1) {
        top: 0;
    }

    .mobile-menu-btn span:nth-child(2) {
        top: 9px;
    }

    .mobile-menu-btn span:nth-child(3) {
        bottom: 0;
    }
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    /* Center vertically if heights differ */
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    backdrop-filter: blur(5px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-lime);
}

.pricing-card.popular {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--primary-lime);
    box-shadow: 0 0 30px var(--primary-lime-dim);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-lime);
    color: var(--bg-black);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary-lime);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--primary-lime);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(127, 255, 43, 0.2);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    /* Giving even more space to text as requested */
    gap: 2rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.3rem;
    /* Increased size */
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    /* Prevent text from being too wide */
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    /* Center horizontally in the column */
    align-items: flex-end;
    /* Align to bottom */
    position: relative;
    height: 100%;
    min-height: 500px;
    /* Ensure space for the image */
}

/* Hero Man Image */
.hero-man-img {
    width: 100%;
    max-width: 650px;
    /* Zoom in the image without affecting layout flow */
    transform: scale(1.55);
    transform-origin: bottom center;
    /* Blend mode to make black background transparent */
    mix-blend-mode: screen;
    /* Radial mask to fade ALL edges (top, sides, bottom) explicitly */
    mask-image: radial-gradient(closest-side, black 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(closest-side, black 70%, transparent 100%);
    /* Crush dark pixels to pure black so they become transparent */
    filter: contrast(1.2) brightness(0.9) drop-shadow(0 0 20px rgba(127, 255, 43, 0.1));

    /* Ensure it touches the bottom visually if needed */
    margin-bottom: -2px;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: auto;
        margin-top: 1rem;
        min-height: 300px;
        /* Limit height on mobile */
    }

    .hero-man-img {
        transform: scale(1.1);
        /* Less zoom on mobile */
        max-width: 100%;
    }

    .hero-buttons {
        gap: 0.5rem;
        /* Reduce gap between buttons */
    }

    .hero-buttons .btn {
        padding: 0.8rem 1rem;
        /* Smaller horizontal padding */
        font-size: 0.75rem;
        /* Smaller font to fit single line */
        white-space: nowrap;
        /* Force single line */
        letter-spacing: 0.5px;
    }
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
}

.price .period {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features li::before {
    content: "✓";
    color: var(--primary-lime);
    font-weight: bold;
}

.plan-features li:last-child {
    border-bottom: none;
}

.full-width {
    width: 100%;
    display: block;
}

@media (max-width: 900px) {
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}


/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(127, 255, 43, 0.3);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary-lime);
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    background-color: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin-bottom: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text h2 {
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-lime);
}

.contact-form {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-lime);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
    text-decoration: none;
    /* Remove underline */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    /* Ensure icon stays white on hover */
}

.whatsapp-float i {
    font-size: 32px;
}

@keyframes pulse {
    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) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    /* Background slightly lighter or different to separate */
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0f0d 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-lime);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card .stars {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-card .feedback {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-style: italic;
}

.client-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.client-name {
    display: block;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.client-role {
    font-size: 0.9rem;
    color: var(--primary-lime);
}

/* SEO & Performance Section */
.seo-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
}

.seo-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.score-card {
    text-align: center;
    width: 150px;
}

.score-card h3 {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-gray);
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.5;
}

.circle {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    animation: progress 1.5s ease-out forwards;
}

/* Plan Guidance Section */
.plan-guide-section {
    padding: var(--spacing-xl) 0;
    background-color: #0d1210;
    /* Slightly different dark */
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glass-like */
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary-lime);
    transition: transform 0.3s;
}

.guide-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.guide-card h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.target-badge {
    display: inline-block;
    background: rgba(127, 255, 43, 0.15);
    color: var(--primary-lime);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.guide-desc {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.guide-desc strong {
    color: var(--text-white);
}

.seo-benefits {
    list-style: none;
    padding: 0;
}

.seo-benefits li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.circular-chart.green .circle {
    stroke: var(--primary-lime);
    /* Brand Lime Green */
}

.percentage {
    fill: var(--text-white);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.5em;
    text-anchor: middle;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}