﻿:root {
    /* Colors */
    --primary-color: #10b981;
    --primary-hover: #059669;
    --primary-dark: #064e3b;
    --primary-glow: rgba(16, 185, 129, 0.4);

    --bg-dark: #000000;
    --bg-dark-emerald: #022c22;
    --bg-light: #ffffff;
    --bg-alt: #f1f5f9;
    --bg-footer: radial-gradient(circle at 50% 50%, #022c22 0%, #000000 100%);

    --text-on-dark: #ffffff;
    --text-on-light: #0f172a;
    --text-muted: #64748b;

    /* Typography */
    --font-family: 'Plus Jakarta Sans', sans-serif;

    /* Spacing & Layout */
    --section-padding: 10rem 0;
    --section-padding-mobile: 6rem 0;
    --container-width: 1200px;

    /* Effects */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-pill: 9999px;
    --border-radius-card: 32px;
    --border-radius-mockup: 40px;

    --shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 15px 30px -5px var(--primary-glow);

    /* Typography Scale */
    --fs-h1: 4.5rem;
    --fs-h2: 3.5rem;
    --fs-h3: 1.75rem;
    --fs-subtitle: 1.25rem;
    --fs-body: 1rem;
}

/* Reset */
html {
    scroll-behavior: smooth;
}

@media (max-width: 1024px) {
    html {
        scroll-behavior: auto;
        /* Smooth scroll causes frame interpolation lag on mobile */
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    color: var(--text-on-light);
    line-height: 1.6;
    background-color: var(--bg-light);
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-tag-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-pill);
    font-weight: 800;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.1;
    color: var(--text-on-dark);
}

h2 {
    font-size: var(--fs-h2);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-on-light);
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-on-light);
}

.section-title-constrained {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* Reusable Premium Card */
.premium-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-card);
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    padding: 3.5rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-card:hover {
    scale: 1.08;
    translate: 0 -20px;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.2);
    border-color: var(--primary-color);
    z-index: 10;
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0.15);
    opacity: 0.3;
    transition: var(--transition);
}

.premium-card:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* Global Reveal Animations - Simplified for stable mobile rendering */
.section-header,
.premium-card,
.feature-list li,
.step-item,
.value-text,
.value-img,
.pricing-table-container {
    opacity: 1;
    /* Default to visible to prevent JS-lag issues on some devices */
}

@media (min-width: 1025px) {

    /* Only use continuous scroll-driven animations on desktop to avoid mobile jitter */
    .section-header,
    .premium-card,
    .feature-list li,
    .step-item,
    .value-text,
    .value-img,
    .pricing-table-container {
        view-timeline-name: --reveal;
        view-timeline-axis: block;
        animation: reveal-item linear both;
        animation-timeline: --reveal;
        animation-range: entry 5% cover 25%;
    }
}

@media (min-width: 1025px) {

    /* Staggered effect for cards in a grid only on desktop */
    .grid-3 .premium-card:nth-child(1) {
        animation-range: entry 5% cover 20%;
    }

    .grid-3 .premium-card:nth-child(2) {
        animation-range: entry 10% cover 25%;
    }

    .grid-3 .premium-card:nth-child(3) {
        animation-range: entry 15% cover 30%;
    }
}

@keyframes reveal-item {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base Entrance Animations for JS - Clean and Fast */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

@media (max-width: 1024px) {

    /* On mobile: no entrance animations, no scroll-driven animations.
       Elements appear instantly to avoid GPU pressure and text ghosting. */
    .fade-in-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .section-header,
    .premium-card,
    .premium-card::after,
    .feature-list li,
    .step-item,
    .value-text,
    .value-img,
    .pricing-table-container {
        opacity: 1 !important;
        animation: none !important;
        animation-timeline: unset !important;
        view-timeline-name: none !important;
        transition: none !important;
    }
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobile-card-highlight {

    0%,
    100% {
        scale: 1;
        translate: 0 0;
        box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    }

    50% {
        scale: 1.08;
        translate: 0 -12px;
        box-shadow: 0 30px 60px -12px rgba(16, 185, 129, 0.25);
        border-color: var(--primary-color);
    }
}

@keyframes mobile-top-bar-highlight {

    0%,
    100% {
        transform: scaleX(0.15);
        opacity: 0.3;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.premium-card h3,
.premium-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-on-light);
}

.premium-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}



/* Grid Utilities */
.grid-2,
.grid-3 {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Background Decoration - Optimized for Mobile */
.grid-bg {
    position: relative;
    background-color: #f8fafc;
    z-index: 5;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    /* Remove heavy shadows on containers since they cause lag on scroll */
    box-shadow: none;
}

/* Move the heavy grid pattern to a pseudo-element with hardware acceleration */
.grid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%),
        linear-gradient(rgba(16, 185, 129, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.1) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    z-index: -1;
    pointer-events: none;
    transform: translateZ(0);
    /* Force layer isolation */
}

/* Rayos de luz de neÃ³n en los bordes superior e inferior */
.grid-bg::before,
.grid-bg::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 15px var(--primary-glow);
    border-radius: 99px;
    z-index: 10;
}

