/* Landing Page Styles */

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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --blue: #4299e1;
    --purple: #9f7aea;
    --green: #48bb78;
    --orange: #ed8936;
    --red: #f56565;
    --teal: #38b2ac;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 1.8rem;
}

a.nav-logo {
    text-decoration: none;
    cursor: pointer;
}

a.nav-logo:hover {
    opacity: 0.92;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link-login {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.nav-mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 999;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link,
.mobile-link-login {
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-link:hover {
    background: var(--bg-light);
}

.mobile-link-login {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Hero Section */
.hero {
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    min-height: 90vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    max-width: 500px;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 20px;
    animation: float 6s ease-in-out infinite;
}

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

.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.preview-dots span:nth-child(1) {
    background: #f56565;
}

.preview-dots span:nth-child(2) {
    background: #ed8936;
}

.preview-dots span:nth-child(3) {
    background: #48bb78;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.preview-chart {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.preview-stat-item {
    background: var(--bg-light);
    border-radius: 8px;
    height: 60px;
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Get Started Section */
.get-started {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.get-started .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.get-started-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-text {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.intro-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 30px;
}

.intro-text h3:first-child {
    margin-top: 0;
}

.intro-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefits-list i {
    color: var(--green);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list strong {
    color: var(--text-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.step-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.cta-panels {
    position: sticky;
    top: 100px;
}

.panels-header {
    text-align: center;
    margin-bottom: 30px;
}

.panels-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.panels-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.panels-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.panel-cta-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.panel-cta-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.panel-cta-card.more-panels {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    cursor: default;
}

.panel-cta-card.more-panels:hover {
    transform: none;
    border-color: #e2e8f0;
}

.panel-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.panel-info {
    flex: 1;
}

.panel-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.panel-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.panel-cta-card > i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.final-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.final-cta p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-get-started {
    background: white;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.feature-icon.blue {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #9f7aea 0%, #805ad5 100%);
}

.feature-icon.green {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.feature-icon.orange {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
}

.feature-icon.red {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
}

.feature-icon.teal {
    background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Platforms Section */
.platforms {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.platform-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.platform-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.platform-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Benefits Section */
.benefits {
    background: white;
}

.benefits-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefits-text {
    flex: 1;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.benefit-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.3rem;
}

.benefit-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-info p {
    color: var(--text-light);
    line-height: 1.7;
}

.benefits-visual {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card.floating {
    animation: floatCard 4s ease-in-out infinite;
}

.benefit-card.delay-1 {
    animation-delay: 1s;
}

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

.benefit-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.benefit-card-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.benefit-card-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 2rem;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Footer */
/* ===== FOOTER MODERNO 2025 ===== */
.footer {
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 50%, #0a0e14 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-wave {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 2rem;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    align-items: start;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateX(5px);
}

.footer-logo i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.footer-stat {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-stat:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 5px 0;
}

.footer-column a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-column a:hover {
    color: #667eea;
    padding-left: 5px;
}

.footer-column a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e0;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: #667eea;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.footer-divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%);
}

.footer-bottom {
    padding: 30px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 2rem 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .get-started-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-panels {
        position: relative;
        top: 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px !important;
    }
}

.footer-copyright {
    flex: 1;
}

.footer-copyright p {
    margin: 5px 0;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.footer-made-with {
    color: #a0aec0;
    font-size: 0.85rem;
    margin-top: 5px;
}

.footer-made-with i {
    color: #e53e3e;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #667eea;
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: #667eea;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #cbd5e0;
    white-space: nowrap;
}

.footer-badges .badge i {
    color: #667eea;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    font-size: 1.2rem;
}

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

    .footer-stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-stat {
        flex: 1;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .intro-text {
        padding: 25px;
    }
    
    .intro-text h3 {
        font-size: 1.4rem;
    }
    
    .panels-header h3 {
        font-size: 1.5rem;
    }
    
    .panel-cta-card {
        padding: 15px;
    }
    
    .panel-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .panel-info h4 {
        font-size: 1rem;
    }
    
    .panel-info p {
        font-size: 0.85rem;
    }
    
    .final-cta {
        padding: 25px;
    }
    
    .final-cta h3 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}


/* ===== BENEFITS STATS GRID ===== */
.benefits-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
  width: 100%;
}

.benefits-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem;
  background: var(--color-surface, #fff);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.benefits-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary, #667eea);
  line-height: 1;
}

.benefits-stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e;
}

.benefits-stat-note {
  font-size: 0.75rem;
  color: #888;
}

@media (max-width: 600px) {
  .benefits-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 5rem 0;
  background: #f8f9ff;
}

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

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  flex: 1;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.6em;
  color: #667eea;
  margin-right: 4px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: #1a1a2e;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: #888;
}

/* ====== REGISTER PAGE ====== */

.register-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 3rem 0 2.5rem;
  text-align: center;
  color: white;
}

.register-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.register-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.register-back:hover { color: white; }

.register-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(102,126,234,0.2);
  border: 1px solid rgba(102,126,234,0.35);
  color: #a5b4fc;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.register-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.register-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Layout a 2 colonne */
.register-main {
  display: grid;
  grid-template-columns: 50fr 55fr;
  min-height: 80vh;
}

/* Colonna sinistra */
.register-left {
  background: #f4f5ff;
  padding: 3.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.register-left-inner {
  max-width: 500px;
  padding: 0 3rem 0 2rem;
  width: 100%;
}

.register-left-inner h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.register-left-lead {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Override .register-features-list e .register-feature per questa pagina */
.register-main .register-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.register-main .register-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.rf-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.register-main .register-feature h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.2rem;
}

.register-main .register-feature p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
}

/* Stats row */
.register-social-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.09);
}

.rsp-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.rsp-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #667eea;
  line-height: 1;
}

.rsp-label {
  font-size: 0.73rem;
  color: #888;
}

/* Colonna destra */
.register-right {
  background: white;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 3.5rem 0;
  border-left: 1px solid rgba(0,0,0,0.06);
}

.register-right .register-form-wrapper {
  width: 100%;
  max-width: 620px;
  padding: 0 2rem 0 3rem;
  box-shadow: none;
  border: none;
  border-radius: 0;
  background: transparent;
}

.register-right .register-form-header {
  margin-bottom: 1.75rem;
  text-align: left;
}

.register-right .register-form-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.35rem;
}

.register-right .register-form-header p {
  color: #888;
  font-size: 0.85rem;
}

/* Override form elements dentro register-right */
.register-right .form-group {
  margin-bottom: 1rem;
}

.register-right .form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.01em;
}

.register-right .form-group input,
.register-right .form-group textarea,
.register-right .form-group select {
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9rem;
  background: #fafafa;
}

.register-right .form-group input:focus,
.register-right .form-group textarea:focus,
.register-right .form-group select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102,126,234,0.12);
  background: white;
}

.register-right .form-submit .btn-primary.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .register-main {
    grid-template-columns: 1fr;
  }
  .register-left {
    justify-content: flex-start;
    padding: 2.5rem 0;
  }
  .register-left-inner {
    padding: 0 1.5rem;
    max-width: 100%;
  }
  .register-right {
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 2.5rem 0;
    justify-content: flex-start;
  }
  .register-right .register-form-wrapper {
    padding: 0 1.5rem;
    max-width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ SECTION (landing) ===== */
.faq-section {
  position: relative;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}

.faq-section-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(102, 126, 234, 0.08) 0%, transparent 45%),
    linear-gradient(195deg, rgba(118, 75, 162, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, #fafbff 0%, #eef2ff 55%, #e6ebfa 100%);
  pointer-events: none;
}

.faq-section-inner {
  position: relative;
  z-index: 1;
}

.faq-section-header {
  margin-bottom: 3rem;
}

.faq-section-header h2 {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.25);
  margin-bottom: 1rem;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(102, 126, 234, 0.12);
  box-shadow: 0 4px 24px rgba(45, 55, 72, 0.06);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(102, 126, 234, 0.35);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.12);
}

.faq-item[open] {
  border-color: rgba(102, 126, 234, 0.45);
  box-shadow: 0 16px 48px rgba(118, 75, 162, 0.14);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--secondary-color);
}

.faq-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  user-select: none;
}

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

.faq-summary::marker {
  display: none;
}

.faq-q {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.35;
  padding-left: 0.75rem;
  border-left: 4px solid var(--primary-color);
}

.faq-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.2s ease;
  font-size: 0.85rem;
}

.faq-answer {
  padding: 0 1.5rem 1.35rem 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  animation: faq-open 0.35s ease;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-top: 1rem;
}

.faq-answer a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(102, 126, 234, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.faq-answer a:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 3.5rem 0 4rem;
  }

  .faq-summary {
    padding: 1rem 1.1rem;
  }

  .faq-q {
    font-size: 0.98rem;
    padding-left: 0.5rem;
  }

  .faq-answer {
    padding: 0 1.1rem 1.1rem 1.35rem;
  }
}
