/* ===== LANDING PAGE STYLES ===== */

/* Brand Colors */
:root {
    --primary-blue: #1e3a8a;
    --primary-purple: #8d4ceb;
    --primary-purple-light: #c093ff;
    --primary-gold: #f59e0b;
    --primary-green: #10b981;
    --primary-cyan: #06b6d4;
    --primary-indigo: #4f46e5;
    --primary-violet: #7c3aed;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 50%, #8d4ceb 100%);
    --gradient-blue-purple: linear-gradient(135deg, #1e3a8a 0%, #8d4ceb 100%);
    --gradient-purple-violet: linear-gradient(135deg, #8d4ceb 0%, #7c3aed 100%);
    --gradient-blue-indigo: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 100%);
    --gradient-indigo-purple: linear-gradient(135deg, #4f46e5 0%, #8d4ceb 100%);
    --dark-bg: #0b0217;
    --dark-secondary: #1a1a2e;
    --text-light: #ffffff;
    --text-gray: #bebebe;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-purple);
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-violet);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--primary-purple);
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background: var(--primary-blue);
    top: 70%;
    left: 60%;
    animation-delay: 3s;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 10%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(142, 76, 235, 0.3);
}

.hero-badge-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-title-main {
    display: block;
    font-size: 6rem;
    color: #0b021700!important;                 /* color del relleno */
    -webkit-text-stroke: 1px #ffffff; /* grosor y color del borde */
    text-stroke: 1px #ffffff;         /* intento para compatibilidad futura */
    background: #0b021700!important;
    margin-bottom: 0.5rem;
}

.hero-title-sub {
    display: block;
    font-size:2.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-highlight i {
    color: var(--primary-green);
    font-size: 1rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size:3rem;
}

.text-highlight {
    color: var(--primary-red);
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 8px 32px rgba(142, 76, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(142, 76, 235, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4.5rem!important;
    font-weight: 800;
    color: var(--primary-violet);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.4rem!important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dashboard Preview */
.dashboard-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: dashboardFloat 4s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.dashboard-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-red);
}

.dashboard-dots span:nth-child(1) {
    background: var(--primary-indigo);
}

.dashboard-dots span:nth-child(2) {
    background: var(--primary-purple);
}

.dashboard-dots span:nth-child(3) {
    background: var(--primary-blue);
}

.dashboard-title {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dashboard-widget {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dashboard-widget:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.dashboard-widget i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.widget-1 i { color: white;}
.widget-2 i { color: white;}
.widget-3 i { color: white;}
.widget-4 i { color: white;}

.dashboard-widget span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.8rem;
    text-align: right!important;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.widget-value {
    color: var(--primary-purple-light);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 5px;
}

.dashboard-chart {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-title {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 60px;
    gap: 8px;
}

.bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-out;
}

@keyframes barGrow {
    from { height: 0%; }
    to { height: var(--height, 50%); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== PROBLEM SOLUTION SECTION ===== */
.problem-solution-section {
    background: var(--dark-secondary);
    position: relative;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.problem-card:hover::before {
    left: 100%;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 60px rgba(142, 76, 235, 0.2);
}

.problem-card.impact-card {
    border-color: var(--primary-cyan);
}

.problem-card.impact-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2);
}

.problem-card.solution-card {
    border-color: var(--primary-blue);
}

.problem-card.solution-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.2);
}

.problem-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white!important;
}

.problem-card .problem-icon {
    background: var(--gradient-primary);
}

.problem-card.impact-card .problem-icon {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
}

.problem-card.solution-card .problem-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #3b82f6 100%);
}

.problem-card h4 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    color: var(--text-gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.problem-list li i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.problem-card .problem-list li i {
    color: var(--primary-indigo);
}

.problem-card.impact-card .problem-list li i {
    color: var(--primary-cyan);
}

.problem-card.solution-card .problem-list li i {
    color: var(--primary-green);
}

/* ===== ERP PACKAGES SECTION ===== */
.erp-packages-section {
    background: var(--dark-bg);
    position: relative;
}

.erp-package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.erp-package-card.featured {
    border: 2px solid var(--primary-purple);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(142, 76, 235, 0.3);
}

.erp-package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 25px 80px rgba(142, 76, 235, 0.4);
}

.erp-package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.package-header {
    padding: 30px 30px 20px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2rem;
    color: white;
}

.erp-package-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.price-amount {
    color: var(--primary-violet);
    font-size: 2rem;
    font-weight: 800;
}

.price-period {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.package-content {
    padding: 20px 30px;
    flex-grow: 1;
}

.package-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.package-features h5 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.package-features .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-features .feature-list li {
    color: var(--text-gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.package-features .feature-list li i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 0.7rem;
}

.package-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.package-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.package-benefits .benefit-item i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.package-footer {
    padding: 20px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-package-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-package-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 76, 235, 0.4);
    color: white;
}

.btn-package-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-package-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-purple);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ===== MODULES OVERVIEW SECTION ===== */
.modules-overview-section {
    background: var(--dark-secondary);
    position: relative;
}

.module-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 40px rgba(142, 76, 235, 0.2);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 1.5rem;
    color: white;
}

.module-card h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.module-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.module-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.module-features li {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.module-features li::before {
    content: '•';
    color: var(--primary-green);
    position: absolute;
    left: 0;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--dark-secondary);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 60px rgba(142, 76, 235, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--text-gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: var(--dark-bg);
    position: relative;
}

.benefits-content {
    padding-right: 2rem;
}

.benefits-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: white!important;
    flex-shrink: 0;
}

.benefit-content h5 {
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Benefits Chart */
.benefits-chart {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.chart-item {
    margin-bottom: 25px;
}

.chart-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.chart-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    width: 0%;
    transition: width 2s ease-in-out;
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories-section {
    background: var(--dark-bg);
    position: relative;
}

.success-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.success-card:hover::before {
    left: 100%;
}

.success-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 60px rgba(142, 76, 235, 0.2);
}

.success-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: white;
}

.company-info h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.company-info p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

.testimonial {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.success-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block;
    color: var(--primary-indigo);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.metric-label {
    color: var(--text-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author strong {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 3px;
}

.author span {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: var(--dark-secondary);
    position: relative;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 40px rgba(142, 76, 235, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
    color: white;
}

.why-card h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== MODALS ===== */
.modal-content {
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text-light);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: var(--text-light);
    font-weight: 700;
}

.btn-close {
    filter: invert(1);
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 10px;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(142, 76, 235, 0.25);
    color: var(--text-light);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label {
    color: var(--text-light);
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-main {
        font-size: 3.5rem !important;
    }
    
    .hero-title-sub {
        font-size: 2rem !important;
    }
    
    .text-gradient {
        font-size: 2rem !important;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-main {
        font-size: 4.8rem !important;
    }
    
    .hero-title-sub {
        font-size: 1.6rem !important;
    }
    
    .text-gradient {
        font-size: 2.6rem !important;
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING ANIMATIONS ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-purple);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shadow-glow {
    box-shadow: 0 0 30px rgba(142, 76, 235, 0.3);
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Fix for select options visibility in modals */
.modal .form-select option {
    background: #1a1a2e;
    color: white;
    padding: 0.5rem;
}

.modal .form-select:focus option {
    background: #16213e;
    color: white;
}

.modal .form-select[multiple] {
    min-height: 120px;
}

.modal .form-select[multiple] option {
    background: #1a1a2e;
    color: white;
    padding: 0.5rem;
    margin: 0.25rem 0;
}

.modal .form-select[multiple] option:checked {
    background: var(--primary-purple);
    color: white;
}