.grid-bg::before {
    top: -1px;
}

.grid-bg::after {
    bottom: -1px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header.align-left {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 3rem;
}

.section-header h2 {
    /* Now using global h2 size by default */
    margin-bottom: 1.5rem;
}

.section-header .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Lists */
.feature-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-on-light);
    transition: var(--transition);
}

.feature-list li:hover {
    transform: translateX(8px);
    color: var(--primary-color);
}

.feature-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border-radius: var(--border-radius-pill);
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9375rem;
    border: none;
    gap: 0.5rem;
}

.btn-xl {
    padding: 1.25rem 4rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

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

.btn-outline {
    background: transparent;
    color: var(--text-on-dark);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-on-light);
    border: 1px solid #e2e8f0;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.8);
    /* Solid background by default for performance */
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

@media (min-width: 1025px) {
    .header {
        background: rgba(0, 0, 0, 0.01);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.header.is-dark {
    background: rgba(0, 0, 0, 0.8);
}

.header-scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-img {
    height: 40px;
    max-height: 40px;
    width: auto;
    display: block;
}

.logo:hover {
    opacity: 0.9;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.9375rem;
}

.nav-link:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link-login {
    margin-right: 0.5rem;
}

.mobile-only-actions {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    transition: var(--transition);
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 50% 50%, var(--bg-dark-emerald) 0%, var(--bg-dark) 100%);
    padding: 12rem 0 18rem;
    color: #fff;
    position: relative;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.375rem 1rem;
    border-radius: 99px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.badge-new span {
    background: var(--primary-color);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 auto 2rem;
    max-width: 900px;
}

.highlight {
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.hero-subtitle {
    font-size: 1.375rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto 6rem;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    padding: 0 1rem;
}

.hero-description::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--primary-color);
    opacity: 0.5;
}

/* Mockup Layout */
.hero-mockup-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;

    /* Timeline declaration (cost-free, only expensive when consumed via animation-timeline) */
    view-timeline-name: --mockup-reveal;
    view-timeline-axis: block;
}

.hero-mockup-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.45) 0%, transparent 70%);
    opacity: 0.6;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    max-width: 100vw;
    /* Prevent horizontal scroll */
}

.main-phone-mockup {
    width: 300px;
    height: 600px;
    background: #fff;
    border-radius: 40px;
    margin: 0 auto;
    border: 8px solid #1a1a1a;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    margin-bottom: 4rem;
}

@media (min-width: 1025px) {
    .main-phone-mockup {
        /* Reflejo y animación scroll-driven solo en desktop */
        -webkit-box-reflect: below 0px linear-gradient(transparent 60%, rgba(255, 255, 255, 0.2));
        animation: phone-reveal linear both;
        animation-timeline: --mockup-reveal;
        animation-range: 0px 1000px;
    }
}

@keyframes phone-reveal {
    from {
        transform: perspective(1200px) rotateX(90deg) translateY(300px);
        opacity: 0.2;
    }

    to {
        transform: perspective(1200px) rotateX(0deg) translateY(0);
        opacity: 1;
    }
}

@keyframes phone-reveal-mobile {
    from {
        transform: perspective(1200px) rotateX(45deg) translateY(100px);
        opacity: 0.4;
    }

    to {
        transform: perspective(1200px) rotateX(0deg) translateY(0);
        opacity: 1;
    }
}

.main-phone-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tablet Mockup */
.tablet-mockup {
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: 0 auto;
}

@media (min-width: 1025px) {
    .tablet-mockup {
        /* Scroll animation and reflection only on desktop */
        animation: phone-reveal linear both;
        animation-timeline: --mockup-reveal;
        animation-range: 0px 600px;
        -webkit-box-reflect: below 0px linear-gradient(transparent 80%, rgba(255, 255, 255, 0.1));
    }
}

.tablet-screen {
    width: 100%;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 15px;
    border: 8px solid #333;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.tablet-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}

/* Tablet Camera sensor dot */
.tablet-screen::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #444;
    border-radius: 50%;
    z-index: 3;
}

