/**
 * HIPAA Auditors - Premium Homepage V3
 * Stunning, professional homepage with modern design patterns
 */

/* ============================================
   HERO SECTION
   ============================================ */

.hero-v3 {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: var(--space-16) 0 var(--space-8);
    overflow: hidden;
    background: var(--white);
}

/* Hero Background Effects */
.hero-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-mesh);
    z-index: 0;
}

.hero-v3::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

/* Floating Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.15);
    top: 10%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.12);
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(16, 185, 129, 0.1);
    top: 60%;
    right: 30%;
    animation: float 12s ease-in-out infinite;
}

.hero-content-v3 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-text-v3 {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--accent-700);
    margin-bottom: var(--space-6);
    animation: fadeInDown 0.6s var(--ease-out-expo) forwards;
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-500);
    border-radius: 50%;
    color: var(--white);
}

.hero-badge-icon svg {
    width: 12px;
    height: 12px;
}

.hero-title-v3 {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
    color: var(--slate-900);
    margin-bottom: var(--space-6);
    letter-spacing: var(--tracking-tighter);
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-title-v3 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-v3 {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--slate-600);
    margin-bottom: var(--space-8);
    max-width: 540px;
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-actions-v3 {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-actions-v3 .btn-primary {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.hero-actions-v3 .btn-secondary {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

/* Trust Indicators */
.hero-trust-v3 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.trust-item-v3 {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--slate-600);
}

.trust-icon-v3 {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-100);
    border-radius: var(--radius-lg);
    color: var(--accent-600);
}

.trust-icon-v3 svg {
    width: 18px;
    height: 18px;
}

.trust-item-v3 strong {
    color: var(--slate-900);
    font-weight: var(--font-semibold);
}

/* Hero Visual */
.hero-visual-v3 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s var(--ease-out-expo) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 560px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.hero-image-v3 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-3xl);
}

/* Floating Stats Card */
.hero-stats-card {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-5) var(--space-6);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

.stats-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-success);
    border-radius: var(--radius-xl);
    color: var(--white);
}

.stats-icon svg {
    width: 24px;
    height: 24px;
}

.stats-content h4 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--slate-900);
    margin: 0;
}

.stats-content p {
    font-size: var(--text-sm);
    color: var(--slate-500);
    margin: 0;
}

/* Floating Badge Card */
.hero-badge-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.badge-trust-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    color: var(--primary-600);
}

.badge-icon svg {
    width: 20px;
    height: 20px;
}

.badge-content span {
    font-size: var(--text-xs);
    color: var(--slate-500);
    display: block;
}

.badge-content strong {
    display: block;
    color: var(--slate-900);
    font-size: var(--text-base);
}

/* Hero Training Card */
.hero-training-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--slate-100);
    position: relative;
    z-index: 2;
    max-width: 440px;
    margin-left: auto;
}

.training-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.hero-training-card h3 {
    font-size: var(--text-2xl);
    color: var(--slate-900);
    margin-bottom: var(--space-3);
}

.hero-training-card p {
    color: var(--slate-600);
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
}

.training-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8) 0;
}

.training-perks li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--slate-700);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.training-perks li i {
    color: var(--success-500);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section-v3 {
    position: relative;
    padding: var(--space-20) 0;
    background: var(--slate-900);
    overflow: hidden;
}

.stats-section-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
}

.stats-grid-v3 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.stat-item-v3 {
    text-align: center;
    padding: var(--space-6);
}

.stat-number-v3 {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label-v3 {
    font-size: var(--text-base);
    color: var(--slate-400);
    font-weight: var(--font-medium);
}

/* Compliance Standards Bar */
.compliance-bar-v3 {
    background: var(--white);
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--slate-100);
}

.compliance-inner-v3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.compliance-label {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    flex-shrink: 0;
}

.compliance-logos-v3 {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    flex-grow: 1;
    justify-content: flex-end;
}

.standard-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
}

.standard-logo i {
    font-size: 24px;
    margin-bottom: 4px;
}

.standard-logo:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.standard-logo img {
    height: 32px;
    width: auto;
}

.standard-logo span {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--slate-900);
}

