:root {
    /* Color Palette */
    --bg-dark: #12100E;
    --bg-darker: #0c0a09;
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --accent-neon: #10b981;
    --accent-neon-glow: rgba(16, 185, 129, 0.4);
    --accent-neon-hover: #059669;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1270px;
    --border-radius: 5px;
}
.v-application,
.v-application__wrap {
    background: transparent !important;
    color: var(--text-primary) !important;
    font-family: var(--font-body) !important;
    width: 100% !important;
    max-width: 100% !important;
}

.v-application p {
    color: var(--text-secondary);
}

.v-application h1,
.v-application h2,
.v-application h3,
.v-application h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.v-container {
    padding: 0px !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
}

.contenedor {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

/* Base Reset & Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[v-cloak] {
    display: none;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
.badge,
.logo-text {
    font-family: var(--font-heading);
  
}

.highlight-text {
    color: var(--accent-neon);
    text-shadow: 0 0 20px var(--accent-neon-glow);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

/* Background Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    max-width: 100vw;
    overflow: hidden;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-neon-glow);
    top: -50px;
    left: -50px;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(16, 185, 129, 0.15);
    bottom: 20%;
    right: 0;
}

/* Container Utility */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100% !important;
    box-sizing: border-box !important;
}

.v-input__control {
    border-bottom: solid 2px #10b981;
    margin-top: 0 !important;
    border-radius: 6px;
}

/* Navigation */
.navbar {
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    background: rgba(18, 16, 14, 0.95);
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-content .v-form {
    margin-top: 10px !important;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: auto;
}

.nav-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff !important;
    margin: 0;
    padding-left: 0;
    line-height: 1.1;
    display: flex;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
    background: var(--accent-neon);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-neon-glow);
}

