/* Why BizEasy Page Styles */

/* Hero Section - 100vh Full Height - Account for notification banner + navbar */
.why-hero {
    min-height: 100vh;
    padding: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.12) 50%, rgba(240, 147, 251, 0.15) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Account for notification banner (40px) + navbar (72px) = 112px */
    padding-top: 112px;
    box-sizing: border-box;
    transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When banner is hidden, only account for navbar */
body.banner-hidden .why-hero {
    padding-top: 72px;
}

.why-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 80px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.why-hero-content {
    text-align: left;
}

.why-hero-title {
    font-size: var(--h1-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    margin-bottom: 24px;
    color: var(--text-color);
    letter-spacing: -0.03em;
    text-align: left;
}

.why-hero-title .gradient-highlight {
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.why-hero-subtitle {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: var(--font-weight-normal);
    letter-spacing: -0.01em;
}

.why-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Hero Visual - Statistics Cards */
.why-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.why-stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.why-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-stat-card:hover::before {
    transform: scaleX(1);
}

.why-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2), 0 0 0 1px rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.why-stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.why-stat-card:hover .why-stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(102, 126, 234, 0.15) 100%);
}

.why-stat-icon i {
    font-size: 28px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.why-stat-number {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    letter-spacing: -0.02em;
}

.why-stat-label {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.why-stat-description {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
    margin-top: 4px;
}

/* Section Styles */
.section-title {
    font-size: var(--h2-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    margin-bottom: 20px;
    color: var(--text-color);
    letter-spacing: -0.03em;
    text-align: center;
}

.section-title .gradient-highlight {
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.section-description {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-weight: var(--font-weight-normal);
}

/* What is BizEasy Section */
.what-is-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.what-is-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.what-is-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.what-is-content {
    text-align: left;
}

.what-is-title {
    font-size: var(--h2-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    margin-bottom: 24px;
    color: var(--text-color);
    letter-spacing: -0.03em;
    text-align: left;
}

.what-is-description {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    margin-bottom: 32px;
    font-weight: var(--font-weight-normal);
}

.what-is-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.what-is-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--font-size-base);
    color: var(--text-color);
}

.what-is-feature-item i {
    color: #a855f7;
    font-size: 18px;
    flex-shrink: 0;
}

/* What is Visual */
.what-is-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-is-image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.what-is-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-is-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.2), 0 0 0 1px rgba(168, 85, 247, 0.1);
}

.what-is-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.what-is-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Lead Generation Section */
.lead-generation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.lead-generation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.lead-generation-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    animation: mesh-drift 100s linear infinite;
}

@keyframes mesh-drift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1000px 1000px;
    }
}

.lead-generation-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.lead-generation-section .section-title {
    color: #ffffff;
    font-size: var(--h1-size);
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lead-generation-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-2xl);
    line-height: 1.6;
    max-width: 850px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lead-generation-section .gradient-highlight {
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4));
}

/* Floating Decorative Cards */
.banner-floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.floating-card i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.card-whatsapp {
    top: 15%;
    left: 12%;
    animation: floating-banner-1 8s ease-in-out infinite;
}

.card-whatsapp i {
    background: #25D366;
    color: #fff;
}

.card-sms {
    top: 20%;
    right: 12%;
    animation: floating-banner-2 10s ease-in-out infinite;
}

.card-sms i {
    background: #3b82f6;
    color: #fff;
}

.card-marketplace {
    bottom: 25%;
    left: 10%;
    animation: floating-banner-3 12s ease-in-out infinite;
}

.card-marketplace i {
    background: #f59e0b;
    color: #fff;
}

.card-email {
    top: 65%;
    right: 15%;
    animation: floating-banner-1 9s ease-in-out infinite reverse;
}

.card-email i {
    background: #ef4444;
    color: #fff;
}

.card-push {
    bottom: 12%;
    right: 25%;
    animation: floating-banner-2 11s ease-in-out infinite;
}

.card-push i {
    background: #a855f7;
    color: #fff;
}

@keyframes floating-banner-1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -25px);
    }
}

@keyframes floating-banner-2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 20px);
    }
}

@keyframes floating-banner-3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(10px, -15px);
    }

    66% {
        transform: translate(-10px, 10px);
    }
}

/* Hide floating cards on mobile if they clutter the view */
@media (max-width: 768px) {
    .banner-floating-cards {
        display: none;
    }
}

/* Growth Flow Section */
.growth-flow-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.growth-flow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.growth-flow-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.growth-flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    max-width: 180px;
}

.flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(255, 107, 53, 0.1) 50%, rgba(102, 126, 234, 0.1) 100%);
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.flow-icon i {
    font-size: var(--h4-size);
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.flow-step:hover .flow-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2);
    border-color: #a855f7;
}