@media (max-width: 768px) {
    .compliance-inner-v3 {
        flex-direction: column;
        text-align: center;
    }

    .compliance-logos-v3 {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-6);
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section-v3 {
    padding: var(--space-32) 0;
    background: var(--white);
}

.section-header-v3 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--primary-600);
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.section-title-v3 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--slate-900);
    margin-bottom: var(--space-5);
}

.section-description-v3 {
    font-size: var(--text-lg);
    color: var(--slate-600);
    line-height: var(--leading-relaxed);
}

/* Services Grid */
.services-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.service-card-v3 {
    position: relative;
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    transition: var(--transition-slow);
    overflow: hidden;
}

.service-card-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.service-card-v3:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(6, 182, 212, 0.1);
    transform: translateY(-8px);
}

.service-card-v3:hover::before {
    transform: scaleX(1);
}

.service-icon-v3 {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-6);
    transition: var(--transition-normal);
}

.service-card-v3:hover .service-icon-v3 {
    transform: scale(1.1);
    box-shadow: var(--shadow-primary-md);
}

.service-icon-v3 svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.service-title-v3 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--slate-900);
    margin-bottom: var(--space-4);
}

.service-description-v3 {
    font-size: var(--text-base);
    color: var(--slate-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.service-features-v3 {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.feature-tag-v3 {
    padding: var(--space-1) var(--space-3);
    background: var(--slate-100);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--slate-600);
    transition: var(--transition-fast);
}

.service-card-v3:hover .feature-tag-v3 {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-700);
}

.service-link-v3 {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--primary-600);
    transition: var(--transition-fast);
}

.service-link-v3:hover {
    color: var(--accent-600);
    gap: var(--space-3);
}

.service-link-v3 svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-section-v3 {
    padding: var(--space-32) 0;
    background: var(--slate-50);
    position: relative;
    overflow: hidden;
}

.why-section-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero-mesh);
    opacity: 0.5;
}

.why-content-v3 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.why-visual-v3 {
    position: relative;
}

.why-image-v3 {
    width: 100%;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
}

.why-stats-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.why-stat {
    text-align: center;
}

.why-stat-number {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--primary-600);
}

.why-stat-label {
    font-size: var(--text-xs);
    color: var(--slate-500);
}

.why-text-v3 h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
}

.why-text-v3 p {
    font-size: var(--text-lg);
    color: var(--slate-600);
    margin-bottom: var(--space-8);
}

.benefits-list-v3 {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
}

.benefit-item-v3 {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.benefit-icon-v3 {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success-50);
    border-radius: var(--radius-lg);
    color: var(--success-600);
    flex-shrink: 0;
}

.benefit-icon-v3 svg {
    width: 18px;
    height: 18px;
}

.benefit-text-v3 {
    font-size: var(--text-base);
    color: var(--slate-700);
    font-weight: var(--font-medium);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section-v3 {
    padding: var(--space-32) 0;
    background: var(--white);
}

.testimonials-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.testimonial-card-v3 {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    transition: var(--transition-normal);
    position: relative;
}

.testimonial-card-v3:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.testimonial-quote-v3 {
    font-size: var(--text-base);
    color: var(--slate-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    position: relative;
}

.testimonial-quote-v3::before {
    content: '"';
    font-size: var(--text-6xl);
    font-weight: var(--font-bold);
    color: var(--accent-200);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.testimonial-author-v3 {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar-v3 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info-v3 h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--slate-900);
    margin: 0;
}

.testimonial-info-v3 p {
    font-size: var(--text-sm);
    color: var(--slate-500);
    margin: 0;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-4);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--warning-400);
    fill: var(--warning-400);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section-v3 {
    padding: var(--space-32) 0;
    background: var(--slate-50);
}

.pricing-grid-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-v3 {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card-v3.featured {
    border: 2px solid var(--primary-500);
    transform: scale(1.05);
    box-shadow: var(--shadow-primary-lg);
}

.pricing-badge-v3 {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.pricing-title-v3 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--slate-900);
    margin-bottom: var(--space-2);
}

.pricing-price-v3 {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    color: var(--primary-600);
    margin-bottom: var(--space-4);
}

.pricing-description-v3 {
    font-size: var(--text-base);
    color: var(--slate-600);
    margin-bottom: var(--space-6);
}

.pricing-features-v3 {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8);
}