.floating-card {
    background: #fff;
    color: #000;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1), 0 0 25px rgb(16 185 129 / 50%);
    text-align: left;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(16, 185, 129, 0.2);
    z-index: 2;
}

@media (min-width: 1025px) {
    .floating-card {
        position: absolute;
        /* Sincronización absoluta con el móvil (rango manual para evitar saltos en el Hero) */
        animation-timeline: --mockup-reveal;
        animation-range: 0px 800px;
        animation-fill-mode: both;
        animation-timing-function: linear;
        opacity: 0;
    }

    .floating-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2), 0 0 40px rgba(16, 185, 129, 0.5);
        border-color: var(--primary-color);
        z-index: 10;
    }

    .card-1 {
        top: 48px;
        left: 90px;
        width: 220px;
        z-index: 3;
    }

    .card-2 {
        top: 58px;
        right: 108px;
        width: 200px;
        z-index: 3;
    }

    .card-3 {
        top: 237px;
        left: 43px;
        width: 240px;
        z-index: 3;
    }

    .card-4 {
        top: 249px;
        right: 52px;
        width: 220px;
        z-index: 3;
    }

    .card-5 {
        bottom: 76px;
        left: 110px;
        width: 220px;
        z-index: 3;
    }

    .card-6 {
        bottom: 33px;
        right: 130px;
        width: 200px;
        z-index: 3;
    }
}

.card-1,
.card-3,
.card-5 {
    animation-name: reveal-left;
}

.card-2,
.card-4,
.card-6 {
    animation-name: reveal-right;
}

@keyframes reveal-left {
    from {
        transform: translateX(-300px) rotate(-20deg);
        opacity: 0;
    }

    to {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes reveal-right {
    from {
        transform: translateX(300px) rotate(20deg);
        opacity: 0;
    }

    to {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

.floating-card .card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.floating-card .card-text {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.2;
}

.floating-card-icon {
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-light);
}

/* Deep Dive Section */
.deep-dive {
    background-color: #f1f5f9;
    position: relative;
}

/* Sections with grid background are now using the .grid-bg class in HTML */

/* Los gradientes decorativos se han unificado para no entrar en conflicto con la lÃ­nea de luz ::after */

.deep-dive .container {
    position: relative;
    z-index: 2;
}


/* Value Block */
.value-block {
    background: #fff;
    padding: 10rem 0;
}

.value-flex {
    display: flex;
    align-items: center;
    gap: 8rem;
}

.value-img {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1025px) {
    .value-img {
        view-timeline-name: --reveal, --mockup-reveal;
        view-timeline-axis: block;
    }
}

.value-text {
    flex: 1;
}


.value-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.value-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

@keyframes floating {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -60%);
    }
}

/* Features Split Section - Reference Style */
.features {
    background: #fff;
    padding: 10rem 0;
}

.features-flex {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.fs-mockup-wrapper {
    flex: 1;
    position: relative;
    padding: 4rem;
    background: #f8fafc;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-mockup-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    top: 0;
    left: 0;
    border-radius: 40px;
}

.fs-phone {
    width: 280px;
    height: 580px;
    background: #fff;
    border-radius: 40px;
    border: 8px solid #1a1a1a;
    box-shadow: var(--shadow-float);
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 1.5rem;
}

.fs-phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.fs-phone-balance {
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: 20px;
    color: #000;
    margin-bottom: 2rem;
}

.fs-phone-balance span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.fs-phone-balance h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 5px 0 15px;
}

.fs-content {
    flex: 1;
}

.fs-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.fs-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

.fs-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.fs-mini-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: var(--transition);
}

.fs-mini-card:hover {
    border-color: var(--primary-color);
    background: rgba(16, 185, 129, 0.03);
}

.fs-mini-card .icon {
    min-width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.fs-mini-card p {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-on-light);
    line-height: 1.4;
}

/* Checklist Section */
.checklist-section {
    background-color: #f1f5f9;
    position: relative;
}

/* Checklist grid background moved to .grid-bg class */

/* DecoraciÃ³n unificada en .grid-bg::after */

.checklist-section .container {
    position: relative;
    z-index: 2;
}

/* Final CTA Premium */
.final-cta {
    padding: 5rem 0px 10rem 0px;
    position: relative;
    /* Los estilos de fondo (background-color, background-image) se heredan ahora de .grid-bg */
}

/* Final CTA grid background moved to .grid-bg class */

