/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.3) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(220, 252, 231, 0.2) 70%, rgba(187, 247, 208, 0.3) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-24) 0 var(--spacing-20);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(16, 185, 129, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(52, 211, 153, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(5, 150, 105, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 90%, rgba(34, 197, 94, 0.05) 0%, transparent 35%);
    opacity: 0.4;
    animation: backgroundShift 25s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.015) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 35%, rgba(52, 211, 153, 0.01) 50%, transparent 65%);
    opacity: 0.3;
    animation: backgroundShift 20s ease-in-out infinite reverse;
}

/* Abstract Shapes */
.abstract-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(52, 211, 153, 0.06));
    animation: randomFloat 15s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 18s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
    animation-duration: 22s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    bottom: 40%;
    right: 10%;
    animation-delay: -8s;
    animation-duration: 16s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 60%;
    animation-delay: -12s;
    animation-duration: 24s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-20);
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-4);
    margin-top: var(--spacing-12);
    color: var(--gray-900);
    line-height: 1.1;
    text-align: left;
}

.hero-title .highlight {
    color: var(--primary-color);
    font-weight: 900;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    margin-bottom: var(--spacing-8);
    line-height: 1.6;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-10);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-6);
    margin-top: var(--spacing-8);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat {
    text-align: center;
    padding: var(--spacing-6);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-2xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-full);
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    background: rgba(255, 255, 255, 0.95);
}

.stat-number {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-2);
    animation: gentleFloat 3s ease-in-out infinite;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    font-weight: 600;
    line-height: 1.4;
}

/* AI Character Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

.ai-character {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-container {
    position: relative;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(52, 211, 153, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 60px rgba(16, 185, 129, 0.1),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    animation: gentleFloat 4s ease-in-out infinite;
    border: 3px solid rgba(16, 185, 129, 0.1);
}

.character-core {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    animation: pulse 3s ease-in-out infinite;
}

.character-core::before {
    content: '🤖';
    font-size: var(--font-size-6xl);
    animation: robotBlink 2s ease-in-out infinite;
}

.character-core::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: orbit 6s linear infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(16, 185, 129, 0.1));
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.floating-element:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    border-color: rgba(16, 185, 129, 0.4);
}

.floating-element i {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.floating-element:hover i {
    color: var(--green-600);
    transform: scale(1.2);
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation: gentleFloat 3s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    top: 10%;
    right: 10%;
    animation: gentleFloat 3s ease-in-out infinite 0.5s;
}

.floating-element:nth-child(3) {
    bottom: 10%;
    right: 10%;
    animation: gentleFloat 3s ease-in-out infinite 1s;
}

.floating-element:nth-child(4) {
    bottom: 10%;
    left: 10%;
    animation: gentleFloat 3s ease-in-out infinite 1.5s;
}

.floating-element:nth-child(5) {
    top: 50%;
    left: 5%;
    animation: gentleFloat 3s ease-in-out infinite 2s;
}

.floating-element:nth-child(6) {
    top: 50%;
    right: 5%;
    animation: gentleFloat 3s ease-in-out infinite 2.5s;
}

/* Particles Effect */
.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 4s linear infinite;
    pointer-events: none;
} 
/* Problem Section */
.problem {
    padding: var(--spacing-32) 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--green-50) 100%);
    color: var(--gray-800);
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.03) 0%, transparent 50%);
    opacity: 0.8;
}

/* Pain Points Grid */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-20);
    position: relative;
    z-index: 1;
}

.pain-point-card {
    background: var(--white);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-8);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.pain-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.pain-point-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pain-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-6);
}

.pain-icon i {
    font-size: var(--font-size-2xl);
    color: var(--white);
}

.pain-point-card h3 {
    margin-bottom: var(--spacing-4);
    color: var(--gray-800);
    font-weight: 700;
}

.pain-point-card p {
    margin-bottom: var(--spacing-6);
    color: var(--gray-600);
    line-height: 1.6;
}

.pain-examples {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.example-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3);
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.example-item:hover {
    background: var(--green-50);
    transform: translateX(8px);
}

.example-item i {
    color: var(--primary-color);
    font-size: var(--font-size-base);
}

.example-item span {
    color: var(--gray-700);
    font-size: var(--font-size-sm);
}

/* Reality Crisis Dashboard */
.reality-crisis-dashboard {
    margin-top: var(--spacing-6);
    padding: var(--spacing-8) 0;
}

.crisis-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-16);
}

.dashboard-card {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-6);
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
    border-radius: 0;
}

.dashboard-card.secondary-crisis::before {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.dashboard-card.tertiary-crisis::before {
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-4);
    min-height: 60px;
}

.crisis-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    flex: 1;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--gray-700);
}

.crisis-impact {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #ef4444;
    text-align: right;
    line-height: 1.2;
}

.secondary-crisis .crisis-impact {
    color: #f59e0b;
}

.tertiary-crisis .crisis-impact {
    color: #8b5cf6;
}

.crisis-label i {
    color: #ef4444;
}

.secondary-crisis .crisis-label i {
    color: #f59e0b;
}

.tertiary-crisis .crisis-label i {
    color: #8b5cf6;
}

.chart-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-6);
    min-height: 160px;
}

/* Donut Chart */
.donut-chart {
    position: relative;
    width: 186px;
    height: 186px;
    margin: 0 auto;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-percentage {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #ef4444;
}

.chart-label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    font-weight: 500;
}

.donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle {
    stroke-linecap: round;
    animation: drawCircle 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes drawCircle {
    from {
        stroke-dashoffset: 251;
    }
    to {
        stroke-dashoffset: 81;
    }
}

/* Simple Progress Chart for Card 2 */
.simple-progress-chart {
    display: flex;
    width: 90%;
    flex-direction: column;
    gap: var(--spacing-4);
    padding: var(--spacing-4);
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

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

.progress-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-700);
}