.flow-label {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
    text-align: center;
    margin-bottom: 8px;
}

.flow-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    color: var(--text-light);
    text-align: center;
    max-width: 140px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .flow-description {
        max-width: 200px;
    }
}

.flow-arrow {
    color: var(--text-light);
    font-size: 24px;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .flow-arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }
}

/* Channels Section */
.channels-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.channels-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 40px auto 0;
}

@media (max-width: 1024px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 32px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    min-height: 220px;
}

.channel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--border-color);
}

.channel-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(255, 107, 53, 0.1) 50%, rgba(102, 126, 234, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.channel-icon i {
    font-size: var(--h5-size);
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.channel-label {
    font-size: var(--h5-size);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: var(--line-height-snug);
}

.channel-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    text-align: center;
    margin-top: 0;
    font-weight: var(--font-weight-normal);
}

/* Leads Generated Section */
.leads-generated-section {
    padding: 60px 0;
    background: #ffffff;
}

.leads-generated-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.leads-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .leads-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lead-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lead-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.lead-card:hover::before {
    transform: scaleX(1);
}

.lead-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--border-color);
}

.lead-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(255, 107, 53, 0.1) 50%, rgba(102, 126, 234, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.lead-card-icon i {
    font-size: var(--h5-size);
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.lead-card-title {
    font-size: var(--h5-size);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: var(--line-height-snug);
}

.lead-card-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    font-weight: var(--font-weight-normal);
    margin-bottom: 24px;
}

.lead-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--font-size-sm);
    color: var(--text-color);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-normal);
}

.lead-card-features li i {
    color: #10b981;
    font-size: var(--font-size-xs);
    flex-shrink: 0;
}

/* Partner Section */
.partner-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.partner-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.partner-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .partner-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.partner-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--border-color);
}

.partner-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(255, 107, 53, 0.1) 50%, rgba(102, 126, 234, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.partner-card-icon i {
    font-size: var(--h5-size);
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.partner-card-title {
    font-size: var(--h5-size);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: var(--line-height-snug);
}

.partner-card-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    font-weight: var(--font-weight-normal);
    margin-bottom: 24px;
}

.partner-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.partner-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--font-size-sm);
    color: var(--text-color);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-normal);
}

.partner-card-features li i {
    color: #10b981;
    font-size: var(--font-size-xs);
    flex-shrink: 0;
}

/* One Platform Section */
.one-platform-section {
    padding: 60px 0;
    background: #ffffff;
}

.one-platform-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content .section-description {
    margin-bottom: 32px;
}

.mission-text {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    background: #ffffff;
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-weight: var(--font-weight-normal);
    margin-top: 0;
}

/* Why Different Section */
.why-different-section {
    padding: 60px 0;
    background: #ffffff;
}

