body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #06351e;
    color: #fff;
    overflow-x: hidden;
}
header, section, footer {
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
header {
    text-align: center;
    background: #e0f7fa;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 50vw;
    margin: 2rem auto 0 auto;
}
.cta {
    background: #009688;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.cta:hover {
    background: #00796b;
}

section {
    padding: 3rem 1rem;
    text-align: center;
}
section h2 {
    font-size: 2.5rem;
    font-family: 'Georgia', serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
section .highlight {
    color: #6fffc2;
}
section > p {
    color: #baffc9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    background: #f1f8e9;
}
.stats div {
    flex: 1;
}
.comparison {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}
.comparison > div {
    flex: 1;
    background: #f9fbe7;
    border-radius: 8px;
    padding: 1rem;
}
.services {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}
.service {
    flex: 1;
    background: #e3f2fd;
    border-radius: 8px;
    padding: 1rem;
}
.plans {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.plan {
    flex: 1;
    background: #fffde7;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}
.plan-details {
    display: flex;
    gap: 1rem;
}
.plan-details .plan {
    background: #fce4ec;
}
form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}
input, textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button[type="submit"] {
    background: #009688;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.5rem;
}
button[type="submit"]:hover {
    background: #00796b;
}
footer {
    background: #002d26;
    padding: 2rem 1rem;
    text-align: center;
    color: #baffc9;
}
footer p {
    margin-bottom: 1.5rem;
}
.footer-links, footer nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}
footer a {
    color: #baffc9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
footer a:hover {
    color: #fff;
}
/* Mobile First - Small devices (phones, 576px and down) */
@media (max-width: 576px) {
    body {
        font-size: 12px;
    }
    
    .hero-content h1 {
        font-size: 1.4rem !important;
        line-height: 1.1;
        margin: 0.5rem 0;
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .hero-container {
        padding: 0.3rem;
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 100px; /* Reduced for better fit */
    }
    

    
    .hero-content {
        max-width: 100%;
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .subheadline {
        font-size: 0.8rem;
        padding: 0 0.3rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .top-bar {
        padding: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
        position: fixed;
        background: rgba(4, 26, 20, 0.98);
        backdrop-filter: blur(10px);
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        min-height: auto;
    }
    
    .top-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        white-space: nowrap;
        margin: 0.2rem;
    }
    
    .logo {
        text-align: center;
        width: 100%;
        margin-bottom: 0.3rem;
    }
    
    .logo img {
        height: 30px;
    }
    
    .main-nav {
        padding: 0.3rem 0.5rem;
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        border-radius: 1rem;
    }
    
    .main-nav a {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.5rem auto 0 auto;
        padding: 1.5rem 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .comparison-cards {
        padding: 0 1rem;
    }
    
    .comparison-card {
        min-width: auto;
        margin: 0;
    }
    
    .pricing-cards {
        padding: 0 1rem;
    }
    
    .pricing-card {
        max-width: none;
    }
    
    .service-cards {
        padding: 0 1rem;
    }
    
    .service-card {
        min-width: auto;
    }
    
    .contact-section form {
        padding: 0 1rem;
    }
    
    .form-group {
        flex-basis: 100%;
    }

    
    .marquee-content img {
        height: 160px;
    }
    
    .brand-marquee-content img {
        height: 60px;
    }
}

/* Tablets and small laptops (768px and down) */
@media (max-width: 768px) {
    .stats, .services, .plan-details, .comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    header, section, footer {
        padding: 1.5rem;
        margin: 1rem auto;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-container {
        padding-top: 120px;
    }
    
    .hero-video-wrapper {
        max-width: 90%;
        margin: 1.5rem 0;
    }
    
    .top-bar {
        position: fixed;
        background: rgba(4, 26, 20, 0.95);
        backdrop-filter: blur(10px);
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
        padding: 1rem;
    }
    
    .video-grid {
        gap: 1.5rem;
        max-width: 80vw;
        padding: 0 1rem;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .brands-row {
        gap: 2rem;
    }
    
    .brands-row img {
        height: 60px;
    }
    
    .analytics-slider img {
        width: 95vw;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta.modular {
        width: 100%;
        max-width: 300px;
    }
}

/* Standard tablets and small desktops (800px and down) */
@media (max-width: 800px) {
    .stats, .services, .plan-details, .comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    header, section, footer {
        padding: 1rem;
    }
    

    
    .video-wrapper iframe {
        width: 100%;
        height: 200px;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }

    .top-btn.right {
        display: none;
    }
}
.top-bar-gradient {
    background: linear-gradient(135deg, #6fffc2 0%, #fff 80%);
    padding-bottom: 2rem;
    
}

.top-btn {
    background: linear-gradient(135deg, #4fc3f7 60%, #009688 100%);
    color: #fff;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.top-btn.right {
    background: linear-gradient(135deg, #a8ff78 60%, #78ffd6 100%);
    color: #222;
}
.top-btn.left {
    margin-right: 1rem;
}
.top-btn:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.main-nav {
    display: flex;
    gap: 2rem;
    background: #0b2e1e;
    padding: 0.5rem 2rem;
    border-radius: 2rem;
    align-items: center;
}
.main-nav a {
    color: #baffc9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: #fff;
}
.hero-section {
    text-align: center;
    margin-top: 1.5rem;
    padding-bottom: 2rem;
}
.hero-section h1 {
    font-size: 3rem;
    font-family: 'Georgia', serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #222;
}
.subheadline {
    font-size: 1.2rem;
    color: #4e8d7c;
    font-style: italic;
    margin-bottom: 2rem;
}
.video-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.video-wrapper iframe {
    width: 560px;
    height: 315px;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    background: #000;
}
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.cta.white {
    background: #111;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    margin: 0.5rem 0;
    transition: background 0.2s;
}
.cta.white:hover {
    background: #333;
}
.creative-works-section {
    background: #06351e;
    color: #fff;
    border-radius: 0 0 2rem 2rem;
    margin-top: -2rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
    text-align: center;
}
.creative-works-section h2 {
    font-size: 2.5rem;
    font-family: 'Georgia', serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.creative-works-section .highlight {
    color: #6fffc2;
}
.creative-desc {
    color: #baffc9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    background: #222;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
@media (max-width: 800px) {

    .video-wrapper iframe {
        width: 100%;
        height: 200px;
    }
    .gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: #002d26;
    border-radius: 2rem;
    max-width: 900px;
    margin: 2rem auto 0 auto;
    padding: 2rem 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.stat-card {
    flex: 1;
    text-align: center;
    color: #fff;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6fffc2;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.85;
}

/* Growth Results Section */
.growth-results-section {
    background: #06351e;
    color: #fff;
    text-align: center;
    padding: 3rem 0 2rem 0;
}
.growth-results-section h2 {
    font-size: 2.5rem;
    font-family: 'Georgia', serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.growth-results-section .highlight {
    color: #6fffc2;
}
.growth-desc {
    color: #baffc9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.analytics-slider {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}
.analytics-slider img {
    width: 80vw;
    max-width: 900px;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    background: #fff;
}
.trusted-title {
    font-size: 2rem;
    margin-top: 3rem;
}
.trusted-desc {
    color: #baffc9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.brands-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}
.brands-row img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
    background: transparent;
}

/* Team vs Creator Comparison */
.team-vs-creator-section {
    background: #06351e;
    color: #fff;
    text-align: center;
    padding: 3rem 0 2rem 0;
}
.team-vs-creator-section h2 {
    font-size: 2.2rem;
    font-family: 'Georgia', serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.team-vs-creator-section .highlight {
    color: #6fffc2;
}
.team-desc {
    color: #baffc9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.comparison-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.comparison-card {
    background: #f8f9fa;
    color: #222;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 2rem 1.5rem;
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 500px;
    text-align: left;
    border: 3px solid #eee;
}
.comparison-card.standalone {
    border-color: #e57373;
}
.comparison-card.agency {
    border-color: #6fffc2;
}
.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #06351e;
}
.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comparison-card li {
    margin-bottom: 1rem;
    font-size: 1.08rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.comparison-card li b {
    font-weight: 900;
    color: #06351e;
    font-size: 1.1em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
/* Large tablets and small desktops (900px and down) */
@media (max-width: 900px) {
    .stats-bar, .brands-row, .comparison-cards {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .analytics-slider img {
        width: 100vw;
        max-width: 100%;
    }
    
    .hero-content h1 { 
        font-size: 3.5rem; 
    }
    
    .top-bar { 
        padding: 1.5rem 2rem; 
    }
    
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .marquee-content img {
        height: 200px;
    }
    
    .brand-marquee-content {
        gap: 4rem;
    }
    
    .brand-marquee-content img {
        height: 80px;
    }
}

/* Solutions Section */
.solutions-section {
    background: #002d26;
}
.service-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    flex-wrap: wrap;
}
.service-card {
    background: #e0f2f1;
    color: #004d40;
    border-radius: 1.5rem;
    padding: 2rem;
    flex: 1 1 3px;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-card li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    background: #06351e;
}
.toggle-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #6fffc2;
}
input:checked + .slider:before {
    transform: translateX(26px);
}
.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: nowrap;
}
.pricing-card {
    background: #f8f9fa;
    color: #222;
    border-radius: 1.5rem;
    padding: 2rem;
    flex: 1 1 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
}
.pricing-card.featured {
    background: #002d26;
    color: #fff;
    transform: scale(1.05);
    border: 3px solid #6fffc2;
}
.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    min-height: 3em;
}
.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.billing-cycle {
    opacity: 0.7;
    margin-bottom: 1.5rem;
}
.plan-includes {
    background: #004d40;
    color: #baffc9;
    padding: 0.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.pricing-card li {
    margin-bottom: 1rem;
}
.cta-outline {
    background: transparent;
    border: 2px solid #004d40;
    color: #004d40;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.cta-outline:hover {
    background: #004d40;
    color: #fff;
}
.cta-filled {
    background: #6fffc2;
    border: none;
    color: #004d40;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.cta-filled:hover {
    background: #fff;
}

/* FAQ Section */
.faq-section {
    background: #002d26;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    background: #f8f9fa;
    color: #222;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6fffc2;
    transition: transform 0.3s;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: #06351e;
}
.contact-section form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto;
}
.form-group {
    flex: 1 1 3px;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.form-group.full-width {
    flex-basis: 100%;
}
.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #baffc9;
}
.form-group input, .form-group textarea {
    background: #f8f9fa;
    color: #222;
    border: none;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.submit-btn {
    background: #002d26;
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s;
}
.submit-btn:hover {
    background: #004d40;
}
.book-call-footer {
    margin-top: 3rem;
    font-size: 2rem;
    font-family: 'Georgia', serif;
}

/* Calendly Embed Styling */
.calendly-embed {
    margin-top: 3rem;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
}

.calendly-inline-widget {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

/* Additional responsive improvements */
@media (max-width: 1200px) {
    .hero-video-wrapper {
        max-width: 90%;
    }
    
    .pricing-cards {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .service-cards {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .comparison-cards {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Medium devices (landscape tablets, 992px and down) */
@media (max-width: 992px) {
    .marquee-content {
        gap: 1.5rem;
    }
    

    
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Full-Screen Hero Section */
.hero-container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: #041a14;
    box-shadow: none;
    border-radius: 0;
}
#gradient-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    box-sizing: border-box;
    z-index: 1;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}
.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    z-index: 1;
}
.hero-content h1 {
    font-size: 4vh;
    font-family: 'Georgia', serif;
    margin-bottom: 1rem;
}
.hero-video-wrapper {
    width: 100%;
    max-width: 1400px; /* Large size for hero video */
    max-height: 40vh;
    aspect-ratio: 16 / 9;
    margin: 2rem 0;
    border-radius: 1.5rem;
    overflow: hidden;
    z-index: 1;
}
.hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
}
.hero-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.cta.modular {
    background: #6fffc2;
    color: #002d26;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 255, 194, 0.2);
}
.cta.modular:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(111, 255, 194, 0.4);
}
.cta.modular.transparent {
    background: transparent;
    color: #6fffc2;
    border: 2px solid #6fffc2;
    box-shadow: none;
}
.cta.modular.transparent:hover {
    background: #6fffc2;
    color: #002d26;
    box-shadow: 0 8px 25px rgba(111, 255, 194, 0.4);
}

/* Creative Works Marquee */
.creative-works-section {
    padding: 4rem 0;
}
.marquee-gallery {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.marquee-row {
    display: flex;
}
.marquee-content {
    display: flex;
    gap: 2rem;
    animation: marquee 40s linear infinite;
}
.marquee-row.reverse .marquee-content {
    animation-direction: reverse;
}
.marquee-content img {
    height: 220px;
    width: auto;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: transform 0.3s;
}
.marquee-content img:hover {
    transform: scale(1.05);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Video Showcase Section */
.video-showcase-section {
    background: #002d26;
    padding: 4rem 1rem;
}

.video-embed {
    position: relative;
    padding-top: 177.78%; /* 9:16 Aspect Ratio for vertical videos */
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Improved container max-widths for better responsiveness */
.hero-container, .stats-bar, .service-cards, .pricing-cards, 
.comparison-cards, .video-grid, .faq-container {
    box-sizing: border-box;
    width: 100%;
}

/* Extra small screens - aggressive sizing */
@media (max-width: 480px) {
    body {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .hero-content h1 {
        font-size: 1.2rem !important;
        margin: 0.3rem 0 0.5rem 0;
        line-height: 1.1;
        text-align: center;
        font-weight: 600;
    }
    
    .hero-container {
        padding-top: 90px !important;
        min-height: auto;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }

    
    .hero-content {
        margin-top: 100px;
        padding: 0 0.3rem;
        text-align: center;
    }
    
    .subheadline {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        padding: 0 0.2rem;
    }
    
    .hero-cta {
        margin-top: 0.8rem;
        gap: 0.6rem;
        flex-direction: column;
        align-items: center;
    }
    
    .cta.modular {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        max-width: 250px;
        border-radius: 1.2rem;
    }
    
    .top-bar {
        padding: 0.4rem !important;
        gap: 0.4rem !important;
    }



    .main-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        margin-bottom: 0.5rem;
    }

    .top-btn {
        padding: 0.3rem 0.8rem !important;
        font-size: 0.7rem !important;
    }
    
    .logo img {
        height: 100px !important;
    }
    
    .main-nav {
        padding: 0.2rem 0.3rem !important;
        gap: 0.6rem !important;
    }
    
    .main-nav a {
        font-size: 0.7rem !important;
        padding: 0.1rem 0.3rem !important;
    }
    
    section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .top-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .main-nav a {
        font-size: 1rem;
    }
    
    .marquee-content img {
        height: 140px;
    }
    
    .brand-marquee-content img {
        height: 50px;
    }
    
    .pricing-card, .service-card, .comparison-card {
        padding: 1.5rem;
    }
    
    .calendly-embed {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .calendly-inline-widget {
        height: 600px !important;
        min-width: 280px !important;
    }
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 80vw;
        padding: 0 1rem;
    }
}

/* Brand Marquee */
.brand-marquee {
    overflow: hidden;
    padding: 2rem 0;
    display: flex;
}
.brand-marquee-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    animation: marquee 30s linear infinite;
}
.brand-marquee-content img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7); /* Grayscale effect */
    transition: all 0.3s ease;
}
.brand-marquee-content img:hover {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.1);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Mobile-first approach - ensure touch-friendly interface */
@media (hover: none) and (pointer: coarse) {
    .cta, .top-btn, .submit-btn {
        min-height: 44px; /* Apple's recommended touch target size */
        min-width: 44px;
    }
    
    .faq-question {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Reduce hover effects on touch devices */
    .gallery img:hover,
    .marquee-content img:hover,
    .brand-marquee-content img:hover,
    .cta.modular:hover {
        transform: none;
    }
}