.progress-value {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: #f59e0b;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #f3f4f6;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 6px;
    width: 0%;
    transition: width 1.5s ease-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Animation theo file gốc - giá trị cũ (300%, 85%, 200%) */
.progress-item:nth-child(1) .progress-fill {
    animation: fillProgress300 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

.progress-item:nth-child(2) .progress-fill {
    animation: fillProgress85 1.5s ease-out forwards;
    animation-delay: 0.8s;
}

.progress-item:nth-child(3) .progress-fill {
    animation: fillProgress200 1.5s ease-out forwards;
    animation-delay: 1.1s;
}

@keyframes fillProgress300 {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes fillProgress85 {
    from { width: 0%; }
    to { width: 85%; }
}

@keyframes fillProgress200 {
    from { width: 0%; }
    to { width: 100%; }
}

/* Keyframes cho giá trị mới (75%, 65%, 80%) - backup */
@keyframes fillProgress75 {
    from { width: 0%; }
    to { width: 75%; }
}

@keyframes fillProgress65 {
    from { width: 0%; }
    to { width: 65%; }
}

@keyframes fillProgress80 {
    from { width: 0%; }
    to { width: 80%; }
}

/* Vertical Bar Chart for Card 3 */
.vertical-bar-chart {
    display: flex;
    align-items: end;
    justify-content: space-around;
    gap: var(--spacing-5);
    height: 186px;
    padding: var(--spacing-4);
}

.v-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.v-bar-wrapper {
    width: 24px;
    height: 140px;
    background: #f3f4f6;
    border-radius: 12px;
    position: relative;
    margin-bottom: var(--spacing-2);
    overflow: hidden;
}

.v-bar-fill {
    width: 100%;
    background: linear-gradient(180deg, #8b5cf6, #a78bfa);
    border-radius: 12px;
    position: absolute;
    bottom: 0;
    height: 0%;
    transition: height 1.5s ease-out;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.v-bar-item:nth-child(1) .v-bar-fill {
    animation: fillVertical100 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

.v-bar-item:nth-child(2) .v-bar-fill {
    animation: fillVertical75 1.5s ease-out forwards;
    animation-delay: 0.7s;
}

.v-bar-item:nth-child(3) .v-bar-fill {
    animation: fillVertical45 1.5s ease-out forwards;
    animation-delay: 0.9s;
}

.v-bar-item:nth-child(4) .v-bar-fill {
    animation: fillVertical25 1.5s ease-out forwards;
    animation-delay: 1.1s;
}

.v-bar-item:nth-child(5) .v-bar-fill {
    animation: fillVertical10 1.5s ease-out forwards;
    animation-delay: 1.3s;
}

@keyframes fillVertical100 {
    from { height: 0%; }
    to { height: 100%; }
}

@keyframes fillVertical75 {
    from { height: 0%; }
    to { height: 75%; }
}

@keyframes fillVertical45 {
    from { height: 0%; }
    to { height: 45%; }
}

@keyframes fillVertical25 {
    from { height: 0%; }
    to { height: 25%; }
}

@keyframes fillVertical10 {
    from { height: 0%; }
    to { height: 10%; }
}

.v-bar-label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    margin-top: var(--spacing-1);
}

/* Crisis Breakdown */
.crisis-breakdown {
    margin-top: auto;
    padding-bottom: var(--spacing-4);
    border-top: 1px solid #f3f4f6;
}

.breakdown-row {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-3);
    font-size: var(--font-size-base);
    line-height: 1.4;
    color: var(--gray-700);
}

.breakdown-row:last-child {
    margin-bottom: 0;
}

.breakdown-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.secondary-crisis .breakdown-dot {
    background: #f59e0b;
}

.tertiary-crisis .breakdown-dot {
    background: #8b5cf6;
}

/* Business Infographic */
.business-infographic {
    margin: var(--spacing-16) 0;
    padding: var(--spacing-16) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    border-radius: var(--border-radius-3xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.infographic-header {
    text-align: center;
    margin-bottom: var(--spacing-16);
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius-full);
    padding: var(--spacing-3) var(--spacing-6);
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.infographic-header h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-3);
}

.infographic-header p {
    color: var(--gray-600);
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
}

.infographic-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-16);
    margin-bottom: var(--spacing-20);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-8);
    position: relative;
    z-index: 2;
}

.info-stat {
    text-align: center;
    padding: var(--spacing-8);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-2xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-stat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.stat-visual {
    margin-bottom: var(--spacing-6);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.circular-progress {
    position: relative;
    width: 150px;
    height: 150px;
}

.progress-circle {
    width: 100%;
    height: 100%;
    position: relative;
}

.circular-progress-fill {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 0deg, var(--primary-color) 324deg, #e5e7eb 324deg, #e5e7eb 360deg);
    position: relative;
    transition: all 1.5s ease-out;
}

.progress-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-number {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-color);
}

.progress-symbol {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    font-weight: 700;
}

.pyramid-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    width: 200px;
}

.pyramid-layer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-3);
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.pyramid-layer:hover {
    transform: scale(1.05);
}

.survival-chart {
    width: 200px;
    height: 150px;
    position: relative;
}

.timeline-chart {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    transition: all 0.3s ease;
}

.timeline-point.active .point-value {
    color: var(--primary-color);
    font-weight: 800;
}

.timeline-point.critical .point-value {
    color: var(--danger-color);
    font-weight: 800;
}

.point-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--gray-700);
}

.point-label {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    font-weight: 500;
}

.survival-line {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--danger-color));
    border-radius: var(--border-radius-full);
}

.stat-content h4 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: var(--spacing-3);
    font-size: var(--font-size-xl);
}

.stat-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-6);
    font-size: var(--font-size-base);
}

.efficiency-breakdown {
    display: flex;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-6);
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    flex: 1;
}

.item-icon {
    font-size: var(--font-size-lg);
}

.item-info {
    display: flex;
    flex-direction: column;
}

