/* GrantBot.co Color System - CSS Variables */
:root {
  /* Brand Colors - Exact GrantBot.co Values */
  --brand--gold: #D4AF37;
  --brand--lite-purple: #9B59B6;
  --brand--teal: #1ABC9C;

  /* Extended Brand Colors */
  --ctc--gold-100: #D4AF37;
  --ctc--light-purple-100: #9B59B6;
  --ctc--teal-100: #1ABC9C;

  /* Neutral Colors */
  --neutral--100: #FFFFFF;
  --neutral--200: #CCCCCC;
  --neutral--300: #999999;
  --neutral--400: #666666;
  --neutral--500: #444444;

  /* Background Colors */
  --bg--primary: #FFFFFF;
  --bg--secondary: #F5F5F5;
  --bg--gradient: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);

  /* Primary Foreground */
  --primary-foreground: #000000;

  /* Animation Speeds */
  --gradient-speed-slow: 3s;
  --gradient-speed-medium: 2s;
  --gradient-speed-fast: 1.5s;

  /* Responsive Typography - Matching GrantBot.co */
  --hero-title-mobile: calc(1.5rem + 2.5vw);
  --hero-title-tablet: calc(2.5rem + 1.5vw);
  --hero-title-desktop: calc(3.5rem + 0.5vw);

  --heading-mobile: calc(1.25rem + 1.5vw);
  --heading-tablet: calc(1.75rem + 1vw);
  --heading-desktop: calc(2rem + 0.5vw);

  --subheading-mobile: calc(1rem + 1vw);
  --subheading-tablet: calc(1.25rem + 0.5vw);
  --subheading-desktop: calc(1.5rem + 0.25vw);

  /* Fragment Font Responsive Typography */
  --fragment-h1-mobile: calc(2.5rem + 3vw);
  --fragment-h1-tablet: calc(3.5rem + 2vw);
  --fragment-h1-desktop: calc(4rem + 1vw);

  --fragment-h2-mobile: calc(1.5rem + 2vw);
  --fragment-h2-tablet: calc(2rem + 1.5vw);
  --fragment-h2-desktop: calc(2.5rem + 1vw);
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--primary-foreground);
    background-color: var(--bg--primary);
    overflow-x: hidden;
}

/* Custom Font Definitions */
@font-face {
    font-family: 'ivyepic-variable';
    src: url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
}

/* Typography - Updated to match GrantBot.co */
.font-primary {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
}

