/**
 * Home Page Redesign V2 - Additional Styles
 * Focus: Software + Backend Service Model
 * Add this to your existing platform.css or include separately
 */

/* ========================================
   HERO SECTION V2 - REDUCED PURPLE
   ======================================== */
.hero-section-v2 {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent);
    pointer-events: none;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Value Proposition Badge */
.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.6s ease;
}

.vs-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantage-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

/* Hero Headline */
.hero-headline {
    line-height: 1.2;
    color: #1e293b;
}

.gradient-text {
    background: linear-gradient(135deg, var(--platform-primary), var(--platform-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Differentiators */
.hero-differentiators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diff-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.diff-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}

.diff-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.diff-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.diff-content strong {
    color: #1e293b;
    font-size: 1rem;
}

.diff-content span {
    color: #64748b;
    font-size: 0.875rem;
}

/* Hero Buttons */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--platform-primary), var(--platform-secondary));
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.btn-hero-outline {
    border: 2px solid var(--platform-primary);
    color: var(--platform-primary);
    background: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: var(--platform-primary);
    color: white;
    transform: translateY(-3px);
}

/* Trust Metrics */
.trust-metrics {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
}

.metric-item i {
    color: var(--platform-primary);
    font-size: 1.25rem;
}

.metric-item strong {
    color: var(--platform-primary);
}

/* Backend Team Visual */
.hero-visual-v2 {
    position: relative;
    height: 500px;
}

.backend-team-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-circle {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--platform-primary), var(--platform-secondary));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    z-index: 2;
}

.center-circle i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.center-circle span {
    font-size: 0.875rem;
    font-weight: 600;
}

.team-member {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.team-member.tm-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.team-member.tm-2 {
    top: 40%;
    right: 0%;
    animation-delay: 1s;
}

.team-member.tm-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.team-member .avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
}

.role-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
    white-space: nowrap;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ========================================
   COMPARISON SECTION - MODERN CARD DESIGN
   ======================================== */