.pricing-features-v3 li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: var(--text-sm);
    color: var(--slate-700);
}

.pricing-features-v3 li svg {
    width: 18px;
    height: 18px;
    color: var(--success-500);
    flex-shrink: 0;
}

.pricing-card-v3 .btn {
    width: 100%;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section-v3 {
    padding: var(--space-32) 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.cta-section-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 100%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 0%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
}

.cta-content-v3 {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title-v3 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-6);
}

.cta-description-v3 {
    font-size: var(--text-lg);
    color: var(--slate-400);
    margin-bottom: var(--space-10);
}

.cta-actions-v3 {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions-v3 .btn-primary {
    background: var(--gradient-accent);
    box-shadow: var(--shadow-accent-md);
}

.cta-actions-v3 .btn-primary:hover {
    box-shadow: var(--shadow-accent-lg);
}

.cta-actions-v3 .btn-secondary {
    background: transparent;
    border: 2px solid var(--slate-600);
    color: var(--white);
}

.cta-actions-v3 .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--slate-500);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .hero-content-v3 {
        gap: var(--space-12);
    }

    .hero-title-v3 {
        font-size: var(--text-4xl);
    }

    .services-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-v3 {
        min-height: auto;
        padding: var(--space-24) 0 var(--space-16);
    }

    .hero-content-v3 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-v3 {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-description-v3 {
        max-width: 100%;
    }

    .hero-actions-v3 {
        justify-content: center;
    }

    .hero-trust-v3 {
        justify-content: center;
    }

    .hero-visual-v3 {
        order: -1;
    }

    .hero-image-container {
        max-width: 500px;
    }

    .hero-stats-card {
        left: 20px;
        bottom: -10px;
    }

    .hero-badge-card {
        right: 20px;
        top: 10px;
    }

    .stats-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .why-content-v3 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-visual-v3 {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .why-stats-overlay {
        right: 0;
        bottom: -20px;
    }

    .benefits-list-v3 {
        max-width: 400px;
        margin: 0 auto var(--space-8);
        text-align: left;
    }

    .pricing-grid-v3 {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card-v3.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-v3 {
        padding-top: var(--space-20);
    }

    .hero-title-v3 {
        font-size: var(--text-3xl);
    }

    .hero-description-v3 {
        font-size: var(--text-base);
    }

    .hero-actions-v3 {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions-v3 .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-trust-v3 {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats-card,
    .hero-badge-card {
        display: none;
    }

    .stats-grid-v3 {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number-v3 {
        font-size: var(--text-3xl);
    }

    .services-grid-v3 {
        grid-template-columns: 1fr;
    }

    .service-card-v3 {
        padding: var(--space-8);
    }

    .testimonials-grid-v3 {
        grid-template-columns: 1fr;
    }

    .section-title-v3 {
        font-size: var(--text-3xl);
    }

    .cta-title-v3 {
        font-size: var(--text-3xl);
    }

    .cta-actions-v3 {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions-v3 .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {

    .hero-orb-1,
    .hero-orb-2,
    .hero-orb-3 {
        display: none;
    }

    .stat-item-v3 {
        padding: var(--space-4);
    }

    .why-stats-overlay {
        grid-template-columns: 1fr;
        gap: var(--space-3);
        padding: var(--space-4);
    }
}

/* Partners Section */
.partners-section-v3 {
    padding: var(--space-20) 0;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
}

.partners-header-v3 {
    text-align: center;
    margin-bottom: var(--space-12);
}

.partners-header-v3 h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--slate-900);
    margin-top: var(--space-2);
}

.partners-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-8);
}

.partner-item-v3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
    padding: var(--space-6);
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-2xl);
    transition: all 0.3s var(--ease-smooth);
}

.partner-item-v3:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.partner-item-v3 i {
    font-size: 2.5rem;
    color: var(--primary-600);
    background: var(--primary-50);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.partner-item-v3 span {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--slate-700);
}