.item-label {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    font-weight: 500;
}

.item-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--gray-800);
}

.survival-factors {
    margin-bottom: var(--spacing-6);
}

.factor-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-3);
    font-size: var(--font-size-sm);
    color: var(--gray-700);
}

.factor-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.factor-icon.automation {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.factor-icon.digital {
    background: linear-gradient(135deg, var(--purple-color), #a78bfa);
}

.stat-source-tag {
    background: var(--gray-50);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--border-radius-lg);
    color: var(--gray-600);
    font-size: var(--font-size-xs);
    font-style: italic;
    border-left: 3px solid var(--primary-color);
}

/* Infographic Conclusion */
.infographic-conclusion {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(52, 211, 153, 0.03));
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-12);
    margin: 0 var(--spacing-8);
    position: relative;
    overflow: hidden;
}

.conclusion-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-8);
    max-width: 1000px;
    margin: 0 auto;
}

.conclusion-visual {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.conclusion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-2xl);
    box-shadow: var(--shadow-lg);
    animation: gentleFloat 3s ease-in-out infinite;
}

.conclusion-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-full);
    opacity: 0.3;
}

.line-1 {
    width: 60px;
    height: 2px;
    top: 20px;
    right: -30px;
    animation: gentleFloat 2s ease-in-out infinite;
}

.line-2 {
    width: 40px;
    height: 2px;
    top: 50px;
    right: -20px;
    animation: gentleFloat 2s ease-in-out infinite 0.5s;
}

.line-3 {
    width: 50px;
    height: 2px;
    top: 80px;
    right: -25px;
    animation: gentleFloat 2s ease-in-out infinite 1s;
}

.conclusion-content {
    flex: 1;
}

.conclusion-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--border-radius-full);
    padding: var(--spacing-2) var(--spacing-4);
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-4);
}

.conclusion-content h4 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    font-size: var(--font-size-2xl);
}

.conclusion-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-6);
    font-size: var(--font-size-base);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

.conclusion-stats {
    display: flex;
    gap: var(--spacing-8);
}

.conclusion-stat {
    text-align: center;
}

.conclusion-stat .stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-1);
}

.conclusion-stat .stat-label {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.3;
}

/* Wake Up Call Quotes */
.wake-up-call-quotes {
    background: var(--white);
    border-radius: var(--border-radius-3xl);
    padding: var(--spacing-16);
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.08);
    backdrop-filter: blur(10px);
}

.quotes-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.quote-icon i {
    font-size: var(--font-size-xl);
    color: var(--white);
}

.quotes-header h3 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: var(--spacing-2);
    font-size: var(--font-size-2xl);
}

.quotes-header p {
    color: var(--gray-600);
    font-size: var(--font-size-base);
    max-width: 400px;
    margin: 0 auto;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
}

.quote-card {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-8);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}

.quote-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: var(--spacing-6);
    font-size: var(--font-size-4xl);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
    opacity: 0.3;
}

.quote-content {
    margin-top: var(--spacing-4);
    margin-bottom: var(--spacing-6);
}

.quote-content p {
    color: var(--gray-700);
    font-size: var(--font-size-lg);
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

.quote-number {
    position: absolute;
    bottom: var(--spacing-4);
    right: var(--spacing-6);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-base);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Reality Stats */
.reality-stats {
    margin-bottom: var(--spacing-20);
    position: relative;
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.stats-header h3 {
    margin-bottom: var(--spacing-2);
    color: var(--gray-800);
    font-weight: 700;
}

.stats-header p {
    color: var(--gray-600);
    font-size: var(--font-size-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-12);
    margin-bottom: var(--spacing-24);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.statistics-summary {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-8);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.summary-content h4 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    font-size: var(--font-size-xl);
}

.summary-content p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* Challenge Stories */
.challenge-stories {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-16);
    position: relative;
    z-index: 1;
}

.story-card {
    background: var(--white);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-8);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-full);
}

.story-card:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.story-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-6);
}

.story-icon {
    font-size: var(--font-size-3xl);
    animation: gentleFloat 3s ease-in-out infinite;
}

.story-header h3 {
    margin-bottom: 0;
    color: var(--gray-800);
    font-weight: 700;
    font-size: var(--font-size-xl);
}

.story-content p {
    margin-bottom: var(--spacing-4);
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.6;
}

.story-content ul {
    list-style: none;
    padding-left: 0;
}

.story-content li {
    margin-bottom: var(--spacing-3);
    padding-left: var(--spacing-6);
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.story-content li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: var(--font-size-lg);
}

/* Wake Up Call */
.wake-up-call {
    background: var(--white);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-12);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.call-header {
    text-align: center;
    margin-bottom: var(--spacing-8);
}

.call-header h3 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: var(--spacing-2);
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-6);
}

.question-item {
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-6);
    position: relative;
    transition: all 0.3s ease;
}

.question-item:hover {
    background: var(--green-50);
    transform: translateY(-4px);
}

.question-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-4);
}

.question-item p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Business Statistics */
.business-statistics {
    margin: var(--spacing-16) 0;
    padding: var(--spacing-12) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: var(--border-radius-2xl);
    position: relative;
}

.statistics-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.statistics-header h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--spacing-3);
}

.statistics-header p {
    color: var(--gray-600);
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-12);
}

.business-statistics .stat-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-8);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.business-statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-full);
}

.business-statistics .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.business-statistics .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: var(--font-size-xl);
    margin: 0 auto var(--spacing-4);
    box-shadow: var(--shadow-md);
}

.business-statistics .stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-3);
    display: block;
}

.business-statistics .stat-card h4 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: var(--spacing-3);
    font-size: var(--font-size-xl);
}

.business-statistics .stat-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-6);
    font-size: var(--font-size-base);
}

.stat-details {
    text-align: left;
    margin-bottom: var(--spacing-6);
}

.stat-details .detail-item {
    padding: var(--spacing-3);
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-3);
    color: var(--gray-700);
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
}