.comparison-section {
    position: relative;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: var(--platform-primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.comparison-cards-modern {
    position: relative;
}

.comparison-card-pro {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.comparison-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.competitor-card {
    border: 2px solid #e5e7eb;
}

.our-card {
    border: 2px solid var(--platform-primary);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.375rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    z-index: 10;
}

.card-header-pro {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
    border-bottom: 1px solid #f1f5f9;
}

.card-icon-pro {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.card-icon-pro.gradient {
    background: linear-gradient(135deg, var(--platform-primary), var(--platform-secondary));
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
}

.comparison-card-pro:hover .card-icon-pro {
    transform: scale(1.08) rotate(-5deg);
}

.card-header-pro h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.card-body-pro {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-list-pro {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item-pro {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-item-pro.positive {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 3px solid #10b981;
}

.feature-item-pro.negative {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 3px solid #ef4444;
}

.feature-item-pro.neutral {
    background: #f8fafc;
    border-left: 3px solid #94a3b8;
}

.feature-item-pro:hover {
    transform: translateX(5px);
}

.feature-icon-pro {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content-pro {
    flex: 1;
}

.feature-content-pro h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.feature-content-pro p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.card-footer-pro {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid #f1f5f9;
}

.outcome-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.outcome-bad {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.outcome-bad i {
    font-size: 1.25rem;
}

.outcome-good {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #166534;
    border: 1px solid #86efac;
}

.outcome-good i {
    font-size: 1.25rem;
}

.comparison-insight {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.comparison-insight h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.comparison-insight p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
}

/* Responsive for comparison cards */
@media (max-width: 991px) {
    .comparison-card-pro {
        margin-bottom: 2rem;
    }
    
    .popular-ribbon {
        top: 15px;
        right: -30px;
        padding: 0.25rem 2.5rem;
        font-size: 0.7rem;
    }
    
    .card-header-pro {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .card-body-pro {
        padding: 1.5rem;
    }
    
    .feature-item-pro {
        padding: 0.875rem;
    }
    
    .comparison-insight {
        padding: 1.5rem;
        text-align: center;
    }
    
    .comparison-insight .btn {
        margin-top: 1rem;
        width: 100%;
    }
}

/* ========================================
   BACKEND TEAMS SECTION
   ======================================== */
.backend-teams-section {
    background: white;
}

.team-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--platform-primary);
}

.team-card.featured {
    border-color: var(--platform-primary);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--platform-primary), var(--platform-secondary));
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.team-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.gradient-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.gradient-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.gradient-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.gradient-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.gradient-purple {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.gradient-dark {
    background: linear-gradient(135deg, #475569, #334155);
}

.team-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.team-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-responsibilities {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.team-responsibilities li {
    padding: 0.5rem 0;
    color: #475569;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.team-responsibilities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Quote Box */
.quote-box,
.insight-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.insight-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #10b981;
}

.insight-box h4 {
    color: #166534;
    font-weight: 700;
}

.quote-box i {
    font-size: 3rem;
    color: var(--platform-primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.quote-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-author {
    color: #1e293b;
    font-size: 1rem;
}

/* ========================================
   CHAPTERS WITH BACKEND SECTION
   ======================================== */
.chapters-backend-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.chapter-backend-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.chapter-backend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-header-section {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.chapter-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--platform-primary), var(--platform-secondary));
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.chapter-info {
    flex: 1;
}

.chapter-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.chapter-tagline {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.backend-highlight {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-left: 4px solid #10b981;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    color: #166534;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.backend-highlight i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-quick {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-quick .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--platform-primary);
}

.pricing-quick .period {
    color: #64748b;
    font-size: 0.875rem;
}

/* ========================================
   WORKFLOW SECTION - FIXED ALIGNMENT
   ======================================== */
.workflow-section {
    background: white;
}

.workflow-visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.workflow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.step-badge {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.step-box {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
}

.step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.your-job {
    border: 3px solid #fbbf24;
}

.our-job {
    border: 3px solid #3b82f6;
}

.result {
    border: 3px solid #10b981;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-box h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.step-box p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.workflow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--platform-primary);
    flex-shrink: 0;
    padding: 0 1rem;
}

.workflow-arrow i {
    font-size: 2rem;
    animation: slideRight 1.5s ease-in-out infinite;
}

.workflow-arrow span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.time-saved-box {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    color: white;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.stat-large {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.time-saved-box p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.125rem;
}

/* ========================================
   TRUST & PRIVACY SECTION - BALANCED COLORS
   ======================================== */
.trust-privacy-section {
    background: white;
}

.trust-privacy-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(30, 41, 59, 0.3);
    position: relative;
    overflow: hidden;
}

.trust-privacy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15), transparent);
    pointer-events: none;
}

.trust-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

.trust-icon i {
    font-size: 3rem;
    color: white;
}

.trust-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
}

.trust-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.trust-description strong {
    color: #10b981;
    font-weight: 700;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    transform: translateX(-5px);
}

.trust-badge-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
    color: #10b981;
}

/* Responsive Trust Card */
@media (max-width: 991px) {
    .trust-privacy-card {
        padding: 2.5rem 2rem;
        text-align: center;
    }
    
    .trust-title {
        font-size: 1.75rem;
    }
    
    .trust-description {
        font-size: 1rem;
    }
    
    .trust-badges {
        margin-top: 1.5rem;
        align-items: center;
    }
    
    .trust-badge-item {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .trust-privacy-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .trust-icon i {
        font-size: 2.5rem;
    }
    
    .trust-title {
        font-size: 1.5rem;
        margin-bottom: 1rem !important;
    }
    
    .trust-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem !important;
    }
    
    .trust-badges {
        width: 100%;
    }
    
    .trust-badge-item {
        width: 100%;
    }
}

/* ========================================
   FINAL CTA V2
   ======================================== */
.final-cta-v2 {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2), transparent);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.guarantee-item i {
    font-size: 1.5rem;
    color: #10b981;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .workflow-visual {
        flex-direction: column;
        align-items: center;
    }
    
    .workflow-step {
        width: 100%;
        max-width: 400px;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        padding: 1rem 0;
    }
    
    .workflow-arrow span {
        display: none;
    }
    
    .hero-differentiators .diff-item:hover {
        transform: translateY(-5px);
    }
    
    .comparison-table-wrapper {
        padding: 1rem;
    }
    
    .team-member.tm-1,
    .team-member.tm-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section-v2 {
        padding: 3rem 0 2rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .trust-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-table td,
    .comparison-table th {
        padding: 0.875rem;
        font-size: 0.875rem;
    }
    
    .team-card {
        margin-bottom: 1.5rem;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .comparison-badge {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .card-header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .quote-box {
        padding: 1.5rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}