/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
    --primary-red: #ef4444;
    --primary-blue: #3b82f6;
    --primary-gray: #6b7280;
    --dark-gray: #1f2937;
    --light-gray: #f3f4f6;
    --white: #ffffff;
          --primary: #F26522;      /* Orange */
      --secondary: #D32F2F;    /* Red */
      --dark: #333333;
      --light-bg: #FFF9F6;
      --border-light: #f0dcd4;
      --text-gray: #666666;
    
    /* Font Variables */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Timing Functions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.container-fluid{
    max-width: 1320px;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-logo .logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 24px;
    margin: 0 auto 1rem;
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.loading-progress {
    width: 240px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), #f97316);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

.loading-percentage {
    font-size: 0.875rem;
    color: var(--primary-gray);
    font-weight: 500;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.progress-line {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), #f97316, var(--primary-blue));
    width: 0%;
    transition: width 0.1s ease;
}

/* Background Texture System */
.background-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.texture-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.texture-layer-1 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    opacity: 0.6;
}

.texture-layer-2 {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(239, 68, 68, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.02) 0.5px, transparent 0.5px);
    background-size: 80px 80px, 40px 40px;
    opacity: 0.8;
}

.texture-layer-3 {
    background-image: 
        linear-gradient(90deg, rgba(239, 68, 68, 0.01) 1px, transparent 1px),
        linear-gradient(rgba(59, 130, 246, 0.01) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}



/* Button Styles */
.btn {
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s var(--ease-smooth);
    border: none;
}

.btn-outline-secondary {
    border: 1px solid rgba(107, 114, 128, 0.3);
    color: var(--primary-gray);
}

.btn-outline-secondary:hover {
    background: var(--primary-gray);
    border-color: var(--primary-gray);
    color: white;
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--dark-gray);
    color: white;
}

.btn-dark:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Section Base Styles */
section {
    position: relative;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

/* Hero Section Styles */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-gradient-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, rgba(249, 250, 251, 0.5) 50%, rgba(219, 234, 254, 0.3) 100%);
}