.stat-details .detail-item:hover {
    background: var(--green-50);
    transform: translateX(4px);
}

.business-statistics .stat-source {
    background: var(--gray-50);
    padding: var(--spacing-3);
    border-radius: var(--border-radius-lg);
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    font-style: italic;
    border-left: 3px solid var(--primary-color);
} 

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-6);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-xl);
    box-shadow: var(--shadow-md);
}

.card-header h4 {
    color: var(--gray-800);
    font-weight: 700;
    margin: 0;
}

.card-content {
    color: var(--gray-700);
}

/* Market Reality Card */
.reality-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-6);
}

.stat-item {
    text-align: center;
}

.stat-item.primary .stat-value {
    color: var(--danger-color);
    font-size: var(--font-size-4xl);
    font-weight: 800;
    display: block;
    margin-bottom: var(--spacing-2);
}

.stat-item.secondary .stat-value {
    color: var(--primary-color);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    display: block;
    margin-bottom: var(--spacing-2);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--gray-300);
    margin: 0 var(--spacing-4);
}

.reality-breakdown {
    margin-top: var(--spacing-6);
}

.breakdown-bar {
    display: flex;
    height: 40px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    margin-bottom: var(--spacing-4);
}

.bar-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    position: relative;
}

.bar-segment.adopters {
    background: var(--primary-color);
}

.bar-segment.planning {
    background: var(--warning-color);
}

.bar-segment.waiting {
    background: var(--gray-400);
}

/* Implementation Challenges Card */
.challenge-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4);
    padding: var(--spacing-4);
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.challenge-item:hover {
    background: var(--green-50);
    transform: translateX(8px);
}

.challenge-percentage {
    background: var(--danger-color);
    color: var(--white);
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: var(--font-size-sm);
    min-width: 50px;
    text-align: center;
}

.challenge-info {
    flex: 1;
}

.challenge-title {
    font-weight: 600;
    color: var(--gray-800);
    display: block;
    margin-bottom: var(--spacing-1);
}

.challenge-desc {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

/* Success Stories Card */
.success-metrics {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-6);
}

.metric-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-3);
    background: var(--green-50);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.metric-row:hover {
    background: var(--green-100);
    transform: translateX(8px);
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-lg);
}

.metric-icon.productivity {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.metric-icon.cost {
    background: linear-gradient(135deg, var(--warning-color), #fbbf24);
}

.metric-icon.time {
    background: linear-gradient(135deg, var(--purple-color), #a855f7);
}

.metric-data {
    flex: 1;
}

.metric-value {
    font-weight: 700;
    font-size: var(--font-size-xl);
    color: var(--gray-800);
    display: block;
}

.metric-label {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.success-note {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3);
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius-lg);
    font-size: var(--font-size-sm);
    color: var(--accent-color);
}

/* Market Opportunity Card */
.opportunity-timeline {
    margin-bottom: var(--spacing-6);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-4);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gray-300);
    position: relative;
    z-index: 1;
}

.timeline-item.current .timeline-marker {
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.timeline-item.upcoming .timeline-marker {
    background: var(--warning-color);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.timeline-item.future .timeline-marker {
    background: var(--gray-400);
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.timeline-period {
    font-weight: 700;
    color: var(--gray-800);
    font-size: var(--font-size-base);
}

.timeline-event {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.opportunity-highlight {
    padding: var(--spacing-4);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--warning-color);
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    color: var(--gray-700);
    font-weight: 600;
}

/* CTA Section */
.status-cta {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(52, 211, 153, 0.03));
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-12);
    margin: 0 var(--spacing-8);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-8);
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
}

.cta-text h4 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: var(--spacing-3);
}

.cta-text p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-6);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-4) var(--spacing-6);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.cta-btn.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-visual {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-indicator {
    width: 100%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gray-200);
    z-index: 1;
}

.step {
    background: var(--white);
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--gray-600);
    border: 2px solid var(--gray-200);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.completed {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
} 
.solution-why-section {
    padding: 80px 0;
    margin-top: 20px;
    padding-bottom: 0;
}

/* Solution Section */
.solution {
    padding: var(--spacing-32) 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--green-50) 100%);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-8);
    max-width: 1200px;
    margin: 0 auto;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    justify-content: center;
    margin-top: var(--spacing-6);
    position: relative;
    z-index: 1;
} 


/* Solution Cards */
.solution-card {
    text-align: center;
    padding: var(--spacing-8);
    border-radius: var(--border-radius-2xl);
    background: var(--white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02), rgba(52, 211, 153, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.3);
}

.solution-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    border-radius: var(--border-radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    animation: gentleFloat 4s ease-in-out infinite;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.solution-icon i {
    font-size: var(--font-size-4xl);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.15));
    border-color: rgba(16, 185, 129, 0.4);
    transform: scale(1.05);
}

.solution-card:hover .solution-icon i {
    color: var(--green-600);
    transform: scale(1.1);
}

.solution-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-4);
    color: var(--gray-800);
    font-weight: 700;
    font-size: var(--font-size-xl);
}

.solution-card p {
    position: relative;
    z-index: 1;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: var(--font-size-base);
    text-align: left;
    margin-bottom: var(--spacing-6);
}
/* Business Stories Section */
.business-stories {
    padding: var(--spacing-32) 0;
    background: linear-gradient(135deg, 
        rgba(240, 253, 244, 0.4) 0%, 
        rgba(255, 255, 255, 0.9) 20%, 
        rgba(220, 252, 231, 0.3) 40%,
        rgba(255, 255, 255, 0.95) 60%,
        rgba(187, 247, 208, 0.2) 80%,
        rgba(255, 255, 255, 1) 100%
    );
    position: relative;
    overflow: hidden;
}

