@font-face {
  font-family: 'MontserratAlt1';
  src: url('/fonts/MontserratAlt1-ExtraLight.woff2') format('woff2'),
       url('/fonts/MontserratAlt1-ExtraLight.woff') format('woff');
  font-weight: 200;  /* ExtraLight = 200 */
  font-style: normal;
  font-display: swap; /* Text sichtbar auch wenn Font lädt */
}

            :root {
            --primary-orange: #ff6b35;
            --secondary-purple: #6366f1;
            --primary-black: #000000;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --text-white: #ffffff;
            --text-gray: #b3b3b3;
            --gradient-1: linear-gradient(135deg, #fbbc05 0%, #ff6b35 100%);
            --gradient-2: linear-gradient(135deg, rgba(251, 188, 5, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
            --gradient-3: linear-gradient(135deg, #6366f1 0%, #2d1b69 100%);
            --bg-dark: linear-gradient(135deg, #000000 0%, #1a1f2e 50%, #2d1b69 100%);
            --bg-light: linear-gradient(135deg, #ede9fe 0%, #eef2ff 60%, #f8faff 100%);
            --bg-light-secondary: linear-gradient(135deg, #fffdfc 0%, #fff7f5 60%, #fff0eb 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html { scroll-behavior: smooth; }

        .d-none {
            display: none;
            opacity: 0;
        }

        body {
            font-family: 'Poppins', Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Main Navbar - Enhanced */
        .main-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 4.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-brand {
            font-size: 1.5rem;
            font-weight: 200;
            color: var(--text-white);
            text-decoration: none;
            font-family: 'MontserratAlt1', sans-serif;
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-link {
            font-size: 1rem;
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-cta {
            background: var(--gradient-1);
            color: var(--primary-black);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(251, 188, 5, 0.3);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger {
            width: 25px;
            height: 3px;
            background: var(--text-white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu {
            position: fixed;
            top: 4.5rem;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(20px);
            padding: 2rem 5%;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .mobile-nav-link {
            color: var(--text-white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Hero Section - Light Background */
        .hero-section {
            min-height: 100vh;
            position: relative;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            padding: 8rem 0 5rem 0;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(251, 188, 5, 0.1) 0%, transparent 50%);
            animation: backgroundPulse 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            align-items: center;
            gap: 4rem;
            position: relative;
            z-index: 1;
        }

        .hero-left {
            width: 60%;
            padding: 0 2rem 0 0;
        }

        .hero-badge {
            background: var(--glass-bg);
            border: 1px solid var(--secondary-purple);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(30px);
            animation: slideUpFade 0.8s ease-out 0.2s forwards;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--secondary-purple);
            border-radius: 50%;
            animation: pulse 2s infinite;
            flex-shrink: 0;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .badge-text {
            color: var(--secondary-purple);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .hero-title {
            font-size: clamp(2rem, 8vw, 3.5rem);
            font-weight: 900;
            color: var(--primary-black);
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUpFade 0.8s ease-out 0.4s forwards;
        }

        .hero-emoji {
            font-size: 4rem;
            margin-right: 0.5rem;
        }

        .hero-subline {
            font-size: clamp(1rem, 4vw, 1.25rem);
            color: #4a4a4a;
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUpFade 0.8s ease-out 0.6s forwards;
        }

        .hero-cta {
            background: var(--gradient-1);
            color: var(--primary-black);
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: clamp(1rem, 3vw, 1.2rem);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUpFade 0.8s ease-out 0.8s forwards;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(251, 188, 5, 0.4);
        }

        @keyframes slideUpFade {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-right {
            width: 40%;
            padding: 0 0 0 2rem;
        }

        .automation-visual {
            background: var(--text-white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
            animation: slideUpFade 0.8s ease-out 1s forwards;
        }

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

        .automation-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .visual-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-black);
            margin-bottom: 1rem;
        }

        .visual-description {
            color: #666;
            font-size: 1rem;
        }

        /* Problem Section */
        .problem-section {
            background: var(--bg-dark);
            padding: 5rem 0;
            position: relative;
        }

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

        .problem-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .problem-title {
            font-size: clamp(2rem, 6vw, 2.5rem);
            font-weight: 900;
            color: var(--text-white);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .problem-subtitle {
            font-size: clamp(1rem, 4vw, 1.25rem);
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .problem-card {
            background: rgba(255, 107, 53, 0.1);
            border: 2px solid rgba(255, 107, 53, 0.3);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .problem-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .problem-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-orange);
            background: rgba(255, 107, 53, 0.15);
        }

        .problem-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: var(--text-white);
        }

        .problem-text {
            color: var(--text-white);
            font-size: clamp(1rem, 3vw, 1.1rem);
            line-height: 1.5;
            font-weight: 500;
        }

        /* Three Pillars Section */
        .pillars-section {
            background: var(--bg-light);
            padding: 5rem 0;
        }

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

        .pillars-headline {
            font-size: clamp(2rem, 6vw, 2.5rem);
            font-weight: 900;
            color: var(--primary-black);
            text-align: center;
            margin-bottom: 4rem;
            line-height: 1.1;
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
        }

        .pillar-card {
            background: var(--text-white);
            border-radius: 20px;
            padding: 3rem 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .pillar-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .pillar-card:hover {
            transform: translateY(-10px);
        }

        .pillar-number {
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .pillar-title {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 1.5rem;
        }

        .pillar-list {
            list-style: none;
            text-align: left;
        }

        .pillar-list li {
            color: #4a4a4a;
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
            font-size: 1rem;
        }

        .pillar-list li::before {
            content: '•';
            color: var(--primary-orange);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.5rem;
        }

        /* Benefits Section */
        .benefits-section {
            background: var(--bg-dark);
            padding: 5rem 0;
        }

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

        .benefits-headline {
            font-size: clamp(2rem, 6vw, 2.5rem);
            font-weight: 900;
            color: var(--text-white);
            text-align: center;
            margin-bottom: 3rem;
        }

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

        .benefit-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .benefit-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: #10b981;
        }

        .benefit-icon {
            font-size: 1.5rem;
            color: #10b981;
        }

        .benefit-text {
            color: var(--text-white);
            font-size: clamp(1rem, 3vw, 1.1rem);
            font-weight: 600;
        }

        /* Process Section - Dark Design */
        .process-section {
            background: var(--bg-light);
            padding: 8rem 0;
            position: relative;
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            text-align: center;
        }

        .section-overheadline {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--secondary-purple);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .section-headline {
            font-size: clamp(2rem, 6vw, 2.5rem);
            font-weight: 900;
            color: var(--primary-black);
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

        .section-description {
            font-size: clamp(1rem, 3vw, 1.125rem);
            color: #4a4a4a;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Enhanced Timeline Container */
        .timeline-container {
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            gap: 4rem;
            margin: 4rem 0;
            position: relative;
            margin-left: auto;
            margin-right: auto;
        }

        .timeline-card {
            background: var(--text-white);
            border: 3px solid #e9ecef;
            border-radius: 20px;
            padding: 2rem;
            flex: 1;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            gap: 1rem;
        }

        .timeline-card:hover {
            border-color: var(--secondary-purple);
            background: rgba(99, 102, 241, 0.02);
            transform: translateY(-5px);
        }

        .timeline-card:nth-child(1) {
            animation: slideUpFade 0.6s ease-out 0.5s both;
        }

        .timeline-card:nth-child(2) {
            animation: slideUpFade 0.6s ease-out 2.5s both;
        }

        .timeline-card:nth-child(3) {
            animation: slideUpFade 0.6s ease-out 4.5s both;
        }

        .timeline-card:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -66px;
            transform: translateY(-50%);
            width: 4rem;
            height: 3px;
            background: var(--secondary-purple);
            z-index: 1;
            transform-origin: left center;
            transform: translateY(-50%) scaleX(0);
        }

        .timeline-card:first-child::after {
            animation: drawLineForward 0.8s ease-in-out 1.3s both;
        }

        .timeline-card:nth-child(2)::after {
            animation: drawLineForward 0.8s ease-in-out 3.3s both;
        }

        .timeline-card:not(:last-child)::before {
            content: '→';
            position: absolute;
            top: 50%;
            right: -48px;
            transform: translateY(-50%) scale(0);
            width: 30px;
            height: 30px;
            background: var(--secondary-purple);
            border-radius: 50%;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            font-weight: bold;
        }

        .timeline-card:first-child::before {
            animation: zoomIn 0.4s ease-out 2.2s both;
        }

        .timeline-card:nth-child(2)::before {
            animation: zoomIn 0.4s ease-out 4.2s both;
        }

        .timeline-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .timeline-title {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 0.5rem;
        }

        .timeline-duration {
            font-size: 0.9rem;
            color: var(--secondary-purple);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .timeline-description {
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            color: #4a4a4a;
            line-height: 1.6;
            flex-grow: 1;
        }

        @keyframes zoomIn {
            from { transform: translateY(-50%) scale(0); }
            to { transform: translateY(-50%) scale(1); }
        }

        @keyframes drawLineForward {
            from { transform: translateY(-50%) scaleX(0); }
            to { transform: translateY(-50%) scaleX(1); }
        }

        .section-cta {
            background: var(--gradient-1);
            color: var(--primary-black);
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: clamp(1rem, 3vw, 1.1rem);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            margin-top: 3rem;
        }

        .section-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(251, 188, 5, 0.4);
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-dark);
            position: relative;
            padding: 5rem 0;
        }

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

        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-overheadline {
            font-size: 0.875rem;
            font-weight: 100;
            color: var(--primary-orange);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .faq-headline {
            font-size: clamp(2rem, 6vw, 2.5rem);
            font-weight: 900;
            color: var(--text-white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .faq-subline {
            font-size: clamp(1rem, 3vw, 1.125rem);
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* FAQ Cards */
        .faq-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--glass-border);
            border-radius: 20px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .faq-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-card:hover {
            border-color: var(--primary-orange);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
        }

        .faq-card.active {
            border-color: var(--primary-orange);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
            transform: translateY(-2px);
        }

        .faq-question {
            padding: 1rem 2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq-question:hover {
            background: rgba(255, 107, 53, 0.05);
        }

        .faq-card.active .faq-question {
            background: rgba(255, 107, 53, 0.1);
        }

        .question-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex: 1;
        }

        .question-icon {
            font-size: 1.5rem;
            min-width: 30px;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .question-text {
            font-size: clamp(1rem, 3vw, 1.2rem);
            font-weight: 700;
            color: var(--text-white);
            line-height: 1.3;
        }

        .expand-indicator {
            font-size: 2rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.4s ease;
            font-weight: bold;
            line-height: 1;
            flex-shrink: 0;
        }

        .faq-card.active .expand-indicator {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }

        .faq-card.active .faq-answer {
            max-height: 600px;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        .answer-content {
            padding-top: 1rem;
            border-top: 1px solid var(--glass-border);
        }

        .answer-text {
            font-size: clamp(0.9rem, 2.5vw, 1rem);
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .answer-highlight {
            background: rgba(255, 107, 53, 0.1);
            padding: 1.2rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-orange);
            font-weight: 600;
            color: var(--text-white);
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: var(--bg-light);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 70% 30%, rgba(251, 188, 5, 0.1) 0%, transparent 50%);
            animation: backgroundPulse 6s ease-in-out infinite reverse;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1.5rem;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: clamp(2rem, 7vw, 3rem);
            font-weight: 900;
            color: var(--primary-black);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .cta-subtitle {
            font-size: clamp(1rem, 3vw, 1.25rem);
            color: #4a4a4a;
            margin-bottom: 3rem;
            line-height: 1.5;
        }

        .cta-button {
            background: var(--gradient-1);
            color: var(--primary-black);
            padding: 1.5rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: clamp(1rem, 3vw, 1.2rem);
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(251, 188, 5, 0.4);
        }

        /* Footer - Enhanced */
        .footer {
            background: var(--bg-dark);
            padding: 4rem 0 0 0;
        }

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

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-size: 1.5rem;
            font-weight: 200;
            color: var(--text-white);
            margin-bottom: 0.5rem;
            font-family: 'MontserratAlt1', sans-serif;
        }

        .footer-brand .tagline {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .footer-cta {
            background: var(--gradient-1);
            color: var(--primary-black);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .footer-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(251, 188, 5, 0.3);
        }

        .footer-nav h4 {
            color: var(--text-white);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav li {
            margin-bottom: 0.5rem;
        }

        .footer-nav a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--text-white);
        }

        .footer-nav a.special:hover {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: center;
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        .made-with {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .legal-links {
            display: flex;
            gap: 2rem;
        }

        .legal-link {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .legal-link:hover {
            color: var(--text-white);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-orange);
            transform: translateY(-2px);
        }

        .social-icon {
            font-size: 1.2rem;
            color: var(--text-gray);
        }

        .social-link:hover .social-icon {
            color: var(--primary-black);
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .scroll-to-top.visible {
            opacity: 1;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(251, 188, 5, 0.4);
        }

        .scroll-arrow {
            color: var(--primary-black);
            font-size: 1.2rem;
            font-weight: bold;
            transform: rotate(-90deg);
        }

        /* Mobile Responsive - Enhanced */
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .main-navbar .nav-cta {
                display: none;
            }
            
            .hero-container {
                flex-direction: column;
                text-align: center;
                gap: 3rem;
            }
            
            .hero-left,
            .hero-right {
                width: 100%;
                padding: 0;
            }

            .timeline-container {
                flex-direction: column;
                gap: 2rem;
            }

            .timeline-card:not(:last-child)::after,
            .timeline-card:not(:last-child)::before {
                display: none;
            }

            .problems-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
            }

            .legal-links {
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .main-navbar {
                padding: 0 1.5rem;
                height: 4rem;
            }

            .nav-brand {
                font-size: 1.3rem;
            }

            .nav-cta {
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
            }

            .hero-section {
                padding: 6rem 0 3rem 0;
            }

            .hero-badge {
                padding: 0.6rem 1.2rem;
                margin-bottom: 1.5rem;
            }

            .badge-text {
                font-size: 0.8rem;
            }

            .process-section {
                padding: 5rem 0;
            }

            .timeline-card {
                padding: 1.5rem;
            }

            .faq-question {
                padding: 1.2rem;
            }

            .question-content {
                gap: 0.8rem;
            }

            .question-icon {
                font-size: 1.3rem;
                min-width: 25px;
            }

            .expand-indicator {
                font-size: 1.5rem;
            }

            .faq-card.active .faq-answer {
                padding: 0 1.2rem 1.2rem 1.2rem;
            }

            .cta-section {
                padding: 5rem 0;
            }

            .cta-button {
                padding: 1.2rem 2rem;
                gap: 0.8rem;
            }

            .legal-links {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-container,
            .problem-container,
            .pillars-container,
            .benefits-container,
            .process-container,
            .faq-container,
            .cta-container {
                padding: 0 1rem;
            }

            .timeline-card {
                padding: 1.2rem;
            }

            .hero-badge {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
            }

            .problem-card,
            .pillar-card,
            .benefit-card {
                padding: 1.5rem;
            }
        }

        .faq-question:focus {
            outline: 2px solid var(--primary-orange);
            outline-offset: 2px;
        }