.mouse-gradient {
    position: absolute;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    transition: all 1s ease-out;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.floating-bg-1 {
    position: absolute;
    top: 25%;
    right: 25%;
    width: 320px;
    height: 320px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.floating-bg-2 {
    position: absolute;
    bottom: 25%;
    left: 25%;
    width: 256px;
    height: 256px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: 
        linear-gradient(45deg, #374151 1px, transparent 1px),
        linear-gradient(-45deg, #374151 1px, transparent 1px);
    background-size: 80px 80px;
}

.particle-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle-1 {
    top: 33%;
    left: 20%;
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.3);
    animation-delay: 0s;
}

.particle-2 {
    top: 66%;
    right: 25%;
    width: 6px;
    height: 6px;
    background: rgba(239, 68, 68, 0.3);
    animation-delay: 2s;
}

.particle-3 {
    bottom: 33%;
    left: 33%;
    width: 12px;
    height: 12px;
    background: rgba(59, 130, 246, 0.2);
    animation-delay: 4s;
}

.particle-4 {
    top: 50%;
    right: 15%;
    width: 4px;
    height: 4px;
    background: rgba(107, 114, 128, 0.4);
    animation-delay: 1s;
}

.particle-5 {
    bottom: 20%;
    right: 40%;
    width: 10px;
    height: 10px;
    background: rgba(245, 158, 11, 0.3);
    animation-delay: 3s;
}

/* Hero Content Styles */
.hero-content-left,
.hero-content-right {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.hero-main-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-heading-container {
    margin-bottom: 2rem;
}

.hero-main-heading {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 300;
    color: var(--dark-gray);
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.heading-line-1 {
    display: block;
}

.heading-line-2 {
    display: block;
    font-weight: 500;
    color: #1f2937;
    margin-top: 0.5rem;
}

.heading-line-3 {
    display: block;
    font-weight: 300;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero-underline {
    display: flex;
}

.underline-bar {
    width: 96px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red), var(--primary-blue));
    border-radius: 2px;
    animation: gradientPulse 3s ease-in-out infinite;
}

.hero-description {
    margin-bottom: 2rem;
    max-width: 600px;
}

.description-primary {
    font-size: 1.25rem;
    color: var(--primary-gray);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.description-primary strong {
    color: var(--dark-gray);
    font-weight: 600;
}

.description-secondary {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Feature Showcase */
.feature-showcase {
    margin-bottom: 2.5rem;
}

.feature-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: all 0.5s var(--ease-smooth);
}

.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.7s var(--ease-smooth);
    cursor: pointer;
}

.feature-item.active {
    transform: scale(1.05);
}

.feature-item-1.active {
   /* background: linear-gradient(135deg, var(--primary-blue), #0ea5e9);*/
   background: #ebfcfc;
background: linear-gradient(94deg,rgba(235, 252, 252, 1) 0%, rgba(255, 246, 224, 1) 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-item-2.active {
   /* background: linear-gradient(135deg, var(--primary-red), #ec4899);*/
   background: #ebfcfc;
background: linear-gradient(94deg,rgba(235, 252, 252, 1) 0%, rgba(255, 246, 224, 1) 100%);
    color: white;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-item-3.active {
    /*background: linear-gradient(135deg, var(--primary-blue), #06b6d4);*/
    background: #ebfcfc;
background: linear-gradient(94deg,rgba(235, 252, 252, 1) 0%, rgba(255, 246, 224, 1) 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-item-4.active {
    /*background: linear-gradient(135deg, var(--primary-red), #f59e0b);*/
    background: #ebfcfc;
background: linear-gradient(94deg,rgba(235, 252, 252, 1) 0%, rgba(255, 246, 224, 1) 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-item:not(.active) {
    background: rgba(243, 244, 246, 0.6);
    color: #111;
    transform: scale(0.95);
    opacity: 0.7;
}

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--ease-smooth);
}

.feature-item.active .feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

.feature-item:not(.active) .feature-icon {
    background: #e5e7eb;
}

.feature-text {
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.5s var(--ease-smooth);
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.8s;
}

.hero-cta-primary {
    background: linear-gradient(135deg, var(--dark-gray), #111827);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #111827, #1f2937);
}

.hero-cta-secondary {
    border: 2px solid #d1d5db;
    color: var(--primary-gray);
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.hero-cta-secondary:hover {
    background: rgba(243, 244, 246, 0.8);
    border-color: #9ca3af;
    transform: translateY(-1px) scale(1.02);
}

/* Achievement Cards */
.achievement-cards {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1s;
}

.achievement-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    transition: all 0.5s var(--ease-smooth);
    cursor: pointer;
    height: 100%;
}

.achievement-card-blue {
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.achievement-card-blue:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(219, 234, 254, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.achievement-card-red {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.achievement-card-red:hover {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(254, 226, 226, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}

.achievement-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.achievement-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-smooth);
}

.achievement-card-blue .achievement-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
}

.achievement-card-blue:hover .achievement-icon {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.achievement-card-red .achievement-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary-red);
}

.achievement-card-red:hover .achievement-icon {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    transition: transform 0.5s var(--ease-smooth);
}

.achievement-card:hover .achievement-number {
    transform: scale(1.05);
}

.achievement-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-gray);
    font-weight: 500;
    line-height: 1.2;
}

/* Responsive Design for Hero */
@media (min-width: 576px) {
    .hero-cta-buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-main-heading {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .description-primary {
        font-size: 1.125rem;
    }
    
    .hero-content-left,
    .hero-content-right {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .achievement-card {
        padding: 1rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
}

/* Why Choose Us Section Styles */





.floating-blue {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.floating-gray {
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 320px;
    height: 320px;
    background: rgba(229, 231, 235, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

/* Why Choose Us Header */
.why-choose-header {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
}

.header-container {
    position: relative;
    transition: all 0.3s var(--ease-smooth);
}

.header-container:hover {
    transform: translateY(-2px);
}

.header-decoration {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d1d5db, #9ca3af);
    border-radius: 2px;
    opacity: 0.6;
    transition: all 0.5s var(--ease-smooth);
}

.header-container:hover .header-decoration {
    opacity: 1;
    width: 128px;
}
section#why-choose-us {
    margin-top: 50px;
    padding-top: 50px;
}
.why-choose-heading {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: color 0.3s var(--ease-smooth);
}

.header-container:hover .why-choose-heading {
    color: var(--dark-gray);
}

.heading-emphasis {
    font-weight: 600;
    transition: color 0.3s var(--ease-smooth);
}

.header-container:hover .heading-emphasis {
    color: var(--dark-gray);
}

.heading-subline {
    display: block;
    font-weight: 300;
    color: #000000;
    margin-top: 0.75rem;
    font-size: clamp(1.875rem, 4vw, 3rem);
    transition: color 0.3s var(--ease-smooth);
}

.header-container:hover .heading-subline {
    color: #374151;
}

.header-description {
    max-width: 1000px;
    margin: 0 auto;
}

.description-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #000000;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s var(--ease-smooth);
}

.header-container:hover .description-text {
    color: var(--dark-gray);
}

.description-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.deco-line {
    width: 32px;
    height: 1px;
    background: #000000;
    transition: all 0.3s var(--ease-smooth);
}

.header-container:hover .deco-line {
    width: 48px;
    background: #9ca3af;
}

.deco-dot {
    width: 8px;
    height: 8px;
    background: #000000;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s var(--ease-smooth);
}

.header-container:hover .deco-dot {
    background: #9ca3af;
    transform: scale(1.25);
}

/* Feature Cards */
.feature-card {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    transition: all 0.6s var(--ease-smooth);
    cursor: pointer;
    overflow: hidden;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.4s; }
.feature-card:nth-child(2) { animation-delay: 0.5s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }
.feature-card:nth-child(4) { animation-delay: 0.7s; }

.feature-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(239, 246, 255, 0.95);
}

.feature-card.active {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(239, 246, 255, 0.95);
}

.floating-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.4));
    border-radius: 50%;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover .floating-indicator {
    opacity: 1;
    transform: scale(1.25);
}

/* Feature Header */
.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.feature-icon-container {
    flex-shrink: 0;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover .feature-icon {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.1) rotate(6deg);
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #000000;
    opacity: 0.8;
    transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover .feature-subtitle {
    color: #000000;
    opacity: 1;
    letter-spacing: 0.15em;
}

.feature-title {
    font-size: clamp(1.5rem, 3vw, 1rem);
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover .feature-title {
    color: rgba(30, 64, 175, 0.9);
    transform: scale(1.05);
}

.click-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.indicator-button {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    background: rgba(59, 130, 246, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.5s var(--ease-smooth);
}

.feature-card:hover .indicator-button {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    transform: scale(1.1) rotate(6deg);
}

.feature-card.active .indicator-button {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.2);
    transform: rotate(180deg);
}

.indicator-text {
    font-size: 0.75rem;
    color: #000000;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover .indicator-text {
    color: rgba(30, 64, 175, 0.8);
    font-weight: 600;
}

.feature-card.active .indicator-text:after {
    content: ' ▲';
}

/*
.feature-card:not(.active) .indicator-text:after {
    content: ' ▼';
}
*/

/* Feature Description */
/*
    .feature-description {
        margin-bottom: 2rem;
    }
*/

.feature-description p {
    font-size: 1rem;
    color: #000000;
    font-weight: 300;
    line-height: 1.6;
    transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover .feature-description p {
    color: rgba(30, 64, 175, 0.9);
    line-height: 1.8;
}

/* Benefits Container */
.benefits-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s var(--ease-smooth);
}

.feature-card.active .benefits-container {
    max-height: 400px;
    opacity: 1;
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.benefits-dot {
    width: 8px;
    height: 8px;
    background: #000000;
    border-radius: 50%;
    transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover .benefits-dot {
    background: rgba(59, 130, 246, 0.8);
    transform: scale(1.25);
}

.benefits-header h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    transition: color 0.3s var(--ease-smooth);
}

.feature-card:hover .benefits-header h4 {
    color: rgba(30, 64, 175, 0.9);
}

.benefits-list {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.4s var(--ease-smooth);
    cursor: pointer;
}

.benefit-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.benefit-item i {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: #000000;
    transition: all 0.3s var(--ease-smooth);
}

.benefit-item:hover i {
    color: rgba(59, 130, 246, 0.8);
    transform: scale(1.1);
}

.benefit-item span {
    font-size: 0.875rem;
    color: #000000;
    font-weight: 300;
    line-height: 1.5;
    transition: all 0.3s var(--ease-smooth);
}

.benefit-item:hover span {
    color: rgba(30, 64, 175, 0.9);
    font-weight: 400;
}

/* Hover Effects */
.hover-overlay {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0) 0%, transparent 50%, rgba(219, 234, 254, 0) 100%);
    opacity: 0;
    transition: opacity 0.6s var(--ease-smooth);
    pointer-events: none;
}

.feature-card:hover .hover-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.3) 0%, transparent 50%, rgba(219, 234, 254, 0.2) 100%);
}

.shimmer-effect {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.6s var(--ease-smooth);
    pointer-events: none;
}

.feature-card:hover .shimmer-effect {
    opacity: 1;
    animation: shimmer 1s ease-out;
}

.border-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    transition: all 0.6s var(--ease-smooth);
    pointer-events: none;
}

.feature-card.active .border-glow {
    box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.3);
}

.feature-card:hover .border-glow {
    box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s var(--ease-smooth);
}

.feature-card:hover .floating-particles {
    opacity: 1;
}

.floating-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.4);
    animation: floatGentle 4s ease-in-out infinite;
}

.floating-particles .particle-1 {
    top: 1rem;
    right: 1.5rem;
    width: 8px;
    height: 8px;
    animation-delay: 0s;
}

.floating-particles .particle-2 {
    bottom: 1.5rem;
    left: 2rem;
    width: 6px;
    height: 6px;
    animation-delay: 0.5s;
}

.floating-particles .particle-3 {
    top: 50%;
    right: 3rem;
    width: 4px;
    height: 4px;
    animation-delay: 1s;
}

@keyframes floatGentle {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-12px) rotate(180deg); 
        opacity: 1;
    }
}

/* Responsive Design for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 3rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-header {
        gap: 1rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .indicator-button {
        width: 40px;
        height: 40px;
    }
}

/* Services Section Styles */
.services-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.services-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    margin-top: 50px;
}

