* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-section {
    position: relative;
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: #ffffff;
    overflow: hidden;
}

.section-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
    border-radius: 50%;
    filter: blur(clamp(40px, 8vw, 80px));
}

.orb-3 {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(0, 74, 173, 0.15));
    top: -20vh;
    left: -10vw;
}

.orb-4 {
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.1), rgba(0, 74, 173, 0.1));
    bottom: -20vh;
    right: -10vw;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: clamp(20px, 3vw, 30px) clamp(20px, 3vw, 30px);
}

.content-container {
    width: min(95%, 1400px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 4rem);
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1F2937;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #0D6EFD, #0A58CA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6B7280;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.lead-text {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: #1F2937;
    line-height: 1.7;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(13, 110, 253, 0.03);
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.feature-highlight:hover {
    transform: translateY(-2px);
    background: rgba(13, 110, 253, 0.05);
    box-shadow: 0 10px 30px -5px rgba(13, 110, 253, 0.1);
}

.feature-icon {
    width: clamp(40px, 6vw, 48px);
    height: clamp(40px, 6vw, 48px);
    min-width: clamp(40px, 6vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: clamp(8px, 1.5vw, 12px);
    color: #0D6EFD;
}

.feature-content h4 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #6B7280;
    line-height: 1.6;
}

.sales-channels {
    background: white;
    border-radius: clamp(16px, 3vw, 24px);
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 20px 40px -5px rgba(13, 110, 253, 0.1);
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sales-channels h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #0D6EFD, #0A58CA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.channel-card {
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
    background: rgba(13, 110, 253, 0.03);
    border-radius: clamp(12px, 2vw, 16px);
    transition: all 0.3s ease;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.channel-card:hover {
    transform: translateY(-2px);
    background: rgba(13, 110, 253, 0.05);
}

.channel-icon {
    width: clamp(40px, 6vw, 48px);
    height: clamp(40px, 6vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: clamp(8px, 1.5vw, 12px);
    color: #0D6EFD;
    margin-bottom: 1rem;
}

.channel-card h4 {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.channel-card p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: #6B7280;
    line-height: 1.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.benefit-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: white;
    border-radius: clamp(16px, 3vw, 20px);
    box-shadow: 0 15px 35px -5px rgba(13, 110, 253, 0.1);
    transition: transform 0.3s ease;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: clamp(40px, 6vw, 48px);
    height: clamp(40px, 6vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: clamp(8px, 1.5vw, 12px);
    color: #0D6EFD;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.benefit-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #6B7280;
    line-height: 1.5;
}

.channel-logo {
    width: clamp(100px, 15vw, 120px);
    height: clamp(35px, 5vw, 40px);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.benefits-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.benefits-image {
    width: 100%;

    border-radius: clamp(16px, 3vw, 20px);
    overflow: hidden;
    box-shadow: 0 20px 40px -5px rgba(13, 110, 253, 0.1);
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-loaded {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 480px) {
    .feature-highlight {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .feature-icon {
        margin-bottom: 0;
    }
}