/* GTM Services Exact Design Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.gtm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.gtm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gtm-btn-primary {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}

.gtm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.4);
}

.gtm-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.gtm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.gtm-btn-large {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
}

/* Hero Section */
.gtm-hero {
    background: linear-gradient(135deg, #2E3A8A 0%, #1E3A8A 50%, #1E40AF 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.gtm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.2) 0%, transparent 50%);
}

.gtm-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.gtm-hero-content {
    color: white;
}

.gtm-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gtm-hero-title-white {
    color: white;
    display: block;
}

.gtm-hero-title-yellow {
    color: #FFC107;
    display: block;
    margin-top: 8px;
}

.gtm-hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.gtm-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gtm-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gtm-download-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.gtm-download-icon {
    font-size: 16px;
}

.gtm-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gtm-hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Pain Points Section */
.gtm-pain-points {
    padding: 100px 0;
    background: #ffffff;
}

.gtm-pain-header {
    text-align: center;
    margin-bottom: 80px;
}

.gtm-pain-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gtm-pain-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gtm-pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gtm-pain-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gtm-pain-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gtm-pain-icon {
    width: 24px;
    height: 24px;
    background: #EF4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 4px;
}

.gtm-pain-text {
    flex: 1;
}

.gtm-pain-item-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.gtm-pain-item-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.gtm-pain-image {
    position: relative;
}

.gtm-pain-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gtm-pain-quote {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #3B82F6;
    color: white;
    padding: 20px 24px;
    border-radius: 12px;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.gtm-quote-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.gtm-quote-author {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* Impact Cards Section */
.gtm-impact {
    padding: 100px 0;
    background: #f8fafc;
}

.gtm-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.gtm-impact-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gtm-impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gtm-impact-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gtm-impact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gtm-impact-card:hover .gtm-impact-img {
    transform: scale(1.05);
}

.gtm-impact-content {
    padding: 32px;
}

.gtm-impact-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.gtm-impact-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.gtm-impact-cta {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gtm-container {
        padding: 0 16px;
    }
    
    .gtm-hero {
        padding: 60px 0 80px;
    }
    
    .gtm-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .gtm-hero-title {
        font-size: 40px;
    }
    
    .gtm-hero-description {
        font-size: 18px;
    }
    
    .gtm-hero-buttons {
        justify-content: center;
    }
    
    .gtm-pain-points,
    .gtm-impact {
        padding: 60px 0;
    }
    
    .gtm-pain-title {
        font-size: 36px;
    }
    
    .gtm-pain-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gtm-pain-quote {
        position: static;
        margin-top: 20px;
        max-width: none;
    }
    
    .gtm-impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gtm-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .gtm-btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* GTM Services Section */
.gtm-services {
    padding: 100px 0;
    background: #ffffff;
}

.gtm-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.gtm-services-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gtm-services-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gtm-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.gtm-service-column {
    display: flex;
    flex-direction: column;
}

.gtm-service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.gtm-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gtm-icon-blue {
    background: #3B82F6;
    color: white;
}

.gtm-icon-purple {
    background: #8B5CF6;
    color: white;
}

.gtm-service-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.gtm-service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gtm-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.gtm-check-icon {
    width: 20px;
    height: 20px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.gtm-services-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.gtm-service-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gtm-service-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Additional Services Cards */
.gtm-additional-services {
    padding: 100px 0;
    background: #f8fafc;
}

.gtm-service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gtm-service-card {
    padding: 40px 32px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.gtm-card-blue {
    background: #EFF6FF;
}

.gtm-card-purple {
    background: #F3E8FF;
}

.gtm-card-green {
    background: #ECFDF5;
}

.gtm-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.gtm-card-blue .gtm-card-icon {
    background: #3B82F6;
    color: white;
}

.gtm-card-purple .gtm-card-icon {
    background: #8B5CF6;
    color: white;
}

.gtm-card-green .gtm-card-icon {
    background: #10B981;
    color: white;
}

.gtm-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.gtm-card-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.gtm-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gtm-card-features li {
    font-size: 14px;
    color: #6b7280;
    position: relative;
    padding-left: 16px;
}

.gtm-card-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9CA3AF;
}

/* Custom CTA Section */
.gtm-custom-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), 
                url('../src/assets/custom-workspace-bg.jpg') center/cover;
    position: relative;
    overflow: hidden;
}

.gtm-custom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.gtm-custom-content {
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
}

.gtm-custom-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.gtm-custom-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .gtm-services {
        padding: 60px 0;
    }
    
    .gtm-services-title {
        font-size: 36px;
    }
    
    .gtm-services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gtm-service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .gtm-service-title {
        font-size: 24px;
    }
    
    .gtm-services-images {
        grid-template-columns: 1fr;
    }
    
    .gtm-additional-services {
        padding: 60px 0;
    }
    
    .gtm-service-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gtm-custom-cta {
        padding: 60px 0;
    }
    
    .gtm-custom-title {
        font-size: 40px;
    }
    
    .gtm-custom-description {
        font-size: 18px;
    }
}

/* Packages Section */
.gtm-packages {
    padding: 100px 0;
    background: #ffffff;
}

.gtm-packages-header {
    text-align: center;
    margin-bottom: 80px;
}

.gtm-packages-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gtm-packages-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gtm-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.gtm-package-card {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.gtm-package-card:hover {
    border-color: #e2e8f0;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gtm-package-popular {
    border-color: #3B82F6;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.gtm-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3B82F6;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.gtm-package-header {
    text-align: center;
    margin-bottom: 32px;
}

.gtm-package-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.gtm-package-price {
    font-size: 48px;
    font-weight: 800;
    color: #3B82F6;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.gtm-package-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
}

.gtm-package-features {
    list-style: none;
    margin-bottom: 32px;
}

.gtm-package-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
}

.gtm-package-check {
    width: 20px;
    height: 20px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.gtm-package-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
}

.gtm-package-card:last-child .gtm-package-btn {
    background: #1f2937;
    color: white;
}

.gtm-package-card:last-child .gtm-package-btn:hover {
    background: #111827;
}

/* What's Included Section */
.gtm-whats-included {
    padding: 100px 0;
    background: #f8fafc;
}

.gtm-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gtm-included-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.gtm-included-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gtm-included-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gtm-included-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gtm-icon-document {
    background: #EFF6FF;
    color: #3B82F6;
}

.gtm-icon-target {
    background: #EFF6FF;
    color: #3B82F6;
}

.gtm-icon-users {
    background: #EFF6FF;
    color: #3B82F6;
}

.gtm-included-feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.gtm-included-feature-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.gtm-included-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gtm-included-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Package Inclusions Section */
.gtm-inclusions {
    padding: 100px 0;
    background: #f8fafc;
}

.gtm-inclusions-header {
    text-align: center;
    margin-bottom: 80px;
}

.gtm-inclusions-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gtm-inclusions-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gtm-inclusions-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.gtm-inclusion-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gtm-inclusion-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gtm-inclusion-icon.gtm-icon-document {
    background: #EFF6FF;
    color: #3B82F6;
}

.gtm-inclusion-icon.gtm-icon-target {
    background: #EFF6FF;
    color: #3B82F6;
}

.gtm-inclusion-icon.gtm-icon-users {
    background: #EFF6FF;
    color: #3B82F6;
}

.gtm-inclusion-content {
    flex: 1;
}

.gtm-inclusion-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.gtm-inclusion-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.gtm-inclusions-image {
    text-align: center;
}

.gtm-inclusions-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Consultation Cards Section */
.gtm-consultation {
    padding: 100px 0;
    background: #ffffff;
}

.gtm-consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.gtm-consultation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gtm-consultation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gtm-consultation-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gtm-consultation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gtm-consultation-card:hover .gtm-consultation-img {
    transform: scale(1.05);
}

.gtm-consultation-content {
    padding: 32px;
}

.gtm-consultation-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.gtm-consultation-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.gtm-consultation-link {
    color: #3B82F6;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gtm-consultation-link:hover {
    color: #1E40AF;
}

/* Statistics Cards Section */
.gtm-statistics {
    padding: 100px 0;
    background: #f8fafc;
}

.gtm-statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.gtm-statistic-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gtm-statistic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gtm-statistic-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.gtm-statistic-icon.gtm-icon-yellow {
    background: #FEF3C7;
    color: #F59E0B;
}

.gtm-statistic-icon.gtm-icon-pink {
    background: #FCE7F3;
    color: #EC4899;
}

.gtm-statistic-icon.gtm-icon-purple {
    background: #F3E8FF;
    color: #8B5CF6;
}

.gtm-statistic-content {
    text-align: left;
}

.gtm-statistic-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.gtm-statistic-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.gtm-statistics-image {
    text-align: center;
}

.gtm-statistics-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Final Cards Section */
.gtm-final-cards {
    padding: 100px 0;
    background: #ffffff;
}

.gtm-final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.gtm-final-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gtm-final-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gtm-final-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gtm-final-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gtm-final-card:hover .gtm-final-img {
    transform: scale(1.05);
}

.gtm-final-content {
    padding: 32px;
}

.gtm-final-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.gtm-final-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gtm-final-link {
    color: #3B82F6;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gtm-final-link:hover {
    color: #1D4ED8;
}

/* Updated Responsive Design */
@media (max-width: 768px) {
    .gtm-packages {
        padding: 60px 0;
    }
    
    .gtm-packages-title {
        font-size: 36px;
    }
    
    .gtm-packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gtm-package-popular {
        transform: none;
    }
    
    .gtm-whats-included {
        padding: 60px 0;
    }
    
    .gtm-included-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gtm-included-title {
        font-size: 36px;
    }
    
    .gtm-final-cards {
        padding: 60px 0;
    }
    
    .gtm-final-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Client Success Stories Section */
.gtm-success-stories {
    padding: 100px 0;
    background: #f8fafc;
}

.gtm-success-header {
    text-align: center;
    margin-bottom: 80px;
}

.gtm-success-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gtm-success-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gtm-case-studies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.gtm-case-studies-grid:last-child {
    margin-bottom: 0;
}

.gtm-case-study-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gtm-case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gtm-case-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.gtm-case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gtm-case-study-card:hover .gtm-case-img {
    transform: scale(1.05);
}

.gtm-case-content {
    padding: 40px;
}

.gtm-case-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.gtm-case-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.gtm-case-results {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gtm-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
    font-weight: 500;
}

.gtm-result-check {
    width: 20px;
    height: 20px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

/* 5-Step Process Section */
.gtm-process {
    padding: 100px 0;
    background: #ffffff;
}

.gtm-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.gtm-process-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gtm-process-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gtm-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.gtm-process-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gtm-process-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gtm-process-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gtm-process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gtm-step-number {
    width: 50px;
    height: 50px;
    background: #3B82F6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.gtm-step-content {
    flex: 1;
}

.gtm-step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.gtm-step-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Alternative Process Steps */
.gtm-process-step-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.gtm-process-reverse {
    direction: rtl;
}

.gtm-process-reverse > * {
    direction: ltr;
}

.gtm-process-step-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gtm-process-step-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gtm-process-step-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Documentation Card */
.gtm-documentation-card {
    background: #EFF6FF;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 300px;
    justify-content: center;
}

.gtm-doc-icon {
    width: 80px;
    height: 80px;
    background: #3B82F6;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gtm-doc-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.gtm-doc-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Optimization Card for Step */
.gtm-optimization-card-step {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 300px;
    justify-content: center;
}

.gtm-optimization-icon-step {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gtm-optimization-title-step {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.gtm-optimization-desc-step {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Updated Responsive Design for New Sections */
@media (max-width: 768px) {
    .gtm-success-stories {
        padding: 60px 0;
    }
    
    .gtm-success-title {
        font-size: 36px;
    }
    
    .gtm-case-studies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .gtm-case-content {
        padding: 30px;
    }
    
    .gtm-case-title {
        font-size: 20px;
    }
    
    .gtm-process {
        padding: 60px 0;
    }
    
    .gtm-process-title {
        font-size: 36px;
    }
    
    .gtm-process-step,
    .gtm-process-step.gtm-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .gtm-process-step.gtm-reverse .gtm-step-content,
    .gtm-process-step.gtm-reverse .gtm-step-image {
        order: initial;
    }
    
    .gtm-step-title {
        font-size: 28px;
    }
    
    .gtm-step-description {
        font-size: 16px;
    }
    
    .gtm-process-steps {
        gap: 60px;
    }
    
    .gtm-process-step-alt {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .gtm-process-reverse {
        direction: ltr;
    }
    
    .gtm-process-content {
        gap: 24px;
    }
    
    .gtm-step-title {
        font-size: 20px;
    }
    
    .gtm-documentation-card,
    .gtm-optimization-card-step {
        height: auto;
        min-height: 250px;
    }
}
}

/* Detailed Process Steps Section */
.gtm-detailed-process {
    padding: 100px 0;
    background: #f8fafc;
}

.gtm-detailed-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.gtm-detailed-step:last-child {
    margin-bottom: 0;
}

.gtm-detailed-reverse {
    direction: rtl;
}

.gtm-detailed-reverse > * {
    direction: ltr;
}

.gtm-detailed-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gtm-detailed-number {
    width: 60px;
    height: 60px;
    background: #3B82F6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.gtm-detailed-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.gtm-detailed-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

.gtm-detailed-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gtm-detailed-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Feature Card for Documentation */
.gtm-detailed-feature-card {
    background: #EFF6FF;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.gtm-feature-icon {
    width: 80px;
    height: 80px;
    background: #3B82F6;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gtm-feature-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.gtm-feature-card-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Optimization Card */
.gtm-optimization-card {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.gtm-optimization-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gtm-optimization-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.gtm-optimization-desc {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Ready to Fix CTA Section */
.gtm-ready-cta {
    padding: 100px 0;
    background: #ffffff;
}

.gtm-ready-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.gtm-ready-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gtm-ready-subtitle {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.gtm-ready-btn {
    font-size: 18px;
    padding: 20px 40px;
}

/* Why Choose Our GTM Specialists Section */
.gtm-specialists {
    padding: 100px 0;
    background: #f8fafc;
}

.gtm-specialists-header {
    text-align: center;
    margin-bottom: 80px;
}

.gtm-specialists-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gtm-specialists-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gtm-specialists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.gtm-specialists-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gtm-specialists-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gtm-specialists-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gtm-specialist-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gtm-specialist-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gtm-icon-certified {
    background: #EFF6FF;
    color: #3B82F6;
}

.gtm-icon-performance {
    background: #ECFDF5;
    color: #10B981;
}

.gtm-icon-privacy {
    background: #F3E8FF;
    color: #8B5CF6;
}

.gtm-specialist-text {
    flex: 1;
}

.gtm-specialist-feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.gtm-specialist-feature-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Stats Section */
.gtm-specialists-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.gtm-stat {
    text-align: center;
}

.gtm-stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.gtm-stat-blue {
    color: #3B82F6;
}

.gtm-stat-green {
    color: #10B981;
}

.gtm-stat-purple {
    color: #8B5CF6;
}

.gtm-stat-orange {
    color: #F59E0B;
}

.gtm-stat-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

/* Updated Responsive Design for New Sections */
@media (max-width: 768px) {
    .gtm-detailed-process {
        padding: 60px 0;
    }
    
    .gtm-detailed-step {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .gtm-detailed-reverse {
        direction: ltr;
    }
    
    .gtm-detailed-title {
        font-size: 24px;
    }
    
    .gtm-detailed-description {
        font-size: 16px;
    }
    
    .gtm-ready-cta {
        padding: 60px 0;
    }
    
    .gtm-ready-title {
        font-size: 36px;
    }
    
    .gtm-ready-subtitle {
        font-size: 18px;
    }
    
    .gtm-specialists {
        padding: 60px 0;
    }
    
    .gtm-specialists-title {
        font-size: 36px;
    }
    
    .gtm-specialists-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }
    
    .gtm-specialists-content {
        gap: 30px;
    }
    
    .gtm-specialist-feature-title {
        font-size: 20px;
    }
    
    .gtm-specialists-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .gtm-stat-number {
        font-size: 40px;
    }
}

/* Additional Expertise Section */
.gtm-additional-expertise {
    padding: 100px 0;
    background: #ffffff;
}

.gtm-expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gtm-expertise-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gtm-expertise-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gtm-expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gtm-icon-documentation {
    background: #FEF3C7;
    color: #F59E0B;
}

.gtm-icon-ecommerce {
    background: #FEE2E2;
    color: #EF4444;
}

.gtm-icon-whitelabel {
    background: #EDE9FE;
    color: #8B5CF6;
}

.gtm-expertise-text {
    flex: 1;
}

.gtm-expertise-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.gtm-expertise-desc {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.gtm-expertise-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gtm-expertise-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Industries We Support Section */
.gtm-industries {
    padding: 100px 0;
    background: #f8fafc;
}

.gtm-industries-header {
    text-align: center;
    margin-bottom: 80px;
}

.gtm-industries-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gtm-industries-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gtm-industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.gtm-industries-grid:last-child {
    margin-bottom: 0;
}

.gtm-industry-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gtm-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gtm-industry-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gtm-industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gtm-industry-card:hover .gtm-industry-img {
    transform: scale(1.05);
}

.gtm-industry-content {
    padding: 32px;
}

.gtm-industry-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.gtm-industry-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gtm-industry-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gtm-industry-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.gtm-industry-check {
    width: 16px;
    height: 16px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Updated Responsive Design for New Sections */
@media (max-width: 768px) {
    .gtm-additional-expertise {
        padding: 60px 0;
    }
    
    .gtm-expertise-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gtm-expertise-content {
        gap: 30px;
    }
    
    .gtm-expertise-title {
        font-size: 20px;
    }
    
    .gtm-industries {
        padding: 60px 0;
    }
    
    .gtm-industries-title {
        font-size: 36px;
    }
    
    .gtm-industries-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .gtm-industry-content {
        padding: 24px;
    }
    
    .gtm-industry-title {
        font-size: 20px;
    }
}

/* Custom Integration CTA Section */
.gtm-custom-integration {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.gtm-custom-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
}

.gtm-custom-integration-content {
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.gtm-custom-integration-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #9ca3af;
}

.gtm-custom-integration-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: white;
    opacity: 0.9;
}

/* What Our Clients Say Section */
.gtm-testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.gtm-testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.gtm-testimonials-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gtm-testimonials-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gtm-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gtm-testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f1f5f9;
}

.gtm-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gtm-testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.gtm-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.gtm-author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gtm-author-info {
    flex: 1;
}

.gtm-author-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.gtm-author-title {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 2px;
    font-weight: 500;
}

.gtm-author-company {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
}

.gtm-testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.gtm-star {
    font-size: 16px;
}

.gtm-quote-icon {
    font-size: 48px;
    color: #e5e7eb;
    line-height: 1;
    margin-bottom: 20px;
    font-family: serif;
}

.gtm-testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin: 0;
}

/* Updated Responsive Design for Final Sections */
@media (max-width: 768px) {
    .gtm-custom-integration {
        padding: 60px 0;
    }
    
    .gtm-custom-integration-title {
        font-size: 36px;
    }
    
    .gtm-custom-integration-description {
        font-size: 18px;
    }
    
    .gtm-testimonials {
        padding: 60px 0;
    }
    
    .gtm-testimonials-title {
        font-size: 36px;
    }
    
    .gtm-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gtm-testimonial-card {
        padding: 30px;
    }
    
    .gtm-author-name {
        font-size: 16px;
    }
    
    .gtm-quote-icon {
        font-size: 36px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

/* Left column - Simple FAQ */
.faq-simple-item {
    margin-bottom: 40px;
    padding: 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.faq-solution {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

/* Right column - Accordion FAQ */
.faq-accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 16px;
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-accordion-trigger {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-accordion-trigger:hover {
    background-color: #f8fafc;
}

.faq-accordion-question {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    text-align: left;
    letter-spacing: -0.01em;
}

.faq-accordion-icon {
    font-size: 20px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-accordion-content {
    padding: 0 32px 24px;
    color: #6b7280;
    line-height: 1.6;
    display: none;
    font-size: 16px;
}

.faq-accordion-item.active .faq-accordion-content {
    display: block;
}

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

/* Impact Fixes Section */
.impact-fixes-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.impact-fixes-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.impact-fixes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-fix-card {
    text-align: center;
    padding: 40px 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.impact-fix-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.impact-fix-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.green-icon {
    background-color: #10b981;
    color: white;
}

.blue-icon {
    background-color: #3b82f6;
    color: white;
}

.purple-icon {
    background-color: #8b5cf6;
    color: white;
}

.impact-fix-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.impact-fix-description {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
    font-size: 16px;
}

.impact-fix-image {
    border-radius: 16px;
    overflow: hidden;
}

.impact-fix-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.impact-fix-card:hover .impact-fix-image img {
    transform: scale(1.05);
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.2) 0%, transparent 50%);
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.highlight-text {
    color: #FFC107;
}

.final-cta-subtitle {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.cta-button.primary {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.5);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    padding: 60px 0;
    background: #1e3a8a;
    color: white;
    text-align: center;
}

.footer-text {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-copyright {
    font-size: 16px;
    opacity: 0.8;
    margin: 0;
}

/* Additional responsive design for new sections */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .impact-fixes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .final-cta-title {
        font-size: 40px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
    }
    
    .faq-main-title,
    .impact-fixes-title {
        font-size: 36px;
    }
}

/* Our 5-Step Process Section Styles */
.gtm-process-new {
    padding: 120px 0;
    background: #fff;
}

.gtm-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.gtm-process-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gtm-process-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gtm-process-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.gtm-process-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gtm-process-card.gtm-process-reverse {
    direction: rtl;
}

.gtm-process-card.gtm-process-reverse > * {
    direction: ltr;
}

.gtm-process-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.gtm-process-img {
    width: 100%;
    height: auto;
    display: block;
}

.gtm-process-content {
    padding: 40px;
}

.gtm-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.gtm-process-step-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.gtm-process-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
}

/* Documentation Card Styles */
.gtm-process-icon-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.gtm-doc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #dbeafe;
    border-radius: 50%;
    margin-bottom: 24px;
    color: #3b82f6;
}

.gtm-doc-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.gtm-doc-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Optimization Card Styles */
.gtm-process-optimization-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.gtm-optimization-icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 24px;
    color: white;
}

.gtm-optimization-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.gtm-optimization-card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gtm-process-card {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .gtm-process-card.gtm-process-reverse {
        direction: ltr;
    }
    
    .gtm-process-content {
        padding: 20px;
    }
    
    .gtm-process-title {
        font-size: 2.5rem;
    }
    
    .gtm-process-step-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .gtm-process-new {
        padding: 80px 0;
    }
    
    .gtm-process-cards {
        gap: 60px;
    }
    
    .gtm-process-title {
        font-size: 2rem;
    }
    
    .gtm-process-step-title {
        font-size: 1.5rem;
    }
    
    .gtm-process-icon-card,
    .gtm-process-optimization-card {
        padding: 40px 20px;
    }
}