.services-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, rgba(219, 234, 254, 0.2) 50%, #ffffff 100%);
}

.services-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(30deg, rgba(239, 68, 68, 0.3) 12%, transparent 12.5%, transparent 87%, rgba(239, 68, 68, 0.3) 87.5%),
        linear-gradient(150deg, rgba(107, 114, 128, 0.4) 12%, transparent 12.5%, transparent 87%, rgba(107, 114, 128, 0.4) 87.5%);
    background-size: 20px 35px;
}

.floating-services-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 288px;
    height: 288px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.floating-services-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 256px;
    height: 256px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.services-geometric-shape {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 128px;
    height: 128px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

/* Services Header */
.services-header {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
}

.services-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-heading-accent {
    display: block;
    color: var(--primary-blue);
    font-weight: 300;
    margin-top: 0.5rem;
}

.services-description {
    font-size: 1.125rem;
    color: #000;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Service Cards */
.services-grid {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.4s;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s var(--ease-smooth);
    cursor: pointer;
    overflow: hidden;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.5s; }
.service-card:nth-child(2) { animation-delay: 0.6s; }
.service-card:nth-child(3) { animation-delay: 0.7s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

.service-card:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card[data-gradient="blue"]:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.service-card[data-gradient="red"]:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

/* Service Background Gradients */
.service-bg-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
    pointer-events: none;
}

.service-bg-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.08));
}

