* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section - Simplified */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    color: white;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 60%);
}

.hero-animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 3s ease-in-out infinite;
}

.orb-1 {
    top: 10%;
    left: 10%;
    width: 20rem;
    height: 20rem;
    background: rgba(255,255,255,0.1);
    animation-delay: 0s;
}

.orb-2 {
    bottom: 10%;
    right: 10%;
    width: 24rem;
    height: 24rem;
    background: rgba(245,158,11,0.15);
    animation-delay: 1.5s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(16px);
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 2rem;
}

.hero-badge i {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
}

.hero-badge span {
    background: linear-gradient(to right, white, #fef3c7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-title-main {
    display: block;
    background: linear-gradient(to right, white, #fef3c7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 8px rgba(0,0,0,0.04));
    letter-spacing: -0.025em;
}

.hero-title-sub {
    display: block;
    color: #fef3c7;
    font-size: 0.7em;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.025em;
    margin-top: 0.5rem;
}

.hero-subtitle {
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.hero-subtitle-main {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #fef3c7;
    line-height: 1.6;
    font-weight: 300;
}

.hero-subtitle-main .highlight {
    font-weight: 600;
    color: white;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:nth-child(2) {
    animation-delay: 1.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-primary {
    background: white;
    color: #ea580c;
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.25);
}

.btn-primary:hover {
    background: #fefce8;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
}

.btn-outline:hover {
    background: white;
    color: #ea580c;
}

.btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.btn i:first-child {
    margin-right: 0.75rem;
}

.btn i:last-child {
    margin-left: 0.75rem;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* What is BBUZZ Section */
.what-is-bbuzz-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, white 0%, rgba(254,243,199,0.3) 50%, rgba(254,215,170,0.5) 100%);
    position: relative;
    overflow: hidden;
}

.section-bg-elements {
    position: absolute;
    inset: 0;
}

.section-bg-elements::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(254,240,138,0.2) 0%, transparent 50%, rgba(254,215,170,0.2) 100%);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
}

.bg-orb-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(254,240,138,0.1);
}

.bg-orb-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(245,158,11,0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    transform: translateY(30px);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, #fef3c7, #fde68a);
    border-radius: 9999px;
    color: #78350f;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid #fde68a;
}

