/* Design Ultra-Moderno e Minimalista para Páginas de Produtos */

/* Reset e variáveis CSS */
:root {
    --primary-blue: #3b82f6;
    --primary-pink: #ec4899;
    --primary-green: #10b981;
    --primary-purple: #8b5cf6;
    --primary-orange: #f59e0b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Layout Base */
.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .product-container {
        padding: 0 1rem;
    }
}

/* Hero Section Redesenhado */
.product-hero {
    background: linear-gradient(135deg, #fafbff 0%, #f8fafc 50%, #f1f5f9 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Layout Hero Flex */
.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image-wrapper {
    flex: 1;
    max-width: 600px;
}

/* Typography Ultra-Moderna */
.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.hero-title-accent {
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-600);
    max-width: 28rem;
    margin-bottom: 2rem;
}

/* Preços Elegantes */
.price-container {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-main {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    line-height: 1;
}

.price-decimal {
    font-size: 1.25rem;
    color: var(--gray-500);
    font-weight: 300;
}

.price-info {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Botões Premium */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary.pink {
    background: var(--primary-pink);
}

.btn-primary.green {
    background: var(--primary-green);
}

/* Imagens com Efeitos Modernos */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.hero-image-glow {
    position: absolute;
    inset: -1rem;
    border-radius: 2rem;
    opacity: 0.2;
    filter: blur(3rem);
    transition: opacity 0.7s ease;
    z-index: 1;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: var(--shadow-2xl);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Cards de Features Ultra-Modernos */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white !important;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Seção "O que está incluído" */
.included-section {
    background: var(--white);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    margin-top: 3rem;
}

.included-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.included-item {
    text-align: center;
    padding: 1.5rem;
}

.included-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.included-item:hover .included-icon {
    transform: scale(1.1);
}

.included-item-title {
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.included-item-description {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Seção de ROI/Calculator */
.calculator-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 2rem;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.calculator-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.calculator-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.calculator-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.calculator-label {
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.calculator-description {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.roi-highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.roi-highlight .calculator-value {
    color: var(--white);
    font-size: 1.5rem;
}

/* Seção CTA Final */
.final-cta-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1f2937 100%);
    color: var(--white);
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: center;
    margin: 3rem 0;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.final-cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-2xl);
    background: #059669;
}

/* Animações Suaves */
.fade-in-up {
    opacity: 0;
    transform: translateY(2rem);
    animation: fadeInUp 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(2rem);
    animation: slideInRight 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }
    
    .price-main {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .product-hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .feature-card,
    .included-section {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Utilitários de cores */
.bg-blue-50 { background-color: #eff6ff; }
.bg-pink-50 { background-color: #fdf2f8; }
.bg-green-50 { background-color: #ecfdf5; }
.bg-purple-50 { background-color: #f5f3ff; }
.bg-orange-50 { background-color: #fffbeb; }

.text-blue-600 { color: var(--primary-blue); }
.text-pink-600 { color: var(--primary-pink); }
.text-green-600 { color: var(--primary-green); }
.text-purple-600 { color: var(--primary-purple); }
.text-orange-600 { color: var(--primary-orange); }

/* Efeitos especiais para diferentes cores de glow */
.glow-blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
}

.glow-pink {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
}

.glow-green {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}

/* ============================================
   PROFESSIONAL SERVICES SECTION
============================================ */
.professional-services-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 5rem 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-categories {
    display: grid;
    gap: 3rem;
}

.service-category {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.category-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.category-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-item {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.service-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Cores específicas para cada categoria */
.financial-category .category-icon {
    background: linear-gradient(135deg, #059669, #0d9488);
}

.financial-category .service-item {
    border-left-color: #059669;
}

.team-category .category-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.team-category .service-item {
    border-left-color: #2563eb;
}

.growth-category .category-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.growth-category .service-item {
    border-left-color: #7c3aed;
}

.support-category .category-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.support-category .service-item {
    border-left-color: #dc2626;
}

/* Categoria de ferramentas */
.tools-category .category-icon {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.tools-category .service-item {
    border-left-color: #7c3aed;
}

/* ============================================
   CALCULATOR ITEMS
============================================ */
.calculator-item {
    position: relative;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
}

.calc-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calculator-total {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--primary-color);
}

.total-result {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.total-label {
    color: var(--text-primary);
}

.total-value {
    color: var(--primary-color);
    margin-left: 0.5rem;
}

.total-explanation {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   MODERN CTA BUTTON
============================================ */
.cta-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.cta-button-modern {
    background: white;
    color: var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-button-modern:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.cta-button-modern i {
    font-size: 1.5rem;
}

/* ============================================
   CALCULATOR SECTION
============================================ */
.calculator-section {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: white;
    padding: 6rem 0;
}

.calculator-content {
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.calculator-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.calculator-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.calculator-card-text {
    opacity: 0.8;
    line-height: 1.5;
}

.calculator-result {
    text-align: center;
    margin-top: 3rem;
}

.result-highlight {
    background: linear-gradient(135deg, #059669, #0d9488);
    border-radius: 1.5rem;
    padding: 2rem;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.result-value {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.result-accent {
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.result-explanation {
    opacity: 0.9;
    font-size: 1rem;
}

/* ============================================
   COMPARISON SECTION
============================================ */
.comparison-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 2rem;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-before {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-left: 6px solid #ef4444;
}

.comparison-after {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-left: 6px solid #22c55e;
}

.comparison-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.comparison-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.comparison-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-before .comparison-subtitle {
    color: #991b1b;
}

.comparison-after .comparison-subtitle {
    color: #166534;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-before .comparison-list li {
    color: #b91c1c;
}

.comparison-after .comparison-list li {
    color: #15803d;
}

.comparison-result {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   FINAL CTA SECTION
============================================ */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-button:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.cta-button i {
    font-size: 1.5rem;
}

/* ============================================
   RESPONSIVE CALCULATOR & CTA
============================================ */
@media (max-width: 768px) {
    .professional-services-section {
        padding: 4rem 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calc-value {
        font-size: 1.75rem;
    }
    
    .calculator-total {
        padding: 1.5rem;
    }
    
    .total-result {
        font-size: 1.25rem;
    }
    
    .cta-button-modern {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .calculator-section {
        padding: 4rem 0;
    }
    
    .calculator-title {
        font-size: 2rem;
    }
    
    .calculator-subtitle {
        font-size: 1.1rem;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-title {
        font-size: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .final-cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-subtitle {
        font-size: 1.25rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}