.service-bg-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.08));
}

.service-card:hover .service-bg-gradient {
    opacity: 1;
}

/* Service Header */
.service-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.5s var(--ease-smooth);
}

.service-icon-blue {
    background: linear-gradient(135deg, var(--primary-blue), #0ea5e9);
}

.service-icon-red {
    background: linear-gradient(135deg, var(--primary-red), #ec4899);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(3deg);
}

/* Service Content */
.service-content {
    position: relative;
    z-index: 10;
}

.service-subtitle {
    font-size: 0.875rem;
    color: var(--primary-gray);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s var(--ease-smooth);
}

.service-card:hover .service-title {
    color: #374151;
}

.service-description {
    color: var(--primary-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    transition: color 0.3s var(--ease-smooth);
}

.service-card:hover .service-description {
    color: #4b5563;
}

/* Service Features */
.service-features {
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s var(--ease-smooth);
}

.service-card:hover .feature-item {
    transform: translateX(4px);
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-dot-blue {
    background: linear-gradient(135deg, var(--primary-blue), #0ea5e9);
}

.feature-dot-red {
    background: linear-gradient(135deg, var(--primary-red), #ec4899);
}

.feature-item span {
    color: #4b5563;
    font-weight: 500;
}

/* Service Tech Stack */
.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.75rem;
}

.tech-tag {
    padding: 0.25rem 0.5rem;
    background: rgba(243, 244, 246, 0.8);
    color: var(--primary-gray);
    font-size: 0.75rem;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
}

.tech-tag:hover {
    background: rgba(219, 234, 254, 0.8);
    color: var(--primary-blue);
    transform: translateY(-1px);
}

/* Service Hover Effects */
.service-hover-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
    pointer-events: none;
}

.service-hover-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}

.service-hover-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
}

.service-card:hover .service-hover-glow {
    opacity: 1;
}

/* Service Sparkles */
.service-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
}

.service-card:hover .service-sparkles {
    opacity: 1;
}

.sparkle-1 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(59, 130, 246, 0.6);
    font-size: 1rem;
    animation: sparkleAnimation 2s ease-in-out infinite;
}

