        :root {
            --primary: #7C3AED;       --primary-dark: #6D28D9;
            --primary-light: #8B5CF6;
            --primary-soft: #F5F3FF;
            
            --secondary: #0F172A;     --secondary-light: #1E293B;
            
            --accent: #F97316;        --accent-soft: #FFF7ED;
            
            --text-main: #334155;     --text-dark: #020617;     --text-muted: #64748B;    --bg-body: #FFFFFF;
            --bg-surface: #F8FAFC;    --bg-gradient: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
            
            --border-color: #E2E8F0;
            --border-hover: #CBD5E1;
            
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 32px;
            
            --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            --shadow-primary: 0 10px 30px -10px rgba(124, 58, 237, 0.4);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            color: var(--text-main);
            background-color: var(--bg-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: all 0.2s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-header { 
            margin-bottom: 4rem; 
            text-align: center; 
            max-width: 800px; 
            margin-left: auto; 
            margin-right: auto; 
        }
        
        .section-tag {
            display: inline-flex;
            align-items: center;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.4rem 1rem;
            border-radius: 99px;
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border: 1px solid rgba(124, 58, 237, 0.1);
        }

        .heading-xl {
            font-size: clamp(3rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .heading-lg {
            font-size: clamp(2.25rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .heading-md {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .text-lead {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.7;
            font-weight: 400;
        }
        
        .purple-text { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .orange-text { color: var(--accent); }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2.25rem;
            border-radius: 99px; font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 0.5rem;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: var(--shadow-primary);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 15px 30px -10px rgba(124, 58, 237, 0.5);
        }

        .btn-secondary {
            background: white;
            color: var(--secondary);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .btn-secondary:hover {
            border-color: var(--primary-light);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .hero-section {
            padding-top: 120px;
            padding-bottom: 100px;
            background: 
                radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(249, 115, 22, 0.08) 0%, transparent 25%);
            background-color: #FFFFFF;
            position: relative;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: 
                linear-gradient(rgba(226, 232, 240, 0.3) 1px, transparent 1px),
                linear-gradient(90deg, rgba(226, 232, 240, 0.3) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
            z-index: 0;
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content { max-width: 660px; }

        .trust-badges {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .trust-text {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 1.25rem;
            letter-spacing: 0.08em;
        }

        .trust-stats-grid {
            display: flex;
            gap: 3rem;
        }

        .trust-stat {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1;
        }
        .trust-stat span {
            display: block;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: 0.25rem;
        }

        .calendar-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            padding: 2.5rem;
            position: relative;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px); }
        
        .calendar-card:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.25rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .cal-title h3 { font-size: 1.35rem; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; }
        .cal-title p { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-top: 6px; }
        
        .pulse-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #16A34A;
            background: #DCFCE7;
            padding: 6px 10px;
            border-radius: 99px;
            border: 1px solid #BBF7D0;
        }
        
        .status-dot {
            width: 8px; height: 8px; background: #16A34A; border-radius: 50%;
            box-shadow: 0 0 0 2px #DCFCE7;
        }

        .hero-form-inline {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            margin-bottom: 1.25rem;
        }

        .hero-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.65rem;
        }

        .hero-form-field input {
            width: 100%;
            padding: 0.75rem 0.9rem;
            border: 1.5px solid #E5E7EB;
            border-radius: 10px;
            font-size: 0.9rem;
            font-family: inherit;
            color: var(--text-dark);
            background: #FFFFFF;
            transition: all 0.2s ease;
            outline: none;
        }

        .hero-form-field input::placeholder {
            color: #9CA3AF;
            font-weight: 500;
        }

        .hero-form-field input:hover {
            border-color: #C4B5FD;
        }

        .hero-form-field input:focus {
            border-color: #7C3AED;
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
            background: #fff;
        }

        .hero-form-note {
            text-align: center;
            font-size: 0.75rem;
            color: #9CA3AF;
            margin-top: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2px;
        }

        .date-selector {
            display: flex;
            justify-content: space-between;
            border: 1px solid var(--border-color);
            padding: 1rem;
            border-radius: var(--radius-md);
            align-items: center;
            background: #FFFFFF;
            transition: border-color 0.2s;
            margin-bottom: 1.5rem;
        }

        .date-selector:hover { border-color: var(--primary-light); }

        .hero-date-chips {
            display: flex;
            gap: 0.5rem;
            overflow-x: auto;
            padding-bottom: 0.25rem;
            scrollbar-width: none;
        }
        .hero-date-chips::-webkit-scrollbar { display: none; }

        .date-chip {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 60px;
            padding: 0.5rem 0.6rem;
            border: 1.5px solid var(--border-color);
            border-radius: var(--radius-md);
            background: #fff;
            cursor: pointer;
            transition: all 0.2s;
            user-select: none;
        }
        .date-chip .chip-day { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; }
        .date-chip .chip-date { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
        .date-chip .chip-avail { font-size: 0.6rem; font-weight: 600; margin-top: 2px; }
        .date-chip .chip-avail.available { color: #10B981; }
        .date-chip .chip-avail.unavailable { color: #94A3B8; }

        .date-chip:hover { border-color: var(--primary); background: var(--primary-soft); }
        .date-chip.selected { background: var(--primary); border-color: var(--primary); }
        .date-chip.selected .chip-day,
        .date-chip.selected .chip-date,
        .date-chip.selected .chip-avail { color: #fff; }
        .date-chip.unavailable { opacity: 0.45; cursor: not-allowed; }
        .date-chip.unavailable:hover { border-color: var(--border-color); background: #fff; }

        .day-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .time-btn {
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            padding: 1rem 0.5rem;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
            cursor: pointer;
            text-align: center;
            transition: all 0.2s;
        }

        .time-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-soft);
        }

        .time-btn.selected {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.3);
        }

        .strip-section {
            padding: 7rem 0;
            background: white;
            position: relative;
        }

        .strip-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .feature-item {
            padding: 1.5rem;
            border-radius: var(--radius-md);
            transition: all 0.3s;
            background: transparent;
            border: 1px solid transparent;
        }
        
        .feature-item:hover {
            background: #FFFFFF;
            border-color: var(--border-color);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }

        .icon-box {
            width: 64px;
            height: 64px;
            background: var(--bg-surface);
            color: var(--primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
            margin-bottom: 1.25rem;
            border: 1px solid var(--border-color);
        }
        
        .feature-item:hover .icon-box, 
        .bento-card:hover .icon-box {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: rotate(-5deg) scale(1.05);
        }

        .bg-slate { 
            background-color: var(--bg-surface); 
            border-top: 1px solid var(--border-color); 
            border-bottom: 1px solid var(--border-color); 
        }
        
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .bento-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

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

        .bento-header {
            margin-bottom: 2rem;
        }

        .check-list { margin-top: auto; }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: var(--text-main);
            font-weight: 500;
        }

        .check-list i {
            color: var(--primary);
            background: var(--primary-soft);
            padding: 4px;
            border-radius: 50%;
            font-size: 0.8rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .split-section {
            padding: 8rem 0;
            background: white;
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
        }

        .split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .split-grid.reversed .split-content { order: 1; }
        .split-grid.reversed .split-image { order: 2; }

        .split-image { position: relative; }
        
        .split-image::after {
            content: '';
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
            opacity: 0.2;
            z-index: 0;
            filter: blur(40px);
        }

        .split-image img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 1;
            transition: transform 0.5s;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .split-section:hover .split-image img {
            transform: scale(1.02);
        }

        .stat-row {
            display: flex;
            gap: 4rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .stat-item strong {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1;
            margin-bottom: 0.5rem;
            letter-spacing: -0.03em;
        }

        .stat-item span {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .testimonial-card {
            background: white;
            border: 1px solid var(--border-color);
            padding: 3rem 2.5rem;
            border-radius: var(--radius-lg);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 4rem;
            color: var(--bg-surface);
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-card:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }

        .quote {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 2rem;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        .author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--bg-surface);
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--bg-surface) 0%, #E2E8F0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 1.2rem;
        }

        @media (max-width: 1024px) {
            .hero-grid, .split-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            .hero-content { margin: 0 auto; text-align: center; }
            .hero-content p { margin-left: auto; margin-right: auto; }
            .trust-stats-grid { justify-content: center; }
            .hero-grid > div:last-child { margin-top: 2rem; }
            .split-grid.reversed .split-content { order: 2; }
            .split-grid.reversed .split-image { order: 1; }
            .bento-grid, .strip-grid { grid-template-columns: repeat(2, 1fr); }
            .section-header { padding: 0 1rem; }
        }

        @media (max-width: 768px) {
            .bento-grid, .strip-grid, .trust-stats-grid { grid-template-columns: 1fr; }
            .trust-stats-grid { flex-direction: column; gap: 1.5rem; align-items: center; }
            .stat-row { gap: 2rem; flex-wrap: wrap; }
            .heading-xl { font-size: 2.75rem; }
            .calendar-card { padding: 1.5rem; }
            .btn { width: 100%; justify-content: center; }
            .split-image::after { display: none; }
        }
.heading-xl,
.heading-lg,
.heading-md,
.section-heading,
.section-heading-center,
.demo-hero-title,
h1, h2, h3 {
    background: linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.hero-section .heading-xl {
    background: linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.section-header h2,
.section-header .heading-lg {
    background: linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.bento-card h3,
.bento-card h4,
.bento-card .heading-md {
    background: linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.calendar-card h3,
.cal-title h3 {
    background: linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.campus-subtitle,
.workforce-subtitle {
    background: linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.purple-text {
    color: #8253C2 !important;
    background: none !important;
    -webkit-text-fill-color: #8253C2 !important;
}

.orange-text {
    color: #F45346 !important;
    background: none !important;
    -webkit-text-fill-color: #F45346 !important;
}

h1 .purple-text,
h2 .purple-text,
h3 .purple-text,
.heading-xl .purple-text,
.heading-lg .purple-text,
.heading-md .purple-text {
    background: none !important;
    -webkit-text-fill-color: #8253C2 !important;
    color: #8253C2 !important;
}

h1 .orange-text,
h2 .orange-text,
h3 .orange-text,
.heading-xl .orange-text,
.heading-lg .orange-text,
.heading-md .orange-text {
    background: none !important;
    -webkit-text-fill-color: #F45346 !important;
    color: #F45346 !important;
}

.feature-item h4 {
    background: linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.testimonial-card > div:first-child {
    background: none !important;
    -webkit-text-fill-color: var(--text-muted) !important;
    color: var(--text-muted) !important;
}

.trust-heading {
    background: none !important;
    -webkit-text-fill-color: white !important;
    color: white !important;
}

.category-title,
.solution-category h3 {
    background: linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.section-tag {
    background: var(--primary-soft) !important;
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
}

.strip-section .strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.strip-section .feature-item {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
                0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.strip-section .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #8253C2 0%, #F45346 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.strip-section .feature-item:hover::before {
    opacity: 1;
}

.strip-section .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

.strip-section .feature-item .icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #7C3AED;
    margin-bottom: 1.75rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.strip-section .feature-item .icon-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(244, 83, 70, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.strip-section .feature-item:hover .icon-box::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.strip-section .feature-item:hover .icon-box {
    transform: scale(1.1);
    box-shadow: 0 8px 16px -4px rgba(124, 58, 237, 0.3);
}

.strip-section .feature-item .icon-box i {
    position: relative;
    z-index: 1;
}

.strip-section .feature-item h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    background: linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strip-section .feature-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748B;
    margin: 0;
}

.strip-section .feature-item::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .strip-section .strip-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .strip-section .feature-item {
        padding: 2rem 1.5rem;
    }
}

.strip-section .feature-item:nth-child(1) .icon-box {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #6366F1;
}

.strip-section .feature-item:nth-child(2) .icon-box {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    color: #F97316;
}

.strip-section .feature-item:nth-child(3) .icon-box {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    color: #10B981;
}

.strip-section .feature-item:nth-child(4) .icon-box {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    color: #EF4444;
}

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

.strip-section .section-header .heading-lg {
    margin-bottom: 1rem;
}

.strip-section .section-header .text-lead {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #64748B;
}
.talent-ecosystem-section {
            padding: 6rem 0;
            background: #FFFFFF;
            overflow: hidden;
        }

        .ecosystem-accordion {
            display: flex;
            gap: 1rem;
            height: 500px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .acc-card {
            flex: 1;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            background: #F8FAFC;
            cursor: pointer;
            border: 1px solid #E2E8F0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
        }

        .acc-bg {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .acc-card:hover {
            flex: 3.5;
            border-color: transparent;
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
        }

        .acc-card:hover .acc-bg {
            opacity: 0.08; }

        .acc-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            height: 100%;
            justify-content: space-between;
        }

        .acc-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: var(--text-muted);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
        }

        .acc-card:hover .acc-icon {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .acc-card:nth-child(1):hover .acc-icon { color: #7C3AED; }
        .acc-card:nth-child(2):hover .acc-icon { color: #F97316; }
        .acc-card:nth-child(3):hover .acc-icon { color: #10B981; }
        .acc-card:nth-child(4):hover .acc-icon { color: #3B82F6; }

        .acc-text {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            transition: all 0.4s ease;
        }

        .acc-text h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            white-space: nowrap;
            transform-origin: left bottom;
            transition: all 0.4s ease;
        }

        .acc-text p {
            font-size: 1rem;
            color: var(--text-muted);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            transition-delay: 0.1s;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            max-width: 300px;
        }

        .acc-num {
            font-size: 4rem;
            font-weight: 800;
            color: #F1F5F9;
            position: absolute;
            top: -1rem;
            right: -1rem;
            line-height: 1;
            transition: all 0.4s ease;
        }

        .acc-card:hover .acc-num {
            color: white; opacity: 0.3;
            transform: scale(1.5);
        }

        .acc-card:not(:hover) .acc-text h3 {
            writing-mode: vertical-rl;
            transform: rotate(180deg) translateX(0);
            margin-bottom: 2rem; white-space: nowrap;
        }
        
        .acc-card:not(:hover) .acc-content {
            align-items: center; justify-content: flex-start; padding-top: 1rem;
        }

        .acc-card:hover .acc-text h3 {
            writing-mode: horizontal-tb;
            transform: none;
            margin-bottom: 0;
        }

        .acc-card:hover .acc-content {
            align-items: flex-start;
            justify-content: space-between;
        }

        .acc-card:hover .acc-text p {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1024px) {
            .ecosystem-accordion {
                flex-direction: column;
                height: auto;
                gap: 1rem;
            }
            
            .acc-card {
                flex: none;
                height: 120px; padding: 1.5rem 2rem;
            }
            
            .acc-card:hover {
                flex: none;
                height: 240px; }

            .acc-content {
                flex-direction: row;
                align-items: center;
                gap: 1.5rem;
                justify-content: flex-start;
            }

            .acc-icon {
                flex-shrink: 0;
            }

            .acc-text h3 {
                writing-mode: horizontal-tb !important;
                transform: none !important;
                margin: 0 !important;
                font-size: 1.25rem;
            }

            .acc-card:not(:hover) .acc-content {
                padding-top: 0;
                align-items: center;
            }

            .acc-text p {
                max-width: 100%;
            }
            
            .acc-card:not(:hover) .acc-text p {
                display: none;
            }
            
            .acc-card:hover .acc-content {
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
            }
        }


.bg-slate {
    padding: 4rem 0;
    min-height: auto;
}

.bg-slate .section-header {
    margin-bottom: 2.5rem;
}

.bg-slate .section-header .heading-lg {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.bg-slate .strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .bg-slate .strip-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .bg-slate .strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .bg-slate .strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bg-slate .bento-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.bg-slate .bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(40%, -40%);
    transition: all 0.4s ease;
}

.bg-slate .bento-card:hover::before {
    transform: translate(30%, -30%) scale(1.2);
}

.bg-slate .bento-card:hover {
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 12px 24px -6px rgba(124, 58, 237, 0.15);
    transform: translateY(-4px);
}

.bg-slate .bento-card .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.bg-slate .bento-card .icon-box svg {
    width: 24px;
    height: 24px;
}

.bg-slate .bento-card:hover .icon-box {
    transform: scale(1.05);
}

.bg-slate .bento-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.bg-slate .bento-card p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748B;
    margin: 0;
    position: relative;
    z-index: 1;
}

.bg-slate a.bento-card {
    cursor: pointer;
}

.bg-slate a.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(124, 58, 237, 0.2);
}

@media (max-width: 1200px) {
    .strip-section .strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .strip-section {
        padding: 3rem 0;
    }
    
    .bg-slate {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .strip-section .strip-grid,
    .bg-slate .strip-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .strip-section,
    .bg-slate {
        padding: 2.5rem 0;
    }
    
    .strip-section .section-header,
    .bg-slate .section-header {
        margin-bottom: 1.5rem;
    }
    
    .strip-section .section-header .heading-lg,
    .bg-slate .section-header .heading-lg {
        font-size: 2rem;
    }
    
    .strip-section .feature-item {
        padding: 1.5rem 1.25rem;
    }
    
    .bg-slate .bento-card {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .strip-section {
        min-height: auto;
        max-height: 70vh;
        display: flex;
        align-items: center;
    }
    
    .strip-section .container {
        width: 100%;
    }
    
    .bg-slate {
        min-height: auto;
        max-height: 75vh;
        display: flex;
        align-items: center;
    }
    
    .bg-slate .container {
        width: 100%;
    }
}

.strip-section .feature-item,
.bg-slate .bento-card {
    min-height: 180px;
}

.strip-section .feature-item:nth-child(1) .icon-box {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #6366F1;
}

.strip-section .feature-item:nth-child(2) .icon-box {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    color: #F97316;
}

.strip-section .feature-item:nth-child(3) .icon-box {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    color: #10B981;
}

.strip-section .feature-item:nth-child(4) .icon-box {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    color: #EF4444;
}

.bg-slate .bento-card:nth-child(1) .icon-box {
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    color: #7C3AED;
}

.bg-slate .bento-card:nth-child(2) .icon-box {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    color: #F97316;
}

.bg-slate .bento-card:nth-child(3) .icon-box {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    color: #2563EB;
}

.bg-slate .bento-card:nth-child(4) .icon-box {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    color: #10B981;
}

.bg-slate .bento-card:nth-child(5) .icon-box {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #D97706;
}

.bg-slate .bento-card:nth-child(6) .icon-box {
    background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 100%);
    color: #DB2777;
}

.bg-slate .bento-card:nth-child(7) .icon-box {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    color: #4F46E5;
}

.bg-slate .bento-card:nth-child(8) .icon-box {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #DC2626;
}

.bg-slate .bento-card:nth-child(9) .icon-box {
    background: linear-gradient(135deg, #CCFBF1 0%, #99F6E4 100%);
    color: #0D9488;
}

.bg-slate .bento-card:nth-child(10) .icon-box {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #CA8A04;
}

.bg-slate .bento-card:nth-child(11) .icon-box {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    color: #0284C7;
}

.bg-slate .bento-card:nth-child(12) .icon-box {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    color: #9333EA;
}

.bg-slate .bento-card:nth-child(13) .icon-box {
    background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
    color: #16A34A;
}

.bg-slate .bento-card:nth-child(14) .icon-box {
    background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%);
    color: #E11D48;
}

#solutions.strip-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    #solutions.strip-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    #solutions.strip-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

#solutions.strip-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 0;
    margin-bottom: 0;
}

#solutions .strip-grid,
#solutions .bento-grid {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

@media (max-width: 1024px) {
    #solutions .strip-grid,
    #solutions .bento-grid {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
}

@media (max-width: 768px) {
    #solutions .strip-grid,
    #solutions .bento-grid {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
}

section {
    position: relative;
    display: block;
    order: unset;
}

.strip-section {
    position: relative;
    display: block;
    order: unset;
}

#solutions {
    position: relative;
    display: block;
    order: unset;
}

.strip-section.bg-slate {
    position: relative;
    display: block;
    order: unset;
}

.strip-section,
.bg-slate,
#solutions {
    min-height: auto;
    max-height: none;
}

.strip-section {
    clear: both;
    z-index: auto;
}

@media (min-width: 1024px) {
    .strip-section,
    .bg-slate {
        min-height: auto;
        max-height: none;
        display: block;
        align-items: unset;
    }
}

.strip-section:not(.bg-slate):not(#solutions) {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.strip-section:not(.bg-slate):not(#solutions)::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #F1F5F9;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    text-align: left;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #8253C2, #F45346);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover::before {
    opacity: 1;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(124, 58, 237, 0.2);
    border-color: transparent;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.15);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748B;
    margin: 0;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(1) .icon-box {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(2) .icon-box {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(3) .icon-box {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(4) .icon-box {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item::after {
    content: attr(data-number);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(244, 83, 70, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    color: #7C3AED;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(1)::after {
    content: '01';
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(2)::after {
    content: '02';
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(3)::after {
    content: '03';
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(4)::after {
    content: '04';
}

.strip-section:not(.bg-slate):not(#solutions) .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .text-lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        gap: 1.5rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        padding: 2rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
        font-size: 1.25rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .strip-section:not(.bg-slate):not(#solutions) {
        padding: 3rem 0;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
        padding: 1.75rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
        font-size: 2rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .section-header .text-lead {
        font-size: 1.05rem;
    }
}

.strip-section:not(.bg-slate):not(#solutions) {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.strip-section:not(.bg-slate):not(#solutions)::before {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.2) 0%, rgba(244, 83, 70, 0.2) 100%);
    transform: translateX(-50%);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    position: relative;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item::before,
.strip-section:not(.bg-slate):not(#solutions) .feature-item::after {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(odd) {
    grid-template-areas: "content icon empty";
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(odd) > div:first-of-type {
    grid-area: empty;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(odd) > div:last-of-type {
    grid-area: content;
    text-align: right;
    padding-right: 2rem;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(odd) .icon-box {
    grid-area: icon;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(even) {
    grid-template-areas: "empty icon content";
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(even) > div:first-of-type {
    grid-area: empty;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(even) > div:last-of-type {
    grid-area: content;
    text-align: left;
    padding-left: 2rem;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(even) .icon-box {
    grid-area: icon;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: white;
    border: 3px solid;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    margin: 0;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover .icon-box {
    transform: scale(1.15);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.3);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(1) .icon-box {
    border-color: #6366F1;
    color: #6366F1;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(2) .icon-box {
    border-color: #F97316;
    color: #F97316;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(3) .icon-box {
    border-color: #10B981;
    color: #10B981;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(4) .icon-box {
    border-color: #EF4444;
    color: #EF4444;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item > div:last-of-type {
    display: flex;
    flex-direction: column;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748B;
    margin: 0;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover > div:last-of-type {
    transform: translateX(8px);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(odd):hover > div:last-of-type {
    transform: translateX(-8px);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: currentColor;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(odd) .icon-box::after {
    right: 100%;
    margin-right: 3px;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(even) .icon-box::after {
    left: 100%;
    margin-left: 3px;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover .icon-box::after {
    width: 60px;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid::before {
        left: 36px;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        grid-template-columns: auto 1fr;
        grid-template-areas: "icon content" !important;
        gap: 1.5rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(odd) > div:last-of-type,
    .strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(even) > div:last-of-type {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item > div:first-of-type {
        display: none;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .strip-section:not(.bg-slate):not(#solutions) {
        padding: 3rem 0;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid::before {
        display: none;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        padding: 1.5rem 0;
        gap: 1.25rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
        font-size: 1.25rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item p {
        font-size: 1rem;
    }
}

.strip-section:not(.bg-slate):not(#solutions) {
    padding: 3rem 0;
    min-height: auto;
    max-height: 100vh;
    display: flex;
    align-items: center;
}

.strip-section:not(.bg-slate):not(#solutions) .container {
    width: 100%;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .section-tag {
    padding: 0.3rem 0.875rem;
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .text-lead {
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid {
    margin-top: 2rem;
    max-width: 800px;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item {
    padding: 1.25rem 0;
    gap: 1.5rem;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
    border-width: 2px;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(odd) > div:last-of-type {
    padding-right: 1.5rem;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(even) > div:last-of-type {
    padding-left: 1.5rem;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box::after {
    width: 30px;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover .icon-box::after {
    width: 45px;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover > div:last-of-type {
    transform: translateX(5px);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(odd):hover > div:last-of-type {
    transform: translateX(-5px);
}

@media (max-width: 1200px) {
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        max-width: 700px;
    }
}

@media (max-width: 1024px) {
    .strip-section:not(.bg-slate):not(#solutions) {
        padding: 2.5rem 0;
        max-height: none;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid::before {
        left: 28px;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        padding: 1rem 0;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .strip-section:not(.bg-slate):not(#solutions) {
        padding: 2rem 0;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .section-header {
        margin-bottom: 1.5rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
        font-size: 1.75rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        margin-top: 1.5rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        padding: 1rem 0;
        gap: 1rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
        font-size: 1.05rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item p {
        font-size: 0.875rem;
    }
}

@media (min-width: 1440px) {
    .strip-section:not(.bg-slate):not(#solutions) {
        max-height: 85vh;
    }
}

@media (min-width: 1024px) and (max-height: 900px) {
    .strip-section:not(.bg-slate):not(#solutions) {
        padding: 2rem 0;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .section-header {
        margin-bottom: 1.5rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
        font-size: 1.875rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        margin-top: 1.5rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        padding: 1rem 0;
    }
}

.strip-section:not(.bg-slate):not(#solutions) {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
    max-height: none;
    display: block;
    align-items: unset;
}

.strip-section:not(.bg-slate):not(#solutions)::before {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 100%;
    position: relative;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid::before {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    grid-template-columns: unset;
    grid-template-areas: unset;
    gap: 0;
    text-align: left;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8253C2 0%, #F45346 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item::after {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover::before {
    transform: scaleX(1);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(130, 83, 194, 0.2);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
    grid-area: unset;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box::after {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover .icon-box {
    transform: scale(1.1);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(1) .icon-box {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #6366F1;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(2) .icon-box {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    color: #F97316;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(3) .icon-box {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    color: #10B981;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(4) .icon-box {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    color: #EF4444;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item > div:first-of-type {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item > div:last-of-type {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0;
    transform: none !important;
    grid-area: unset;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item p {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .section-tag {
    padding: 0.35rem 0.95rem;
    font-size: 0.75rem;
    margin-bottom: 0.875rem;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .text-lead {
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .strip-section:not(.bg-slate):not(#solutions) {
        padding: 3rem 0;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        padding: 1.75rem 1.5rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
        font-size: 1.875rem;
    }
}

.strip-section:not(.bg-slate):not(#solutions) {
    padding: 4rem 0;
    background: #FAFBFC;
    position: relative;
    overflow: hidden;
    min-height: auto;
    max-height: none;
    display: block;
}

.strip-section:not(.bg-slate):not(#solutions)::before {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 2.5rem;
    max-width: 100%;
    border: 2px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    position: relative;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid::before {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    background: transparent;
    border: none;
    border-right: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: none;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    grid-template-columns: unset;
    grid-template-areas: unset;
    text-align: left;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(2n) {
    border-right: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(3),
.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(4) {
    border-bottom: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(130, 83, 194, 0.03) 0%, rgba(244, 83, 70, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item::after {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover::before {
    opacity: 1;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover {
    transform: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    grid-area: unset;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box::after {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover .icon-box {
    transform: rotate(-5deg) scale(1.05);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(1) .icon-box {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(2) .icon-box {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(3) .icon-box {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(4) .icon-box {
    background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item > div:first-of-type {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item > div:last-of-type {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0;
    transform: none !important;
    grid-area: unset;
    flex: 1;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .text-lead {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        grid-template-columns: 1fr;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        border-right: none !important;
        border-bottom: 1px solid #E2E8F0 !important;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item:last-child {
        border-bottom: none !important;
    }
}

@media (max-width: 768px) {
    .strip-section:not(.bg-slate):not(#solutions) {
        padding: 3rem 0;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
        font-size: 1.125rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item p {
        font-size: 0.9rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
        font-size: 2rem;
    }
}

.strip-section:not(.bg-slate):not(#solutions) {
    padding: 4rem 0;
    background: white;
    position: relative;
    overflow: visible;
}

.strip-section:not(.bg-slate):not(#solutions)::before {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: none;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid::before {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item::before,
.strip-section:not(.bg-slate):not(#solutions) .feature-item::after {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover {
    transform: translateY(-8px);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box::after {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover .icon-box {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(1) .icon-box {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(2) .icon-box {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(3) .icon-box {
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(4) .icon-box {
    background: linear-gradient(135deg, #43E97B 0%, #38F9D7 100%);
    color: white;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item > div:first-of-type {
    display: none;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item > div:last-of-type {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0;
    transform: none !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item p {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .text-lead {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .strip-section:not(.bg-slate):not(#solutions) {
        padding: 3rem 0;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        gap: 1rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
        font-size: 1rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item p {
        font-size: 0.875rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
        font-size: 2rem;
    }
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box i {
    display: block;
    font-size: inherit;
    color: inherit;
    line-height: 1;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item {
    border: 2px solid #E2E8F0;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover {
    border-color: rgba(130, 83, 194, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
    background: linear-gradient(135deg, #8253C2 0%, #F45346 100%);
    color: white;
    border: 3px solid white;
    box-shadow: 0 8px 24px rgba(130, 83, 194, 0.3);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(1) .icon-box {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    border-color: rgba(102, 126, 234, 0.2);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(2) .icon-box {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    color: white;
    border-color: rgba(249, 115, 22, 0.2);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(3) .icon-box {
    background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    color: white;
    border-color: rgba(6, 182, 212, 0.2);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(4) .icon-box {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-color: rgba(16, 185, 129, 0.2);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover .icon-box {
    border-color: white;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box i.fas,
.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box i.far,
.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box i.fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid {
    gap: 2rem;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        padding: 2rem 1.25rem;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        gap: 1.5rem;
    }
}

.strip-section:not(.bg-slate):not(#solutions) {
    padding: 4rem 0 !important;
    background: #F8F9FA !important;
    position: relative !important;
    overflow: visible !important;
    min-height: auto !important;
    max-height: none !important;
    display: block !important;
}

.strip-section:not(.bg-slate):not(#solutions)::before {
    display: none !important;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 2.5rem !important;
    max-width: 100% !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    position: relative !important;
}

.strip-section:not(.bg-slate):not(#solutions) .strip-grid::before {
    display: none !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 2rem 1.5rem !important;
    background: white !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
    gap: 1rem !important;
    grid-template-columns: unset !important;
    grid-template-areas: unset !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item::before,
.strip-section:not(.bg-slate):not(#solutions) .feature-item::after {
    display: none !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    border-color: #8253C2 !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
    width: 80px !important;
    height: 80px !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    margin-bottom: 0 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    grid-area: unset !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(1) .icon-box {
    background: #6366F1 !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(2) .icon-box {
    background: #F97316 !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(3) .icon-box {
    background: #10B981 !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:nth-child(4) .icon-box {
    background: #EF4444 !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box i {
    color: white !important;
    font-size: 2rem !important;
    display: block !important;
    line-height: 1 !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box::after {
    display: none !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item:hover .icon-box {
    transform: scale(1.1) !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item > div:first-of-type {
    display: flex !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item > div:last-of-type {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    padding: 0 !important;
    transform: none !important;
    grid-area: unset !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item h4 {
    font-size: 1.125rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
}

.strip-section:not(.bg-slate):not(#solutions) .feature-item p {
    font-size: 0.925rem !important;
    line-height: 1.6 !important;
    color: #64748B !important;
    margin: 0 !important;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header {
    text-align: center !important;
    margin-bottom: 2rem !important;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .heading-lg {
    font-size: 2.5rem !important;
    margin-bottom: 0.75rem !important;
}

.strip-section:not(.bg-slate):not(#solutions) .section-header .text-lead {
    font-size: 1.05rem !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}

@media (max-width: 1024px) {
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .strip-section:not(.bg-slate):not(#solutions) {
        padding: 3rem 0 !important;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .strip-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item {
        padding: 1.75rem 1.25rem !important;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.75rem !important;
    }
    
    .strip-section:not(.bg-slate):not(#solutions) .feature-item .icon-box i {
        font-size: 1.75rem !important;
    }
}

.booking-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-modal-content {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 780px;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: max-width 0.35s ease;
}

.booking-modal-content.step2-active {
    max-width: 1100px;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F1F5F9;
    border: none;
    font-size: 1.5rem;
    color: #64748B;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: #EF4444;
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    padding: 2.5rem 3rem 1.5rem 3rem;
    border-bottom: 2px solid #F1F5F9;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-header p {
    font-size: 1rem;
    color: #64748B;
    margin: 0;
}

.modal-body {
    padding: 2rem 3rem 3rem 3rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
}

.calendar-section {
    border-right: 2px solid #F1F5F9;
    padding-right: 3rem;
    position: sticky;
    top: 0;
    align-self: start;
}

.calendar-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1E293B;
}

.calendar-widget {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.calendar-header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.calendar-month-year {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1E293B;
}

.calendar-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: white;
    border: 1px solid #E2E8F0;
    color: #64748B;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: #7C3AED;
    color: white;
    border-color: #7C3AED;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.calendar-days-header div {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1E293B;
    background: white;
    border: 1px solid transparent;
}

.calendar-date:hover:not(.disabled):not(.other-month) {
    background: #EDE9FE;
    color: #7C3AED;
}

.calendar-date.selected {
    background: #DDD6FE;
    color: #5B21B6;
    border-color: #7C3AED;
    font-weight: 700;
}

.calendar-date.today {
    border-color: #7C3AED;
}

.calendar-date.disabled {
    color: #CBD5E1;
    cursor: not-allowed;
}

.calendar-date.weekend {
    color: #CBD5E1;
    background: #F8FAFC;
    cursor: not-allowed;
}

.calendar-date.other-month {
    color: #CBD5E1;
}

.time-selection h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1E293B;
}

.time-slots-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.time-slot-option {
    padding: 0.875rem 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    background: white;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: -0.01em;
}

.time-slot-option:hover:not(.selected):not(.unavailable):not(.booked) {
    border-color: #9333EA;
    background: white;
    color: #475569;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.2);
}

.time-slot-option.selected {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 2px solid #10B981;
    color: #065F46;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25), 0 0 0 3px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
    position: relative;
}

.time-slot-option.unavailable,
.time-slot-option.booked {
    background: #F1F5F9;
    border-color: #CBD5E1;
    color: #94A3B8;
    cursor: not-allowed;
    opacity: 0.5;
    position: relative;
}

.time-slot-option.unavailable:hover,
.time-slot-option.booked:hover {
    background: #F1F5F9;
    border-color: #CBD5E1;
    color: #94A3B8;
}

.time-slot-option.unavailable::after,
.time-slot-option.booked::after {
    content: '🔒';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
}

.time-slot-option.available {
    background: white;
    border-color: #E2E8F0;
    color: #475569;
}

.time-slot-option.available:hover:not(.selected) {
    background: white;
    border-color: #9333EA;
    color: #475569;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.2);
}

.time-slot-option.loading {
    opacity: 0.6;
    pointer-events: none;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
    }
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1.5rem 2.5rem 0.25rem;
}
.step-indicator .step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #94A3B8;
    transition: color 0.3s;
}
.step-indicator .step.active { color: #7C3AED; }
.step-indicator .step.completed { color: #10B981; }
.step-indicator .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    background: #F1F5F9;
    color: #94A3B8;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.step-indicator .step.active .step-number {
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    color: #fff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}
.step-indicator .step.completed .step-number {
    background: #10B981;
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.step-line {
    width: 100px;
    height: 3px;
    background: #E2E8F0;
    margin: 0 1.25rem;
    border-radius: 3px;
    transition: background 0.3s;
    position: relative;
}
.step-line.active { background: #10B981; }

#bookingStep1 .modal-header {
    text-align: center;
    padding-bottom: 0.75rem;
    border-bottom: none;
}

.step1-form-wrapper {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.step1-form-wrapper .form-group {
    margin-bottom: 1rem;
}

.step1-form-wrapper .form-row {
    gap: 1.25rem;
}

.step1-form-wrapper .form-group label {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: #374151;
    letter-spacing: 0.01em;
}

.step1-form-wrapper .form-group input,
.step1-form-wrapper .form-group select {
    padding: 0.8rem 1rem !important;
    font-size: 0.9rem !important;
    border: 1.5px solid #E5E7EB !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
    transition: all 0.2s ease !important;
}

.step1-form-wrapper .form-group input:hover,
.step1-form-wrapper .form-group select:hover {
    border-color: #C4B5FD !important;
}

.step1-form-wrapper .form-group input:focus,
.step1-form-wrapper .form-group select:focus {
    border-color: #7C3AED !important;
    background: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08) !important;
}

.step1-form-wrapper .form-group input::placeholder {
    color: #9CA3AF;
}

.step1-form-wrapper > form > .form-group:last-of-type {
    margin-top: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid #F3F4F6;
}

.step1-form-wrapper .checkbox-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.step1-form-wrapper .checkbox-label {
    padding: 0.6rem 0.75rem !important;
    border-radius: 10px !important;
    border: 1.5px solid #E5E7EB !important;
    background: #FFFFFF !important;
    transition: all 0.2s ease !important;
}

.step1-form-wrapper .checkbox-label:hover {
    border-color: #C4B5FD !important;
    background: #FAF5FF !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
}

.step1-form-wrapper .checkbox-label input[type="checkbox"]:checked + span {
    color: #6D28D9;
}

.step1-form-wrapper .checkbox-label span {
    font-size: 0.825rem;
}

.step1-form-wrapper .btn-submit {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
    transition: all 0.25s ease;
}

.step1-form-wrapper .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

@media (max-width: 900px) {
    .step1-form-wrapper .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .step1-form-wrapper {
        padding: 1.25rem;
    }
    .step1-form-wrapper .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
    }
    .step1-form-wrapper .form-row {
        gap: 0.75rem;
    }
}

.step2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.step2-grid .calendar-section {
    border-right: 2px solid #F1F5F9;
    padding-right: 3rem;
    position: sticky;
    top: 0;
    align-self: start;
}
.step2-grid .time-section {
    display: flex;
    flex-direction: column;
}
.step2-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #F1F5F9;
}
.step2-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
}
.btn-secondary {
    background: #F1F5F9;
    color: #475569;
    border: 2px solid #E2E8F0;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}
.btn-secondary:hover { background: #E2E8F0; border-color: #CBD5E1; }

@media (max-width: 900px) {
    .step2-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .step2-grid .calendar-section {
        border-right: none;
        border-bottom: 2px solid #F1F5F9;
        padding-right: 0;
        padding-bottom: 1.5rem;
        position: static;
    }
}

.form-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1E293B;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.35rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Urbanist', sans-serif;
    transition: all 0.3s ease;
    background: #F8FAFC;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #7C3AED;
    background: white;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.65rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 2px solid #E2E8F0;
    background: #F8FAFC;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: #7C3AED;
    background: #F5F3FF;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #7C3AED;
}

.checkbox-label span {
    font-size: 0.925rem;
    font-weight: 600;
    color: #475569;
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: #7C3AED;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    margin-top: 1.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calendar-section {
        border-right: none;
        border-bottom: 2px solid #F1F5F9;
        padding-right: 0;
        padding-bottom: 2rem;
        position: static;
    }
}

@media (max-width: 768px) {
    .booking-modal.active {
        padding: 1rem;
    }
    
    .modal-header {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
    }
}

.booking-modal {
    padding: 2rem 1rem !important;
    overflow-y: auto !important;
    align-items: flex-start !important;
}

.booking-modal.active {
    display: flex !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.booking-modal-content {
    max-height: 95vh !important;
    overflow-y: auto !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
}

.modal-body {
    overflow-y: auto !important;
    max-height: calc(95vh - 180px) !important;
}

.calendar-section {
    max-height: none !important;
}

.form-section {
    max-height: none !important;
}

.modal-grid {
    display: grid !important;
    grid-template-columns: 420px 1fr !important;
    gap: 3rem !important;
    align-items: start !important;
}

.calendar-widget {
    padding: 1.25rem !important;
    margin-bottom: 1.25rem !important;
}

.form-group {
    margin-bottom: 1.15rem !important;
}

.form-group input,
.form-group select {
    padding: 0.9rem 1rem !important;
    font-size: 0.95rem !important;
}

.checkbox-label {
    padding: 0.7rem 1rem !important;
}

.modal-header {
    padding: 2rem 2.5rem 1.25rem 2.5rem !important;
}

.modal-body {
    padding: 1.5rem 2.5rem 2.5rem 2.5rem !important;
}

@media (max-width: 1200px) {
    .modal-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .calendar-section {
        border-right: none !important;
        border-bottom: 2px solid #F1F5F9 !important;
        padding-right: 0 !important;
        padding-bottom: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        position: static !important;
    }
    
    .booking-modal-content {
        max-height: 95vh !important;
    }
    
    .modal-body {
        max-height: calc(95vh - 140px) !important;
    }
}

@media (max-width: 768px) {
    .booking-modal {
        padding: 1rem !important;
    }
    
    .booking-modal.active {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .booking-modal-content {
        max-height: 95vh !important;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem !important;
    }
    
    .modal-body {
        padding: 1rem 1.5rem 1.5rem 1.5rem !important;
        max-height: calc(95vh - 120px) !important;
    }
    
    .modal-header h2 {
        font-size: 1.5rem !important;
    }
    
    .calendar-section {
        padding-bottom: 1rem !important;
        margin-bottom: 1rem !important;
    }
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #F1F5F9;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

.booking-modal-content::-webkit-scrollbar {
    width: 8px;
}

.booking-modal-content::-webkit-scrollbar-track {
    background: #F1F5F9;
}

.booking-modal-content::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}

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

.ecosystem-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.ecosystem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.2);
}

.ecosystem-card .card-gradient {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.15;
    z-index: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.ecosystem-card:hover .card-gradient {
    transform: translate(30%, -30%) scale(1.2);
}

.ecosystem-card .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.ecosystem-card:hover .icon-box {
    transform: scale(1.05);
}

.ecosystem-card .icon-box svg {
    width: 24px;
    height: 24px;
    color: white;
}

.ecosystem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.ecosystem-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ecosystem-card {
        padding: 2rem;
    }
}

.section-header-with-icon {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.section-header-with-icon h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
    display: flex;
    align-items: center;
}

.section-hint {
    font-size: 0.875rem;
    color: #64748B;
    margin: 0.25rem 0 0 0;
    font-weight: 400;
}

.selection-status {
    display: flex;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.status-badge.status-incomplete {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.status-badge.status-complete {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    animation: statusComplete 0.5s ease;
}

@keyframes statusComplete {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #E2E8F0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

.legend-indicator {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid;
    display: inline-block;
}

.legend-indicator.legend-today {
    background: white;
    border-color: #7C3AED;
}

.legend-indicator.legend-selected {
    background: #DDD6FE;
    border-color: #7C3AED;
}

.time-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.time-selection-header h4 {
    margin: 0;
    display: flex;
    align-items: center;
}

.availability-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    background: #F8FAFC;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.availability-indicator.loading {
    color: #7C3AED;
}

.availability-indicator.available {
    color: #059669;
    background: #D1FAE5;
}

.availability-indicator.no-availability {
    color: #DC2626;
    background: #FEE2E2;
}

.availability-indicator i {
    font-size: 12px;
}

.time-slot-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.time-slot-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.time-slot-option.selected::before {
    opacity: 0;
}

.time-text,
.slot-icon {
    position: relative;
    z-index: 1;
}

.time-text {
    font-weight: 600;
}

.slot-icon {
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.time-slot-option.available .slot-icon {
    opacity: 0;
    transform: scale(0.5);
}

.time-slot-option.selected .slot-icon {
    opacity: 1;
    transform: scale(1);
    color: #10B981;
    font-size: 16px;
}

.time-slot-option.unavailable .slot-icon,
.time-slot-option.booked .slot-icon {
    opacity: 0;
}

.time-slot-option.unavailable::after,
.time-slot-option.booked::after {
    content: none;
}

.time-slot-option.unavailable .slot-icon,
.time-slot-option.booked .slot-icon {
    opacity: 1;
    transform: scale(1);
    color: #94A3B8;
}

.time-slot-option.unavailable .slot-icon::before,
.time-slot-option.booked .slot-icon::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f023';
}

.time-slots-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #E2E8F0;
}

.calendar-date:not(.disabled):not(.other-month) {
    position: relative;
}

.calendar-date:not(.disabled):not(.other-month)::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 6px;
    background: linear-gradient(135deg, #8253C2 0%, #F45346 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.calendar-date.selected::after {
    opacity: 0;
}

.calendar-nav-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-nav-btn:active {
    transform: scale(0.95);
}

.calendar-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.time-slot-option.loading {
    background: linear-gradient(
        90deg,
        #F1F5F9 0%,
        #E2E8F0 50%,
        #F1F5F9 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
    pointer-events: none;
}

.time-slot-option.loading .time-text,
.time-slot-option.loading .slot-icon {
    opacity: 0;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
    }
}

@keyframes dateSelect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.calendar-date.selected {
    animation: dateSelect 0.4s ease;
}

.calendar-date.today::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #7C3AED;
}

.no-slots-message {
    text-align: center;
    padding: 2rem 1rem;
    background: #FEF3C7;
    border: 1px dashed #FDE68A;
    border-radius: 12px;
    color: #92400E;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.no-slots-message i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.calendar-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #1E293B;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.calendar-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #1E293B;
}

.calendar-date:hover .calendar-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

@media (max-width: 768px) {
    .section-header-with-icon {
        flex-direction: column;
        gap: 1rem;
    }
    
    .calendar-legend,
    .time-slots-legend {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .time-selection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .availability-indicator {
        align-self: flex-start;
    }
}

.calendar-nav-btn:focus-visible,
.time-slot-option:focus-visible,
.calendar-date:focus-visible {
    outline: 2px solid #7C3AED;
    outline-offset: 2px;
}

.calendar-date,
.time-slot-option,
.calendar-nav-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.selected-time-display {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border: 1px solid #10B981;
    border-radius: 10px;
    text-align: center;
    font-size: 0.875rem;
    color: #065F46;
    font-weight: 600;
    display: none;
    animation: slideInUp 0.3s ease;
}

.selected-time-display.show {
    display: block;
}

.selected-time-display i {
    margin-right: 0.5rem;
    color: #10B981;
}

.selected-time-display .time-value {
    font-weight: 700;
    color: #047857;
    font-size: 1rem;
}

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

.time-slot-option.selected:hover {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35), 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.time-slot-option.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 14px;
    right: 10px;
    background: #10B981;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: badgePop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes badgePop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.time-slot-option.selected .slot-icon {
    opacity: 0;
    transform: scale(0);
}

.time-btn-skeleton {
    padding: 0.75rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    background: linear-gradient(
        90deg,
        #F1F5F9 0%,
        #E2E8F0 50%,
        #F1F5F9 100%
    );
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
    height: 40px;
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

#heroPrevDay.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}
