/* ========== Services Page Styles - Professional Redesign ========== */
/* Consistent with global design system */

/* Premium Hero Section (skin inherits structural styles from components/business hero) */
.hero, .hero-premium {
    /* Light gradient background for proper text contrast */
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f0f9ff 100%);
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero, .hero-premium {
    /* Light gradient background for proper text contrast */
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f0f9ff 100%) !important;
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero-left h1 {
    color: #0F172A !important; /* Dark text on light gradient = visible */
}

.hero-highlight {
    /* background: linear-gradient(135deg, #60a5fa, #a78bfa) !important; */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Decorative radial overlays and animation removed here to avoid duplicating
   decorative assets that are shared across pages. If you want the subtle
   radial accents, move them into a shared components.css entry so all pages
   reuse the same rules. */

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

.hero-left {
    color: #0F172A; /* match business hero text color */
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #60A5FA;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.highlight-text {
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0F172A; /* match business hero h1 */
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 1.2rem;
    color: #475569; /* match business hero paragraph color */
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin: 40px 0 48px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px 28px;
    text-align: center;
    min-width: 140px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card strong {
    font-size: 2.2rem;
    font-weight: 800;
    color: #60A5FA;
    display: block;
    line-height: 1.2;
    margin-bottom: 6px;
}

.stat-card span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* .hero-right: styles moved to business.css */





.hero-right h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0F172A;
    font-weight: 700;
}

.hero-right h3 i.fa-crown {
    color: #F59E0B;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    margin: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-weight: 500;
    color: #334155;
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.feature-list li:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
}

.feature-list li i {
    font-size: 1.3rem;
    color: #10B981;
    width: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-badge {
    margin-top: 32px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 16px;
    padding: 18px 24px;
    text-align: center;
    border: 2px solid #BFDBFE;
    font-size: 0.95rem;
    color: #1E40AF;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.offer-badge i {
    color: #2563EB;
    margin-right: 8px;
}

/* Section Title */
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    font-weight: 700;
    margin: 64px 0 32px;
    border-left: 6px solid #2563EB;
    padding-left: 24px;
    color: #0F172A;
    line-height: 1.3;
}

/* Feature Grid & Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 32px 0;
}

.feature-card {
    background: white;
    border-radius: 32px;
    padding: 32px;
    border: 1px solid #EFF3F8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.feature-card i {
    font-size: 2.4rem;
    color: #2563EB;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0F172A;
    line-height: 1.3;
}

.feature-card p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Growth Story (Case Study) */
.growth-story {
    background: linear-gradient(115deg, #0F172A 0%, #1E293B 100%);
    border-radius: 48px;
    padding: 48px;
    margin: 64px 0;
    color: white;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.growth-story .story-left {
    flex: 1.2;
}

.growth-story .story-right {
    flex: 0.9;
    text-align: center;
    background: #1E293B;
    border-radius: 28px;
    padding: 24px;
}

.client-badge {
    background: rgba(16, 185, 129, 0.12);
    padding: 6px 14px;
    border-radius: 40px;
    display: inline-block;
    color: #10B981;
    font-weight: 600;
    font-size: 0.85rem;
}

.growth-story h3 {
    margin: 20px 0 12px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.growth-story p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.stats-row {
    display: flex;
    gap: 32px;
    margin: 28px 0;
    flex-wrap: wrap;
}

.stats-row div {
    background: #1E293B;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-row div i {
    color: #60A5FA;
}

.case-study-visual {
    background: #1E293B;
    border-radius: 28px;
    padding: 24px;
    text-align: center;
}

.case-study-visual i {
    font-size: 3rem;
    color: #FACC15;
}

.case-study-visual p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.progress-bar-container {
    background: #334155;
    height: 8px;
    width: 100%;
    border-radius: 8px;
    margin-top: 12px;
}

.progress-bar-fill {
    width: 85%;
    background: #10B981;
    height: 8px;
    border-radius: 8px;
}

/* Growth Engine Section */
.growth-engine {
    background: linear-gradient(115deg, #0F172A 0%, #1E293B 100%);
    border-radius: 48px;
    padding: 48px;
    margin: 64px 0;
    color: white;
}

.growth-engine h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.growth-engine > p {
    margin: 16px 0 24px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.05rem;
}

.step-example {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 32px 0;
}

.step-card {
    background: #1E293B;
    border-radius: 28px;
    padding: 28px;
    flex: 1;
    min-width: 250px;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FACC15;
    margin-bottom: 12px;
}

.step-card h3 {
    margin: 12px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.step-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.insight-badge {
    background: rgba(16, 185, 129, 0.12);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 40px;
    margin-top: 12px;
    color: #10B981;
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-box {
    background: rgba(250, 204, 21, 0.06);
    border-radius: 28px;
    padding: 24px;
    margin-top: 16px;
}

.testimonial-box i {
    font-size: 1.5rem;
    color: #FACC15;
}

.testimonial-box p {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 12px;
    line-height: 1.6;
}

/* Lead Block */
.lead-block {
    background: #F8FAFC;
    border-radius: 40px;
    padding: 48px;
    margin: 48px 0;
}

.lead-block h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #0F172A;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
}

.checklist-item i {
    color: #10B981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.example-highlight {
    background: #FFFFFF;
    border-radius: 32px;
    margin-top: 32px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    color: #334155;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.example-highlight i {
    color: #2563EB;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Case Study Box */
.case-study-box {
    background: #EFF6FF;
    border-radius: 40px;
    padding: 48px;
    margin: 48px 0;
}

.case-study-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0F172A;
}

.case-study-box p {
    color: #334155;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.case-study-box strong {
    color: #0F172A;
    font-weight: 700;
}

.stats-tags {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.stat-tag {
    background: #DBEAFE;
    border-radius: 40px;
    padding: 6px 16px;
    color: #1E40AF;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-tag i {
    color: #2563EB;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 48px;
    text-align: center;
    padding: 48px;
    border: 1px solid #E2E8F0;
    margin: 48px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 16px;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #64748B;
}

.pricing-card p {
    margin: 16px auto;
    color: #475569;
    line-height: 1.6;
    max-width: 500px;
}

.pricing-card .guarantee {
    margin-top: 20px;
    color: #64748B;
    font-size: 0.95rem;
}

.pricing-card .guarantee i {
    color: #10B981;
    margin-right: 6px;
}

/* Related Services */
.related-services {
    margin: 60px 0;
}

.related-services .section-title {
    margin-top: 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin: 32px 0;
}

.rel-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    border: 1px solid #EFF3F8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.rel-card i {
    font-size: 2rem;
    color: #2563EB;
    margin-bottom: 16px;
    display: block;
}

.rel-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0F172A;
}

.rel-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-rel {
    background: transparent;
    border: 1px solid #CBD5E1;
    border-radius: 40px;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    color: #334155;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.btn-rel:hover {
    background: #EFF6FF;
    border-color: #2563EB;
    color: #2563EB;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(105deg, #1E293B, #0F172A);
    border-radius: 44px;
    padding: 56px;
    text-align: center;
    color: white;
    margin-bottom: 64px;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.final-cta p {
    margin: 16px auto;
    max-width: 550px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Button Variants */
.btn-amber {
    background: #F59E0B !important;
    color: #0F172A !important;
}

.btn-amber:hover {
    background: #D97706 !important;
}

.btn-yellow {
    background: #FACC15 !important;
    color: #0F172A !important;
}

.btn-yellow:hover {
    background: #EAB308 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }

    .hero-left p {
        max-width: 100%;
    }

    .growth-story {
        flex-direction: column;
    }

    .growth-story .story-left,
    .growth-story .story-right {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 80px 0 100px;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-card {
        padding: 16px 20px;
        min-width: 120px;
        flex: 1 1 calc(50% - 8px);
    }

    .stat-card strong {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .step-card {
        flex: 1 1 100%;
    }

    .stats-row {
        gap: 16px;
    }

    .stats-row div {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .growth-story,
    .growth-engine {
        padding: 32px 24px;
    }

    .lead-block {
        padding: 32px 24px;
    }

    .final-cta {
        padding: 40px 24px;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 3rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.75rem;
    }

    .hero-right {
        padding: 32px 24px;
    }

    .stat-card {
        flex: 1 1 100%;
    }

    .step-example {
        flex-direction: column;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}