/* ===================================
   MODERN LANDING PAGE STYLES
   =================================== */

/* Hero Section Modern */
.hero-section-modern {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    bottom: -10%;
    right: -10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-content-modern {
    position: relative;
    z-index: 2;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    backdrop-filter: blur(10px);
}

.hero-badge-modern .badge-icon {
    font-size: 20px;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.text-gradient-modern {
    background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 50%, #f9a8d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-cta-modern {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-modern {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary-modern {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary-modern:hover {
    background: var(--bg-card-hover);
    border-color: var(--color-primary);
}

.btn-lg-modern {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-outline-modern {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline-modern:hover {
    background: var(--bg-card);
    border-color: var(--color-primary);
}

.trust-indicators {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.trust-item svg {
    color: var(--color-success);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card-modern {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle-modern {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* What We Do Section */
.what-we-do-section {
    padding: 100px 0;
    position: relative;
}

/* Use Cases Grid with Gradient Cards */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.use-case-card-gradient {
    position: relative;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 30px;
    padding: 50px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.use-case-card-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.use-case-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.05) 10px, rgba(255,255,255,.05) 20px);
}

.use-case-card-gradient:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.use-case-content {
    position: relative;
    z-index: 2;
}

.use-case-icon-large {
    font-size: 5rem;
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

.use-case-title-white {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.use-case-desc-white {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.use-case-stats {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How It Works Timeline */
.how-it-works-timeline {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    padding: 60px 50px;
}

.timeline-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.timeline-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.timeline-item {
    flex: 1;
    position: relative;
}

.timeline-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    position: relative;
}

.timeline-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
    text-align: center;
}

.timeline-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.timeline-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    position: relative;
    flex-shrink: 0;
}

.timeline-connector::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #6366f1;
    font-weight: bold;
}

/* Features Showcase */
.features-showcase {
    margin-top: 60px;
    padding: 50px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 30px;
}

.showcase-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.feature-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.showcase-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateX(10px);
    border-color: var(--color-primary);
}

.visual-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.visual-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Before & After Section - New Design */
.before-after-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.ba-showcase-card {
    margin-bottom: 80px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    padding: 50px;
    transition: all 0.3s ease;
}

.ba-showcase-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.ba-showcase-card-large {
    padding: 60px;
}

.ba-showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.ba-showcase-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.tag-icon {
    font-size: 20px;
}

.ba-showcase-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.ba-showcase-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Side by Side Comparison */
.ba-comparison {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
}

.ba-side {
    position: relative;
    flex: 0 1 45%;
    min-width: 0;
    max-width: 45%;
}

.ba-label-new {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.ba-label-after {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.ba-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
}

.ba-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ba-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ba-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.ba-image-container:hover .ba-overlay {
    transform: translateY(0);
}

.ba-overlay-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.ba-overlay-success {
    background: linear-gradient(to top, rgba(16, 185, 129, 0.9) 0%, transparent 100%);
}

/* Divider */
.ba-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    flex: 0 0 auto;
}

.ba-divider-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.ba-divider-circle svg {
    color: white;
}

/* Multiple Variations Layout */
.ba-multi-comparison {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
}

.ba-multi-before {
    position: relative;
    flex: 0 0 30%;
    min-width: 0;
    max-width: 30%;
}

.ba-multi-before .ba-image-container {
    aspect-ratio: 3/4;
}

.ba-multi-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ba-multi-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ba-multi-after {
    position: relative;
    flex: 1 1 60%;
    min-width: 0;
    max-width: 60%;
}

.ba-multi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ba-multi-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
}

.ba-multi-item .ba-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-multi-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.ba-multi-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 16px 12px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

/* Footer Tags */
.ba-showcase-footer {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.ba-feature-tag {
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.ba-feature-tag:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Features Section Modern - Bento Grid */
.features-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.features-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 20px;
}

/* Large Feature Card */
.feature-bento-large {
    grid-column: span 4;
    grid-row: span 2;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.feature-bento-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.feature-bento-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.4);
}

.feature-bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-bento-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.feature-bento-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
}

.feature-highlight {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.highlight-badge {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

/* Medium Feature Cards */
.feature-bento-medium {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-bento-medium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-bento-medium:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

.feature-bento-medium:hover::before {
    opacity: 1;
}

.feature-bento-medium .feature-bento-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    text-shadow: none;
}

.feature-bento-medium .feature-bento-desc {
    color: var(--text-secondary);
}

/* Small Feature Cards */
.feature-bento-small {
    grid-column: span 2;
    grid-row: span 1;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-bento-small:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.feature-icon-circle-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.feature-bento-title-small {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.feature-bento-desc-small {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    z-index: 0;
}

.cta-box {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
}

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

.cta-title-modern {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle-modern {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons-modern {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-box .btn-primary-modern {
    background: white;
    color: #6366f1;
}

.cta-box .btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.cta-box .btn-outline-modern {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-box .btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .section-title-modern {
        font-size: 2.25rem;
    }
    
    .cta-title-modern {
        font-size: 2.25rem;
    }
    
    .ba-example {
        padding: 30px 20px;
    }
    
    .cta-box {
        padding: 60px 40px;
    }
    
    .how-it-works-timeline {
        padding: 40px 30px;
    }
    
    .timeline-container {
        flex-direction: column;
    }
    
    .timeline-connector {
        width: 3px;
        height: 60px;
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .timeline-connector::after {
        content: '↓';
        right: auto;
        top: auto;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%) rotate(-90deg);
    }
    
    /* Bento Grid Responsive */
    .features-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 16px;
    }
    
    .feature-bento-large {
        grid-column: span 2;
        grid-row: auto;
        padding: 40px 30px;
    }
    
    .feature-bento-medium {
        grid-column: span 1;
        grid-row: auto;
        padding: 30px 20px;
    }
    
    .feature-bento-small {
        grid-column: span 1;
        grid-row: auto;
    }
}

@media (max-width: 767px) {
    .hero-section-modern {
        padding: 60px 0 40px;
    }
    
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.125rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title-modern {
        font-size: 1.875rem;
    }
    
    .section-subtitle-modern {
        font-size: 1.125rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .use-case-card-gradient {
        padding: 40px 25px;
        min-height: 280px;
    }
    
    .use-case-icon-large {
        font-size: 4rem;
    }
    
    .timeline-title {
        font-size: 1.875rem;
        margin-bottom: 40px;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-icon {
        font-size: 2.5rem;
    }
    
    .how-it-works-timeline {
        padding: 30px 20px;
    }
    
    /* Bento Grid Mobile */
    .features-bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-bento-large,
    .feature-bento-medium,
    .feature-bento-small {
        grid-column: span 1;
        grid-row: auto;
    }
    
    .feature-bento-large {
        padding: 30px 24px;
    }
    
    .feature-bento-title {
        font-size: 1.5rem;
    }
    
    .feature-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    /* Before/After Responsive */
    .ba-showcase-card {
        padding: 30px 20px;
    }
    
    .ba-showcase-card-large {
        padding: 40px 24px;
    }
    
    .ba-showcase-title {
        font-size: 1.5rem;
    }
}

/* Only stack on very small mobile screens */
@media (max-width: 576px) {
    .ba-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .ba-side {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .ba-divider {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .ba-multi-comparison {
        flex-direction: column;
        gap: 30px;
    }
    
    .ba-multi-before {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .ba-multi-after {
        width: 100%;
    }
    
    .ba-multi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cta-title-modern {
        font-size: 1.875rem;
    }
    
    .cta-subtitle-modern {
        font-size: 1.125rem;
    }
    
    .cta-box {
        padding: 40px 24px;
        border-radius: 30px;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
}
