/* ========================================
   CSS Variables - Color Palette
   ======================================== */
:root {
    --pacific-cyan: #0e87a8;
    --turquoise: #48e5c2;
    --bright-snow: #fcfaf9;
    --carbon-black: #171d1c;
    --shadow-grey: #272838;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--pacific-cyan), var(--turquoise));
    --gradient-overlay: linear-gradient(135deg, rgba(14, 135, 168, 0.05), rgba(72, 229, 194, 0.05));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bright-snow);
    color: var(--carbon-black);
    line-height: 1.7;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ========================================
   Animation Keyframes
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

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

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

.animate-scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

.animate-rotate-in {
    animation: rotateIn 0.8s ease-out forwards;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.animate-bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out forwards;
}

/* Initial state for animated sections */
section:not(.hero) {
    opacity: 0;
}

/* ========================================
   Typography
   ======================================== */
h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--carbon-black);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--carbon-black);
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--carbon-black);
}

p {
    font-size: 1.125rem;
    color: var(--shadow-grey);
    line-height: 1.8;
}

.lead {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   Navigation
   ======================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(252, 250, 249, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(23, 29, 28, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: fadeInDown 0.6s ease;
}

#navbar.scrolled {
    background: rgba(252, 250, 249, 0.98);
    box-shadow: 0 2px 30px rgba(23, 29, 28, 0.12);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo a {
    display: inline-block;
    line-height: 0;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--carbon-black);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--pacific-cyan);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--carbon-black);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary,
.btn-hero,
.btn-secondary,
.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 135, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 135, 168, 0.4);
}

.btn-hero {
    background: var(--pacific-cyan);
    color: white;
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
    box-shadow: 0 6px 20px rgba(14, 135, 168, 0.3);
}

.btn-hero:hover {
    background: #0a6d8a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 135, 168, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--pacific-cyan);
    border: 2px solid var(--pacific-cyan);
    box-shadow: 0 4px 15px rgba(14, 135, 168, 0.15);
}

.btn-secondary:hover {
    background: var(--pacific-cyan);
    color: white;
    box-shadow: 0 6px 20px rgba(14, 135, 168, 0.3);
}

.btn-cta {
    background: var(--turquoise);
    color: var(--carbon-black);
    font-size: 1.25rem;
    padding: 1.5rem 3.5rem;
    box-shadow: 0 6px 25px rgba(72, 229, 194, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.btn-cta:hover {
    background: #3dd1b0;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(72, 229, 194, 0.4);
    animation: none;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    background: var(--gradient-overlay);
    padding: 4rem 0;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-images {
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--shadow-grey);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 15px rgba(23, 29, 28, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(14, 135, 168, 0.15);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-item span:last-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--carbon-black);
}

/* Hero Images - Endless Scroll */
.hero-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    height: 650px;
    overflow: hidden;
}

.hero-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollDown 40s linear infinite;
    will-change: transform;
}

.hero-column.reverse {
    animation: scrollUp 40s linear infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollUp {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-image-item {
    flex: 0 0 320px;
    width: 100%;
    height: 569px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(23, 29, 28, 0.15);
    flex-shrink: 0;
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   Video Carousel Section
   ======================================== */
.video-carousel-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(14, 135, 168, 0.03), rgba(72, 229, 194, 0.03));
    overflow: hidden;
    direction: ltr;
}

.video-carousel {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.video-track {
    display: flex;
    width: max-content;
    animation: scrollHorizontal 50s linear infinite;
    direction: ltr;
}

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

.video-card {
    flex: 0 0 320px;
    height: 569px;
    margin-right: 20px;
    position: relative;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(23, 29, 28, 0.15);
}

/* ========================================
   Sections - General
   ======================================== */
section {
    padding: 5rem 0;
}

/* Why UGC Section */
.why-ugc {
    background: white;
}

.why-ugc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.why-ugc-text .lead {
    margin-bottom: 1.5rem;
}

.stats-list {
    list-style: none;
    margin: 2rem 0;
}

.stats-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--carbon-black);
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gradient-overlay);
    border-radius: 0.75rem;
}

.stat-icon {
    font-size: 2rem;
}

.highlight-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--pacific-cyan);
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-right: 5px solid var(--turquoise);
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(14, 135, 168, 0.1);
}

.why-ugc-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 1rem;
    box-shadow: 0 15px 50px rgba(23, 29, 28, 0.15);
    transition: transform 0.3s ease;
}

.why-ugc-image img:hover {
    transform: scale(1.05);
}

/* What We Solve Section */
.what-we-solve {
    background: var(--gradient-overlay);
}

.solve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solve-column {
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(23, 29, 28, 0.1);
}

