:root {
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #48556a;
    --primary: #FF6A00;
    --primary-600: #FFB432;
    --primary-700: #ff6a00;
    --dark: #111113;
    --border: #e9ecf1;
    --surface: #fbfbfb;
    --white: #ffffff;
    --bg-features: #FFB432;
    --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.2;
    color: var(--text);
    overflow-x: hidden;
}
p{
    line-height: 1.6 !important;
}
/* General Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.animate-scale {
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Staggered Animation Delays */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }

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

/* Header */
.header {
    color: var(--bg);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    background: transparent;
}
.header.scrolled {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--bg);
    text-decoration: none;
    font-weight: 500;
}

.sign-in-btn {
    background: var(--bg);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bg);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-menu li {
    text-align: center;
    padding: 0.5rem 0;
}

.mobile-menu a {
    color: var(--bg);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.mobile-menu.active {
    display: block;
}

/* Hero Section */
.hero {
    background: url(images/bg-hero.webp),linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    color: var(--bg);
    padding-top: 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero p {
    font-size: 16px;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 490px;
    margin: 0 auto;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}
.privacy {
    color: var(--primary);
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.privacy-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}
.privacy p {
    font-size: 16px;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 490px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.email-form {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.email-input {
    max-width: 526px;
    width: 100%;
    padding: 1.5rem 8rem 1.5rem 1.5rem; 
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-btn {
    background: var(--primary-700);
    color: var(--bg);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 28%;
    transform: translateY(-50%);
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: var(--primary-600); 
}


.phone-mockup {
    max-width: 1600px;
    margin: 0 auto;
    animation: scaleIn 1.2s ease-out 0.8s forwards;
    opacity: 0;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    scale: 1.1;
}

.phone-mockup img:hover {
    transform: scale(1.02);
}

/* Company Logos */
.companies {
    padding: 3rem 0;
    background: var(--white);
    overflow: hidden;
}

.company-logos {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: slideLogos 20s linear infinite;
    width: max-content;
}

.company-logos img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.company-logos img:hover {
    opacity: 1;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Features Section */

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feature-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    transition: color 0.3s ease;
}

.feature-content h2:hover {
    color: var(--primary);
}
.feature-content p {
    font-size: 1rem;
    color: var(--muted);
    margin-top: 10px;
}

.feature-list {
    display: flex;
    flex-direction: column;
}
.item{
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-feature{
    display: flex;
    flex-direction: column;
}
.info-feature h3{
    margin: 10px 0;
}
.feature-list-stream {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.item-stream{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(4, 4, 21, 0.1);
    background: var(--white);
    border-radius: 45px;
    width: 470px;
    padding: 28px;
    gap: 20px;
}
.item-stream-active{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 45px;
    margin-left: -30px;
    width: 470px;
    border: 1px solid rgba(4, 4, 21, 0.1);
    background: var(--white);
    padding: 28px;
    gap: 20px;
}
.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-list li::before {
    content: "✓";
    background: var(--primary);
    color: var(--bg);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.8rem;
}

.learn-more-btn {
    background: var(--primary);
    color: var(--bg);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.learn-more-btn:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

.learn-more-btn:active {
    transform: translateY(0);
}

.feature-image {
    width: 470px;
}

.feature-image img {
    max-width: 140%;
    height: auto;
}
.stream-smarter{
    height: 825px;
    overflow-y: hidden;
    width: 900px;
    margin: 0 auto;
    padding-top: 80px;
}
.container-stream-smarter,
.container-stream-seamless{
    background-color: rgba(255, 180, 50, 0.1);
}
.image-built-for-streamers{
    position: relative;
}
.container-stream{
    padding: 80px;
}
.img_1{
    position: absolute;
    right: -50px;
    top: 50px;
}
.img_2{
    position: absolute;
    left: -180px;
    top: 250px;
}
.img_ellipse{
    position: absolute;
    top: 600px;
    right: -90px;
}
.features-built-for-streamers{
    display: flex;
        height: 767px;
        overflow-y: hidden;
        padding: 90px;
        gap: 200px;
}
.image-left{
    margin-top: 720px;
}
.sub{
    color: var(--primary) !important;
    font-size: 20px;
    font-weight: 600;
}
/* What We Offer Section */
.offers {
    background: var(--surface);
    padding: 5rem 0;
    text-align: center;
}

.offers h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem;
}

.offers p {
    font-size: 1rem;
    color: var(--muted);
}

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

.offer-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.15);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 180, 50, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.offer-icon:hover {
    animation: bounce 0.6s ease;
}

.offer-icon img{
    color: var(--primary);
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon img {
    transform: scale(1.1);
}
.offer-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    color: var(--bg);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.stat-item{
    display: flex;
    gap: 20px;
    align-items: center;
}
.stat-item .icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    width: 160px;
}

.item-info{
    display: flex;
        flex-direction: column;
        align-items: flex-start;
}
/* Testimonials */
.testimonials {
    padding: 5rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

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

.testimonial-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 24, 40, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.avatar {
    margin-right: 1rem;
}

.testimonial-name {
    font-weight: 600;
    margin: 10px 0;
}

.testimonial-role {
    color: var(--muted);
    font-size: 0.9rem;
}

/* App Download */
.app-download {
    color: var(--bg);
    padding: 3rem 0;
    text-align: center;
    border-radius: 20px;
    margin: 3rem 0;
}
.download-container{
    background: linear-gradient(135deg, #FD371F 0%, #FF844B 100%);
    border-radius: 30px;
    margin: 50px;
    padding: 30px 80px;
    display: flex;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
        .img-cirle-3{
            opacity: 0.5;
            position: absolute;
            left: 620px;
            top: -40px;

            img{
                width: 200px;
                height: 115px;
            }
        }
        .img-cirle-2{
            opacity: 0.5;
            position: absolute;
            left: -24px;
            top: 65px;

            img{
                width: 113px;
                height: 68px;
                transform: rotate(-90deg);
            }
        }
        .img-cirle{
            opacity: 0.5;
            position: absolute;
            right: 0;
            top: 0;
        }
    .content-left{
        width: 50%;
        color: #fff;
        margin-right: 30px;
        h1{
            font-size: 38.4px;
            font-weight: 600 ;
        }
        p{
            margin-top: 20px;
            width: 450px;
        }
    }
    .content-right{
        display: flex;
        align-items: flex-end;
        margin-bottom: 10px;
        .app-buttons {
            display: flex;
            gap: 15px;

                img {
                    height: 70px;
                    cursor: pointer;
                }
            }
    }
}

/* Footer */
.footer {
    color: var(--bg);
    padding: 3rem 0 1rem;
    color: #000B33;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}
.footer-section p{
    margin-top: 20px;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--border);
    text-decoration: none;
    color: #000B33;
}
.footer-section ul li i{
    color: var(--primary);
    margin-right: 10px;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    text-align: center;
    color: #000B33;
}
.social-icons{
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 22px;
}
.social-icons a {
    color: var(--primary);
    text-decoration: none;
}
.social-icons a:hover {
    color: var(--primary);
}
/* Responsive */
/* Privacy Page Styles */
.privacy-hero {
    background: url(images/bg-hero.webp),linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.privacy-content {
    padding: 80px 0;
    background: var(--white);
}

.privacy-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start; /* giống align-items: start bên grid */
    gap: 60px;
}

.privacy-sidebar {
    flex: 0 0 280px;
}

.sidebar-sticky {
    position: fixed;
    top: 350px;
    width: 280px;
    background: var(--surface);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}


.sidebar-sticky h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.privacy-nav {
    list-style: none;
    padding: 0;
}

.privacy-nav li {
    margin-bottom: 12px;
}

.privacy-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
}

.privacy-nav a:hover {
    color: var(--primary);
    background: rgba(255, 106, 0, 0.1);
}

.privacy-nav a.active {
    color: var(--primary);
    background: rgba(255, 106, 0, 0.15);
    font-weight: 600;
}

.privacy-main {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.privacy-header {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1) 0%, rgba(255, 180, 50, 0.1) 100%);
    padding: 40px;
    border-bottom: 1px solid var(--border);
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.last-updated {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.intro-text p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-section {
    padding: 40px;
    border-bottom: 1px solid var(--border);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.privacy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin: 25px 0 15px 0;
}

.privacy-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin: 20px 0 10px 0;
}

.privacy-section p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.definitions-list {
    margin-top: 20px;
}

.definition-item {
    background: var(--surface);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
    line-height: 1.6;
    color: var(--muted);
}

.definition-item strong {
    color: var(--text);
    font-weight: 600;
}

.usage-list {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.usage-list li {
    background: var(--surface);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid var(--primary);
    color: var(--muted);
    line-height: 1.6;
    position: relative;
}

.usage-list li::before {
    content: "✓";
    background: var(--primary);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    position: absolute;
    left: -10px;
    top: 15px;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--surface);
    border-radius: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Scrolled header style */
.header.scrolled {
    background: rgba(255, 106, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Social icons in footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: var(--primary-600);
}

/* Footer contact info icons */
.footer-section ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.footer-section ul li i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

@media (max-width: 1024px) {
    .privacy-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar-sticky {
        position: static;
        margin-bottom: 30px;
    }
    
    .privacy-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .privacy-nav li {
        margin-bottom: 0;
    }
    
    .privacy-nav a {
        padding: 10px 15px;
        background: var(--surface);
        border-radius: 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 60px;
    }
    
    .privacy-hero h1 {
        font-size: 2.2rem;
    }
    
    .privacy-hero p {
        font-size: 1rem;
    }
    
    .privacy-content {
        padding: 40px 0;
    }
    
    .privacy-wrapper {
        padding: 0 15px;
    }
    
    .privacy-header,
    .privacy-section {
        padding: 25px;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .definition-item,
    .usage-list li {
        padding: 15px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .feature-row {
        gap: 2rem;
    }
    
    .features-built-for-streamers {
        gap: 100px;
        padding: 60px;
    }
    
    .container-stream {
        padding: 60px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header {
        padding: 0.8rem 0;
    }
    
    .nav {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .sign-in-btn {
        display: none;
    }
    
    .logo img {
        height: 35px;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 2rem;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 1rem;
        margin-top: 30px ;
    }

    .hero p {
        font-size: 14px;
        width: 100%;
        max-width: 350px;
        margin-bottom: 1.5rem;
    }


    /* Companies Mobile */
    .companies {
        padding: 2rem 0;
        overflow: hidden;
    }
    
    .company-logos {
        gap: 3rem;
        animation: slideLogos 15s linear infinite;
    }
    
    .company-logos img {
        height: 30px;
        width: auto;
        opacity: 0.7;
    }

    /* Features Mobile */
    .feature-row {
        display: flex;
  flex-direction: column-reverse;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px ;
    }
    
    .stream-smarter {
        height: auto;
        width: 100%;
        padding-top: 0px;
    }
    
    .container-stream-smarter,
    .container-stream-seamless {
        padding: 40px 0;
        height: 800px;
        overflow-y: hidden;
    }
    
    .features-built-for-streamers {
        flex-direction: column;
        height: 1230px;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .container-stream {
        padding: 40px 20px;
    }
    
    .feature-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .image-built-for-streamers {
        margin-bottom: 2rem;
    }
    
    .image-left {
        margin-top: 0;
        position: relative;
        height: 300px;
    }
    
    .img_1 {
        position: absolute;
        right: -50px;
        top: 20px;
        max-width: 120px;
    }
    
    .img_2 {
        position: absolute;
        left: -47px;
        top: 256px;
        max-width: 120px;
    }
    
    .img_ellipse {
        position: absolute;
        top: 380px;
        right: -78px;
        max-width: 60px;
    }
    
    .feature-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .feature-list-stream {
        align-items: center;
    }
    
    .item-stream,
    .item-stream-active {
        width: 100%;
        max-width: 350px;
        margin-left: 0;
        padding: 20px;
        flex-direction: row;
        text-align: left;
        gap: 15px;
        min-height: 80px;
    }
    
    .feature-list {
        gap: 15px;
    }
    
    .item {
        padding: 15px;
        border-radius: 12px;
        background: rgba(255, 180, 50, 0.05);
        gap: 15px;
    }
    
    .item img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .info-feature h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .info-feature p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .item-stream .info-feature,
    .item-stream-active .info-feature {
        text-align: left;
    }
    
    .item-stream h3,
    .item-stream-active h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .item-stream p,
    .item-stream-active p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Offers Mobile */
    .offers {
        padding: 3rem 0;
    }
    
    .offers h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
    }

    /* Stats Mobile */
    .stats {
        padding: 2rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stat-item {
        justify-content: center;
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .item-info {
        align-items: center;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }

    /* Download Container Mobile */
    .download-container {
        margin: 15px;
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .download-container .img-cirle,
    .download-container .img-cirle-2,
    .download-container .img-cirle-3 {
        display: none;
    }
    
    .download-container .content-left {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .download-container .content-left h1 {
        font-size: 24px;
        width: 100%;
        text-align: center;
    }
    
    .download-container .content-left p {
        margin-top: 10px;
        width: 100%;
        font-size: 14px;
    }
    
    .download-container .content-right {
        margin-left: 0;
        margin-bottom: 0;
        width: 100%;
        justify-content: center;
    }
    
    .download-container .app-buttons {
        justify-content: center;
        gap: 10px;
    }
    
    .download-container .app-buttons img {
        height: 50px;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
        .privacy-sidebar{
        display: none;
    }
}

@media (max-width: 480px) {

    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding-top: 2rem;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 13px;
        max-width: 300px;
    }
    
    .feature-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .offers {
        padding: 2rem 0;
    }
    
    .offers h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .offers p {
        font-size: 0.9rem;
    }
    
    .offer-card {
        padding: 1rem;
    }
    
    .offer-card h3 {
        font-size: 1.1rem;
    }
    
    .testimonials h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
  
    .cta-btn{
        right: 2%;
    }

    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
    
    .download-container .content-left h1 {
        font-size: 20px;
        line-height: 1.3;
    }
    .feature-image img{
        max-width: 100%;
        height: auto;
    }
    .download-container .content-left p {
        font-size: 13px;
    }
    
    .download-container {
        margin: 10px;
        padding: 20px 15px;
    }

    .stat-item{
        gap: 0;
    }
    .stat-item p{
        width: 100%;
    }
    .download-container .app-buttons img {
        height: 45px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
}