/* GLOBAL STYLES */
html {
    scroll-behavior: smooth;
}

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

:root {
    --primary-blue: #2563eb;
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --accent-lime: #ccff00;
    --text-white: #ffffff;
    --max-width: 1140px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    background-color: #ffffff;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR SECTION */
.navbar {
    background: transparent;
    /* Will sit on top of the hero gradient */
    padding: 30px 0;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-links {
    display: flex;
    gap: 48px;
}

.navbar-links a {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    opacity: 0.85;
}

.navbar-links a:hover {
    opacity: 1;
}

.btn-primary {
    background-color: var(--accent-lime);
    color: #000000;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(204, 255, 0, 0.4);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 255, 0, 0.5);
    filter: brightness(1.05);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: radial-gradient(circle at 80% 20%, rgba(204, 255, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(59, 130, 246, 0.4) 0%, transparent 40%),
        linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding-top: 100px;
    /* Espacio para el navbar */
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    /* Centrado vertical en el viewport */
    margin-bottom: 98px;
    /* Margen solicitado para desktop */
}

.hero-container {
    display: flex;
    align-items: center;
    /* Centrado vertical entre texto e imagen */
    justify-content: space-between;
    width: 100%;

}

/* Hero Content */
.hero-content {
    flex: 0 0 55%;
    margin: 0px 0px 98px 0px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--accent-lime);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-rocket {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rocket-icon {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Phone Mockup */
.hero-visual {
    flex: 0 0 35%;
    position: relative;
    display: flex;
    justify-content: center;
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-lime);
    filter: blur(120px);
    opacity: 0.2;
    top: -20px;
    right: -20px;
    z-index: 1;
}

.phone-image {
    width: 420px;
    /* TamaÃ±o ajustado para ser fiel a la referencia */
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    z-index: 2;
    position: relative;
    margin-right: -40px;
    /* PequeÃ±o ajuste para equilibrar el espacio visual como en el diseÃ±o */
}

/* PROBLEM SECTION */
.problem {
    padding: 0px 0;
    background-color: #ffffff;
    color: #1a1a1a;
}

.problem-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.problem-image {
    flex: 1;
}

.problem-image img {
    width: 100%;
    border-radius: 40px;
}

.problem-content {
    flex: 1;
}

.sub-badge {
    color: #3b82f6;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.problem-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    color: #000;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.problem-item {
    display: flex;
    gap: 20px;
}

.problem-icon {
    flex: 0 0 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
}

.icon-red {
    background-color: #fff1f1;
    color: #ef4444;
}

.icon-orange {
    background-color: #fff7ed;
    color: #f97316;
}

.problem-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.problem-text p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* RESPONSIVE UPDATES */
@media (max-width: 1024px) {
    .problem-container {
        gap: 40px;
    }

    .problem-content h2 {
        font-size: 32px;
    }
}

/* SOLUTION SECTION */
.solution {
    padding: 30px 0;
    background-color: #ffffff;
    color: #1a1a1a;
}

.solution-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.solution-content {
    flex: 1;
}

.solution-badge {
    background-color: #0d121f;
    color: #ccff00;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: inline-block;
}

.solution-content h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #0d121f;
}

.solution-content p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    font-weight: 500;
    color: #1f2937;
}

.list-icon {
    width: 24px;
    height: 24px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image {
    flex: 1;
}

.solution-image img {
    width: 100%;
    border-radius: 40px;
    /* Sin box-shadow como pediste para la anterior, para mantener coherencia */
}

/* RESPONSIVE SOLUTION */
@media (max-width: 1024px) {
    .solution-content h2 {
        font-size: 36px;
    }
}

/* FEATURES SECTION */
.features {
    padding: 0px 0;
    background-color: #F8FAFC;
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.features-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0d121f;
    margin-bottom: 20px;
}

.features-header p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 32px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0d121f;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* RESPONSIVE FEATURES */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .solution-container {
        flex-direction: column;
        text-align: left;
    }

    .solution-image {
        order: -1;
        /* Image stays on top on mobile */
    }
}

/* GAMIFICATION SECTION */
.gamification {
    padding: 120px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
}

.gamification-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.gamification-content {
    flex: 1;
}

.gam-badge {
    background-color: #ccff00;
    color: #0d121f;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: inline-block;
}

.gamification-content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}

.gamification-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 500px;
}

