.mockup-container img {
    width: 100%; /* take full width of its column */
    max-width: 550px; /* reasonable max size */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Ensure hero content and image don't overlap on large screens */
@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* On small screens, adjust layout and spacing */
@media (max-width: 767px) {
    .nav {
        display: flex !important;
        justify-content: flex-end;
        gap: 1rem;
        flex-wrap: nowrap;
        font-size: 0.9rem;
        width: auto;
    }
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0.75rem 20px;
    }

    .mockup-container img {
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    /* Adjust hero section for mobile */
    .hero {
        padding: 30px 0 40px;
        margin-top: 0;
    }
    
    /* Header adjustments for mobile */
    .header {
        padding: 5px 0;
    }
    
    /* Adjust body padding for mobile */
    body {
        padding-top: 60px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    /* Show mobile phone image and hide desktop positioning */
    .mobile-phone {
        display: block;
        margin: 1.5rem 0;
    }
    
    .hero-visual {
        display: none; /* Hide the desktop image */
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-text {
        text-align: center;
    }

    
    .hero-subtitle {
        font-size: 1.1rem;
        margin: 0;
    }
    
    .hero-description {
        margin-bottom: .5rem;
    }
    
    /* Hide/show appropriate hero visuals */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #2E86AB;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border: #e1e5e9;
    --success: #28a745;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1 0 auto;
    padding-bottom: 2rem;
}

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

/* Header */
.header {
    background: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 40px;
}
.logo h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 20px;
}

/* Hero section container - single column layout */
.hero .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hero content - centered and full width */
.hero-content {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-title {
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    max-width: 800px; /* Matches content width */
    opacity: 0.9;
    line-height: 1.5;
}
/* Adjust hero title and subtitle for better desktop reading */

.hero-subtitle {
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    max-width: 800px; /* Matches content width */
    opacity: 0.9;
    line-height: 1.5;
}

/* Hero content structure - simplified */
.hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-visual {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Desktop styles for phone image */
.hero-visual-phone {
    max-width: 500px; /* Smaller size for desktop */
}



.mobile-phone {
    display: none; /* Hidden by default, shown on mobile */
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-section {
    margin-top: .5rem;
}

.waitlist-form {
    display: flex;
    margin-bottom: 0.5rem;
    padding-bottom: 10px;
}

.waitlist-form input {
    flex: 1;
    padding: 10px 20px;
    padding-bottom: 10px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    gap: 0.5rem;
    background: rgba(255,255,255,0.9);
}

.waitlist-form input::placeholder {
    color: var(--text-light);
}

.social-proof {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: flex-end;
    transform: translateX(80px); /* shift further right */
}

@media (max-width: 1023px) {
    .hero-visual {
        transform: translateX(100px); /* reset on tablets and below */
    }
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--white);
    border-radius: 30px;
    border: 10px solid #333;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.deal-card {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin: 10px;
}

.creator-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.verified {
    background: var(--success);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.deal-temp {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Creator Bios Section */
.bios-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.bios-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.bios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.bio-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.bio-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.bio-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.bio-item p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.problem-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.problem-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
}

.solution-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Generic Section Styles */

/* Specific Section Tweaks */
#about {
    background: var(--white);
}
.section {
    padding: 80px 0;
    scroll-margin-top: 90px; /* offset for fixed header */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.feature-tile {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    font-size: 1rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-weight: 600;
    color: var(--primary-color);
}

.creator-interest {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Creator Section */
.creator-section .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}
.creator-section .btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}
.creator-section {
    padding: 80px 0;
    background: var(--secondary-color);
    scroll-margin-top: 90px; /* offset for fixed header */
    color: var(--white);
}

.creator-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.creator-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.creator-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.creator-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.faq-item {
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Final CTA */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.final-cta {
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Thank You Section */
.thank-you-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 20px;
}

.thank-you-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thank-you-section .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Error (404) Section */
.error-section {
    background: linear-gradient(135deg, #ff6a6a 0%, #ff8c8c 100%);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 20px;
}

.error-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-section .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Modal */
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.modal-content {
    background: var(--white);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh; /* enable internal scroll */
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    color: var(--white);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2000;
}
.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}
.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.cookie-banner .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}
.cookie-banner .btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

@media (max-width: 767px) {
    .hero-visual {
        transform: translateX(20px);
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
    flex-shrink: 0;
    margin-top: auto;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: var(--text-dark);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--success);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: none;
    z-index: 1500;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 40px;
}
.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}
.footer-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}
.footer-nav a:hover {
    color: var(--primary-color);
}

/* Mobile Responsive */
/* Long Tail Keywords Section */
.long-tail-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.long-tail-section h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

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

.long-tail-item {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.long-tail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.long-tail-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.long-tail-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .waitlist-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .problems-grid, .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    .problems-grid, .features-grid, .testimonials-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
}