.business-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 80%, rgba(52, 211, 153, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(5, 150, 105, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse at 10% 70%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 30%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    opacity: 0.7;
    animation: backgroundFlow 30s ease-in-out infinite;
}

.business-stories::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(16, 185, 129, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 35%, rgba(52, 211, 153, 0.015) 50%, transparent 60%),
        linear-gradient(90deg, transparent 45%, rgba(5, 150, 105, 0.01) 50%, transparent 55%);
    opacity: 0.5;
    animation: backgroundFlow 25s ease-in-out infinite reverse;
}

/* Stories Container */
.stories-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-32);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Story Items */
.story-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-24);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.story-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Story Visual */
.story-visual {
    position: relative;
    width: 350px;
    height: 250px;
    flex-shrink: 0;
}

.story-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: gentleFloat 8s ease-in-out infinite;
}

.story-challenge .story-shape {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(251, 113, 133, 0.08));
    border-color: rgba(239, 68, 68, 0.2);
}

.story-opportunity .story-shape {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.08));
    border-color: rgba(245, 158, 11, 0.2);
}

.story-solution .story-shape {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(52, 211, 153, 0.1));
    border-color: rgba(16, 185, 129, 0.3);
}

.shape-1 {
    width: 130px;
    height: 130px;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.shape-2 {
    width: 90px;
    height: 90px;
    bottom: 0;
    right: 50px;
    animation-delay: -2s;
}

.shape-3 {
    width: 110px;
    height: 110px;
    top: 30px;
    right: 0;
    animation-delay: -1s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    bottom: 30px;
    left: 70px;
    animation-delay: -3s;
}

.shape-5 {
    width: 150px;
    height: 150px;
    top: 0;
    left: 30px;
    animation-delay: -0.5s;
}

.shape-6 {
    width: 80px;
    height: 80px;
    bottom: 20px;
    right: 0;
    animation-delay: -2.5s;
}

.story-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
    z-index: 3;
}

.story-challenge .story-icon-wrapper {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
}

.story-opportunity .story-icon-wrapper {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
}

.story-solution .story-icon-wrapper {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.story-icon {
    font-size: 2.8rem;
    animation: iconPulse 4s ease-in-out infinite;
}

/* Story Content */
.story-content {
    flex: 1;
    padding: var(--spacing-8);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-3xl);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.story-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-full);
}

.story-challenge .story-content::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.story-opportunity .story-content::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.story-solution .story-content::before {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.story-content h3 {
    color: var(--gray-800);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-6);
    line-height: 1.3;
}

.story-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-8);
    font-size: var(--font-size-lg);
}

/* Story Tags */
.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-3);
}

.tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-3) var(--spacing-5);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s ease;
}

.tag:hover::before {
    left: 100%;
}

.tag:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.story-challenge .tag {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.2);
}

.story-challenge .tag:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

.story-opportunity .tag {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.2);
}

.story-opportunity .tag:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.tag.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-color: rgba(34, 197, 94, 0.2);
}

.tag.success:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(52, 211, 153, 0.03));
    border-radius: 50%;
    animation: abstractFloat 20s ease-in-out infinite;
}

.fs-1 {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.fs-2 {
    width: 50px;
    height: 50px;
    top: 70%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 20s;
}

.fs-3 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
    animation-duration: 30s;
}

.fs-4 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 5%;
    animation-delay: -15s;
    animation-duration: 18s;
}

.fs-5 {
    width: 80px;
    height: 80px;
    bottom: 60%;
    left: 80%;
    animation-delay: -8s;
    animation-duration: 22s;
}

/* AI Revolution CTA Section */
.ai-revolution-cta {
    background: linear-gradient(135deg, 
        rgba(240, 253, 244, 0.6), 
        rgba(255, 255, 255, 0.9),
        rgba(220, 252, 231, 0.4),
        rgba(255, 255, 255, 0.95)
    );
    padding: 80px 0;
    margin-top: -20px;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
}

.ai-revolution-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(52, 211, 153, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(5, 150, 105, 0.04) 0%, transparent 40%);
    opacity: 0.7;
    animation: backgroundFlow 30s ease-in-out infinite;
}

.ai-revolution-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(16, 185, 129, 0.02) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(52, 211, 153, 0.02) 50%, transparent 60%),
        linear-gradient(90deg, transparent 45%, rgba(5, 150, 105, 0.01) 50%, transparent 55%);
    opacity: 0.6;
}

.revolution-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.revolution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    animation: gentleFloat 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.revolution-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.15));
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.revolution-icon i {
    font-size: 36px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.ai-workforce-section {
    margin-bottom: 80px;
}

.workforce-header {
    margin-bottom: 28px;
}

.workforce-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.workforce-header h3 i {
    color: #10b981;
    font-size: 36px;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
}

.workforce-header p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 0;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.revolution-highlight {
    margin-bottom: 48px;
    text-align: center;
}

.highlight-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #059669;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.1);
    /* margin-bottom: 16px; */
    transition: all 0.3s ease;
}

.highlight-badge i {
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(5, 150, 105, 0.3));
}

.revolution-highlight p {
    font-size: 16px;
    color: var(--gray-600);
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.ai-workforce-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.workforce-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.workforce-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), rgba(34, 197, 94, 0.02));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.workforce-card:hover::before {
    opacity: 1;
}

