:root {
            --primary: #6B5CE7;
            --primary-dark: #5648c7;
            --accent: #E85D3B;
            --accent-dark: #d14a2a;
            --secondary: #6c757d;
            --success: #28a745;
            --dark: #2D3748;
            --light: #f8f9fa;
            --white: #ffffff;
            --text: #4A5568;
            --text-light: #718096;
            --border: #E2E8F0;
            
            --font-family: 'Poppins', sans-serif;
            --h1-size: 2.5rem;
            --h2-size: 2rem;
            --h3-size: 1.75rem;
            --body-size: 1rem;
            --line-height: 1.6;
            
            --xs: 0.25rem;
            --sm: 0.5rem;
            --md: 1rem;
            --lg: 1.5rem;
            --xl: 3rem;
            --xxl: 5rem;
        }

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

        body {
            font-family: var(--font-family);
            font-size: var(--body-size);
            line-height: var(--line-height);
            color: var(--text);
            background: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--lg);
        }

        /* Navigation */
        .navbar {
            background: var(--white);
            padding: var(--md) 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: var(--lg);
        }

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

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            background: var(--white);
            color: var(--dark);
            padding-top: 70px;
            min-height: 100vh;
            display: grid;
            grid-template-columns: 50% 50%;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-left: auto;
            margin-right: auto;
            padding: var(--xl) var(--lg);
        }

        .hero-image {
            position: relative;
            overflow: hidden;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-buttons {
            display: flex;
            gap: var(--md);
            flex-wrap: wrap;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: var(--lg);
            color: var(--dark);
            text-transform: none;
        }

        .hero-tagline {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-light);
            margin-bottom: var(--md);
            text-transform: none;
            letter-spacing: 0;
            max-width: 640px;
        }

        .hero-subheadline {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: var(--lg);
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--text);
            margin-bottom: var(--xl);
            max-width: 550px;
            line-height: 1.7;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

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

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232, 93, 59, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
            margin-left: var(--md);
        }

        .btn-outline:hover {
            background: var(--accent);
            color: var(--white);
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, var(--primary) 0%, #8B7CF7 100%);
            padding: var(--xl) 0;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            left: -80px;
            top: 50%;
            transform: translateY(-50%) rotate(15deg);
            width: 180px;
            height: 180px;
            border: 3px solid rgba(255, 255, 255, 0.2);
            background: transparent;
        }

        .stats::after {
            content: '';
            position: absolute;
            right: -60px;
            top: 50%;
            transform: translateY(-50%) rotate(-10deg);
            width: 150px;
            height: 150px;
            border: 3px solid rgba(255, 255, 255, 0.15);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }

        .stats .container {
            position: relative;
            z-index: 1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--lg);
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: var(--xs);
        }

        .stat-item p {
            color: rgba(255,255,255,0.85);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Tech Stack Section */
        .tech-stack {
            padding: var(--xxl) 0;
            background: var(--white);
        }

        .tech-intro {
            text-align: center;
            font-size: 1.25rem;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto var(--xxl);
            line-height: 1.6;
        }

        .tech-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: var(--xl) var(--xxl);
        }

        .tech-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--sm);
            opacity: 0.5;
            transition: opacity 0.3s;
            min-width: 120px;
        }

        .tech-logo:hover {
            opacity: 1;
        }

        .tech-logo img {
            height: 48px;
            width: 48px;
            object-fit: contain;
            opacity: 0.7;
            transition: all 0.3s;
        }

        .tech-logo:hover img {
            opacity: 1;
            transform: scale(1.1);
        }

        .tech-logo span {
            font-size: 0.875rem;
            color: var(--text-light);
            text-align: center;
            line-height: 1.3;
        }

        .tech-logo span small {
            font-size: 0.75rem;
            display: block;
        }

        /* About Section */
        .about {
            padding: var(--xxl) 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--xl);
        }

        .section-header h2 {
            font-size: var(--h2-size);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: var(--md);
        }

        .section-header p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .about-tabs {
            display: flex;
            flex-direction: column;
        }

        .about-tabs-header {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--xl);
            margin-bottom: var(--xxl);
        }

        .about-tab-item {
            cursor: pointer;
            transition: all 0.3s ease;
            padding: var(--md) 0;
        }

        .about-tab-item:hover .about-underline {
            width: 100%;
        }

        .about-number {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: var(--xs);
        }

        .about-tab-item h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: var(--md);
            transition: color 0.3s ease;
        }

        .about-tab-item.active h3 {
            color: var(--accent);
        }

        .about-underline {
            width: 0;
            height: 4px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .about-tab-item.active .about-underline {
            width: 120px;
        }

        .about-tabs-content {
            max-width: 900px;
        }

        .about-tab-content {
            display: none;
        }

        .about-tab-content.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

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

        .about-tab-content p {
            color: var(--text-light);
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: var(--lg);
        }

        .about-tab-content p:last-child {
            margin-bottom: 0;
        }

        /* Services Section */
        .services {
            padding: var(--lg) 0;
            background: var(--light);
        }

        .services-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--lg);
            align-items: start;
        }

        .services-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
        }

        .services-sub {
            margin-top: var(--sm);
            color: var(--text-light);
            line-height: 1.6;
            max-width: 640px;
            font-size: 1.05rem;
        }

        .services-accordion {
            display: flex;
            flex-direction: column;
            gap: var(--md);
        }

        .accordion-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .accordion-item.active {
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--lg) var(--xl);
            cursor: pointer;
            transition: all 0.3s;
        }

        .accordion-header h3 {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--text-light);
            margin: 0;
            transition: color 0.3s;
        }

        .accordion-item.active .accordion-header h3 {
            color: var(--accent);
            font-weight: 600;
        }

        .accordion-icon {
            width: 24px;
            height: 24px;
            color: var(--accent);
            transition: transform 0.3s;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .accordion-item.active .accordion-content {
            max-height: 200px;
        }

        .accordion-content p {
            padding: 0 var(--xl) var(--lg);
            color: var(--text);
            line-height: 1.7;
        }

        /* Pricing Section */
        .pricing {
            padding: var(--xxl) 0;
            background: var(--white);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--xl);
            max-width: 1200px;
            margin: 0 auto;
            align-items: stretch;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 12px;
            padding: var(--xl);
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .pricing-header {
            min-height: 160px;
            margin-bottom: var(--md);
        }

        .pricing-desc {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.5;
            min-height: 60px;
        }

        .pricing-price {
            margin-bottom: var(--lg);
        }

        .pricing-card .btn {
            width: 100%;
            text-align: center;
        }

        .pricing-features-section {
            margin-top: var(--xl);
            padding-top: var(--lg);
            border-top: 1px solid var(--border);
        }

        .features-title {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: var(--sm);
            font-size: 0.9rem;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .pricing-card.featured {
            border: 3px solid var(--primary);
        }

        .pricing-card.featured::before {
            content: 'RECOMMENDED';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: var(--white);
            padding: var(--xs) var(--md);
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 20px;
            letter-spacing: 1px;
        }

        .pricing-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: var(--sm);
            text-transform: uppercase;
            min-height: 60px;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: var(--lg);
        }

        .pricing-price span {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 0;
        }

        .pricing-features li {
            padding: var(--sm) 0;
            color: var(--text);
            font-size: 0.95rem;
            display: flex;
            align-items: flex-start;
            gap: var(--sm);
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
            flex-shrink: 0;
        }

        .pricing-card .btn {
            width: 100%;
            text-align: center;
        }

        .btn-dark {
            background: var(--accent);
            color: var(--white);
        }

        .btn-dark:hover {
            background: var(--accent-dark);
            box-shadow: 0 8px 25px rgba(232, 93, 59, 0.35);
        }

        .pricing-bonus {
            margin-top: var(--lg);
            padding-top: var(--lg);
            border-top: 1px solid var(--border);
        }

        .pricing-bonus h4 {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--success);
            margin-bottom: var(--sm);
            text-transform: uppercase;
        }

        .pricing-bonus ul {
            list-style: none;
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .pricing-bonus li {
            padding: var(--xs) 0;
        }

        /* Testimonials Section */
        .testimonials {
            padding: var(--xxl) 0;
            background: var(--light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--lg);
        }

        .testimonial-card {
            background: var(--white);
            padding: var(--xl);
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 320px;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text);
            font-style: italic;
            margin-bottom: var(--lg);
            position: relative;
            z-index: 1;
            min-height: 140px;
            display: flex;
            align-items: flex-start;
        }

        .testimonial-short {
            cursor: pointer;
        }

        .testimonial-full {
            display: none;
            line-height: 1.7;
        }

        .testimonial-card.expanded .testimonial-short {
            display: none;
        }

        .testimonial-card.expanded .testimonial-full {
            display: block;
        }

        .testimonial-toggle {
            color: var(--primary);
            font-size: 0.85rem;
            cursor: pointer;
            font-weight: 600;
            margin-top: var(--sm);
            display: inline-block;
        }

        .testimonial-toggle:hover {
            text-decoration: underline;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--md);
        }

        .testimonial-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            font-size: 1.25rem;
        }

        .testimonial-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
        }

        .testimonial-info h4 a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s;
        }

        .testimonial-info h4 a:hover {
            color: var(--primary);
        }

        .testimonial-info p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* Demo Section */
        .demo {
            padding: var(--xxl) 0;
            background: var(--light);
        }

        .demo-inner {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: var(--xl);
            align-items: center;
        }

        .demo-gallery {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .demo-slider {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            background: var(--white);
            width: 100%;
        }

        .demo-slides {
            position: relative;
            width: 100%;
        }

        .demo-slide {
            display: none;
        }

        .demo-slide.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .demo-slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        .demo-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: var(--lg);
        }

        .demo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--border);
            cursor: pointer;
            transition: all 0.3s;
        }

        .demo-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        .demo-dot:hover {
            background: var(--primary);
        }

        .demo-content h2 {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: var(--md);
        }

        .demo-content > p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: var(--xl);
        }

        .demo-form {
            display: flex;
            gap: var(--md);
            margin-bottom: var(--md);
        }

        .demo-form input {
            flex: 1;
            padding: var(--md) var(--lg);
            border: 2px solid var(--border);
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .demo-form input:focus {
            border-color: var(--primary);
        }

        .demo-form .btn {
            white-space: nowrap;
        }

        .demo-note {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        @media (max-width: 768px) {
            .demo-inner {
                grid-template-columns: 1fr;
            }

            .demo-form {
                flex-direction: column;
            }
        }

        /* Video Section */
        .video-section {
            padding: var(--xxl) 0;
            background: var(--white);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            max-width: 960px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
            background: var(--dark);
        }

        .video-fallback {
            position: relative;
            display: block;
            width: 100%;
            padding-top: 56.25%;
            background: url("https://img.youtube.com/vi/PBdEDZ1JOMg/hqdefault.jpg") center/cover no-repeat;
        }

        .video-fallback::after {
            content: '▶';
            position: absolute;
            inset: 0;
            margin: auto;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(0,0,0,0.7);
            color: #fff;
            font-size: 32px;
            display: grid;
            place-items: center;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .video-fallback:hover::after {
            transform: scale(1.05);
            background: rgba(0,0,0,0.8);
        }

        /* Blog Preview Section */
        .blog-preview {
            padding: var(--xxl) 0;
            background: var(--white);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--lg);
            margin-bottom: var(--xl);
        }

        .blog-card {
            background: var(--light);
            border-radius: 12px;
            padding: var(--lg);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .blog-tag {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: var(--sm);
            align-self: flex-start;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-card h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: var(--sm);
            line-height: 1.4;
        }

        .blog-card p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
            flex-grow: 1;
        }

        .blog-more {
            text-align: center;
        }

        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Social Proof Section */
        .social-proof {
            padding: var(--xxl) 0;
            background: var(--light);
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(140px, 1fr));
            gap: var(--lg);
            align-items: stretch;
        }

        .social-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: var(--lg);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: var(--sm);
            transition: all 0.3s;
        }

        .social-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .social-card img {
            width: 28px;
            height: 28px;
        }

        .social-header {
            display: flex;
            align-items: center;
            gap: var(--sm);
        }

        .social-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
        }

        .social-count {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-left: auto;
        }

        .social-card p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        @media (max-width: 992px) {
            .social-grid {
                grid-template-columns: repeat(3, minmax(140px, 1fr));
            }
        }

        @media (max-width: 576px) {
            .social-grid {
                grid-template-columns: repeat(2, minmax(140px, 1fr));
            }
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: var(--lg);
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: var(--white);
            border-radius: 12px;
            padding: var(--xl);
            max-width: 520px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            position: relative;
        }

        .modal h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: var(--md);
        }

        .modal p {
            color: var(--text-light);
            margin-bottom: var(--lg);
        }

        .modal form {
            display: flex;
            flex-direction: column;
            gap: var(--md);
        }

        .modal input,
        .modal textarea {
            width: 100%;
            padding: var(--md);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            font-family: var(--font-family);
            outline: none;
            transition: border-color 0.2s ease;
        }

        .modal input:focus,
        .modal textarea:focus {
            border-color: var(--primary);
        }

        .modal textarea {
            min-height: 120px;
            resize: vertical;
        }

        .modal .error {
            color: #d33;
            font-size: 0.85rem;
            display: none;
        }

        .modal .error.active {
            display: block;
        }

        .modal-close {
            position: absolute;
            top: 12px;
            right: 12px;
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--text-light);
        }

        .modal-close:hover {
            color: var(--dark);
        }

        .modal-thanks {
            display: none;
            text-align: center;
        }

        .modal-thanks.active {
            display: block;
        }

        .modal-thanks h4 {
            font-size: 1.3rem;
            margin-bottom: var(--sm);
            color: var(--dark);
        }

        .modal-thanks p {
            margin: 0;
        }

        /* CTA Section */
        .cta {
            padding: var(--xxl) 0;
            background: linear-gradient(135deg, var(--primary) 0%, #8B7CF7 100%);
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            left: -50px;
            top: 50%;
            transform: translateY(-50%) rotate(-15deg);
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }

        .cta::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 40%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='2'%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3Ccircle cx='100' cy='80' r='6'/%3E%3Ccircle cx='150' cy='40' r='10'/%3E%3Ccircle cx='200' cy='100' r='7'/%3E%3Ccircle cx='250' cy='60' r='9'/%3E%3Ccircle cx='300' cy='120' r='6'/%3E%3Ccircle cx='350' cy='80' r='8'/%3E%3Ccircle cx='80' cy='150' r='7'/%3E%3Ccircle cx='130' cy='180' r='9'/%3E%3Ccircle cx='180' cy='140' r='6'/%3E%3Ccircle cx='230' cy='200' r='8'/%3E%3Ccircle cx='280' cy='160' r='10'/%3E%3Ccircle cx='330' cy='220' r='7'/%3E%3Ccircle cx='60' cy='240' r='6'/%3E%3Ccircle cx='110' cy='260' r='8'/%3E%3Ccircle cx='160' cy='230' r='7'/%3E%3Ccircle cx='210' cy='270' r='9'/%3E%3Ccircle cx='260' cy='240' r='6'/%3E%3Ccircle cx='310' cy='280' r='8'/%3E%3Ccircle cx='360' cy='250' r='10'/%3E%3Cpath d='M50 50 L100 80 L150 40 L200 100 L250 60 L300 120 L350 80'/%3E%3Cpath d='M80 150 L130 180 L180 140 L230 200 L280 160 L330 220'/%3E%3Cpath d='M60 240 L110 260 L160 230 L210 270 L260 240 L310 280 L360 250'/%3E%3Cpath d='M50 50 L80 150' stroke-dasharray='4 4'/%3E%3Cpath d='M150 40 L130 180' stroke-dasharray='4 4'/%3E%3Cpath d='M250 60 L230 200' stroke-dasharray='4 4'/%3E%3Cpath d='M350 80 L330 220' stroke-dasharray='4 4'/%3E%3Cpath d='M80 150 L60 240' stroke-dasharray='4 4'/%3E%3Cpath d='M180 140 L160 230' stroke-dasharray='4 4'/%3E%3Cpath d='M280 160 L260 240' stroke-dasharray='4 4'/%3E%3C/g%3E%3C/svg%3E");
            background-size: cover;
            background-position: center;
            opacity: 0.6;
        }

        .cta .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .cta-content {
            max-width: 600px;
        }

        .cta h2 {
            font-size: var(--h2-size);
            font-weight: 700;
            color: var(--white);
            margin-bottom: var(--md);
        }

        .cta p {
            color: rgba(255,255,255,0.7);
            font-size: 1.125rem;
            margin-bottom: var(--xl);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta .btn-primary {
            background: var(--accent);
            color: var(--white);
            padding: var(--lg) var(--xl);
            font-size: 1.125rem;
            flex-shrink: 0;
        }

        .cta .btn-primary:hover {
            background: var(--accent-dark);
            box-shadow: 0 8px 25px rgba(232, 93, 59, 0.35);
        }

        /* Footer */
        .footer {
            background: #1a1e21;
            padding: var(--xl) 0 var(--lg);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--lg);
        }

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

        .footer-links {
            display: flex;
            gap: var(--lg);
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

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

        .footer-contact {
            color: rgba(255,255,255,0.7);
            font-size: 0.875rem;
        }

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

        .footer-bottom {
            margin-top: var(--lg);
            padding-top: var(--lg);
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-tabs-header {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--md);
            }

            .about-tab-item h3 {
                font-size: 1.25rem;
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 800px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: var(--lg);
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-toggle {
                display: block;
            }

            .hero {
                padding-top: 60px;
                min-height: auto;
                grid-template-columns: 1fr;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
                padding: var(--xl) var(--lg);
                order: 1;
            }

            .hero-image {
                min-height: 300px;
                order: 2;
            }

            .hero-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-subheadline {
                font-size: 1.125rem;
            }

            .hero p {
                margin-left: auto;
                margin-right: auto;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: var(--lg);
            }

            .about-tabs-header {
                grid-template-columns: 1fr;
                gap: var(--md);
            }

            .about-tab-item h3 {
                font-size: 1.25rem;
            }

            .services-inner,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .services-title h2 {
                font-size: 2rem;
                margin-bottom: var(--lg);
            }

            .accordion-header {
                padding: var(--md) var(--lg);
            }

            .accordion-header h3 {
                font-size: 1.1rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .btn-outline {
                margin-left: 0;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 var(--md);
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .pricing-card {
                padding: var(--lg);
            }

            .pricing-price {
                font-size: 2rem;
            }
        }