.sparkle-2 {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: rgba(59, 130, 246, 0.4);
    font-size: 0.75rem;
    animation: sparkleAnimation 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Service Floating Shadow */
.service-floating-shadow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    filter: blur(20px);
    opacity: 0;
    transition: all 0.5s var(--ease-smooth);
    z-index: -1;
}

.service-shadow-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.1));
}

.service-shadow-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.1));
}

.service-card:hover .service-floating-shadow {
    opacity: 1;
    transform: scale(1.05);
}

/* Sparkle Animation */
@keyframes sparkleAnimation {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg); 
    }
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .services-heading {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .services-description {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-15px) rotate(90deg); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg); 
        opacity: 1;
    }
    75% { 
        transform: translateY(-15px) rotate(270deg); 
        opacity: 0.6;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes breathing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes gradientPulse {
    0%, 100% { 
        background: linear-gradient(90deg, var(--primary-blue), var(--primary-red), var(--primary-blue));
        transform: scaleX(1);
    }
    50% { 
        background: linear-gradient(90deg, var(--primary-red), #f59e0b, var(--primary-blue));
        transform: scaleX(1.1);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element-reverse {
    animation: floatReverse 8s ease-in-out infinite;
}

.rotating-element {
    animation: rotate 20s linear infinite;
}

.pulsing-element {
    animation: pulse 4s ease-in-out infinite;
}

.breathing-element {
    animation: breathing 8s ease-in-out infinite;
}

/* Container Utilities */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(229, 231, 235, 0.5);
    }
    
    .navbar-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .loading-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        display: none;
    }
    
    .loading-progress {
        width: 200px;
    }
}

/* ==========================================================================
   18. BENEFITS SECTION
   ========================================================================== */

.benefits-section {
    padding: 0px 0 50px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(148, 163, 184, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(203, 213, 225, 0.02) 0%, transparent 50%);
    background-size: 800px 800px, 600px 600px;
    pointer-events: none;
}

.container-wide {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Benefits Header */
.benefits-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.benefits-title-highlight {
    display: block;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

/* Enterprise Solutions Section */
.benefits-enterprise-section {
    position: relative;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.6) 0%, rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.enterprise-content {
    position: relative;
    z-index: 2;
}

.enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 50px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.enterprise-badge i {
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.enterprise-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.enterprise-subtitle {
    display: block;
    color: #374151;
    font-weight: 600;
}

.enterprise-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Enterprise Points */
.enterprise-points {
    margin-bottom: 3rem;
}

.enterprise-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.enterprise-point-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.enterprise-point-content h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.enterprise-point-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Enterprise Stats */
.enterprise-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.enterprise-stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Enterprise Benefit Cards */
.enterprise-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.enterprise-benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    overflow: hidden;
}

.enterprise-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(148, 163, 184, 0.3);
}

.enterprise-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(241, 245, 249, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.enterprise-benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #1f2937 0%, #000000 100%);
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.enterprise-benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(6deg);
}

.benefit-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Visual Separator */
.benefits-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.separator-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(226, 232, 240, 0.6), transparent);
}

.separator-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #6b7280 0%, #374151 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
}

.separator-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
}

/* Enhanced Capabilities */
.enhanced-capabilities {
    margin-bottom: 3rem;
}

.capabilities-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.capabilities-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0;
}

.capability-card {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
}

.capability-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(148, 163, 184, 0.4);
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.6) 0%, rgba(241, 245, 249, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.capability-card:hover .capability-icon {
    transform: scale(1.1) rotate(8deg);
}

.capability-content {
    position: relative;
    z-index: 2;
}

.capability-content h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.capability-content > p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.capability-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding-top: 0;
    border-top: 0;
}