/* DecoraciÃ³n de fondo movida a la clase .grid-bg para evitar conflictos con los rayos de luz ::before/::after */

.final-cta .container {
    position: relative;
    z-index: 2;
}

.premium-cta-card {
    background: radial-gradient(circle at 70% 30%, #064e3b 0%, #000 100%);
    border-radius: 60px;
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(16, 185, 129, 0.1);

    /* Scroll Driven Animation - All devices (isolated at bottom, no accumulation) */
    view-timeline-name: --card-reveal;
    view-timeline-axis: block;
    animation: reveal-card linear both;
    animation-timeline: --card-reveal;
    animation-range: entry 10% cover 40%;
}

@keyframes reveal-card {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.premium-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.cta-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.cta-stars {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    /* Amber 400 */
    font-size: 1.1rem;
}

.rating-text {
    margin-left: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #000;
    margin-left: -12px;
    object-fit: cover;
}

.avatar-stack .avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1e293b;
    border: 3px solid #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: -12px;
}

.cta-trust-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.cta-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 4rem;
    /* Restoring its specific large size */
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-btn-premium {
    padding: 1.25rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--primary-color);
    color: #000;
    border-radius: 99px;
    box-shadow: 0 20px 40px -10px var(--primary-glow);
    transition: var(--transition);
}

.cta-btn-premium:hover {
    background: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .premium-cta-card {
        padding: 5rem 2rem;
        border-radius: 40px;
    }

    .cta-heading {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Removing outdated floating card animation to prevent conflicts with scroll-reveal */

/* Responsiveness */


/* Step list for Benefits Section */
.step-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-on-light);
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.operative-card-visual {
    width: 80%;
    height: 80%;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-float);
    padding: 2rem;
}

.operative-card-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.operative-card-line {
    height: 12px;
    width: 100%;
    background: #f1f5f9;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.operative-card-line.short {
    width: 90%;
}

.operative-card-line.progress {
    background: #10b981;
}

.steps-footer-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.margin-top-2 {
    margin-top: 2rem;
}


/* Pricing Section */
.pricing {
    background: var(--bg-footer);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    opacity: 0.3;
}

.pricing h2 {
    color: #fff;
}