.section-badge i {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.section-badge-orange {
    background: linear-gradient(to right, #fed7aa, #fdba74);
    color: #9a3412;
    border-color: #fdba74;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(to right, #d97706, #f59e0b, #ea580c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-orange {
    background: linear-gradient(to right, #ea580c, #f59e0b, #d97706);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #6b7280;
    line-height: 1.6;
    max-width: 64rem;
    margin: 0 auto;
    font-weight: 300;
}

.section-description .highlight {
    font-weight: 600;
    color: #f59e0b;
}

.value-proposition {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    transform: translateY(30px);
}

@media (min-width: 1024px) {
    .value-proposition {
        grid-template-columns: 1fr 1fr;
    }
}

.value-content {
    space-y: 2rem;
}

.value-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.comparison-list {
    space-y: 1.5rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.what-is-bbuzz-section.animate-visible .comparison-item:nth-child(1) {
    animation-delay: 0.6s;
}

.what-is-bbuzz-section.animate-visible .comparison-item:nth-child(2) {
    animation-delay: 0.8s;
}

.what-is-bbuzz-section.animate-visible .comparison-item:nth-child(3) {
    animation-delay: 1s;
}

.what-is-bbuzz-section.animate-visible .comparison-item:nth-child(4) {
    animation-delay: 1.2s;
}

.comparison-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-item.fail .comparison-icon {
    background: #fee2e2;
}

.comparison-item.fail .comparison-icon i {
    width: 1rem;
    height: 1rem;
    color: #dc2626;
}

.comparison-item.success .comparison-icon {
    background: #dcfce7;
}

.comparison-item.success .comparison-icon i {
    width: 1rem;
    height: 1rem;
    color: #16a34a;
}

.comparison-content h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.comparison-item.success .comparison-content h4 {
    color: #f59e0b;
}

.comparison-content p {
    color: #6b7280;
}

.value-visual {
    position: relative;
}

.ai-showcase {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #f97316);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transform: rotate(2deg);
    transition: all .3s linear;
}

.ai-showcase:hover {
    transform: rotate(0deg);
}

.ai-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.ai-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to right, #fbbf24, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ai-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.ai-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.ai-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.ai-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
}

.ai-stat {
    text-align: center;
}

.ai-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
}

.ai-stat-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.feature-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .feature-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: linear-gradient(135deg, white 0%, rgba(254,243,199,0.5) 50%, rgba(254,215,170,0.3) 100%);
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 0;
}

.what-is-bbuzz-section.animate-visible .feature-card:nth-child(1) {
    animation-delay: 0.8s;
}

.what-is-bbuzz-section.animate-visible .feature-card:nth-child(2) {
    animation-delay: 1s;
}

.what-is-bbuzz-section.animate-visible .feature-card:nth-child(3) {
    animation-delay: 1.2s;
}

.feature-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon-yellow {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
}

.feature-icon-orange {
    background: linear-gradient(to right, #f59e0b, #f97316);
}

.feature-icon-amber {
    background: linear-gradient(to right, #f97316, #f59e0b);
}

.feature-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-details {
    font-size: 0.875rem;
}

.feature-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-detail i {
    width: 1rem;
    height: 1rem;
    color: #f59e0b;
}

.feature-detail span {
    color: #374151;
}

.section-cta {
    background: linear-gradient(to right, #fbbf24, #f59e0b, #f97316);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    text-align: center;
}

.section-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-cta p {
    color: #fef3c7;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.section-cta-orange {
    background: linear-gradient(to right, #f97316, #f59e0b, #fbbf24);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Who is it for Section */
.who-for-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fef3c7 50%, #fed7aa 100%);
    position: relative;
    overflow: hidden;
}

.bg-orb-3 {
    top: 8rem;
    right: 2.5rem;
    width: 20rem;
    height: 20rem;
    background: rgba(254,215,170,0.1);
}

.bg-orb-4 {
    bottom: 8rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(254,240,138,0.1);
}

.audience-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.audience-card-blue {
    border-top: 4px solid;
    border-image: linear-gradient(to right, #007cf0, #00dfd8) 1;
}

.audience-card-purple {
    border-top: 4px solid;
    border-image: linear-gradient(to right, #7928ca, #ff0080) 1;
}

.audience-card-green {
    border-top: 4px solid;
    border-image: linear-gradient(to right, #17ad37, #98ec2d) 1;
}

.audience-card-orange {
    border-top: 4px solid;
    border-image: linear-gradient(to right, #f7971e, #ffd200) 1;
}

@media (min-width: 768px) {
    .audience-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .audience-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.audience-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius:  0 0 1rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.who-for-section.animate-visible .audience-card:nth-child(1) {
    animation-delay: 0.6s;
}

.who-for-section.animate-visible .audience-card:nth-child(2) {
    animation-delay: 0.8s;
}

.who-for-section.animate-visible .audience-card:nth-child(3) {
    animation-delay: 1s;
}

.who-for-section.animate-visible .audience-card:nth-child(4) {
    animation-delay: 1.2s;
}

.audience-card::before {
    content: '';
    position: absolute;
    inset: 0;
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.audience-card-blue::before {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe, #a5b4fc);
}

.audience-card-purple::before {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff, #fce7f3);
}

.audience-card-green::before {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0, #a7f3d0);
}

.audience-card-orange::before {
    background: linear-gradient(135deg, #fed7aa, #fdba74, #fef3c7);
}

.audience-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 10;
}

.audience-card:hover .audience-icon {
    transform: scale(1.1);
}

.audience-card-blue .audience-icon {
    background: linear-gradient(to right, #3b82f6, #4f46e5);
}

.audience-card-purple .audience-icon {
    background: linear-gradient(to right, #8b5cf6, #ec4899);
}

.audience-card-green .audience-icon {
    background: linear-gradient(to right, #10b981, #059669);
}

.audience-card-orange .audience-icon {
    background: linear-gradient(to right, #f97316, #f59e0b);
}

.audience-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
    position: relative;
    z-index: 10;
}

.audience-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.audience-features {
    font-size: 0.875rem;
    position: relative;
    z-index: 10;
}

.audience-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.audience-card-blue .audience-feature i {
    color: #3b82f6;
}

.audience-card-purple .audience-feature i {
    color: #8b5cf6;
}

.audience-card-green .audience-feature i {
    color: #10b981;
}

.audience-card-orange .audience-feature i {
    color: #f97316;
}

.audience-feature i {
    width: 1rem;
    height: 1rem;
}

.audience-feature span {
    color: #374151;
}

.success-stories {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    border: 0;
}

.success-stories h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #111827;
    margin-bottom: 2rem;
}

.success-description{
    text-align: center;
    padding: 0 6rem;
}
@media (max-width: 768px) {
    .success-description{
        padding: 0 1rem;
    }
}
.success-stats {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .success-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.success-stat {
    text-align: center;
}

.who-for-section.animate-visible .success-stat:nth-child(1) {
    animation-delay: 0.8s;
}

.who-for-section.animate-visible .success-stat:nth-child(2) {
    animation-delay: 1s;
}

.who-for-section.animate-visible .success-stat:nth-child(3) {
    animation-delay: 1.2s;
}

.success-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-stat-blue {
    color: #3b82f6;
}

.success-stat-purple {
    color: #8b5cf6;
}

.success-stat-orange {
    color: #f97316;
}

.success-stat-label {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.success-stat-sub {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fbbf24, #f59e0b, #f97316);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f59e0b;
}

.footer-links i {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Utility Classes */
.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}
