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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    overflow-x: hidden;
    background: #161316;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        top: -100px;
    }
    100% {
        opacity: 1;
        top: 20px;
    }
}

.header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 80px);
    max-width: 1850px;
    background: rgba(22, 19, 22, 0.7);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(18, 201, 255, 0.15);
    border-radius: 30px;
    z-index: 1000;
    padding: 0.85rem 0;
    animation: slideDown 0.8s ease-out forwards;
}

@media (max-width: 768px) {
    .header {
        width: calc(100% - 20px);
        padding: 0.6rem 0;
        top: 10px;
    }
}

.nav-container {
    max-width: 1850px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.6rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.8rem;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.register-btn {
    background: #12C9FF;
    color: #FFFFFF;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 201, 255, 0.3);
}

.register-btn:hover {
    background: #0FB5E8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 201, 255, 0.4);
}

.login-btn {
    background: transparent;
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.7rem 1.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    background: #161316;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(18, 201, 255, 0.12), transparent 40%), radial-gradient(circle at 80% 70%, rgba(18, 201, 255, 0.08), transparent 50%), radial-gradient(circle at 50% 80%, rgba(255, 158, 240, 0.04), transparent 35%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.4;
    z-index: 1;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translate(-100px, 100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translate(100px, 100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.hero-container {
    max-width: 1700px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 2rem;
    padding-left: 3rem;
    animation: slideInLeft 1s ease-out forwards;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
    font-size: 4.8rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(18, 201, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #12C9FF 0%, #FF9EF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.inline-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.inline-feature svg {
    color: white;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    background: #12C9FF;
    color: #FFFFFF;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(18, 201, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary:hover {
    background: #0FB5E8;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(18, 201, 255, 0.4);
}

.cta-primary svg {
    width: 20px;
    height: 20px;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    background: rgba(18, 201, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(18, 201, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(18, 201, 255, 0.2);
    border-color: rgba(18, 201, 255, 0.5);
    transform: translateY(-2px);
}

.cta-secondary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-secondary:hover svg {
    transform: translateX(3px);
}

.trust-badges {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-item svg {
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    animation: slideInRight 1s ease-out forwards;
}

.visual-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 550px;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(18, 201, 255, 0.3) 0%, rgba(18, 201, 255, 0.15) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(18, 201, 255, 0.6);
    top: 10%;
    right: -1%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-weight: bold;
    box-shadow: 0 20px 60px rgba(18, 201, 255, 0.4), inset 0 0 30px rgba(18, 201, 255, 0.15), 0 0 50px rgba(18, 201, 255, 0.3);
    animation-delay: 0s;
}

.circle-1-inner {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.3rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(18, 201, 255, 0.5);
}

.circle-1-text {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(18, 201, 255, 0.3);
}

.circle-2 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(18, 201, 255, 0.2) 0%, rgba(18, 201, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(18, 201, 255, 0.35);
    bottom: 5%;
    left: 5%;
    box-shadow: 0 15px 40px rgba(18, 201, 255, 0.25), inset 0 0 30px rgba(18, 201, 255, 0.1), 0 0 50px rgba(18, 201, 255, 0.15);
    animation-delay: 1s;
}

.circle-3 {
    width: 120px;
    height: 120px;
    background: rgba(18, 201, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(12, 201, 255, 0.4);
    top: 40%;
    left: 15%;
    box-shadow: 0 10px 30px rgba(18, 201, 255, 0.3), inset 0 0 20px rgba(18, 201, 255, 0.1), 0 0 40px rgba(18, 201, 255, 0.2);
    animation-delay: 2s;
}

.main-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) perspective(1200px) rotateY(-10deg) rotateX(3deg);
    width: 350px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 2.2rem;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 60px rgba(56, 189, 248, 0.15);
    animation: floatMockup 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mockup-icon {
    width: 45px;
    height: 45px;
    background: #12C9FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(18, 201, 255, 0.4);
}

.mockup-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.account-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.account-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(56, 189, 248, 0.3);
}

.account-logo {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.account-info h4 {
    font-size: 0.95rem;
    color: white;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.account-info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.stat-card {
    position: absolute;
    bottom: -5%;
    right: 3%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    padding: 1.8rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 40px rgba(18, 201, 255, 0.1);
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
    border: 1px solid rgba(18, 201, 255, 0.2);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #12C9FF, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 30px rgba(18, 201, 255, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatMockup {
    0%, 100% {
        transform: translate(-50%, -50%) rotateY(-5deg) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) rotateY(-5deg) translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate(-100px, 50px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(100px, 50px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(80px);
}

.animate-on-scroll.animate-in.fade-up {
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll.animate-in.fade-left {
    animation: fadeInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll.animate-in.fade-right {
    animation: fadeInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll.animate-in.stagger-1 {
    animation-delay: 0s !important;
}

.animate-on-scroll.animate-in.stagger-2 {
    animation-delay: 0s !important;
}

.animate-on-scroll.animate-in.stagger-3 {
    animation-delay: 0s !important;
}

.animate-on-scroll.animate-in.stagger-4 {
    animation-delay: 0s !important;
}

.animate-on-scroll.animate-in.stagger-5 {
    animation-delay: 0s !important;
}

.animate-on-scroll.animate-in.stagger-6 {
    animation-delay: 0s !important;
}

.info-section {
    padding: 6rem 2rem;
    background: #161316;
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(18, 201, 255, 0.05), transparent 60%);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: white;
}

.learn-more-section {
    padding: 6rem 2rem;
    background: #161316;
    position: relative;
    overflow: hidden;
}

.learn-more-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(18, 201, 255, 0.06), transparent 60%);
}

.learn-more-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.learn-more-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.learn-more-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.learn-more-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.learn-more-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.learn-more-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.learn-more-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #12C9FF;
    font-weight: bold;
    font-size: 1.2rem;
}

.learn-more-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #12C9FF;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(18, 201, 255, 0.3);
}

.learn-more-btn:hover {
    background: #0FB5E8;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(18, 201, 255, 0.4);
}

.learn-more-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learn-more-image {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.learn-more-image img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.8rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1s;
}

.floating-badge .badge-icon {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.floating-badge .badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #161316;
    text-align: center;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.info-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(18, 201, 255, 0.25), 0 0 40px rgba(18, 201, 255, 0.15);
    border-color: #12C9FF;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #12C9FF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(18, 201, 255, 0.35);
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(18, 201, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #12C9FF, transparent);
}

.footer p {
    opacity: 0.8;
}

/* Enhanced footer layout */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    margin: 0.5rem 0 1rem;
}

.footer-col h4 {
    margin-bottom: 0.6rem;
    color: #12C9FF;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0.25rem 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-links a:hover {
    color: #FF9EF0;
    transform: translateX(5px);
}

.footer-social a {
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    margin-right: 0.8rem;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social-center {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.footer-social-center a {
    color: #FFFFFF;
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social-center a:hover {
    opacity: 1;
    background: rgba(18, 201, 255, 0.15);
    border-color: #12C9FF;
    color: #12C9FF;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

@media (max-width: 968px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-center {
        display: none;
    }

    .register-btn {
        display: none;
    }

    .nav-logo {
        font-size: 1.3rem;
        gap: 0.5rem;
    }

    .nav-logo img {
        width: 24px;
        height: 24px;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .cta-buttons {
        justify-content: center;
    }

    .visual-showcase {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .main-mockup {
        width: 280px;
    }

    .circle-1 {
        width: 150px;
        height: 150px;
    }

    .circle-1-inner {
        font-size: 2.5rem;
    }

    .circle-2 {
        width: 120px;
        height: 120px;
    }

    .circle-3 {
        width: 80px;
        height: 80px;
    }

    .stat-card {
        right: 0;
        bottom: -3%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .learn-more-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .learn-more-visual {
        order: -1;
    }

    .learn-more-text h2 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 0.8rem;
    }

    .nav-logo {
        font-size: 1rem;
        gap: 0.35rem;
    }

    .nav-logo img {
        width: 18px;
        height: 18px;
    }

    .login-btn {
        padding: 0.45rem 0.75rem;
        font-size: 0.78rem;
    }

    .nav-right {
        gap: 0.35rem;
    }

    .hero {
        padding: 7rem 0.8rem 2rem;
        min-height: auto;
    }

    .hero-content {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-content h1 {
        font-size: 1.85rem;
        margin-bottom: 0.9rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }

    .logo {
        font-size: 0.95rem;
        padding: 0.35rem 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 2rem;
        gap: 0.8rem;
    }

    .cta-buttons a {
        padding: 0.85rem 1.8rem;
        font-size: 0.92rem;
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }

    .badge-item {
        font-size: 0.82rem;
        padding: 0.5rem 0.9rem;
    }

    .hero-features-inline {
        gap: 0.8rem;
        justify-content: center;
    }

    .inline-feature {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .visual-showcase {
        height: 340px;
        max-width: 100%;
    }

    .main-mockup {
        width: 210px;
        padding: 1.3rem;
    }

    .mockup-title {
        font-size: 0.88rem;
    }

    .account-item {
        padding: 0.7rem;
        gap: 0.7rem;
    }

    .account-logo {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .account-info h4 {
        font-size: 0.8rem;
    }

    .account-info p {
        font-size: 0.66rem;
    }

    .circle-1 {
        width: 105px;
        height: 105px;
        top: 5%;
        right: -4%;
    }

    .circle-1-inner {
        font-size: 1.8rem;
    }

    .circle-1-text {
        font-size: 0.74rem;
    }

    .circle-2 {
        width: 85px;
        height: 85px;
        bottom: 10%;
        left: -4%;
    }

    .circle-3 {
        width: 62px;
        height: 62px;
    }

    .stat-card {
        padding: 0.85rem;
        right: -3%;
        bottom: 0;
    }

    .stat-number {
        font-size: 1.55rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .info-section {
        padding: 3.2rem 1rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .feature-card {
        padding: 1.6rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
    }

    .learn-more-section {
        padding: 3.2rem 1rem;
    }

    .learn-more-text h2 {
        font-size: 1.6rem;
    }

    .learn-more-text p {
        font-size: 0.93rem;
    }

    .learn-more-list li {
        font-size: 0.9rem;
    }

    .learn-more-btn {
        padding: 0.82rem 1.7rem;
        font-size: 0.9rem;
    }

    .floating-badge {
        padding: 0.7rem 1rem;
    }

    .badge-1 {
        top: 5%;
        left: -3%;
    }

    .badge-2 {
        bottom: 10%;
        right: -3%;
    }

    .floating-badge .badge-text {
        font-size: 0.76rem;
    }

    .footer {
        padding: 1.6rem 1rem;
    }

    .footer p {
        font-size: 0.86rem;
    }
    .footer-grid {
        gap: 1.3rem;
        text-align: center;
    }
    .footer-col {
        text-align: center;
    }
    .footer-container {
        padding: 0 1rem;
    }
    .footer-social-center {
        gap: 0.85rem;
        margin-top: 0.85rem;
    }
}

@media (max-width: 375px) {
    .nav-logo {
        font-size: 0.92rem;
    }

    .hero {
        padding: 6.5rem 0.6rem 1.8rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.88rem;
    }

    .cta-buttons {
        max-width: 290px;
    }

    .cta-buttons a {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .visual-showcase {
        height: 310px;
    }

    .main-mockup {
        width: 190px;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .learn-more-text h2 {
        font-size: 1.45rem;
    }

    .feature-card {
        padding: 1.4rem;
    }

    .circle-1 {
        width: 92px;
        height: 92px;
    }

    .circle-1-inner {
        font-size: 1.55rem;
    }

    .circle-2 {
        width: 75px;
        height: 75px;
    }

    .circle-3 {
        width: 54px;
        height: 54px;
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(50px);
}

.fade-in-up.animate-in {
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-left.animate-in {
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(50px);
}

.fade-in-right.animate-in {
    transform: translateX(0);
}

.header {
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-on-scroll[style*="animation-delay"] {
    transition-delay: var(--delay, 0s);
}

.feature-card[style*="animation-delay: 0.1s"] {
    transition-delay: 0.1s;
}

.feature-card[style*="animation-delay: 0.2s"] {
    transition-delay: 0.2s;
}

.feature-card[style*="animation-delay: 0.3s"] {
    transition-delay: 0.3s;
}

.feature-card[style*="animation-delay: 0.4s"] {
    transition-delay: 0.4s;
}

.feature-card[style*="animation-delay: 0.5s"] {
    transition-delay: 0.5s;
}

.feature-card[style*="animation-delay: 0.6s"] {
    transition-delay: 0.6s;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .nav-center {
        padding: 8px 15px;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .register-btn, .login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 0.75rem 0;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: space-between;
        padding: 0 1rem;
    }

    .nav-logo {
        order: 1;
        font-size: 1.2rem;
        flex: 0 0 auto;
    }

    .nav-right {
        order: 2;
        gap: 0.5rem;
        flex: 0 0 auto;
    }

    .nav-center {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 8px 15px;
    }

    .nav-menu {
        gap: 0.8rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .register-btn, .login-btn {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 400px) {
    .header {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-right {
        gap: 0.4rem;
    }

    .nav-center {
        padding: 6px 8px;
        margin-top: 0.25rem;
    }

    .nav-menu {
        gap: 0.4rem;
        font-size: 0.7rem;
    }

    .nav-menu a {
        padding: 0.2rem 0.3rem;
    }

    .register-btn, .login-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        border-radius: 18px;
    }
}
/* ==================== REVIEWS SUMMARY SECTION ==================== */
#resumen-reviews {
    background: #000000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

#resumen-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#resumen-reviews .container {
    position: relative;
    z-index: 2;
}

.reviews-summary {
    background: transparent;
    padding: 4rem 0;
}

.reviews-summary .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #fff !important;
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.average-rating-card {
    background: linear-gradient(135deg, rgba(18, 201, 255, 0.15) 0%, rgba(18, 201, 255, 0.05) 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(18, 201, 255, 0.3);
}

.average-rating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmerCard 3s linear infinite;
}

@keyframes shimmerCard {
    0% { 
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% { 
        transform: translateX(100%) translateY(100%) rotate(45deg); 
    }
}

.rating-number {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.8);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.rating-stars-display {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.display-star {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: starFloat 3s ease-in-out infinite;
}

.display-star:nth-child(1) { 
    animation-delay: 0s; 
}
.display-star:nth-child(2) { 
    animation-delay: 0.2s; 
}
.display-star:nth-child(3) {
     animation-delay: 0.4s; 
    }
.display-star:nth-child(4) { 
    animation-delay: 0.6s; 
}
.display-star:nth-child(5) {
     animation-delay: 0.8s; 
    }

@keyframes starFloat {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-5px); 
    }
}

.display-star.active {
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.rating-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.total-reviews {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    min-width: 30px;
}

.bar-container {
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFFFFF, #12C9FF);
    border-radius: 20px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: barShimmer 2s infinite;
}

@keyframes barShimmer {
    0% { 
        left: -100%; 
    }
    100% { 
        left: 100%; 
    }
}

.bar-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    min-width: 40px;
    text-align: right;
}

/* Responsive para reviews */
@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reviews-summary .section-title {
        font-size: 1.8rem;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .display-star {
        font-size: 1.5rem;
    }
}

/* ========== FAB Manual (solo móvil) ========== */
.fab-manual {
    display: none;
}

@media (max-width: 968px) {
    .fab-manual {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        z-index: 9999;
        padding: 0.75rem 1.25rem;
        background: linear-gradient(135deg, #12C9FF, #FF9EF0);
        color: #161316;
        font-weight: 700;
        font-size: 0.85rem;
        text-decoration: none;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(18, 201, 255, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fab-appear 0.5s ease-out;
    }

    .fab-manual:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 28px rgba(18, 201, 255, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .fab-manual:active {
        transform: scale(0.95);
    }

    .fab-manual svg {
        flex-shrink: 0;
    }

    @keyframes fab-appear {
        from {
            opacity: 0;
            transform: translateY(20px) scale(0.8);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}