        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --qb-green: #2CA01C;
            --qb-dark-green: #1E7A0F;
            --qb-blue: #0077C5;
            --qb-orange: #FF6B00;
            --gradient-1: linear-gradient(135deg, #2CA01C 0%, #0077C5 100%);
            --gradient-2: linear-gradient(45deg, #FF6B00 0%, #2CA01C 100%);
            --gradient-3: linear-gradient(180deg, rgba(44, 160, 28, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #2d3748;
            background: #ffffff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(circle at 20% 50%, rgba(44, 160, 28, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 119, 197, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
            animation: bgMove 20s ease-in-out infinite;
        }

        @keyframes bgMove {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-20px, 20px) scale(1.05); }
        }

        /* Texture Overlay */
        .texture-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.05) 2px, rgba(0,0,0,.05) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.05) 2px, rgba(0,0,0,.05) 4px);
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Animated QuickBooks Logo */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .qb-logo {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 24px;
            color: white;
            position: relative;
            overflow: hidden;
            animation: logoFloat 3s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-5px) rotate(2deg); }
        }

        .qb-logo::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg) translateX(-100%);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: rotate(45deg) translateX(-100%); }
            100% { transform: rotate(45deg) translateX(100%); }
        }

        .logo-text {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 20px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header-phone {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 700;
            color: var(--qb-green);
            text-decoration: none;
            padding: 12px 24px;
            background: var(--gradient-3);
            border-radius: 12px;
            border: 2px solid var(--qb-green);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(44, 160, 28, 0.4); }
            50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(44, 160, 28, 0); }
        }

        .header-phone:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        /* Metadata Bar */
        .metadata-bar {
            background: linear-gradient(90deg, #f7fafc 0%, #edf2f7 100%);
            padding: 0.75rem 2rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .metadata-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.875rem;
            color: #4a5568;
        }

        .metadata-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .rating-display {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--qb-orange);
        }

        .stars {
            color: #FFD700;
            font-size: 1rem;
        }

        /* Hero Section */
        .hero {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: #4a5568;
            margin-bottom: 2rem;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: nowrap;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .btn-primary, .btn-secondary {
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: white;
            color: var(--qb-green);
            border: 2px solid var(--qb-green);
        }

        .btn-secondary:hover {
            background: var(--qb-green);
            color: white;
        }

        .hero-visual {
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .support-card {
            background: white;
            border-radius: 24px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .support-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-1);
        }

        .support-features {
            list-style: none;
        }

        .support-features li {
            padding: 1rem 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.125rem;
            animation: slideInRight 0.5s ease-out both;
        }

        .support-features li:nth-child(1) { animation-delay: 0.8s; }
        .support-features li:nth-child(2) { animation-delay: 1s; }
        .support-features li:nth-child(3) { animation-delay: 1.2s; }
        .support-features li:nth-child(4) { animation-delay: 1.4s; }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .checkmark {
            width: 24px;
            height: 24px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

        /* Trust Badges */
        .trust-badges {
            max-width: 1400px;
            margin: 4rem auto;
            padding: 2rem;
            text-align: center;
        }

        .trust-badges h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #4a5568;
        }

        .badges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .badge {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .badge:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .badge-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .badge h4 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--qb-green);
        }

        /* Case Study Section */
        .case-study {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 4rem 2rem;
            background: 
                linear-gradient(135deg, rgba(44, 160, 28, 0.08) 0%, rgba(0, 119, 197, 0.08) 50%, rgba(255, 107, 0, 0.06) 100%);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .case-study::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 50%, rgba(44, 160, 28, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 119, 197, 0.12) 0%, transparent 50%);
            animation: rotateGradient 20s linear infinite;
        }

        .case-study::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(44, 160, 28, 0.03) 20px, rgba(44, 160, 28, 0.03) 40px),
                repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(0, 119, 197, 0.03) 20px, rgba(0, 119, 197, 0.03) 40px);
            animation: slideTexture 40s linear infinite;
        }

        @keyframes rotateGradient {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes slideTexture {
            from { background-position: 0 0, 0 0; }
            to { background-position: 100px 100px, -100px -100px; }
        }

        /* Floating animated particles */
        .case-study-particle {
            position: absolute;
            background: radial-gradient(circle, rgba(44, 160, 28, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .particle-1 {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 5%;
            animation: float1 15s ease-in-out infinite;
        }

        .particle-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 8%;
            animation: float2 18s ease-in-out infinite;
        }

        .particle-3 {
            width: 80px;
            height: 80px;
            bottom: 15%;
            left: 15%;
            animation: float3 12s ease-in-out infinite;
        }

        .particle-4 {
            width: 120px;
            height: 120px;
            top: 40%;
            right: 20%;
            animation: float4 20s ease-in-out infinite;
        }

        @keyframes float1 {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            50% { transform: translate(30px, -30px) scale(1.2); opacity: 0.5; }
        }

        @keyframes float2 {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.25; }
            50% { transform: translate(-40px, 40px) scale(1.3); opacity: 0.45; }
        }

        @keyframes float3 {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
            50% { transform: translate(25px, 25px) scale(1.1); opacity: 0.5; }
        }

        @keyframes float4 {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            50% { transform: translate(-35px, -35px) scale(1.25); opacity: 0.48; }
        }

        .case-study-content {
            position: relative;
            z-index: 1;
        }

        /* Hero Image Section */
        .hero-image-section {
            max-width: 1400px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(44, 160, 28, 0.1) 0%, rgba(0, 119, 197, 0.1) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .hero-image-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 52.5%; /* 1200:630 aspect ratio */
            background: linear-gradient(135deg, #2CA01C 0%, #0077C5 50%, #FF6B00 100%);
            overflow: hidden;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hero-image-container:hover .hero-image {
            transform: scale(1.05);
        }

        /* Placeholder Image Content */
        .hero-image-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 3rem;
            background: 
                linear-gradient(135deg, rgba(44, 160, 28, 0.95) 0%, rgba(0, 119, 197, 0.95) 50%, rgba(255, 107, 0, 0.95) 100%),
                repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 40px);
            animation: gradientShift 10s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-image-placeholder h3 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: pulse 2s ease-in-out infinite;
        }

        .hero-image-placeholder p {
            font-size: 1.5rem;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .hero-image-stats {
            display: flex;
            gap: 3rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-stat-item {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-stat-label {
            font-size: 1rem;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .case-study h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: center;
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .case-study-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: #4a5568;
            margin-bottom: 3rem;
        }

        .case-study-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .case-study-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .case-study-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .case-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .case-study-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--qb-dark-green);
        }

        .case-study-card p {
            color: #4a5568;
            line-height: 1.8;
        }

        .case-study-details {
            background: white;
            padding: 3rem;
            border-radius: 16px;
            margin-top: 3rem;
            box-shadow: var(--shadow-md);
        }

        .case-study-details h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--qb-green);
        }

        .case-timeline {
            border-left: 3px solid var(--qb-green);
            padding-left: 2rem;
            margin-left: 1rem;
        }

        .timeline-item {
            margin-bottom: 2rem;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0;
            width: 16px;
            height: 16px;
            background: var(--qb-green);
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--qb-green);
        }

        .timeline-item h4 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--qb-dark-green);
        }

        .timeline-item p {
            color: #4a5568;
            line-height: 1.8;
        }

        /* Client Reviews Carousel */
        .reviews-section {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 0 2rem;
            overflow: hidden;
        }

        .reviews-section h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .reviews-stats {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 1.25rem;
            color: #4a5568;
        }

        .reviews-stats .stars {
            font-size: 1.5rem;
            margin: 0 8px;
        }

        .carousel-container {
            position: relative;
            padding: 2rem 0;
        }

        .carousel-track {
            display: flex;
            gap: 2rem;
            animation: scrollLeft 60s linear infinite;
            will-change: transform;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .review-card {
            min-width: 320px;
            max-width: 350px;
            background: white;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .client-info h4 {
            font-size: 1.125rem;
            margin-bottom: 0.25rem;
            color: #2d3748;
        }

        .client-designation {
            font-size: 0.875rem;
            color: #718096;
        }

        .review-rating {
            color: #FFD700;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .review-text {
            color: #4a5568;
            line-height: 1.8;
            font-style: italic;
        }

        /* Statistics Section */
        .stats-section {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 0 2rem;
        }

        .stats-container h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stats-intro {
            text-align: center;
            font-size: 1.125rem;
            color: #4a5568;
            margin-bottom: 3rem;
        }

        .stats-table-wrapper {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-md);
            border: 1px solid #e2e8f0;
        }

        .table-heading {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: var(--qb-dark-green);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .table-responsive {
            overflow-x: auto;
            border-radius: 12px;
        }

        .stats-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }

        .stats-table thead {
            background: var(--gradient-1);
            color: white;
        }

        .stats-table thead th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            white-space: nowrap;
        }

        .stats-table tbody tr {
            border-bottom: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .stats-table tbody tr:hover {
            background: #f7fafc;
            transform: scale(1.01);
        }

        .stats-table tbody td {
            padding: 1rem;
            color: #2d3748;
        }

        .stats-table tbody td:first-child {
            font-weight: 500;
        }

        .total-row {
            background: linear-gradient(90deg, rgba(44, 160, 28, 0.1) 0%, rgba(0, 119, 197, 0.1) 100%);
            font-weight: 600;
        }

        .total-row td {
            padding: 1.25rem 1rem;
            border-top: 2px solid var(--qb-green);
            border-bottom: 2px solid var(--qb-green);
        }

        .growth-positive {
            color: var(--qb-green);
            font-weight: 600;
        }

        /* Stats Insights */
        .stats-insights {
            background: linear-gradient(135deg, rgba(44, 160, 28, 0.05) 0%, rgba(0, 119, 197, 0.05) 100%);
            border-radius: 16px;
            padding: 3rem 2rem;
            margin-top: 3rem;
        }

        .stats-insights h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--qb-dark-green);
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .insight-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border-left: 4px solid var(--qb-green);
        }

        .insight-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .insight-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .insight-card h4 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--qb-dark-green);
        }

        .insight-card p {
            color: #4a5568;
            line-height: 1.7;
        }

        /* FAQ Section */
        .faq-section {
            max-width: 1000px;
            margin: 6rem auto;
            padding: 0 2rem;
        }

        .faq-section h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faq-intro {
            text-align: center;
            font-size: 1.125rem;
            color: #4a5568;
            margin-bottom: 3rem;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid #e2e8f0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.125rem;
            color: #2d3748;
            background: white;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f7fafc;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--qb-green);
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #4a5568;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        /* CTA Section */
        .cta-section {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 0 2rem;
        }

        .cta-box {
            background: var(--gradient-1);
            border-radius: 24px;
            padding: 4rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 15s linear infinite;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-box h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .cta-box p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-phone {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            padding: 1.5rem 3rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 2px solid white;
            transition: all 0.3s ease;
        }

        .cta-phone:hover {
            background: white;
            color: var(--qb-green);
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            color: white;
            padding: 4rem 2rem 2rem;
            margin-top: 6rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--qb-green);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section ul li a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #cbd5e0;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--qb-green);
            transform: translateY(-3px);
        }

        /* Schema Markup Display */
        .schema-info {
            background: #f7fafc;
            padding: 1rem;
            border-radius: 8px;
            margin: 2rem 0;
            font-size: 0.875rem;
            color: #718096;
            border-left: 4px solid var(--qb-green);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .header-phone {
                font-size: 1.125rem;
                padding: 10px 16px;
            }

            .case-study h2, .reviews-section h2, .faq-section h2, .cta-box h2 {
                font-size: 2rem;
            }

            .review-card {
                min-width: 280px;
                max-width: 320px;
            }

            .metadata-content {
                justify-content: center;
            }

            .stats-container h2 {
                font-size: 2rem;
            }

            .table-heading {
                font-size: 1.5rem;
            }

            .stats-table {
                font-size: 0.85rem;
            }

            .stats-table thead th,
            .stats-table tbody td {
                padding: 0.75rem 0.5rem;
            }

            .insights-grid {
                grid-template-columns: 1fr;
            }

            /* Keep buttons on one line for tablets */
            .btn-primary, .btn-secondary {
                padding: 0.875rem 1.5rem;
                font-size: 0.95rem;
            }
        }

        @media (min-width: 641px) and (max-width: 968px) {
            /* Force buttons to stay on one line for medium screens */
            .hero-cta {
                flex-wrap: nowrap;
            }
        }

        @media (max-width: 640px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-cta {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
                white-space: normal;
                text-align: center;
            }

            .cta-phone {
                font-size: 1.5rem;
                padding: 1rem 2rem;
            }

            .hero-image-placeholder h3 {
                font-size: 2rem;
            }

            .hero-image-placeholder p {
                font-size: 1.125rem;
            }

            .hero-stat-number {
                font-size: 2rem;
            }

            .hero-image-stats {
                gap: 1.5rem;
            }
        }