.font-secondary {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.font-semibold {
    font-weight: 600;
}

.font-light {
    font-weight: 300;
}

/* Legacy Classes - Updated to use Inter */
.font-ivyepic {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Responsive typography for Fragment font */
.font-fragment {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: var(--fragment-h2-mobile);
    line-height: 1.2;
}

/* H1 specific styling with Fragment font */
h1.font-fragment {
    font-size: var(--fragment-h1-mobile);
    line-height: 1.1;
    font-weight: 600;
}

@media (min-width: 768px) {
    .font-fragment {
        font-size: var(--fragment-h2-tablet);
    }

    h1.font-fragment {
        font-size: var(--fragment-h1-tablet);
    }
}

@media (min-width: 1024px) {
    .font-fragment {
        font-size: var(--fragment-h2-desktop);
    }

    h1.font-fragment {
        font-size: var(--fragment-h1-desktop);
    }
}

/* Solutions Cards Styling */
.solution-card {
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Solution card icon gradients */
.solution-card .bg-gradient-to-br {
    position: relative;
    overflow: hidden;
}

.solution-card .bg-gradient-to-br::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .bg-gradient-to-br::before {
    opacity: 1;
}

/* Solution card text styling */
.solution-card h3 {
    transition: color 0.3s ease;
    color: #000000;
}

.solution-card:hover h3 {
    color: #000000;
}

.solution-card p {
    color: rgba(0, 0, 0, 0.7);
    transition: color 0.3s ease;
}

.solution-card:hover p {
    color: rgba(0, 0, 0, 0.8);
}

/* Solutions Grid Specific Layout */
.solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: repeat(2, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
}

@media (max-width: 767px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 1.5rem;
    }
}

/* Responsive adjustments for solution cards */
@media (max-width: 768px) {
    .solution-card {
        padding: 1.5rem;
    }

    .solution-card .w-20 {
        width: 4rem;
        height: 4rem;
    }

    .solution-card .w-10 {
        width: 1.5rem;
        height: 1.5rem;
    }

    .solution-card h3 {
        font-size: 1.125rem;
    }

    .solution-card p {
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .solution-card {
        padding: 1.25rem;
    }

    .solution-card .w-20 {
        width: 3.5rem;
        height: 3.5rem;
    }

    .solution-card .w-10 {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.font-public-sans {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: #9B59B6;
    color: #FFFFFF;
}

/* Focus States */
:focus {
    outline: 2px solid #9B59B6;
    outline-offset: 2px;
}

/* Background Pattern */
.bg-pattern {
    background-image: url('../images/graphics/outline-x.svg');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.1;
}

/* Header Styles */
header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Navigation Links */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FFFFFF;
    transition: width 0.3s ease;
}

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

/* Button Styles */
.btn-primary {
    background: #FFFFFF;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid #FFFFFF;
}

.btn-primary:hover {
    background: #000000;
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid #FFFFFF;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #000000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    max-width: 1400px;
}

.hero p {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    line-height: 1.4;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.95;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Services Section Alternating Layout */
.service-alternating {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #1F2937;
}

.service-alternating:nth-child(even) {
    flex-direction: row-reverse;
}

.service-alternating .service-content {
    flex: 1;
}

.service-alternating .service-icon {
    width: 8rem;
    height: 8rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-alternating h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.service-alternating p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-alternating .service-link {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.service-alternating .service-link:hover {
    background: #FFFFFF;
    color: #000000;
}

/* Service Cards */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 0;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Testimonials */
.testimonial-slider {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-content blockquote {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 300;
}

.testimonial-content cite {
    font-style: normal;
    font-size: 1.125rem;
}

.testimonial-author {
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-role {
    opacity: 0.7;
    font-size: 1rem;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #4B5563;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background-color: #FFFFFF;
    width: 2rem;
}

/* Statistics Section */
.stats-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    color: #8f33ee;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-description {
    font-size: 0.95rem;
    color: #9CA3AF;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #9CA3AF;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Client Logos Section */
.client-logos-section {
    padding: 4rem 0;
    border-top: 1px solid #1F2937;
    border-bottom: 1px solid #1F2937;
}

.client-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    opacity: 0.6;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    max-width: 160px;
    height: 40px;
}

.client-logo-item img {
    max-width: 100%;
    max-height: 40px;
    filter: grayscale(100%) brightness(0) invert(1);
    transition: all 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Problem Benefits List */
.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #FFFFFF;
}

.benefits-list .check-icon {
    color: #10B981;
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Service Icons Styling */
.service-alternating .service-icon {
    background: rgba(143, 51, 238, 0.08);
    border: 1px solid rgba(143, 51, 238, 0.2);
}

.service-item .service-icon {
    background: rgba(143, 51, 238, 0.08);
    border: 1px solid rgba(143, 51, 238, 0.2);
}

/* Service Icon Images */
.service-icon img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.service-alternating .service-icon img {
    width: 4rem;
    height: 4rem;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

.hero + section {
    padding-top: 6rem;
}

/* GrantBot.co Rainbow Button System & Animations */

/* Keep only necessary animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

/* Rainbow Button Base Class */
.rainbow-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.75rem;
    padding: 0.5rem 2rem;
    font-weight: 500;
    color: #FFFFFF;
    border: none;
    border-radius: 0.75rem;
    background-color: #3B82F6;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.rainbow-button:hover {
    background-color: #2563EB;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Rainbow animations removed */

/* Enhanced Rainbow Button for Hero CTA */
.rainbow-button-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    padding: 0.75rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    border: none;
    border-radius: 0.75rem;
    background-color: #3B82F6;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.rainbow-button-hero:hover {
    background-color: #2563EB;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Navigation Links with Simple Underline */
.nav-link {
    position: relative;
    color: var(--neutral--100);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3B82F6;
    transition: width 0.3s ease;
}

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

/* Hero Section Background Effects - Enhanced for GrantBot.co Match */
.hero-enhanced {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 50%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
}

/* Hero constellation removed */

/* Garantir que o conteúdo do hero fique sobre as esferas */
.hero-enhanced .container {
    position: relative;
    z-index: 10;
}

.hero-enhanced .hero-content {
    position: relative;
    z-index: 10;
}

/* Social Proof dentro do Hero */
.hero-enhanced .hero-social-proof {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-enhanced .hero-social-proof p {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-enhanced .hero-social-proof .client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
    margin-top: 2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-enhanced .hero-social-proof .client-logos:hover {
    opacity: 0.9;
}

/* Hero Image Styling */
.hero-image {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
}

/* Mobile Hero Image Adjustments */
@media (max-width: 1024px) {
    .hero-image {
        max-width: 590px;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-image {
        max-width: 490px;
        margin-top: 3rem;
    }
}

@media (max-width: 640px) {
    .hero-image {
        max-width: 390px;
        margin-top: 2rem;
    }
}

/* Hero Background Image Setup */
.hero-background {
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-image-bg {
    position: absolute;
    top: calc(50% - 120px);
    right: calc(-40% + 482px);
    transform: translateY(-50%) scaleX(-1);
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    /* Back to original size */
    width: 57.5%;
    height: 57.5%;
    object-fit: contain;
    object-position: right center;
    opacity: 0.9;
}

/* Responsive adjustments for background hero image */
@media (max-width: 1024px) {
    .hero-image-bg {
        width: 46%;
        height: 46%;
        right: calc(-45% + 482px);
        top: calc(50% - 120px);
    }
}

@media (max-width: 768px) {
    .hero-image-bg {
        width: 40.25%;
        height: 40.25%;
        right: calc(-40% + 482px);
        top: calc(50% - 120px);
        opacity: 0.7;
    }
}

@media (max-width: 640px) {
    .hero-image-bg {
        width: 34.5%;
        height: 34.5%;
        right: calc(-45% + 482px);
        top: calc(50% - 120px);
        opacity: 0.6;
    }
}

.hero-enhanced .hero-social-proof .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    transition: all 0.3s ease;
}

.hero-enhanced .hero-social-proof .client-logo:hover {
    transform: translateY(-2px);
    opacity: 1 !important;
}

.hero-enhanced .hero-social-proof .client-logo img {
    height: 100%;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(0);
}

.hero-enhanced .hero-social-proof .client-logo:hover img {
    opacity: 1;
    filter: brightness(0);
}

/* Responsive para Social Proof no Hero */
@media (max-width: 768px) {
    .hero-enhanced .hero-social-proof {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }

    .hero-enhanced .hero-social-proof .client-logos {
        gap: 1.5rem 2rem;
    }

    .hero-enhanced .hero-social-proof .client-logo {
        height: 1.5rem;
    }
}

/* Hero background effects removed */

/* Service Cards with Gradient Effects */
.service-card-enhanced {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card-enhanced:hover::before {
    left: 100%;
}

.service-card-enhanced:hover {
    transform: translateY(-4px);
    border-color: var(--brand--lite-purple);
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.15);
}

/* Testimonial Avatar with Shimmer Effect */
.testimonial-avatar-enhanced {
    background: #3B82F6;
    position: relative;
    overflow: hidden;
}

.testimonial-avatar-enhanced::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

/* Enhanced Testimonial Dots */
.testimonial-dot-enhanced {
    width: 12px;
    height: 12px;
    background-color: var(--neutral--300);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot-enhanced.active {
    background: #3B82F6;
    width: 32px;
    border-radius: 6px;
}

/* FAQ Accordion with Gradient Accent */
.faq-item-enhanced {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-enhanced:hover {
    border-color: var(--brand--lite-purple);
}

.faq-question-enhanced {
    background: transparent;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question-enhanced::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #3B82F6;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-question-enhanced:hover::before {
    transform: scaleY(1);
}

/* Featured Pricing Card */
.pricing-card-featured-enhanced {
    border: 3px solid #3B82F6;
    background: #FFFFFF;
    position: relative;
    transform: scale(1.05);
    border-radius: 0.5rem;
}


/* Enhanced Form Inputs */
.form-input-enhanced {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #000000;
    transition: all 0.3s ease;
}

.form-input-enhanced:focus {
    border-color: var(--brand--lite-purple);
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.1);
    outline: none;
}

/* Footer Links with Gradient */
.footer-link-enhanced {
    color: var(--neutral--300);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link-enhanced::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3B82F6;
    transition: width 0.3s ease;
}

.footer-link-enhanced:hover::after {
    width: 100%;
}

/* Progress Bar Component Styles */
.progress-bar-container {
    text-align: center;
}

.progress-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.progress-text {
    color: var(--neutral--100);
    font-size: 0.875rem;
    font-weight: 500;
}

.progress-percentage {
    color: var(--neutral--300);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Progress Bar Track */
.progress-bar-track {
    width: 100%;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
}

/* Progress Bar Fill with Simple Gradient */
.progress-bar-fill {
    height: 100%;
    background: #3B82F6;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
}

/* Responsive Typography - Hero Title */
.hero-enhanced h1 {
    font-size: var(--hero-title-mobile);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-enhanced h1 {
        font-size: var(--hero-title-tablet);
    }
}

@media (min-width: 1024px) {
    .hero-enhanced h1 {
        font-size: var(--hero-title-desktop);
    }
}

/* Section Headings Responsive Typography */
.section-title {
    font-size: var(--heading-mobile);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--heading-tablet);
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: var(--heading-desktop);
    }
}

/* Mobile Optimizations for Progress Bar */
@media (max-width: 768px) {
    .progress-bar-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .progress-text {
        font-size: 1rem;
    }

    .progress-percentage {
        font-size: 1.125rem;
    }

    .progress-bar-track {
        height: 0.75rem;
    }

    /* Hero Section Mobile Optimizations */
    .hero-enhanced {
        min-height: auto;
        padding: 4rem 0;
    }

    .progress-bar-container {
        margin-top: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-enhanced {
        padding: 3rem 0;
    }

    .progress-bar-container {
        margin-top: 1.5rem;
    }
}

/* Mobile Optimizations for Alternating Layout */
@media (max-width: 768px) {
    .service-alternating {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .service-alternating:nth-child(even) {
        flex-direction: column;
    }

    .service-alternating .service-icon {
        width: 6rem;
        height: 6rem;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .client-logos-grid {
        gap: 2rem;
    }

    .client-logo-item {
        min-width: 100px;
        max-width: 120px;
    }
}

/* Pricing Cards */
.pricing-card {
    border: 1px solid #374151;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid #FFFFFF;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-card h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.pricing-price {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1;
}

.pricing-description {
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.pricing-features .check-icon {
    color: #10B981;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #374151;
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    border-color: #4B5563;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #374151;
    background: transparent;
    display: none;
}

.faq-answer.show {
    display: block;
}

/* Footer */
footer {
    border-top: 1px solid #374151;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #FFFFFF;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #6B7280;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: #FFFFFF;
    color: #000000;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #F3F4F6;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #9CA3AF;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero p {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }

    .section-header h2 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .testimonial-content blockquote {
        font-size: clamp(1.25rem, 3vw, 1.5rem);
    }

    .pricing-card {
        margin-bottom: 1rem;
    }

    .faq-question {
        font-size: 1.125rem;
    }

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .process-step {
        margin-bottom: 0;
    }

    .pricing-card {
        margin-bottom: 0;
    }
}

/* Desktop Responsive Styles */
@media (min-width: 1025px) {
    .service-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        align-items: start;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Process Flow Section - Enhanced Layout */
.process-flow-section {
    padding: 4rem 0;
    position: relative;
}

.process-flow-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    align-items: center;
    z-index: 1;
}

/* Connecting Lines Between Phases */
.process-flow-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: rgba(59, 130, 246, 0.3);
    z-index: 0;
}

/* Enhanced Phase Cards */
.process-phase-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.process-phase-card:nth-child(1) { animation-delay: 0.1s; border-color: rgba(59, 130, 246, 0.3); }
.process-phase-card:nth-child(2) { animation-delay: 0.2s; border-color: rgba(59, 130, 246, 0.3); }
.process-phase-card:nth-child(3) { animation-delay: 0.3s; border-color: rgba(59, 130, 246, 0.3); }
.process-phase-card:nth-child(4) { animation-delay: 0.4s; border-color: rgba(59, 130, 246, 0.3); }

.process-phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
}

/* Enhanced Number Badges */
.phase-number-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.enhanced-phase-1 .phase-number-badge {
    background: #3B82F6;
    color: #FFFFFF;
}

.enhanced-phase-2 .phase-number-badge {
    background: #3B82F6;
    color: #FFFFFF;
}

.enhanced-phase-3 .phase-number-badge {
    background: #3B82F6;
    color: #FFFFFF;
}

.enhanced-phase-4 .phase-number-badge {
    background: #3B82F6;
    color: #FFFFFF;
}

/* Pulse Animation for Number Badges */
.phase-number-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Phase Icons */
.phase-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.enhanced-phase-1 .phase-icon {
    color: #3B82F6;
}

.enhanced-phase-2 .phase-icon {
    color: #3B82F6;
}

.enhanced-phase-3 .phase-icon {
    color: #3B82F6;
}

.enhanced-phase-4 .phase-icon {
    color: #3B82F6;
}

.process-phase-card:hover .phase-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Enhanced Typography */
.phase-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #000000;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.phase-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

/* Phase Duration */
.phase-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.time-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* Hover Effects */
.process-phase-card:hover .phase-title {
    color: #000000;
    transform: scale(1.02);
}

.process-phase-card:hover .phase-description {
    color: rgba(0, 0, 0, 0.8);
}

.process-phase-card:hover .phase-duration {
    color: rgba(0, 0, 0, 0.7);
}

.process-phase-card:hover .time-icon {
    opacity: 1;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .process-flow-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-flow-container::before {
        top: 25%;
        height: 1px;
    }

    .process-phase-card:nth-child(odd)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -15px;
        width: 15px;
        height: 1px;
        background: linear-gradient(90deg, currentColor, transparent);
    }

    .process-phase-card:nth-child(1)::after { color: #3B82F6; }
    .process-phase-card:nth-child(3)::after { color: #3B82F6; }
}

@media (max-width: 768px) {
    .process-flow-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-flow-container::before {
        display: none;
    }

    .process-phase-card {
        padding: 1.5rem;
    }

    .phase-number-badge {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }

    .phase-title {
        font-size: 1.25rem;
    }

    .phase-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .process-flow-section {
        padding: 3rem 0;
    }

    .process-phase-card {
        padding: 1.25rem;
    }

    .phase-number-badge {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .phase-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .phase-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .phase-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

/* Hybrid Solutions Section Styles */
.hybrid-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.hybrid-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}


.hybrid-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: #FFFFFF;
    border-color: #3B82F6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.dashboard-icon {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    transform: translateX(-22px);
}

.dashboard-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.hybrid-card:hover .dashboard-icon {
    transform: translateX(-22px);
}


.hybrid-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #000000;
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    text-align: left;
}

.hybrid-card p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.highlight-button {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3B82F6 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 2rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    border: none !important;
    cursor: pointer !important;
}

.highlight-button:hover {
    background: rgba(59, 130, 246, 0.25) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
    color: #2563EB !important;
}

.highlight-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

/* Responsive adjustments for hybrid cards */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        justify-content: center;
    }

    .hybrid-card h3 {
        text-align: center;
    }

    .hybrid-card p {
        text-align: center;
    }
}

    .dashboard-icon {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 640px) {
    .dashboard-icon {
        width: 100px;
        height: 100px;
        transform: translateX(-15px);
    }

    .hybrid-card:hover .dashboard-icon {
        transform: translateX(-15px);
    }
}

@media (max-width: 480px) {
    .dashboard-icon {
        width: 90px;
        height: 90px;
        transform: translateX(-10px);
    }

    .hybrid-card:hover .dashboard-icon {
        transform: translateX(-10px);
    }

    .hybrid-card {
        padding: 1.5rem;
    }
}

/* Código movido para hero-enhanced - mantendo apenas uma implementação */

/* Print Styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }

    header,
    footer,
    .btn-primary,
    .btn-secondary,
    .rainbow-button,
    .rainbow-button-hero {
        display: none !important;
    }

    .hero {
        min-height: auto !important;
        padding: 2rem 0 !important;
    }
}

/* Glow balls removed */

/* Process glow balls removed */

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(180deg, #E0F2FE 0%, #F0F9FF 50%, #FFFFFF 100%);
}

.how-it-works-card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.how-it-works-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.step-number-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #0D9488;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-number-badge.step-2 {
    background: #3B82F6;
}

.step-number-badge.step-3 {
    background: #3B82F6;
}

.step-number-badge.step-4 {
    background: #0D9488;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.step-actor {
    color: #0D9488;
}

.step-actor-qx {
    color: #3B82F6;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.step-label {
    font-weight: 600;
    color: #374151;
}

.step-time {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #6B7280;
}

.step-callout {
    background: #FEF3C7;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #92400E;
    margin-top: 0.5rem;
}

.step-callout .callout-icon {
    margin-right: 0.25rem;
}

/* How It Works Bottom Features */
.how-it-works-feature {
    background: #FFFFFF;
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.how-it-works-feature:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.how-it-works-feature .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.how-it-works-feature .feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.how-it-works-feature .feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #6B7280;
}

/* Responsive How It Works */
@media (max-width: 768px) {
    .how-it-works-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .step-number-badge {
        margin: 0 auto;
    }

    .step-content {
        text-align: center;
    }

    .step-callout {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .how-it-works-card {
        padding: 1.25rem;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

/* Who It's For Section */
.who-its-for-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.who-stat-card {
    background: #FFFFFF;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 130px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.who-stat-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.who-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 0.5rem;
}

.who-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #6B7280;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .who-its-for-section .flex-wrap {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .who-stat-card {
        padding: 1.25rem 1.5rem;
        min-width: 100px;
    }

    .who-stat-number {
        font-size: 1.5rem;
    }
}

/* Why QX Section */
.why-qx-section {
    background: linear-gradient(180deg, #E0F2FE 0%, #F0F9FF 100%);
}

.why-qx-card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-qx-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.why-qx-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.why-qx-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-qx-card {
        padding: 1.25rem;
    }
}