.btn-primary:hover {
    background: var(--accent-neon-hover);
    box-shadow: 0 6px 20px var(--accent-neon-glow);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
   margin-top: 30px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: black;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Waitlist Form */
.waitlist-card {
    background: rgba(22, 22, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 100%;
    max-width: 460px;
    margin-bottom: 1rem;
    scroll-margin-top: 140px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.waitlist-form {
    display: flex;
    gap: 0.75rem;
}

.waitlist-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.waitlist-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-neon);
    box-shadow: 0 0 0 3px var(--accent-neon-glow);
}

.micro-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Success Message */
.hidden {
    display: none !important;
}

.success-msg {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: #10b981 !important;
    font-weight: 500;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-top: 0.85rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual / Mockup */
.mockup-container {
    position: relative;
    padding: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.mockup-img {
    width: 200px;
    height: 200px;
    border-radius: 20%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px var(--accent-neon-glow);
}

.pulse-anim {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 40px var(--accent-neon-glow);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px var(--accent-neon-glow);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 40px var(--accent-neon-glow);
    }
}

.mockup-floating-element {
    position: absolute;
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 25%;
    left: 5%;
    animation-delay: 1s;
}

.float-3 {
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.highlight-float {
    color: var(--accent-neon);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features & Section Layout */
.features,
.comparison-section,
.pricing-section,
.faq-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-top: 0;
    margin-bottom: 2.5rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card {
    grid-column: span 2;
    background: rgba(16, 185, 129, 0.06) !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
    padding: 1.25rem 1.75rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.feature-screenshot-img:hover {
    transform: scale(1.04);
}

.testimonial-card .v-carousel {
    background: transparent !important;
    overflow: hidden;
}

.testimonial-card .v-window__controls button {
    color: var(--accent-neon) !important;
}

.testimonial-content {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0.5rem 0.5rem;
}

.testimonial-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
    padding-right: 1.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    margin-bottom: 0.65rem;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.author-name {
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
}

.author-role {
    color: #9ca3af;
    font-size: 0.78rem;
    line-height: 1.2;
}

.star-rating {
    display: inline-block;
    width: 90px;
    height: 18px;
    margin-top: 0.35rem;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 110 20' fill='%23f59e0b' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 15l-5.88 3.09 1.12-6.54L.49 6.91l6.56-.95L10 0l2.95 5.96 6.56.95-4.75 4.64 1.12 6.54zM32 15l-5.88 3.09 1.12-6.54-4.75-4.64 6.56-.95L32 0l2.95 5.96 6.56.95-4.75 4.64 1.12 6.54zM54 15l-5.88 3.09 1.12-6.54-4.75-4.64 6.56-.95L54 0l2.95 5.96 6.56.95-4.75 4.64 1.12 6.54zM76 15l-5.88 3.09 1.12-6.54-4.75-4.64 6.56-.95L76 0l2.95 5.96 6.56.95-4.75 4.64 1.12 6.54zM98 15l-5.88 3.09 1.12-6.54-4.75-4.64 6.56-.95L98 0l2.95 5.96 6.56.95-4.75 4.64 1.12 6.54z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.testimonial-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-badge {
    align-self: flex-start;
    font-size: 0.78rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: #f3f4f6 !important;
    line-height: 1.6;
    margin: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight-icon {
    background: var(--accent-neon-glow);
    color: var(--accent-neon);
}

/* Navbar Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-neon);
}

/* Stats Bar / Highlights */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 2.25rem 2rem;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
    background: rgba(18, 16, 14, 0.65) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover .stat-icon-wrapper {
    transform: translateY(-4px);
    box-shadow: 0 0 28px rgba(16, 185, 129, 0.5);
    border-color: rgba(16, 185, 129, 0.6);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1050px;
    margin: 0 auto;
}

.comparison-col {
    padding: 2.5rem 2rem;
    border-radius: 20px;
}

.traditional-col {
    background: rgba(239, 68, 68, 0.04) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

.sheetmerge-col {
    background: rgba(16, 185, 129, 0.07) !important;
    border: 1px solid rgba(16, 185, 129, 0.35) !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.comparison-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.red-title {
    color: #ef4444 !important;
}

.green-title {
    color: #10b981 !important;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-item.bad {
    color: #cbd5e1;
}

.comparison-item.good {
    color: #ffffff;
    font-weight: 500;
}

.cross-icon {
    color: #ef4444;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.check-icon {
    color: #10b981;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (max-width: 850px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing-section {
    padding-left: 0;
    padding-right: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.4);
}

.pricing-card.popular {
    border: 2px solid var(--accent-neon);
    background: rgba(16, 185, 129, 0.04);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.badge-popular {
    position: absolute;
    top: -14px;
    right: 25px;
    background: var(--accent-neon);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.pricing-price {
    font-size: 2.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: white;
    margin-bottom: 0.2rem;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--accent-neon);
    margin-bottom: 2rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
}

span.check,
.pricing-features li span.check {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* FAQ Accordion - Clean Harmonious Design */
.faq-section {
    padding-left: 0;
    padding-right: 0;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(22, 22, 26, 0.4);
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(22, 22, 26, 0.6);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-q-text {
    flex: 1;
    line-height: 1.45;
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item:hover .faq-icon-wrapper {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.faq-item.active .faq-icon-wrapper {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-chevron {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.faq-answer {
    padding: 1.25rem 1.5rem;
    background: rgba(12, 10, 9, 0.7);
    color: var(--text-secondary) !important;
    font-size: 0.96rem;
    line-height: 1.65;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    animation: fadeIn 0.25s ease-in-out;
}

.faq-answer p {
    color: var(--text-secondary) !important;
    margin: 0;
}

.faq-email-link {
    color: var(--accent-neon);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.faq-email-link:hover {
    color: #34d399;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3.5rem 0 2rem;
    background: var(--bg-darker);
}

.footer-container {
    display: flex;
    flex-direction: column;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-description {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    max-width: 320px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-neon);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy,
.footer-local-badge {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-inline-link {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-inline-link:hover {
    color: var(--accent-neon);
}

.footer-badge-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 0.75rem;
}

.footer-badge-container a {
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0.9;
}

.footer-badge-container a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-badge-container img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Responsive Overrides & Mobile Optimization */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-text {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
        text-align: center;
    }

    .waitlist-card {
        max-width: 100%;
        width: 100%;
    }

    .hero-graphic {
        max-width: 340px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        grid-column: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-content {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 0.75rem;
        align-items: center;
        width: 100%;
        padding: 0.85rem 0;
    }

    .nav-content .logo-group {
        grid-column: 1;
        justify-content: flex-start;
        width: auto;
        display: flex;
        align-items: center;
        gap: 0.65rem;
    }

    .nav-logo-img {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 1.65rem;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .nav-content .v-form {
        grid-column: 2;
        max-width: 130px !important;
        width: 100%;
        margin-top: 10px !important;
        align-self: center;
    }

    .nav-content .v-input__control {
        margin-top: 0 !important;
    }

    .nav-content .btn-primary {
        grid-column: 1 / -1;
        width: 100%;
        text-align: center;
        margin-top: 0.35rem;
        font-size: 1rem;
        font-weight: 600;
        padding: 0.85rem 1rem;
    }

    .hero-graphic {
        position: relative;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        overflow: hidden;
    }

    .hero-graphic .float-1,
    .hero-graphic .float-2,
    .hero-graphic .float-3 {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 0.35rem 0;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1.25rem;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0.25rem;
        height: 100%;
        justify-content: flex-start;
    }

    .testimonial-left-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
        padding-bottom: 0.65rem;
        min-width: auto;
        width: 100%;
    }

    .testimonial-avatar {
        width: 76px;
        height: 76px;
        margin-bottom: 0.35rem;
    }

    .testimonial-badge {
        align-self: center;
        margin-bottom: 0.4rem;
    }

    .testimonial-quote {
        font-size: 0.88rem;
        line-height: 1.5;
        margin: 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-top: 3.5rem !important;
        margin-bottom: 2rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.85rem;
        text-align: center;
    }

    .waitlist-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .waitlist-form input,
    .waitlist-form button {
        width: 100%;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
    }

    .comparison-col {
        padding: 1.5rem 1rem;
    }

    .pricing-card {
        padding: 2rem 1.25rem;
    }
}

/* Decorative Icons Separation */
.icon {
    display: inline-block;
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    width: 28px;
    height: 28px;
}

.icon-arrow-right {
    width: 20px;
    height: 20px;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

.icon-success {
    background-color: #10b981;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
}

.icon-merge {
    background-color: var(--accent-neon);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M17 8l-5-5-5 5M12 3v12'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M17 8l-5-5-5 5M12 3v12'/%3E%3C/svg%3E");
}

.icon-memory {
    background-color: var(--accent-neon);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9zM13 2v7h7'/%3E%3Cpath d='M12 18v-6M9 15h6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9zM13 2v7h7'/%3E%3Cpath d='M12 18v-6M9 15h6'/%3E%3C/svg%3E");
}

.icon-lock,
.icon-security {
    background-color: var(--accent-neon);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}

.icon-check {
    background-color: var(--accent-neon);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
}

.icon-filter-duplicate {
    background-color: var(--accent-neon);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3'/%3E%3C/svg%3E");
}

.icon-download {
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
}

/* Trial Download Section below Demo */
.trial-cta-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}

.trial-download-btn {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.45);
    color: #10b981;
    font-weight: 600;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.trial-download-btn:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: #10b981;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.35);
}

.trial-meta-text {
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 0.3rem;
}

.trial-sub-text {
    font-size: 0.84rem;
    color: var(--text-secondary);
}

/* Image Lightbox Modal Styles */
.image-lightbox-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeIn 0.2s ease;
}

.image-lightbox-content {
    max-width: 1100px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 30px 80px rgba(0,0,0,0.9), 0 0 40px rgba(16,185,129,0.3);
    overflow: hidden;
    background: rgba(18, 24, 27, 0.98);
}

.lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 15, 17, 0.6);
}

.lightbox-header h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 600;
}

.btn-close-lightbox {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-close-lightbox:hover {
    background: rgba(239, 68, 68, 0.85);
    border-color: #ef4444;
    transform: scale(1.1);
}

.lightbox-body {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
    overflow: auto;
}

.lightbox-full-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
}

.zoom-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    pointer-events: none;
    transition: all 0.2s ease;
}

.screenshot-card-wrapper:hover .zoom-badge {
    background: rgba(16, 185, 129, 0.95);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}