.workforce-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.workforce-status {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.workforce-card.available .workforce-status {
    color: #059669;
    background: rgba(236, 253, 245, 0.9);
    border-color: rgba(16, 185, 129, 0.1);
}

.workforce-card.coming-soon .workforce-status {
    color: #6b7280;
    background: rgba(249, 250, 251, 0.9);
    border-color: rgba(107, 114, 128, 0.1);
}

.status-text {
    font-size: 12px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background: #10b981;
    animation: statusPulse 2s infinite;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

.status-dot.coming {
    background: #9ca3af;
    animation: statusPulse 2s infinite;
}

.workforce-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.workforce-card.available:hover .workforce-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.workforce-card.coming-soon .workforce-icon {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border: 1px solid rgba(107, 114, 128, 0.1);
    box-shadow: 0 4px 12px rgba(173, 173, 173, 0.2);
}

.workforce-card.view-more .workforce-icon {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.workforce-icon i {
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
}

.workforce-card.coming-soon .workforce-icon i {
    color: #9ca3af;
}

.workforce-card.view-more .workforce-icon i {
    color: #7c3aed;
}

.workforce-card.view-more:hover .workforce-icon i {
    color: white;
}

.workforce-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    line-height: 1.3;
}

.workforce-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.5;
}

.workforce-stats {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item:hover {
    transform: translateY(-1px);
}

.stat-item i {
    font-size: 11px;
}

.workforce-card.coming-soon .stat-item {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border-color: rgba(107, 114, 128, 0.2);
}

.more-count {
    margin-top: 16px;
}

.more-count span {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.workforce-card.view-more:hover .more-count span {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.revolution-action {
    text-align: center;
    margin-top: 40px;
}

.revolution-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

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

.feature-item i {
    font-size: 14px;
    color: #10b981;
    opacity: 0.8;
} 
/* Features Section */
.features {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 100%);
}

.features-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-12);
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-2);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.tab-btn {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: var(--spacing-4) var(--spacing-6);
    border: none;
    background: transparent;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    color: var(--gray-600);
    font-size: var(--font-size-base);
    box-sizing: border-box;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-1px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-6);
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-3xl);
    padding: var(--spacing-7) var(--spacing-5);
    transition: all 0.35s cubic-bezier(.4,2,.6,1);
    position: relative;
    overflow: visible;
    border: 1.5px solid rgba(16, 185, 129, 0.13);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px 0 rgba(0,0,0,0.10);
}

.feature-badge {
    display: inline-block;
    margin-top: var(--spacing-4);
    padding: 4px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    min-width: 64px;
} 


/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-3xl);
    padding: var(--spacing-7) var(--spacing-5);
    box-shadow: 0 8px 32px 0 rgba(16, 185, 129, 0.10), 0 1.5px 6px 0 rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(.4,2,.6,1);
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(16, 185, 129, 0.13);
    opacity: 1;
    transform: none;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 320px;
    height: 100%;
    overflow: visible;
}


.feature-card:hover {
    transform: translateY(-12px) scale(1.035);
    box-shadow: 0 16px 48px 0 rgba(16, 185, 129, 0.18), 0 2px 8px 0 rgba(0,0,0,0.06);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-4);
    box-shadow: 0 0 0 8px rgba(16,185,129,0.10), 0 4px 16px 0 rgba(16,185,129,0.10);
    position: relative;
    z-index: 1;
    animation: gentleFloat 3s ease-in-out infinite;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.13;
    z-index: 0;
    pointer-events: none;
}

.feature-icon i {
    font-size: var(--font-size-xl);
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(16,185,129,0.18));
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    margin-bottom: var(--spacing-4);
    color: var(--gray-900);
    font-weight: 800;
    font-size: var(--font-size-xl);
    text-align: center;
    letter-spacing: 0.01em;
    z-index: 1;
    width: 100%;
    text-align: center;
    word-break: break-word;
}

.feature-card p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: var(--font-size-base);
    text-align: center;
    margin-bottom: 0;
    z-index: 1;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    max-height: none;
    width: 100%;
    text-align: center;
    word-break: break-word;
}


.feature-card-inner {
    width: 100%;
    padding-left: var(--spacing-6);
    padding-right: var(--spacing-6);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-badge {
    display: inline-block;
    margin-top: var(--spacing-4);
    padding: 4px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(16,185,129,0.10);
    text-align: center;
    min-width: 64px;
} 


.feature-tag:hover {
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
}

/* Revealed Animation */
.feature-card.revealed,
.benefit-card.revealed,
.stat-card.revealed {
    opacity: 1;
    transform: translateY(0);
} 

/* Feature Tags */
.feature-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: var(--spacing-2) var(--spacing-4);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Comparison Section */
.comparison {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--green-50) 100%);
    position: relative;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.02) 0%, transparent 50%);
    opacity: 0.8;
}

.comparison-table-wrapper {
    margin-top: var(--spacing-10);
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.12);
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.15);
    position: relative;
    z-index: 1;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-size-base);
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-6) var(--spacing-5);
    text-align: left;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.comparison-table th {
    background: rgba(16, 185, 129, 0.05);
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
    font-size: var(--font-size-lg);
    color: var(--gray-800);
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

.feature-column {
    width: 25%;
    background: rgba(16, 185, 129, 0.05) !important;
    color: var(--gray-800);
    font-weight: 700;
    text-align: center;
}

.leanez-column {
    width: 25%;
    background: rgba(16, 185, 129, 0.1) !important;
    color: var(--gray-800);
}

.competitor-column {
    width: 25%;
    background: var(--white) !important;
    color: var(--gray-700);
}

.product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
}

.product-name {
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--gray-700);
}

.leanez-column .product-name {
    color: var(--primary-color);
    font-weight: 800;
}

.recommended-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.feature-name {
    background: rgba(16, 185, 129, 0.05);
    color: var(--gray-800);
    font-weight: 700;
    text-align: center;
}