.gam-steps {
    display: flex;
    gap: 20px;
}

.gam-step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    flex: 1;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-active {
    background-color: #ccff00;
    color: #000;
}

.step-info h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.step-info p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Ranking Panel */
.ranking-panel {
    flex: 0 0 440px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.ranking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.ranking-title h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}

.ranking-title span {
    color: #ccff00;
    font-size: 12px;
    font-weight: 600;
}

.ranking-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-wrap {
    position: relative;
}

.avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.badge-pro {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: white;
    color: black;
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.user-stats {
    flex: 1;
}

.stats-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
}

.pts {
    color: white;
    opacity: 0.8;
}

.ranking-item:first-child .pts {
    color: #ccff00;
    opacity: 1;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.fill-lime {
    background-color: #ccff00;
}

.btn-ranking {
    display: block;
    text-align: center;
    background: rgba(59, 130, 246, 0.5);
    color: white;
    padding: 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ranking:hover {
    background: rgba(59, 130, 246, 0.8);
    transform: translateY(-2px);
}

/* RESPONSIVE GAMIFICATION */
@media (max-width: 1024px) {
    .gamification-container {
        flex-direction: column;
        text-align: center;
    }

    .gamification-content p {
        margin: 0 auto 50px;
    }

    .gam-steps {
        justify-content: center;
        text-align: left;
    }

    .ranking-panel {
        flex: 0 0 auto;
        width: 100%;
        max-width: 480px;
    }

    .gamification-content h2 {
        font-size: 38px;
    }
}

/* MERCHANTS SECTION */
.merchants {
    padding: 120px 0;
    background-color: #ffffff;
    color: #1a1a1a;
}

.merchants-container {
    display: flex;
    align-items: center;
    gap: 100px;
}

.merchants-visual {
    flex: 1;
}

.dashboard-frame {
    background-color: #0d121f;
    border-radius: 40px;
    padding: 20px;
    display: flex;
    height: 500px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.dashboard-sidebar {
    width: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
}

.sidebar-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.active-dot {
    background-color: #ccff00;
}

.dashboard-content {
    flex: 1;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 40px;
    color: #0d121f;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dashboard-header h5 {
    font-size: 20px;
    font-weight: 700;
}

.header-pills {
    display: flex;
    gap: 10px;
}

.pill-long,
.pill-short {
    height: 24px;
    background-color: #f3f4f6;
    border-radius: 20px;
}

.pill-long {
    width: 60px;
}

.pill-short {
    width: 28px;
}

.dashboard-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    flex: 1;
    padding: 20px;
    border: 1.5px solid #f3f4f6;
    border-radius: 100px;
    /* Pillow shape from design */
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
}

.blue-text {
    color: #3b82f6;
}

.plus-text {
    background-color: #ccff00;
    color: #000;
    padding: 2px 8px;
    border-radius: 10px;
}

.dashboard-chart {
    border: 1.5px solid #f3f4f6;
    border-radius: 25px;
    padding: 25px;
}

.chart-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.chart-info h6 {
    font-size: 16px;
    font-weight: 700;
}

.chart-info span {
    font-size: 11px;
    color: #9ca3af;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    padding-bottom: 10px;
}

.bar {
    width: 28px;
    background-color: #f3f4f6;
    border-radius: 6px;
}

.active-bar {
    background-color: #3b82f6;
}

/* Info Side */
.merchants-info {
    flex: 1;
}

.merchants-info h2 {
    font-size: 44px;
    line-height: 1.1;
    margin: 20px 0 30px;
    font-weight: 700;
}

.merchants-info p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
}

.check-list {
    list-style: none;
    margin-bottom: 50px;
}

.check-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.check-icon {
    flex: 0 0 24px;
    color: #0d121f;
}

.check-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.check-text p {
    font-size: 15px;
    margin: 0;
}

.btn-merchants {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-merchants:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

/* RESPONSIVE MERCHANTS */
@media (max-width: 1024px) {
    .merchants-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .check-list li {
        text-align: left;
    }

    .merchants-info h2 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .dashboard-frame {
        height: auto;
    }

    .dashboard-content {
        padding: 25px;
    }

    .dashboard-stats {
        flex-direction: column;
    }
}

/* FOOTER SECTION */
.main-footer {
    padding: 0px 0 0;
    /* Removed bottom padding and side padding to allow container to fill bottom */
    background-color: #ffffff;
}

.footer-container {
    background-color: #0d121f;
    border-radius: 60px 60px 0 0;
    padding: 100px 80px 60px;
    /* Increased bottom padding for internal balance */
    color: white;
    max-width: 1200px;
    /* Standardized for footer */
    margin: 0 auto;
}

.footer-wrap {
    display: grid;
    grid-template-columns: 1fr 480px;
    grid-template-areas:
        "left form"
        "links form";
    gap: 40px 80px;
    margin-bottom: 80px;
}

.footer-left {
    grid-area: left;
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-left h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.footer-left p {
    color: #9ca3af;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 500px;
}

.footer-links-grid {
    grid-area: links;
    display: flex;
    gap: 100px;
}

.links-col h6 {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 25px;
    opacity: 0.6;
}

.links-col a {
    display: block;
    color: #9ca3af;
    margin-bottom: 12px;
    font-size: 15px;
}

.links-col a:hover {
    color: white;
}

/* Form Card */
.footer-form-card {
    grid-area: form;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 50px;
}

.footer-form-card h3 {
    font-size: 28px;
    margin-bottom: 35px;
    font-weight: 700;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-family: inherit;
    font-size: 14px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: 'â–¼';
    font-size: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

select {
    appearance: none;
}

.btn-submit {
    width: 100%;
    background-color: #ccff00;
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(204, 255, 0, 0.4);
}

.form-disclaimer {
    font-size: 11px;
    color: #4b5563;
    text-align: center;
    margin-top: 25px;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-socials a {
    margin-right: 30px;
    color: #9ca3af;
    font-size: 14px;
}

.footer-socials a:hover {
    color: white;
}

.copyright {
    color: #4b5563;
    font-size: 14px;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1140px) {
    .footer-container {
        padding: 80px 40px 40px;
    }
}

@media (max-width: 1024px) {
    .footer-wrap {
        flex-direction: column;
        gap: 60px;
    }

    .footer-form-card {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .form-row {
        flex-direction: column;
    }

    .footer-links-grid {
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-socials a {
        margin: 0 15px;
    }

    .footer-left h2 {
        font-size: 32px;
    }
}

/* MOBILE & TABLET OPTIMIZATIONS (OVERRIDE) */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 15px 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--primary-gradient);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .navbar-container {
        flex-direction: row; /* Mantener logo y acciones en horizontal */
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .navbar-links {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #1e3a8a; /* Color sólido para el menú móvil */
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 40px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .navbar-links.active {
        transform: translateY(0);
    }

    .navbar-links li {
        width: 100%;
        text-align: center;
    }

    .navbar-links a {
        font-size: 18px;
        font-weight: 600;
        display: block;
        padding: 10px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Hamburger Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .navbar-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 14px;
    }

    /* Hero */
    .hero {
        padding-top: 100px;
        padding-bottom: 0px;
        margin-bottom: 0;
        min-height: auto;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
        gap: 0px;
    }

    .hero-content {
        flex: 1;
        width: 100%;
        margin-bottom: 0;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-content p {
        margin: 0 auto 30px;
        font-size: 16px;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-btns a {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-visual {
        flex: 1;
        width: 100%;
    }

    .phone-image {
        width: 100%;
        max-width: 300px;
        margin-right: 0;
    }

    section {
        padding: 50px 0 !important;
    }

    .problem-container,
    .solution-container,
    .gamification-container,
    .merchants-container {
        flex-direction: column !important;
        text-align: center;
        gap: 40px !important;
    }

    .problem-image,
    .problem-content,
    .solution-image,
    .solution-content,
    .gamification-content,
    .merchants-visual,
    .merchants-info {
        flex: 1;
        width: 100%;
    }

    .problem-list,
    .solution-list,
    .check-list {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Titles */
    h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    /* Gamification Steps */
    .gam-steps {
        flex-direction: column;
        align-items: center;
    }

    .gam-step-card {
        width: 100%;
        max-width: 400px;
    }

    /* Merchants Dashboard Mockup */
    .dashboard-frame {
        height: auto;
        flex-direction: column;
        padding-bottom: 30px;
    }

    .dashboard-sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 15px 0;
    }

    .dashboard-content {
        padding: 20px;
        border-radius: 20px;
    }

    .dashboard-stats {
        flex-direction: column;
    }

    .stat-box {
        border-radius: 20px;
    }

    /* FAQ SECTION */
    .faq {
        padding: 100px 0;
        background-color: #f8fafc;
        color: #1e293b;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .faq-header h2 {
        font-size: 36px;
        font-weight: 700;
        margin-top: 10px;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .faq-question h4 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #2563eb;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.6;
        color: #64748b;
    }

    @media (max-width: 768px) {
        .faq-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Footer */
    .footer-container {
        padding: 60px 20px 30px;
        border-radius: 40px 40px 0 0;
    }

    .footer-wrap {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "left"
            "form"
            "links";
        gap: 60px;
        margin-bottom: 40px;
    }

    .footer-brand {
        margin-top: 20px;
    }

    .footer-left h2 {
        font-size: 30px;
    }

    .footer-links-grid {
        justify-content: space-around;
        gap: 30px;
    }

    .footer-form-card {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .footer-form-card h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }
}

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

    .hero-content h1 {
        font-size: 32px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-submit {
        padding: 14px 20px;
        font-size: 14px;
    }

    .links-col {
        width: 100%;
    }
}

/* CONVERSION FLOW MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 18, 31, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 32px;
    padding: 48px 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(40px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #f3f4f6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    color: #4b5563;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.modal-content-wrapper {
    animation: fadeInModal 0.4s ease forwards;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-title {
    color: #0d121f;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    text-align: center;
}

.modal-subtitle {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
    text-align: center;
}

.beta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    padding-left: 4px;
}

.form-group input {
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #111827;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group.error input {
    border-color: #ef4444;
}

.error-msg {
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    display: none;
    padding-left: 4px;
}

.form-group.error .error-msg {
    display: block;
}

/* Custom Checkbox */
.checkbox-group {
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 36px !important;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500 !important;
    color: #4b5563;
    user-select: none;
    line-height: 22px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.2s;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #e5e7eb;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

#businessNameGroup {
    display: none;
    animation: fadeInSlideDown 0.3s ease forwards;
}

@keyframes fadeInSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-submit-beta {
    background: var(--accent-lime);
    color: #0d121f;
    border: none;
    border-radius: 16px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 14px rgba(204, 255, 0, 0.3);
}

.btn-submit-beta:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(204, 255, 0, 0.4);
}

.btn-submit-beta:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(13, 18, 31, 0.2);
    border-top-color: #0d121f;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading .btn-text {
    visibility: hidden;
}

.loading .spinner {
    display: block;
    position: absolute;
}

/* Success Screen Styles */
.success-screen {
    text-align: center;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.viral-section {
    background: #f8fafc;
    border-radius: 24px;
    padding: 24px;
    margin: 32px 0;
}

.viral-text {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 20px;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.share-btn {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.share-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp {
    background: #E8F9F1;
    color: #25D366;
}

.copy {
    background: #F1F5F9;
    color: #64748B;
}

.instagram {
    background: #FFF0F5;
    color: #E1306C;
}

.share-btn:hover {
    transform: translateY(-4px);
    filter: brightness(0.95);
}

.social-proof {
    margin-bottom: 24px;
}

#counterText {
    font-weight: 600;
    color: #1e40af;
    background: #eef2ff;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
}

.extra-conversion {
    font-size: 13px;
    color: #9ca3af;
    font-style: italic;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0d121f;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    z-index: 100000;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.toast.active {
    transform: translateX(-50%) translateY(0);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .modal-container {
        padding: 40px 24px;
        border-radius: 24px;
        max-width: 100%;
    }

    .modal-title {
        font-size: 24px;
    }

    .share-btn {
        width: 50px;
        height: 50px;
    }
}

/* TERMS MODAL SPECIFIC STYLES */
.terms-container {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

.terms-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 25px;
    font-style: italic;
}

.terms-content {
    text-align: left;
    color: #374151;
    margin-bottom: 30px;
}

.terms-content h4 {
    color: #111827;
    margin: 20px 0 10px;
    font-size: 18px;
    font-weight: 700;
}

.terms-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.terms-content strong {
    color: var(--primary-blue);
}