/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5B2C6F;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #5B2C6F;
}

.cta-button {
    background: #F4D03F;
    color: #5B2C6F;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #F1C40F;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #E5E7EB;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
}

.mobile-cta-button {
    background: #F4D03F;
    color: #5B2C6F;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8F4FF 0%, white 100%);
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1F2937;
}

.text-purple {
    color: #5B2C6F;
}

.hero-description {
    font-size: 1.25rem;
    color: #6B7280;
    line-height: 1.6;
}

.hero-cta {
    background: #5B2C6F;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.hero-cta:hover {
    background: #4A1A5C;
    transform: scale(1.05);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: linear-gradient(135deg, #E8D5FF 0%, #FFF9E6 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-item {
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero-item svg {
    color: #5B2C6F;
    margin-bottom: 0.5rem;
}

.hero-item:nth-child(2) svg,
.hero-item:nth-child(4) svg {
    color: #F4D03F;
}

.hero-item h3 {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.hero-item p {
    font-size: 0.875rem;
    color: #6B7280;
}

.floating-element {
    position: absolute;
    padding: 0.75rem;
	padding-bottom: 6px;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.floating-1 {
    background: #F4D03F;
    color: #5B2C6F;
    top: -1rem;
    right: -1rem;
    animation: bounce 2s infinite;
}

.floating-2 {
    background: #5B2C6F;
    color: white;
    bottom: -1rem;
    left: -1rem;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0,-30px,0);
    }
    70% {
        transform: translate3d(0,-15px,0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 48rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-purple {
    background: linear-gradient(135deg, #F3E8FF 0%, white 100%);
}

.feature-yellow {
    background: linear-gradient(135deg, #FFFBEB 0%, white 100%);
}

.feature-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: fit-content;
    margin-bottom: 1rem;
}

.feature-icon-purple {
    background: #5B2C6F;
    color: white;
}

.feature-icon-yellow {
    background: #F4D03F;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #6B7280;
}

/* Publishers Section */
.publishers {
    padding: 5rem 0;
    background: linear-gradient(135deg, #5B2C6F 0%, #7C3AED 100%);
}

.publishers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.publishers-text {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-description-white {
    font-size: 1.25rem;
    color: #E8D5FF;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-item svg {
    color: #F4D03F;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1.125rem;
}

.publishers-cta {
    background: #F4D03F;
    color: #5B2C6F;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.publishers-cta:hover {
    background: #F1C40F;
    transform: scale(1.05);
}

.publishers-cta svg {
    transition: transform 0.3s ease;
}

.publishers-cta:hover svg {
    transform: translateX(4px);
}

.publishers-visual {
    position: relative;
}

.publishers-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.publishers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.publishers-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.publishers-item-wide {
    grid-column: span 2;
}

.publishers-item svg {
    color: #F4D03F;
    margin-bottom: 0.75rem;
}

.publishers-item h3 {
    font-weight: 600;
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.publishers-item p {
    color: #E8D5FF;
}

/* Advertisers Section */
.advertisers {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F4D03F 0%, #F1C40F 100%);
}

.advertisers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.advertisers-text {
    color: #5B2C6F;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    order: 2;
}

.advertisers-visual {
    order: 1;
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5B2C6F;
    margin-bottom: 1rem;
}

.section-description-dark {
    font-size: 1.25rem;
    color: #7C3AED;
}

.benefits-list-dark {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item-dark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-item-dark svg {
    color: #5B2C6F;
    flex-shrink: 0;
}

.benefit-item-dark span {
    font-size: 1.125rem;
}

.advertisers-cta {
    background: #5B2C6F;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.advertisers-cta:hover {
    background: #4A1A5C;
    transform: scale(1.05);
}

.advertisers-cta svg {
    transition: transform 0.3s ease;
}

.advertisers-cta:hover svg {
    transform: translateX(4px);
}

.advertisers-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.advertisers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.advertisers-item {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.advertisers-item-wide {
    grid-column: span 2;
}

.advertisers-item svg {
    color: #5B2C6F;
    margin-bottom: 0.75rem;
}

.advertisers-item h3 {
    font-weight: 600;
    color: #5B2C6F;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.advertisers-item p {
    color: #7C3AED;
}

/* Social Proof Section */
.social-proof {
    padding: 5rem 0;
    background: linear-gradient(to right, #F8F4FF 0%, #FFFBEB 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon-purple {
    color: #5B2C6F;
}

.stat-icon-yellow {
    color: #F4D03F;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6B7280;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #F3E8FF 0%, white 100%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #C4B5FD;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #F4D03F;
}

.testimonial-text {
    color: #4B5563;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    background: #5B2C6F;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-name {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #5B2C6F;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #5B2C6F 0%, #7C3AED 100%);
}

.final-cta-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.final-cta-icon {
    color: #F4D03F;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
}

.final-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.final-cta-description {
    font-size: 1.25rem;
    color: #C4B5FD;
    margin-bottom: 2rem;
}

.final-cta-button {
    background: #F4D03F;
    color: #5B2C6F;
    font-weight: 700;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    font-size: 1.25rem;
}

.final-cta-button:hover {
    background: #F1C40F;
    transform: scale(1.05);
}

.final-cta-button svg {
    transition: transform 0.3s ease;
}

.final-cta-button:hover svg {
    transform: translateX(4px);
}

.final-cta-note {
    color: #C4B5FD;
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 24rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    background: #374151;
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background: #5B2C6F;
}

.footer-links-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

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

.footer-copyright {
    color: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .publishers-content,
    .advertisers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advertisers-text {
        order: 1;
    }
    
    .advertisers-visual {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .cta-button {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title,
    .section-title-white,
    .section-title-dark {
        font-size: 2rem;
    }
    
    .final-cta-title {
        font-size: 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title,
    .section-title-white,
    .section-title-dark {
        font-size: 1.75rem;
    }
    
    .final-cta-title {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-grid,
    .publishers-grid,
    .advertisers-grid {
        grid-template-columns: 1fr;
    }
    
    .publishers-item-wide,
    .advertisers-item-wide {
        grid-column: span 1;
    }
}