.capability-card:hover .capability-details {
    max-height: 300px;
    opacity: 1;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.capability-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-bullet {
    width: 6px;
    height: 6px;
    background: #6b7280;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.feature-bullet.business {
    background: #10b981;
}

.feature-content h5 {
    font-weight: 500;
    color: #1e293b;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
}

/* Additional Benefits */
.additional-benefits {
    margin-bottom: 3rem;
}

.additional-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.additional-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(241, 245, 249, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(203, 213, 225, 0.7);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.benefit-card:hover .benefit-card-icon {
    transform: scale(1.05);
}

.benefit-card h4 {
    font-weight: 500;
    color: #1e293b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Development Process */
.development-process {
    margin-bottom: 3rem;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 50px;
    color: #374151;
    margin-bottom: 1.5rem;
}

.process-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #4b5563;
    border-radius: 50%;
}

.process-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.process-description {
    font-size: 1.125rem;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-progress {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-line {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: #e2e8f0;
    border-radius: 50px;
}

.timeline-active-line {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    height: 1px;
    width: 20%;
    background: #1e293b;
    border-radius: 50px;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid #d1d5db;
    background: white;
    color: #6b7280;
}

.timeline-step.active .step-number {
    background: #1e293b;
    border-color: #1e293b;
    color: white;
}

/*.step-title {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    text-align: center;
    max-width: 6rem;
}*/

/* Mobile Timeline */
.mobile-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mobile-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid #d1d5db;
    background: white;
    color: #6b7280;
    flex-shrink: 0;
}

.mobile-step.active .mobile-step-number {
    background: #1e293b;
    border-color: #1e293b;
    color: white;
}

.mobile-step-title {
    font-weight: 500;
    color: #1e293b;
}

/* Featured Process Step */
.featured-process-step {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    background: #1e293b;
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-main-title {
    font-size: 2rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
}

.step-main-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 600px;
}

.process-detail {
    margin-bottom: 1rem;
}

.process-detail h4 {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.process-detail p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Process Cards */
.process-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.process-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.process-card-number {
    width: 2rem;
    height: 2rem;
    background: #f1f5f9;
    color: #374151;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.process-card h4 {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.process-card p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.process-card-detail {
    color: #6b7280;
    font-size: 0.75rem;
}

/* Engagement Models */
.engagement-models {
    margin-bottom: 3rem;
}

.engagement-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.engagement-title-light {
    font-weight: 300;
    color: #374151;
}

.engagement-description {
    font-size: 1.125rem;
/*    color: #64748b;*/
    color: #000;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.engagement-card {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
}

.engagement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(203, 213, 225, 0.8);
}

.engagement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.engagement-card:hover::before {
    opacity: 1;
}

.engagement-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    color: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.engagement-card:hover .engagement-icon {
    transform: scale(1.1);
}

.engagement-card-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.engagement-card-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.engagement-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.engagement-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
}

.engagement-features i {
    color: #4b5563;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 0;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 50px;
    color: #374151;
    margin-bottom: 1.5rem;
}

.faq-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #4b5563;
    border-radius: 50%;
}

.faq-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.faq-description {
    font-size: 1.125rem;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Featured FAQ */
.featured-faq {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;width: 100%;
}

.faq-number {
    width: 3rem;
    height: 3rem;
    background: #1e293b;
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.faq-question {
    font-size: 2rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;flex: 1;
}

.faq-answer {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 800px;
}

.faq-detail {
    margin-bottom: 1rem;
}

.faq-detail h4 {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.faq-detail p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Cards */
.faq-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.faq-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.faq-card-header {
    padding: 1.5rem;
    display: flex;
    align-items:center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-card-header:hover {
    background: rgba(248, 250, 252, 0.5);
}

.faq-card-number {
    width: 2rem;
    height: 2rem;
    background: #f1f5f9;
    color: #374151;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-right: 1rem;
    margin-top:0rem;
}

.faq-card-question {
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    padding-right: 1rem;
    flex: 1;
}

.faq-chevron {
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    margin-top: 0.25rem;
}

.faq-card-header[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-card-body {
    padding: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.faq-card-body p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Support CTA */
.support-cta {
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.support-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1rem;
}

.support-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.support-btn-primary {
    background: #1e293b;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-btn-primary:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.support-btn-secondary {
    border-color: #d1d5db;
    color: #374151;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-btn-secondary:hover {
    background: #f9fafb;
}

.authority-heading{
    font-size: 2.6rem;
  font-weight: 300;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-container {
  position: relative;
  height: 22rem;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}
.brands-image-container {
  position: relative;
  margin-bottom: 1.5rem;
  animation: scaleIn 1s ease-out 1.2s both;
}
.brands-image-container ul {
  display: flex;
  justify-content:center;;
/*  border: 1px solid #f0f0f0;
  border-radius: 14px;*/
  padding: 0px;
  align-content: center;
}
.brands-image-container ul li {
  display: flex;
  flex-direction: row;
  background: #fdfdfd;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 4px #f2f2f2;
}
.brands-image-container ul li img {
  width: 75px;
}

    .process-wrapper {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      display: flex;
      gap: 40px;
    }

    /* LEFT SIDEBAR */
    .steps-sidebar {
      width: 30%;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 25px rgba(242, 101, 34, 0.1);
      padding: 30px;
      position: sticky;
      top: 30px;
      height: fit-content;
    }

    .steps-sidebar h2 {
      font-size: 22px;
      margin-bottom: 20px;
      text-align: center;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .steps-list li {
      display: flex;
      align-items: center;
      padding: 14px 16px;
      margin-bottom: 10px;
      border-radius: 12px;
      cursor: pointer;
      border: 1px solid var(--border-light);
      font-weight: 500;
      font-size: 15px;
      color: var(--dark);
      transition: all 0.3s ease;
    }

    .steps-list li:hover {
      background: #fff3eb;
    }

    .steps-list li.active {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: #fff;
      border: none;
      box-shadow: 0 0 12px rgba(242, 101, 34, 0.3);
    }

    .steps-list li .num {
      background: #ffe3d3;
      color: var(--primary);
      width: 32px;
      height: 32px;
      line-height: 32px;
      text-align: center;
      border-radius: 50%;
      font-weight: 600;
      margin-right: 12px;
      flex-shrink: 0;
    }

    .steps-list li.active .num {
      background: #fff;
      color: var(--secondary);
    }

    /* RIGHT CONTENT */
    .steps-content {
      flex: 1;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 25px rgba(211, 47, 47, 0.08);
      padding: 40px;
      transition: all 0.3s ease;
    }

    .step-title {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .step-title .number {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: #fff;
      font-weight: 600;
      font-size: 18px;
      border-radius: 8px;
      padding: 8px 14px;
      margin-right: 14px;
    }

    .step-title h3 {
      font-size: 22px;
      margin: 0;
    }

    .step-desc {
      color: var(--text-gray);
      margin-bottom: 30px;
      line-height: 1.7;
    }

    .step-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .detail-card {
      background: var(--light-bg);
      padding: 20px;
      border-radius: 12px;
      border: 1px solid #ffe2d0;
      transition: all 0.3s ease;
    }

    .detail-card:hover {
      background: linear-gradient(90deg, #fff, #fff4ed);
      transform: translateY(-3px);
    }

    .detail-card h4 {
      color: var(--primary);
      font-size: 16px;
      margin-bottom: 8px;
    }

    .detail-card p {
      color: var(--text-gray);
      font-size: 14px;
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .process-wrapper {
        flex-direction: column;
      }
      .steps-sidebar {
        width: 100%;
      }
    }


/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-title {
        font-size: 2.5rem;
    }
    
    .enterprise-title {
        font-size: 2rem;
    }
    
    .process-title,
    .engagement-title,
    .faq-title {
        font-size: 2rem;
    }
    
    .featured-process-step {
        padding: 2rem;
    }
    
    .featured-faq {
        padding: 2rem;
    }
    
    .support-cta {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 80px 0;
    }
    
    .container-wide {
        padding: 0 15px;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefits-description {
        font-size: 1rem;
    }
    
    .benefits-enterprise-section {
        padding: 2rem 1rem;
        margin-bottom: 4rem;
    }
    
    .enterprise-title {
        font-size: 1.5rem;
    }
    
    .enterprise-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }
    
    .enterprise-benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-title,
    .engagement-title,
    .faq-title {
        font-size: 1.75rem;
    }
    
    .step-main-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.25rem;
    }
    
    .support-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .benefits-title {
        font-size: 1.75rem;
    }
    
    .enterprise-title {
        font-size: 1.25rem;
    }
    
    .process-title,
    .engagement-title,
    .faq-title {
        font-size: 1.5rem;
    }
    
    .enterprise-point {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .capability-card,
    .process-card,
    .engagement-card {
        padding: 1rem;
    }
    
    .featured-process-step,
    .featured-faq,
    .support-cta {
        padding: 1.5rem;
    }
}