
/*** T3SB identifier: t3sbsCSSassets_31665 */

/* t3sbs_assets_31665 */
      :root {
            /* Brand Colors - Industrial meets Digital */
            --color-primary: #D94F20;        /* Handwerk Orange */
            --color-primary-dark: #B33F1A;
            --color-secondary: #1E5A8E;      /* Tech Blue */
            --color-secondary-dark: #164265;
            --color-accent: #F2A444;         /* Warm Gold */
            --color-dark: #1A1A1A;
            --color-mid: #4A4A4A;
            --color-light-gray: #E8E8E8;
            --color-bg-light: #FAF8F5;
            --color-success: #2D8659;
            
            /* Spacing */
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
            
            /* Typography */
            --font-display: 'Poppins', sans-serif;
            --font-body: 'Work Sans', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--color-dark);
            background: var(--color-bg-light);
            overflow-x: hidden;
        }
        
        /* Typography */
        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }
        
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: var(--spacing-sm);
        }
        
        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: var(--spacing-md);
        }
        
        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: var(--spacing-sm);
        }
        
        p {
            font-size: 1.125rem;
            line-height: 1.7;
            margin-bottom: var(--spacing-sm);
        }
        
        strong {
            font-weight: 700;
            color: var(--color-primary);
        }
        
        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }
        
        .section {
            padding: var(--spacing-xl) 0;
            position: relative;
        }
        
        /* Diagonal Background Element */
        .diagonal-bg {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 800px;
            height: 800px;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
            transform: rotate(15deg);
            opacity: 0.05;
            z-index: -1;
            pointer-events: none;
        }
        
        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #FAF8F5 0%, #FFF 60%);
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 50%;
            height: 120%;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
            transform: skewY(-6deg);
            opacity: 0.08;
            z-index: 0;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: var(--spacing-lg);
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-text .badge {
            display: inline-block;
            background: var(--color-success);
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: var(--spacing-sm);
            animation: slideInDown 0.6s ease-out;
        }
        
        .hero h1 {
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }
        
        .hero h1 .highlight {
            color: var(--color-primary);
            position: relative;
        }
        
        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            right: 0;
            height: 12px;
            background: var(--color-accent);
            opacity: 0.3;
            z-index: -1;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--color-mid);
            margin-bottom: var(--spacing-md);
            animation: slideInLeft 0.8s ease-out 0.4s both;
        }
        
        .pain-points {
            list-style: none;
            margin-bottom: var(--spacing-md);
            animation: slideInLeft 0.8s ease-out 0.6s both;
        }
        
        .pain-points li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--color-mid);
        }
        
        .pain-points li::before {
            content: '❌';
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }
        
        .hero-stats {
            background: white;
            padding: var(--spacing-md);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            border: 3px solid var(--color-primary);
            animation: slideInRight 0.8s ease-out 0.6s both;
            position: relative;
        }
        
        .hero-stats::before {
            content: '🔥 TOP ANGEBOT';
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--color-primary);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
        }
        
        .stat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-md);
        }
        
        .stat-item {
            text-align: center;
            padding: var(--spacing-sm);
            background: var(--color-bg-light);
            border-radius: 12px;
        }
        
        .stat-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--color-primary);
            display: block;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--color-mid);
            font-weight: 600;
            margin-top: 0.3rem;
        }
        
        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: var(--spacing-sm);
            flex-wrap: wrap;
            margin-top: var(--spacing-md);
            animation: slideInLeft 0.8s ease-out 0.8s both;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }
        
        .btn-primary {
            background: var(--color-primary);
            color: white;
            box-shadow: 0 8px 24px rgba(217, 79, 32, 0.3);
        }
        
        .btn-primary:hover {
            background: var(--color-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(217, 79, 32, 0.4);
        }
        
        .btn-secondary {
            background: white;
            color: var(--color-dark);
            border: 2px solid var(--color-dark);
        }
        
        .btn-secondary:hover {
            background: var(--color-dark);
            color: white;
            transform: translateY(-3px);
        }
        
        .btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }
        
        .btn:hover::after {
            transform: translateX(5px);
        }
        
        /* Problem Section */
        .problem-section {
            background: white;
            position: relative;
            overflow: hidden;
        }
        
        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }
        
        .problem-card {
            padding: var(--spacing-md);
            background: var(--color-bg-light);
            border-radius: 16px;
            border-left: 5px solid var(--color-primary);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .problem-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.1);
        }
        
        .problem-icon {
            font-size: 3rem;
            margin-bottom: var(--spacing-sm);
            display: block;
        }
        
        .problem-card h3 {
            color: var(--color-primary);
            margin-bottom: var(--spacing-xs);
        }
        
        /* Solution Section */
        .solution-section {
            background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .solution-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 200%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }
        
        .solution-section .container {
            position: relative;
            z-index: 1;
        }
        
        .solution-section h2 {
            color: white;
            text-align: center;
        }
        
        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }
        
        .solution-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: var(--spacing-md);
            border-radius: 16px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .solution-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px);
            border-color: var(--color-accent);
        }
        
        .solution-icon {
            font-size: 3rem;
            display: block;
            margin-bottom: var(--spacing-sm);
        }
        
        .solution-card h3 {
            color: var(--color-accent);
        }
        
        /* Features Section */
        .features-section {
            background: var(--color-bg-light);
        }
        
        .features-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto var(--spacing-lg);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--spacing-md);
        }
        
        .feature-card {
            background: white;
            padding: var(--spacing-md);
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 48px rgba(0,0,0,0.12);
        }
        
        .feature-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            color: white;
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.5rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--spacing-sm);
        }
        
        .feature-card h3 {
            color: var(--color-dark);
            margin-bottom: var(--spacing-xs);
        }
        
        .feature-list {
            list-style: none;
            margin-top: var(--spacing-sm);
        }
        
        .feature-list li {
            padding: 0.5rem 0;
            padding-left: 1.8rem;
            position: relative;
            font-size: 0.95rem;
        }
        
        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-success);
            font-weight: 900;
            font-size: 1.2rem;
        }
        
        /* Pricing Section */
        .pricing-section {
            background: white;
            position: relative;
        }
        
        .pricing-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto var(--spacing-lg);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }
        
        .pricing-card {
            background: var(--color-bg-light);
            padding: var(--spacing-md);
            border-radius: 20px;
            border: 3px solid transparent;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .pricing-card:hover {
            transform: scale(1.03);
            box-shadow: 0 24px 56px rgba(0,0,0,0.15);
        }
        
        .pricing-card.featured {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            color: white;
            border-color: var(--color-accent);
            transform: scale(1.05);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.08);
        }
        
        .pricing-badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: var(--color-accent);
            color: var(--color-dark);
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-weight: 900;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
        }
        
        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: var(--spacing-xs);
        }
        
        .pricing-card.featured h3 {
            color: white;
        }
        
        .pricing-subtitle {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-bottom: var(--spacing-md);
        }
        
        .pricing-price {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: var(--spacing-xs);
        }
        
        .pricing-card.featured .pricing-price {
            color: var(--color-accent);
        }
        
        .pricing-period {
            font-size: 1rem;
            opacity: 0.8;
            display: block;
            margin-bottom: var(--spacing-md);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: var(--spacing-md);
        }
        
        .pricing-features li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .pricing-card.featured .pricing-features li {
            border-bottom-color: rgba(255,255,255,0.2);
        }
        
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-success);
            font-weight: 900;
            font-size: 1.3rem;
        }
        
        .pricing-card.featured .pricing-features li::before {
            color: var(--color-accent);
        }
        
        .pricing-card .btn {
            width: 100%;
            justify-content: center;
        }
        
        .pricing-card.featured .btn-primary {
            background: white;
            color: var(--color-primary);
        }
        
        .pricing-card.featured .btn-primary:hover {
            background: var(--color-accent);
            color: var(--color-dark);
        }
        
        /* Comparison Section */
        .comparison-section {
            background: var(--color-bg-light);
        }
        
        .comparison-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
            margin-top: var(--spacing-md);
        }
        
        .comparison-row {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            border-bottom: 1px solid var(--color-light-gray);
        }
        
        .comparison-row:first-child {
            background: var(--color-secondary);
            color: white;
            font-weight: 700;
        }
        
        .comparison-cell {
            padding: var(--spacing-sm) var(--spacing-md);
            display: flex;
            align-items: center;
        }
        
        .comparison-cell.highlight {
            background: rgba(217, 79, 32, 0.05);
            font-weight: 600;
        }
        
        .icon-check {
            color: var(--color-success);
            font-size: 1.5rem;
            font-weight: 900;
        }
        
        .icon-cross {
            color: #D32F2F;
            font-size: 1.5rem;
            font-weight: 900;
        }
        
        /* Social Proof Section */
        .testimonials-section {
            background: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }
        
        .testimonial-card {
            background: var(--color-bg-light);
            padding: var(--spacing-md);
            border-radius: 16px;
            border-left: 5px solid var(--color-accent);
            position: relative;
        }
        
        .testimonial-quote {
            font-size: 1.1rem;
            font-style: italic;
            line-height: 1.7;
            color: var(--color-mid);
            margin-bottom: var(--spacing-sm);
        }
        
        .testimonial-quote::before {
            content: '"';
            font-size: 4rem;
            color: var(--color-accent);
            opacity: 0.3;
            position: absolute;
            top: 0;
            left: 20px;
            line-height: 1;
            font-family: Georgia, serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-sm);
            padding-top: var(--spacing-sm);
            border-top: 2px solid white;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.5rem;
            color: white;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author-name {
            font-weight: 700;
            color: var(--color-dark);
        }
        
        .author-role {
            font-size: 0.9rem;
            color: var(--color-mid);
        }
        
        .testimonial-results {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-sm);
            margin-top: var(--spacing-sm);
        }
        
        .result-box {
            background: white;
            padding: var(--spacing-xs);
            border-radius: 8px;
            text-align: center;
        }
        
        .result-value {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--color-primary);
            display: block;
        }
        
        .result-label {
            font-size: 0.75rem;
            color: var(--color-mid);
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--color-bg-light);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            margin-top: var(--spacing-lg);
        }
        
        .faq-item {
            background: white;
            margin-bottom: var(--spacing-sm);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: var(--spacing-sm) var(--spacing-md);
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--color-bg-light);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-primary);
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 var(--spacing-md) 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 0 var(--spacing-md) var(--spacing-sm);
            max-height: 500px;
        }
        
        .faq-answer p {
            color: var(--color-mid);
        }
        
        /* Final CTA Section */
        .final-cta-section {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .final-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 100%;
            height: 200%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }
        
        .final-cta-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .final-cta-section h2 {
            color: white;
            font-size: clamp(2.5rem, 5vw, 4rem);
        }
        
        .final-cta-section .btn-primary {
            background: white;
            color: var(--color-primary);
            font-size: 1.3rem;
            padding: 1.3rem 3rem;
            box-shadow: 0 12px 40px rgba(0,0,0,0.3);
        }
        
        .final-cta-section .btn-primary:hover {
            background: var(--color-accent);
            color: var(--color-dark);
            transform: translateY(-5px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.4);
        }
        
        .urgency-note {
            margin-top: var(--spacing-md);
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: var(--spacing-md);
            flex-wrap: wrap;
            margin-top: var(--spacing-md);
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.15);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
        }
        
        /* Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Scroll animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }
        
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .pain-points li {
                text-align: left;
            }
            
            .cta-buttons {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --spacing-lg: 3rem;
                --spacing-xl: 4rem;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .pricing-grid,
            .solution-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .comparison-row {
                grid-template-columns: 2fr 1fr 1fr;
                font-size: 0.9rem;
            }
            
            .comparison-cell {
                padding: var(--spacing-xs) var(--spacing-sm);
            }
            
            .stat-grid {
                grid-template-columns: 1fr;
            }
        }
	

