        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2563eb;
            --primary-light: #60a5fa;
            --primary-dark: #1e40af;
            --accent-orange: #f59e0b;
            --accent-green: #10b981;
            --accent-purple: #8b5cf6;
            --dark: #0f172a;
            --gray-900: #1e293b;
            --gray-700: #334155;
            --gray-500: #64748b;
            --gray-300: #cbd5e1;
            --gray-100: #f1f5f9;
            --white: #ffffff;
            --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            --gradient-cta: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--white);
        }

        /* Enhanced Navigation */
        nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: var(--gradient-cta);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: transform 0.3s;
        }

        .logo:hover {
            transform: scale(1.05);
        }

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

        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-cta);
            color: var(--white) !important;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-weight: 700;
            position: relative;
            overflow: hidden;
        }

        .nav-cta:after {
            display: none;
        }

        .nav-cta:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .nav-cta:hover:before {
            width: 300px;
            height: 300px;
        }

        /* Mega Hero Section */
        .hero {
            position: relative;
            background: var(--gradient-hero);
            color: var(--white);
            padding: 10rem 2rem 8rem;
            text-align: center;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0l30 30-30 30L0 30z" fill="white" fill-opacity="0.3"/></svg>');
            animation: slidePattern 20s linear infinite;
        }

        @keyframes slidePattern {
            from { transform: translateX(0) translateY(0); }
            to { transform: translateX(60px) translateY(60px); }
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 1px solid rgba(255,255,255,0.3);
            animation: fadeInDown 0.8s ease;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            animation: fadeInUp 1s ease;
            text-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            font-weight: 400;
            line-height: 1.8;
            animation: fadeInUp 1.2s ease;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.4s ease;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--white);
            color: var(--primary);
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

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

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

        .hero-trust {
            margin-top: 4rem;
            animation: fadeInUp 1.6s ease;
        }

        .trust-text {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .trust-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            opacity: 0.7;
        }

        .trust-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
        }

        /* Trust Bar - Infinite Scroll */
        .trust-bar {
            background: var(--dark);
            padding: 2rem 0;
            overflow: hidden;
            position: relative;
        }

        .trust-scroll {
            display: flex;
            animation: scroll 40s linear infinite;
            width: max-content;
        }

        .trust-item {
            color: var(--white);
            padding: 0 4rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            white-space: nowrap;
            font-weight: 600;
        }

        .trust-item i {
            color: var(--accent-green);
            font-size: 1.5rem;
        }

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

        /* Stats Section Enhanced */
        .stats {
            background: var(--white);
            padding: 6rem 2rem;
            position: relative;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 4rem;
            text-align: center;
        }

        .stat-item {
            position: relative;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
            border-radius: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: var(--gradient-cta);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: var(--gradient-cta);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--gray-700);
            font-weight: 600;
        }

        .stat-sublabel {
            font-size: 0.9rem;
            color: var(--gray-500);
            margin-top: 0.5rem;
        }

        /* Problem-Solution Section */
        .problem-solution {
            background: var(--dark);
            color: var(--white);
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .problem-solution:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
            position: relative;
            z-index: 2;
        }

        .section-label {
            display: inline-block;
            background: var(--gradient-cta);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.3rem;
            opacity: 0.8;
            line-height: 1.8;
        }

        .ps-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 2;
        }

        .ps-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 3rem;
            transition: all 0.4s;
        }

        .ps-card:hover {
            background: rgba(255,255,255,0.08);
            transform: translateY(-10px);
            border-color: var(--primary);
        }

        .ps-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .ps-icon.problem {
            color: #ef4444;
        }

        .ps-icon.solution {
            color: var(--accent-green);
        }

        .ps-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .ps-card p {
            opacity: 0.9;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .ps-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .ps-list li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            opacity: 0.9;
        }

        .ps-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: bold;
            font-size: 1.3rem;
        }

        /* Services Section Enhanced */
        .services {
            background: var(--gray-100);
            padding: 8rem 2rem;
        }

        .services-tabs {
            max-width: 1400px;
            margin: 0 auto;
        }

        .tab-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .tab-button {
            padding: 1rem 2.5rem;
            border: 2px solid var(--gray-300);
            background: var(--white);
            color: var(--gray-700);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 700;
            font-size: 1rem;
        }

        .tab-button.active {
            background: var(--gradient-cta);
            color: var(--white);
            border-color: transparent;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(37,99,235,0.3);
        }

        .tab-button:hover:not(.active) {
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeInUp 0.6s ease;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-cta);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .service-card:hover:before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 4rem;
            background: var(--gradient-cta);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
        }

        .service-card > p {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .service-price {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .service-card ul {
            list-style: none;
            color: var(--gray-600);
        }

        .service-card ul li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            border-bottom: 1px solid var(--gray-200);
        }

        .service-card ul li:last-child {
            border-bottom: none;
        }

        .service-card ul li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Process Section */
        .process {
            padding: 8rem 2rem;
            background: var(--white);
            position: relative;
        }

        .process-timeline {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            top: 50px;
            left: 50%;
            width: 4px;
            height: calc(100% - 100px);
            background: linear-gradient(180deg, var(--primary) 0%, var(--accent-purple) 100%);
            transform: translateX(-50%);
        }

        .process-step {
            display: flex;
            gap: 3rem;
            margin-bottom: 5rem;
            align-items: center;
            position: relative;
        }

        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: var(--gradient-cta);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 10px 40px rgba(37,99,235,0.3);
            position: relative;
            z-index: 2;
        }

        .step-content {
            flex: 1;
            background: var(--gray-100);
            padding: 2.5rem;
            border-radius: 20px;
            transition: all 0.3s;
        }

        .step-content:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        }

        .step-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
        }

        .step-content p {
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .step-duration {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        /* Testimonials Enhanced */
        .testimonials {
            padding: 8rem 2rem;
            background: var(--gradient-hero);
            color: var(--white);
        }

        .testimonials .section-title,
        .testimonials .section-subtitle {
            color: var(--white);
        }

        .testimonials-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            position: relative;
            color: var(--dark);
            transition: all 0.4s;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.15;
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
        }

        .stars {
            color: #fbbf24;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .testimonial-text {
            color: var(--gray-700);
            margin-bottom: 2rem;
            font-style: italic;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--gray-200);
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: var(--gradient-cta);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 900;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .author-info h4 {
            color: var(--dark);
            margin-bottom: 0.3rem;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--gray-600);
            font-size: 0.95rem;
        }

        .author-company {
            font-weight: 600;
            color: var(--primary);
        }

        /* Pricing Enhanced */
        .pricing {
            background: var(--gray-100);
            padding: 8rem 2rem;
        }

        .pricing-toggle {
            text-align: center;
            margin-bottom: 4rem;
        }

        .toggle-container {
            display: inline-flex;
            background: var(--white);
            padding: 0.5rem;
            border-radius: 50px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .toggle-btn {
            padding: 1rem 2.5rem;
            border: none;
            background: transparent;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
            color: var(--gray-600);
        }

        .toggle-btn.active {
            background: var(--gradient-cta);
            color: var(--white);
        }

        .save-badge {
            background: var(--accent-green);
            color: var(--white);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-left: 0.5rem;
        }

        .pricing-cards {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .pricing-card {
            background: var(--white);
            padding: 3rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.4s;
            position: relative;
            border: 2px solid transparent;
        }

        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(37,99,235,0.2);
        }

        .pricing-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 70px rgba(0,0,0,0.15);
        }

        .badge {
            background: var(--gradient-cta);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .plan-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: var(--gradient-cta);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .plan-name {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
        }

        .plan-price {
            font-size: 4rem;
            font-weight: 900;
            background: var(--gradient-cta);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }

        .plan-period {
            color: var(--gray-600);
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2.5rem;
            text-align: left;
        }

        .plan-features li {
            padding: 1rem 0;
            border-bottom: 1px solid var(--gray-200);
            color: var(--gray-700);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li i {
            color: var(--accent-green);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .plan-cta {
            width: 100%;
            padding: 1.2rem;
            background: var(--gradient-cta);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .plan-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37,99,235,0.4);
        }

        /* FAQ Section */
        .faq {
            padding: 8rem 2rem;
            background: var(--white);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--gray-100);
            margin-bottom: 1.5rem;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .faq-question {
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--dark);
            transition: all 0.3s;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 2rem;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 2rem;
        }

        .faq-answer p {
            color: var(--gray-600);
            line-height: 1.8;
        }

        /* CTA Section Enhanced */
        .cta-section {
            background: var(--dark);
            color: var(--white);
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

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

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        .cta-guarantee {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .guarantee-icon {
            font-size: 2rem;
            color: var(--accent-green);
        }

        .guarantee-text {
            text-align: left;
        }

        .guarantee-text strong {
            display: block;
            font-size: 1.1rem;
        }

        .guarantee-text span {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Contact Form Enhanced */
        .contact {
            padding: 8rem 2rem;
            background: var(--gray-100);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info {
            position: sticky;
            top: 100px;
        }

        .contact-info h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .contact-info p {
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--gray-300);
        }

        .contact-details li:last-child {
            border-bottom: none;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-cta);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-detail-text strong {
            display: block;
            color: var(--dark);
            font-size: 1.05rem;
            margin-bottom: 0.3rem;
        }

        .contact-detail-text span {
            color: var(--gray-600);
        }

        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

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

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

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--gray-300);
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
            background: var(--gray-100);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
        }

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

        .submit-btn {
            width: 100%;
            padding: 1.3rem;
            background: var(--gradient-cta);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37,99,235,0.4);
        }

        /* Footer Enhanced */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 5rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0l30 30-30 30L0 30z" fill="white" fill-opacity="0.02"/></svg>');
            opacity: 0.5;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            background: var(--gradient-cta);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-about {
            max-width: 350px;
        }

        .footer-about .logo {
            font-size: 2rem;
            margin-bottom: 1rem;
            display: block;
        }

        .footer-about p {
            opacity: 0.8;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

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

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: var(--white);
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

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

        .footer-section ul li {
            padding: 0.7rem 0;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .footer-section a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            position: relative;
            z-index: 2;
        }

        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact-info {
                position: static;
            }

            .timeline-line {
                display: none;
            }

            .process-step,
            .process-step:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .nav-menu {
                display: none;
            }

            .services-grid,
            .pricing-cards,
            .testimonials-grid,
            .ps-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .cta-guarantee {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--gradient-cta);
            color: var(--white);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(37,99,235,0.4);
            transition: all 0.3s;
            z-index: 999;
        }

        .scroll-top.visible {
            display: flex;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(37,99,235,0.6);
        }