.pricing .subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.pricing-disclaimer {
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.pricing-footer-cta {
    margin-top: 4rem;
}

.pricing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-btn {
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn.active {
    background: var(--primary-color);
    color: #000;
}

.pricing-table-container {
    max-width: 900px;
    margin: 4rem auto 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    /* backdrop-filter removed: causes GPU layer accumulation and scroll jitter on mobile */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table thead th {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

.pricing-table .user-tier {
    font-weight: 700;
    color: #fff;
    font-size: 1.125rem;
    width: 40%;
}

.pricing-table .price-cell {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.pricing-table .price-cell span {
    color: var(--primary-color);
    font-weight: 800;
}

.pricing-table .price-cell .old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.3);
    margin-right: 0.5rem;
    display: none;
}

.price-cell.is-annual .old-price {
    display: inline;
}

/* Footer Section */
.footer-premium {
    background: var(--bg-footer);
    color: #fff;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.footer-premium::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    opacity: 0.3;
    pointer-events: none;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(16, 185, 129, 0.2), transparent);
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 500px;
    line-height: 1.5;
}

.footer-legal-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* FAQ Section - Dark Theme inspired by Pricing */
.faq-section {
    background: var(--bg-footer);
    color: #fff;
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    opacity: 0.15;
    pointer-events: none;
}

.faq-section .section-header h2 {
    color: #fff;
}

.faq-section .subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    margin-top: 4rem;
}

.faq-category-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* backdrop-filter removed: causes GPU layer accumulation and scroll jitter on mobile */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.faq-question {
    padding: 1.75rem 4rem 1.75rem 2rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: #fff;
    user-select: none;
    font-size: 1.05rem;
    line-height: 1.4;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    background: var(--primary-color);
    color: #000;
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-answer p {
    margin: 0;
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
    :root {
        --fs-h1: 3.25rem;
        --fs-h2: 2.75rem;
    }

    section {
        padding: var(--section-padding-mobile);
    }

    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 15, 25, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        z-index: 150;
        text-align: center;
    }

    .nav.is-active {
        display: flex;
    }

    .nav-link {
        font-size: 1.5rem;
        color: #fff;
        font-weight: 700;
        padding: 0.5rem 0;
    }

    .mobile-only-actions {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        margin-top: 2rem;
        width: 100%;
        max-width: 300px;
    }

    .mobile-only-actions .btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 1.2rem;
    }

    .header-actions .nav-link-login,
    .header-actions .btn {
        display: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .faq-category-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    /* Wrapper: grid 2 columnas. El teléfono ocupa ambas, las tarjetas 1 cada una */
    .hero-mockup-wrapper {
        margin-top: 0rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 1rem;
        align-items: start;
        position: static;
    }

    .hero-mockup-wrapper::before {
        display: none;
        /* Evita overflow del glow en móvil */
    }

    /* Teléfono: fila completa, centrado. Animación ligera (aislada en Hero, sin acumulación). */
    .main-phone-mockup {
        grid-column: 1 / -1;
        justify-self: center;
        position: relative;
        width: 260px;
        height: 520px;
        margin-bottom: 1rem;
        animation: phone-reveal-mobile linear both;
        animation-timeline: --mockup-reveal;
        animation-range: 0px 600px;
    }

    /* Tarjetas: salen del absolute y se integran en el grid */
    .floating-card {
        width: 100%;
        /* Estado inicial: oculta para la animación de aparición */
        opacity: 0;
        transform: translateY(24px);
        animation: none;
        transition: opacity 0.5s ease, transform 0.5s ease;
        padding: 0.85rem 1rem;
        gap: 0.6rem;
    }

    /* Clase añadida por JS cuando la tarjeta entra en el viewport */
    .floating-card.card-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Delays escalonados para efecto cascada */
    .floating-card:nth-child(2) {
        transition-delay: 0s;
    }

    .floating-card:nth-child(3) {
        transition-delay: 0.08s;
    }

    .floating-card:nth-child(4) {
        transition-delay: 0.16s;
    }

    .floating-card:nth-child(5) {
        transition-delay: 0.24s;
    }

    .floating-card:nth-child(6) {
        transition-delay: 0.32s;
    }

    .floating-card:nth-child(7) {
        transition-delay: 0.40s;
    }

    .floating-card-icon {
        width: 28px;
        height: 28px;
    }

    .floating-card .card-title {
        font-size: 0.82rem;
    }

    .floating-card .card-text {
        font-size: 0.72rem;
    }

    .value-flex {
        flex-direction: column;
        text-align: center;
    }

    /* Removing scroll-driven highlight on mobile to fix text trembling/ghosting */
    .premium-card,
    .premium-card::after {
        animation: none !important;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-h1: 2.25rem;
        --fs-h2: 2.5rem;
    }

    section {
        padding: var(--section-padding-mobile);
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-description {
        margin: 0 auto 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .main-phone-mockup {
        width: 260px;
        height: 520px;
    }

    .pricing-table-container {
        margin: 2rem 1rem 0;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .footer-simple {
        gap: 2rem;
    }

    .footer-legal-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --fs-h1: 2rem;
        --fs-h2: 2rem;
    }

    .header .container {
        justify-content: space-between;
    }

    .header-actions {
        display: flex;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .main-phone-mockup {
        width: 200px;
        height: 400px;
    }

    .cta-heading {
        font-size: 1.8rem;
    }

    .hero-mockup-wrapper {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 0.75rem;
    }

    .hero-mockup-wrapper::before {
        width: 300px;
        height: 300px;
        filter: blur(40px);
    }
}

/* --- Contact Page Styles (Updated for Dark/Premium Theme) --- */
.hero-contact-full {
    background: radial-gradient(circle at 50% 50%, var(--bg-dark-emerald) 0%, var(--bg-dark) 100%);
    min-height: 100vh;
    /* Full viewport height */
    padding: 12rem 0 4rem;
    /* Top padding for header space */
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Grid overlay similar to hero section */
.hero-contact-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.contact-layout-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .contact-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Text Content - Left Side */
.contact-text-content h1 {
    margin-bottom: 1.5rem;
    color: var(--text-on-dark);
}

.contact-text-content .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.6;
}

.contact-data-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-data-item {
    display: flex;
    gap: 1.25rem;
    /* align-items: center; Remove alignment center to handle multiline address better if needed, but center usually looks good for icons */
    align-items: flex-start;
}

.contact-data-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-data-text h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-data-text p,
.contact-data-text a {
    font-size: 1.125rem;
    color: #fff;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.contact-data-text a:hover {
    color: var(--primary-color);
    transition: var(--transition);
}

/* Form Card - Right Side */
.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.contact-form-card h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.dark-form-group {
    margin-bottom: 1.5rem;
}

.dark-form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
}

.dark-form-group input,
.dark-form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #fff;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.dark-form-group input:focus,
.dark-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.dark-form-group input::placeholder,
.dark-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}