.feature-name strong {
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.feature-name small {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin-top: var(--spacing-1);
    font-weight: 400;
}

.leanez-cell {
    background: rgba(16, 185, 129, 0.1);
}

.competitor-cell {
    background: var(--white);
}

.leanez-cell,
.competitor-cell {
    position: relative;
    padding-left: var(--spacing-5);
}

.check-mark {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    margin-right: var(--spacing-3);
}

.partial-mark {
    color: #f59e0b;
    font-size: var(--font-size-xl);
    margin-right: var(--spacing-3);
}

.cross-mark {
    color: #f87171;
    font-size: var(--font-size-xl);
    margin-right: var(--spacing-3);
}

.feature-text {
    font-weight: 500;
    color: var(--gray-600);
    font-size: var(--font-size-base);
}

.leanez-cell .feature-text {
    color: var(--gray-700);
    font-weight: 600;
    font-size: var(--font-size-lg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison {
        padding: var(--spacing-16) 0;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
        margin-top: var(--spacing-8);
    }
    
    .comparison-table {
        /* min-width: 600px; */
        font-size: var(--font-size-sm);
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-4) var(--spacing-3);
    }
    
    .comparison-table th {
        font-size: var(--font-size-base);
    }
    
    .product-name {
        font-size: var(--font-size-base);
    }
    
    .feature-name strong {
        font-size: var(--font-size-base);
    }
    
    .feature-text {
        font-size: var(--font-size-sm);
    }
    
    .leanez-cell .feature-text {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .comparison-table {
        min-width: 500px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-3) var(--spacing-2);
    }
    
    .product-header {
        gap: var(--spacing-1);
    }
    
    .feature-name small {
        display: none;
    }
} 
/* Contact Section */
.contact {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-12);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.form-group {
    margin-bottom: var(--spacing-5);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-4);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

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

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: var(--spacing-4);
    justify-content: center;
}

.contact-form button[type="submit"]:hover {
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-5);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-4);
    padding: var(--spacing-5);
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    box-shadow: var(--shadow-md);
}

.info-item i {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    margin-top: var(--spacing-1);
}

.info-item h4 {
    margin-bottom: var(--spacing-1);
    color: var(--gray-800);
    font-weight: 600;
}

.info-item p {
    color: var(--gray-600);
    margin: 0;
} 
/* CTA Section - Phù hợp với tone màu của trang */
.cta-section {
    position: relative;
    padding: var(--spacing-32) 0;
    background: linear-gradient(135deg, 
        rgba(240, 253, 244, 0.6) 0%, 
        rgba(255, 255, 255, 0.95) 30%, 
        rgba(220, 252, 231, 0.4) 70%, 
        rgba(187, 247, 208, 0.3) 100%
    );
    overflow: hidden;
    color: #1f2937;
}

/* Abstract Particle System */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaParticleFloat 15s linear infinite;
}

.cta-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.cta-particle:nth-child(2) { left: 20%; animation-delay: -2s; animation-duration: 16s; }
.cta-particle:nth-child(3) { left: 30%; animation-delay: -4s; animation-duration: 14s; }
.cta-particle:nth-child(4) { left: 40%; animation-delay: -6s; animation-duration: 18s; }
.cta-particle:nth-child(5) { left: 50%; animation-delay: -8s; animation-duration: 13s; }
.cta-particle:nth-child(6) { left: 60%; animation-delay: -10s; animation-duration: 17s; }
.cta-particle:nth-child(7) { left: 70%; animation-delay: -12s; animation-duration: 15s; }
.cta-particle:nth-child(8) { left: 80%; animation-delay: -14s; animation-duration: 19s; }
.cta-particle:nth-child(9) { left: 90%; animation-delay: -16s; animation-duration: 11s; }

@keyframes ctaParticleFloat {
    0% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { 
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% { 
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% { 
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* Morphing Background Elements */
.cta-morph-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-morph-shape {
    position: absolute;
    background: linear-gradient(45deg, 
        rgba(16, 185, 129, 0.05) 0%, 
        rgba(52, 211, 153, 0.08) 50%, 
        rgba(5, 150, 105, 0.03) 100%
    );
    filter: blur(1px);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: ctaMorphShape 20s ease-in-out infinite;
}

.cta-morph-1 {
    width: 300px;
    height: 200px;
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.cta-morph-2 {
    width: 250px;
    height: 180px;
    top: 60%;
    right: -80px;
    animation-delay: -7s;
}

.cta-morph-3 {
    width: 180px;
    height: 140px;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -14s;
}

@keyframes ctaMorphShape {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 60% 30% 40% / 25% 60% 60% 70%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 60% 40% 60% 30% / 60% 30% 40% 70%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Animated Connection Lines */
.cta-connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(16, 185, 129, 0.4) 50%, 
        transparent 100%
    );
    animation: ctaLineMove 8s linear infinite;
}

.cta-line-1 {
    top: 25%;
    width: 200px;
    left: -200px;
    animation-delay: 0s;
}

.cta-line-2 {
    top: 75%;
    width: 150px;
    right: -150px;
    animation-delay: -3s;
    animation-direction: reverse;
}

.cta-line-3 {
    top: 50%;
    width: 180px;
    left: -180px;
    animation-delay: -6s;
}

@keyframes ctaLineMove {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 200px));
        opacity: 0;
    }
}

/* Glow Pulse Effect */
.cta-glow-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: ctaGlowPulse 6s ease-in-out infinite;
}

.cta-glow-orb-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.cta-glow-orb-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 20%;
    animation-delay: -2s;
}

.cta-glow-orb-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 70%;
    animation-delay: -4s;
}

@keyframes ctaGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }
}

/* Abstract Background - với prefix để tránh xung đột */
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(52, 211, 153, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(5, 150, 105, 0.05) 0%, transparent 45%);
    opacity: 0.8;
    animation: ctaBackgroundShift 25s ease-in-out infinite;
}

.cta-geometric-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.08), rgba(52, 211, 153, 0.05));
    backdrop-filter: blur(20px);
    animation: ctaFloatShape 20s ease-in-out infinite;
}

.cta-shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -75px;
    animation-delay: -7s;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.06), rgba(16, 185, 129, 0.04));
}

.cta-shape-3 {
    width: 180px;
    height: 180px;
    bottom: -90px;
    left: 40%;
    animation-delay: -14s;
    background: linear-gradient(45deg, rgba(5, 150, 105, 0.05), rgba(52, 211, 153, 0.03));
}

.cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-floating-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    animation: ctaFloatDot 15s linear infinite;
}