.why-different-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.why-different-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .why-different-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.why-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--border-color);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(255, 107, 53, 0.1) 50%, rgba(102, 126, 234, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-card-icon i {
    font-size: var(--h5-size);
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.why-card-title {
    font-size: var(--h5-size);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: var(--line-height-snug);
}

.why-card-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    font-weight: var(--font-weight-normal);
    margin-bottom: 24px;
}

.why-card-stats {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.stat-number {
    font-size: var(--h5-size);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    line-height: 1;
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--font-weight-semibold);
}

/* CTA Section */
.why-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.why-cta-title {
    font-size: var(--h1-size);
    font-weight: var(--font-weight-bold);
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: var(--line-height-snug);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.why-cta-title .gradient-highlight {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.why-cta-subtitle {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    font-weight: var(--font-weight-normal);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.why-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-hero {
        /* Account for notification banner (40px) + navbar (64px) = 104px */
        padding-top: 104px;
    }

    body.banner-hidden .why-hero {
        padding-top: 64px;
    }

    .why-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 24px 60px;
    }

    .why-hero-content {
        text-align: center;
    }

    .why-hero-title {
        font-size: var(--h1-size-mobile);
        text-align: center;
    }

    .why-hero-cta {
        justify-content: center;
    }

    .what-is-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .what-is-content {
        text-align: center;
    }

    .what-is-title {
        text-align: center;
    }

    .what-is-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-title {
        font-size: var(--h2-size-mobile);
    }

    .growth-flow-container {
        gap: 16px;
    }

    .flow-icon {
        width: 70px;
        height: 70px;
    }

    .flow-icon i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .why-hero {
        min-height: 100vh;
        /* Account for notification banner (36px) + navbar (64px) = 100px */
        padding-top: 100px;
        padding-bottom: 0;
    }

    body.banner-hidden .why-hero {
        padding-top: 64px;
    }

    .why-hero-wrapper {
        padding: 0 16px 60px;
        gap: 32px;
    }

    .why-hero-title {
        font-size: var(--h1-size-mobile);
    }

    .why-hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .why-hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-stat-card {
        padding: 28px 20px;
    }

    .why-stat-number {
        font-size: 40px;
    }

    .what-is-wrapper {
        padding: 0 16px;
        gap: 32px;
    }

    .what-is-image-decoration {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }

    .section-title {
        font-size: var(--h2-size-mobile);
    }

    .section-description {
        font-size: var(--font-size-base);
    }

    .what-is-section,
    .growth-flow-section,
    .channels-section,
    .leads-generated-section,
    .partner-section,
    .one-platform-section,
    .mission-section,
    .why-different-section {
        padding: 48px 0;
    }

    .lead-generation-section {
        padding: 60px 20px;
    }

    .lead-generation-section .section-title {
        font-size: var(--h2-size-mobile);
    }

    .lead-generation-section .section-description {
        font-size: var(--font-size-lg);
    }

    .why-cta-section {
        padding: 60px 0;
    }

    .growth-flow-container {
        flex-direction: column;
        gap: 12px;
    }

    .flow-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .leads-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .partner-cards-grid,
    .why-different-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .mission-text {
        padding: 32px 24px;
    }

    .why-cta-section {
        padding: 60px 0;
    }

    .why-cta-title {
        font-size: var(--h2-size-mobile);
    }

    .why-cta-subtitle {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 480px) {
    .why-hero {
        min-height: 100vh;
        /* Account for notification banner (32px) + navbar (60px) = 92px */
        padding-top: 92px;
        padding-bottom: 0;
    }

    body.banner-hidden .why-hero {
        padding-top: 60px;
    }

    .why-hero-wrapper {
        padding: 0 12px 50px;
        gap: 24px;
    }

    .why-hero-title {
        font-size: var(--h1-size-mobile);
    }

    .why-hero-subtitle {
        font-size: var(--font-size-base);
    }

    .why-hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-stat-card {
        padding: 24px 16px;
    }

    .why-stat-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .why-stat-icon i {
        font-size: 24px;
    }

    .why-stat-number {
        font-size: 36px;
    }

    .why-stat-label {
        font-size: var(--font-size-base);
    }

    .why-stat-description {
        font-size: var(--font-size-xs);
    }

    .what-is-wrapper {
        padding: 0 12px;
        gap: 24px;
    }

    .what-is-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .what-is-image-decoration {
        width: 60px;
        height: 60px;
    }

    .section-title {
        font-size: var(--h3-size-mobile);
    }

    .section-description {
        font-size: var(--font-size-sm);
    }

    .what-is-section,
    .growth-flow-section,
    .channels-section,
    .leads-generated-section,
    .partner-section,
    .one-platform-section,
    .mission-section,
    .why-different-section {
        padding: 40px 0;
    }

    .lead-generation-section {
        padding: 50px 16px;
    }

    .lead-generation-section .section-title {
        font-size: var(--h3-size-mobile);
        margin-bottom: 20px;
    }

    .lead-generation-section .section-description {
        font-size: var(--font-size-base);
    }

    .why-cta-section {
        padding: 48px 0;
    }

    .flow-icon {
        width: 60px;
        height: 60px;
    }

    .flow-icon i {
        font-size: var(--h5-size-mobile);
    }

    .flow-label {
        font-size: var(--font-size-sm);
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .channel-item {
        padding: 32px 24px;
    }

    .channel-label {
        font-size: var(--h5-size-mobile);
    }

    .channel-description {
        font-size: var(--font-size-sm);
    }

    .flow-description {
        font-size: var(--font-size-xs);
        max-width: 100%;
    }

    .lead-card,
    .partner-card,
    .why-card {
        padding: 32px 24px;
    }

    .lead-card-icon,
    .partner-card-icon,
    .why-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .lead-card-icon i,
    .partner-card-icon i,
    .why-card-icon i {
        font-size: var(--h5-size-mobile);
    }

    .lead-card-title,
    .partner-card-title,
    .why-card-title {
        font-size: var(--h5-size-mobile);
    }

    .lead-card-features,
    .partner-card-features {
        gap: 8px;
    }

    .lead-card-features li,
    .partner-card-features li {
        font-size: var(--font-size-xs);
    }

    .why-card-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-number {
        font-size: var(--h5-size-mobile);
    }

    .mission-text {
        padding: 24px 20px;
        font-size: var(--font-size-base);
    }

    .why-cta-section {
        padding: 60px 0;
    }

    .why-cta-title {
        font-size: var(--h3-size-mobile);
    }

    .why-cta-subtitle {
        font-size: var(--font-size-base);
    }

    .why-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}