.no-column {
    background: linear-gradient(135deg, #ffebee, #ffffff);
}

.yes-column {
    background: linear-gradient(135deg, #e0f7fa, #ffffff);
}

.solve-column h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.solve-column ul {
    list-style: none;
}

.solve-column ul li {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(23, 29, 28, 0.08);
}

/* How It Works Section */
.how-it-works {
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--gradient-overlay);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(23, 29, 28, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(14, 135, 168, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    box-shadow: 0 4px 20px rgba(14, 135, 168, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin: 2rem 0 1rem;
}

.step-card h3 {
    margin-bottom: 1.5rem;
    color: var(--carbon-black);
}

.step-card ul {
    list-style: none;
    text-align: right;
}

.step-card ul li {
    padding: 0.5rem 0;
    font-weight: 600;
    color: var(--shadow-grey);
}

.step-subtitle {
    margin: 1.5rem 0 1rem;
    font-weight: 700;
    color: var(--pacific-cyan);
}

.step-footer {
    margin-top: 1.5rem;
    font-weight: 800;
    color: var(--turquoise);
    font-size: 1.125rem;
}

/* Why Different Section */
.why-different {
    background: var(--gradient-overlay);
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(23, 29, 28, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(14, 135, 168, 0.2);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    line-height: 1.5;
}

/* Who Is It For Section */
.who-is-it-for {
    background: white;
}

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

.audience-card {
    background: var(--gradient-overlay);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 6px 25px rgba(23, 29, 28, 0.08);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 135, 168, 0.15);
}

.audience-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.25rem;
}

.audience-note {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pacific-cyan);
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 6px 25px rgba(14, 135, 168, 0.1);
}

/* Use Cases Section */
.use-cases {
    background: var(--gradient-overlay);
}

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

.use-case-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(23, 29, 28, 0.1);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(14, 135, 168, 0.2);
}

.use-case-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.use-case-card h3 {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
}

/* Pricing Section */
.pricing {
    background: white;
}

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

.pricing-card {
    background: var(--gradient-overlay);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(23, 29, 28, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(14, 135, 168, 0.2);
}

.pricing-card.best {
    background: linear-gradient(135deg, rgba(14, 135, 168, 0.1), rgba(72, 229, 194, 0.1));
    border: 2px solid var(--turquoise);
    transform: scale(1.02);
}

.pricing-card.best:hover {
    transform: translateY(-10px) scale(1.02);
}

.package-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    background: white;
    box-shadow: 0 4px 15px rgba(23, 29, 28, 0.1);
    text-align: center;
}

.package-badge.green {
    color: #4caf50;
}

.package-badge.blue {
    color: #2196f3;
}

.package-badge.purple {
    color: #9c27b0;
}

.package-badge.orange {
    color: #ff9800;
}

.package-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.package-videos {
    font-size: 2rem;
    font-weight: 800;
    color: var(--carbon-black);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--pacific-cyan);
    margin: 1rem 0;
}

.package-description {
    color: var(--shadow-grey);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.package-savings {
    color: var(--turquoise);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    text-align: right;
    margin-top: 1.5rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--shadow-grey);
    border-bottom: 1px solid rgba(23, 29, 28, 0.08);
}

.package-features li:last-child {
    border-bottom: none;
}

.pricing-info-notice {
    text-align: center;
    margin: 2rem auto 2.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(14, 135, 168, 0.1);
    border-right: 4px solid var(--pacific-cyan);
    border-radius: 0.75rem;
    max-width: 800px;
}

.pricing-info-notice p {
    color: var(--shadow-grey);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gradient-overlay);
    border-radius: 0.75rem;
}

.pricing-note p {
    color: var(--shadow-grey);
    font-size: 0.95rem;
    font-weight: 600;
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Section */
.faq {
    background: var(--gradient-overlay);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(23, 29, 28, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 30px rgba(14, 135, 168, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--carbon-black);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--pacific-cyan);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--pacific-cyan);
    transition: transform 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 135, 168, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--pacific-cyan);
    color: white;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--shadow-grey);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

/* Final CTA Section */
.final-cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--carbon-black), var(--shadow-grey));
    color: white;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--turquoise);
}

/* Footer About */
.footer-about .footer-logo a {
    display: inline-block;
    line-height: 0;
    transition: opacity 0.3s ease;
}

.footer-about .footer-logo a:hover {
    opacity: 0.8;
}

.footer-about .footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(72, 229, 194, 0.3);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Footer Links */
.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 0.75rem;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-col ul li a:hover {
    color: var(--turquoise);
    transform: translateX(-5px);
}

/* Footer Contact */
.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: var(--turquoise);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--turquoise);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

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

    .hero-images {
        order: -1;
        height: 450px;
    }

    .hero-image-item {
        flex: 0 0 240px;
        height: 427px;
    }

    .why-ugc-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-ugc-image {
        order: -1;
        text-align: center;
    }

    .solve-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 1rem;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .nav-cta .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
    }

    .nav-logo {
        order: 0;
    }

    .burger-menu {
        display: flex;
        order: 1;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(252, 250, 249, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        box-shadow: 0 8px 30px rgba(23, 29, 28, 0.15);
        border-radius: 0 0 1rem 1rem;
        gap: 0;
        order: 2;
        margin-top: 0.5rem;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(23, 29, 28, 0.08);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 1rem;
        display: block;
        padding: 1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        margin-top: 80px;
    }

    .hero-images {
        height: 350px;
        gap: 1rem;
    }

    .hero-image-item {
        flex: 0 0 180px;
        height: 320px;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .btn-hero,
    .btn-cta {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .video-card {
        flex: 0 0 280px;
        height: 498px;
    }

    .stats-list li {
        font-size: 1.25rem;
    }

    .lead {
        font-size: 1.25rem;
    }

    .pricing-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .pricing-info-notice {
        margin: 1.5rem auto 2rem;
        padding: 1rem 1.25rem;
    }

    .pricing-info-notice p {
        font-size: 0.9rem;
    }

    .features-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card,
    .audience-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon,
    .audience-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .feature-card h3,
    .audience-card h3 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }

    .footer-about {
        grid-column: 1;
        text-align: center;
    }

    .footer-about .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-col h4,
    .footer-contact h4 {
        text-align: center;
    }

    .footer-links-col ul,
    .contact-list {
        text-align: center;
    }

    .footer-links-col ul li a:hover {
        transform: translateX(0);
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal .separator {
        display: none;
    }
}