.cta-dot-1 { top: 25%; left: 20%; animation-delay: 0s; }
.cta-dot-2 { top: 65%; left: 75%; animation-delay: -5s; }
.cta-dot-3 { top: 80%; left: 30%; animation-delay: -10s; }

@keyframes ctaBackgroundShift {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes ctaFloatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

@keyframes ctaFloatDot {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.4; }
    50% { transform: translateY(-15px) scale(1.3); opacity: 0.8; }
}

/* Main Content */
.cta-wrapper {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(240, 253, 244, 0.95) 0%, 
        rgba(220, 252, 231, 0.98) 100%
    );
    color: #064e3b;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    /* box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1); */
    margin-bottom: 60px;
    z-index: 10;
    /* border: 1px solid rgba(16, 185, 129, 0.2); */
    max-width: 100%;
}

.cta-badge-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #064e3b;
    line-height: 1.4;
}

.cta-badge-text i {
    color: #dc2626;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.countdown-inline {
    font-weight: 600;
    color: #065f46;
}

.countdown-inline span[id] {
    display: inline-block;
    /* background: rgba(16, 185, 129, 0.15); */
    color: #065f46;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-weight: 700;
    margin: 0 0.1rem;
    min-width: 1.5rem;
    text-align: center;
    /* border: 1px solid rgba(16, 185, 129, 0.25); */
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Remove old box countdown styles */
.cta-countdown,
.countdown-item,
.countdown-number,
.countdown-label {
    display: none;
}

/* Enhanced responsive design for inline countdown */
@media (max-width: 768px) {
    .cta-section {
        padding: var(--spacing-24) 0;
    }

    .cta-wrapper {
        padding: 0 1rem;
    }

    .cta-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
        background: linear-gradient(135deg, 
            rgba(240, 253, 244, 0.98) 0%, 
            rgba(220, 252, 231, 1) 100%
        );
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }
    
    .cta-badge-text {
        font-size: 0.75rem;
        justify-content: center;
        text-align: center;
    }
    
    .cta-badge-text i {
        font-size: 0.75rem;
    }
    
    .countdown-inline {
        font-size: 0.75rem;
    }
    
    .countdown-inline span[id] {
        font-size: 0.8rem;
        padding: 0.1rem 0.3rem;
        min-width: 1.3rem;
        margin: 0 0.05rem;
    }

    .cta-main {
        text-align: center;
    }

    .cta-title-connector {
        display: block;
        margin: 0.5rem 0;
    }

    .cta-description {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .cta-shape-1, .cta-shape-2, .cta-shape-3 {
        opacity: 0.4;
    }
    
    .cta-particle {
        display: none; /* Hide particles on mobile for performance */
    }
    
    .cta-morph-shape {
        filter: blur(2px);
        opacity: 0.5;
    }
    
    .cta-line {
        display: none; /* Hide connection lines on mobile */
    }
    
    .cta-btn::before,
    .cta-btn::after {
        display: none; /* Simplify on mobile */
    }
}

/* Bỏ animation pulse quá chói */
@keyframes ctaCountdownPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes ctaBadgePulse {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes ctaBoltFlicker {
    0%, 100% { transform: scale(1); color: #f59e0b; }
    50% { transform: scale(1.2); color: #d97706; }
}

/* Title */
.cta-main {
    margin-bottom: 4rem;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

.cta-title-line {
    display: inline;
    color: #1f2937;
}

.cta-title-connector {
    display: inline;
    font-size: 0.6em;
    font-weight: 400;
    color: #6b7280;
    margin: 0 0.5rem;
}

.cta-title-line.cta-highlight {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.cta-title-line.cta-highlight::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    border-radius: 2px;
    animation: ctaUnderlineGlow 3s ease-in-out infinite;
}

@keyframes ctaUnderlineGlow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

.cta-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 500;
    max-width: 500px;
    margin: 0 auto;
}

/* Button */
.cta-button-wrapper {
    display: flex;
    justify-content: center;
}

.cta-btn i {
    margin-right: 0.75rem;
    font-size: 1rem;
    animation: ctaPhoneRing 2s ease-in-out infinite;
}

@keyframes ctaPhoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-8deg); }
    20% { transform: rotate(8deg); }
}

.cta-btn span {
    font-weight: 700;
}

/* Enhanced Button Hover Effects */
.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 10;
}

/* Energy Rings around Button */
.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    transform: translate(-50%, -50%) scale(1);
    animation: ctaEnergyRing 3s ease-in-out infinite;
    z-index: -1;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    transform: translate(-50%, -50%) scale(1);
    animation: ctaEnergyRing 3s ease-in-out infinite;
    animation-delay: -1s;
    z-index: -2;
}

@keyframes ctaEnergyRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Wave Effect on Hover */
.cta-btn:hover::before,
.cta-btn:hover::after {
    animation-duration: 1.5s;
}

/* Background Wave Animation */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(16, 185, 129, 0.05) 25%, 
        rgba(52, 211, 153, 0.08) 50%, 
        rgba(16, 185, 129, 0.05) 75%, 
        transparent 100%
    );
    transform: translateX(-50%);
    animation: ctaWaveFlow 12s ease-in-out infinite;
    z-index: 0;
}

@keyframes ctaWaveFlow {
    0%, 100% {
        transform: translateX(-50%) skewX(0deg);
    }
    25% {
        transform: translateX(-45%) skewX(2deg);
    }
    50% {
        transform: translateX(-50%) skewX(0deg);
    }
    75% {
        transform: translateX(-55%) skewX(-2deg);
    }
}

/* Enhanced Title Animation */
.cta-title-line.cta-highlight {
    position: relative;
    background: linear-gradient(45deg, #10b981, #34d399, #10b981);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ctaGradientShift 4s ease-in-out infinite;
}

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

/* Floating Text Effect */
.cta-title {
    animation: ctaFloatText 6s ease-in-out infinite;
}

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