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

html {
    scroll-behavior: smooth;
}

:root {
    --bg-color: #FDF9F8;
    --dark-bg: #131313;
    --darker-bg: #0F0F0F;
    --card-bg: #F8F7F4;
    --faq-bg: #F0F0F0;
    --button-bg: #181818;
    --banner-bg: #933300;
    --text-dark: #000000;
    --text-light: #FDF9F8;
    --text-gray: #A1A1A1;
    --orange-star: #FFA10A;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* Ensure all paragraphs are 16px */
p {
    font-size: 16px;
    line-height: 1.5;
}

/* Top Banner */
.top-banner {
    background-color: #930A00;
    color: var(--text-light);
    text-align: center;
    padding: 17px 0;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.top-banner p {
    position: relative;
    z-index: 1;
}

/* Falling Snow */
.top-banner .snowflake {
    position: absolute;
    top: -20px;
    font-size: 14px;
    opacity: 0.8;
    animation: snowfall 10s linear infinite;
    pointer-events: none;
}

.top-banner .snowflake:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 8s; }
.top-banner .snowflake:nth-child(2) { left: 15%; animation-delay: 1s; animation-duration: 9s; }
.top-banner .snowflake:nth-child(3) { left: 25%; animation-delay: 2s; animation-duration: 10s; }
.top-banner .snowflake:nth-child(4) { left: 35%; animation-delay: 0.5s; animation-duration: 7s; }
.top-banner .snowflake:nth-child(5) { left: 45%; animation-delay: 1.5s; animation-duration: 11s; }
.top-banner .snowflake:nth-child(6) { left: 55%; animation-delay: 2.5s; animation-duration: 8s; }
.top-banner .snowflake:nth-child(7) { left: 65%; animation-delay: 0.8s; animation-duration: 9s; }
.top-banner .snowflake:nth-child(8) { left: 75%; animation-delay: 1.8s; animation-duration: 10s; }
.top-banner .snowflake:nth-child(9) { left: 85%; animation-delay: 0.3s; animation-duration: 8.5s; }
.top-banner .snowflake:nth-child(10) { left: 95%; animation-delay: 2.2s; animation-duration: 9.5s; }

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.8;
    }
    100% {
        transform: translateY(80px) translateX(15px);
        opacity: 0;
    }
}

/* Header */
.header {
    padding: 10px 18px 0;
    max-width: 1920px;
    margin: 0 auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 333px 0 351px;
}

@media (max-width: 1800px) {
    .header-content {
        padding: 0 100px;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    padding: 12px 16px;
    margin: -12px -16px;
    border-radius: 8px;
    transition: none;
}

.logo-link:hover {
    text-decoration: none;
    color: inherit;
    opacity: 1;
    background-color: transparent;
}

.logo-link:active {
    opacity: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-img {
    width: 48px;
    height: 48px;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: var(--text-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 93px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
}

.btn-primary {
    background-color: var(--button-bg);
    color: var(--text-light);
    border: none;
    padding: 12px 31px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    padding: 60px 18px;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 19px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    display: block;
}

.hero-text {
    flex: 0 0 60%;
    max-width: 60%;
    padding-top: 31px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 800px;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.5;
}

.hero-cta {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.privacy-text {
    font-size: 12px;
    opacity: 0.5;
    margin-top: 12px;
    color: var(--text-dark);
    text-align: center;
    width: 100%;
}

.hero-review-logos {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.hero-review-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.hero-review-logo-google {
    height: 50px;
}

.btn-upload {
    background-color: var(--button-bg);
    color: var(--text-light);
    border: none;
    padding: 18px 28px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    width: auto;
    max-width: 400px;
    justify-content: space-between;
}

.upload-icon {
    width: 29px;
    height: 29px;
}

.hero-scroll-indicator {
    position: absolute;
    left: 80%;
    top: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: rotate(-8deg);
}

.hero-scroll-indicator p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.arrow-icon {
    width: 45px;
    height: auto;
    transform: rotate(0deg);
}

/* Examples Section */
.examples-section {
    background-color: var(--dark-bg);
    padding: 30px 18px 60px 18px;
    margin-top: 0;
}

.examples-container {
    max-width: 1920px;
    margin: 0 auto;
}

.examples-section .section-title {
    color: var(--text-light);
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 37.5px;
}

.examples-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 100px;
}

.example-item {
    flex: 1;
    max-width: 350px;
}

.example-video-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background-color: var(--darker-bg);
    aspect-ratio: 1;
}

.example-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.example-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(90px);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 90px;
    font-size: 16px;
    font-weight: 400;
    z-index: 2;
}

.example-play-pause {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.example-play-pause img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.5;
    filter: brightness(0) invert(1);
}

/* How It Works Section */
.how-it-works {
    padding: 95px 18px;
    max-width: 1920px;
    margin: 0 auto;
}

.how-it-works .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 60px;
}

.how-it-works-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
}

.steps-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 100%;
}

.how-it-works-video {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how-it-works-video-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background-color: var(--darker-bg);
    aspect-ratio: 5 / 4;
}

.how-it-works-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.how-it-works-cta {
    display: flex;
    justify-content: center;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 18px;
    max-width: 1920px;
    margin: 0 auto;
}

.reviews-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 57px;
}

.positive-reviews-bold {
    font-weight: 900;
}

.reviews-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 197px;
    margin-bottom: 50px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-scroll-container::-webkit-scrollbar {
    display: none;
}

.reviews-grid {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.review-card {
    background-color: var(--card-bg);
    padding: 20px 44px;
    border-radius: 12px;
    aspect-ratio: 5 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 150px;
    max-width: 400px;
}

.review-stars {
    margin-bottom: 12px;
}

.review-stars img {
    width: 96px;
    height: 13px;
}

.review-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.review-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
}

.author-avatar-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.missing-avatar {
    background: red;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.author-name {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.author-stars img {
    width: 96px;
    height: 13px;
}

.reviews-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.review-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* FAQ Section */
.faq-section {
    padding: 40px 18px;
    max-width: 80%;
    margin: 0 auto;
}

.faq-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 38px;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--faq-bg);
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--faq-bg);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 400;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 18px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta {
    padding: 116px 18px;
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
}

.final-cta .section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 14px;
}

.cta-description {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 27px;
    max-width: 454px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-upload-area {
    margin-bottom: 40px;
}

.upload-input-container {
    max-width: 984px;
    margin: 0 auto 17px;
    position: relative;
}

.upload-input {
    width: 100%;
    padding: 23px 37px;
    background-color: var(--faq-bg);
    border: none;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    padding-right: 66px;
}

.upload-icon-input {
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 29px;
}

.upload-hint {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
}

.final-cta-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 39px;
}

.btn-primary-large {
    background-color: var(--button-bg);
    color: var(--text-light);
    border: none;
    padding: 16px 32px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s;
    width: auto;
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.btn-primary-large:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 40px 18px;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 256px;
    padding-right: 256px;
}

.footer-copyright {
    font-size: 16px;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 31px;
}

.footer-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Terms of Service Section */
.terms-section {
    padding: 60px 18px;
    max-width: 900px;
    margin: 0 auto;
}

.terms-container {
    width: 100%;
}

.terms-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.terms-updated {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 32px;
}

.terms-intro {
    margin-bottom: 48px;
}

.terms-intro p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.terms-item {
    margin-bottom: 0;
}

.terms-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.terms-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.terms-item ul {
    margin: 12px 0;
    padding-left: 24px;
}

.terms-item li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.terms-item strong {
    font-weight: 700;
}

.terms-link {
    color: var(--text-dark);
    text-decoration: underline;
}

.terms-link:hover {
    opacity: 0.7;
}

.terms-subheading {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

/* Dashboard Section */
.dashboard-section {
    padding: 40px 18px;
    max-width: 80%;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

.dashboard-container {
    display: flex;
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
    align-items: flex-start;
}

.dashboard-upload-area {
    flex: 1;
    border: 2px solid #D9D9D9;
    border-radius: 40px;
    padding: 25px;
    background-color: var(--bg-color);
}

.dashboard-upload-left {
    max-width: 100%;
}

.dashboard-upload-right {
    max-width: 100%;
}

.dashboard-upload-zone {
    border: 2px dashed #D9D9D9;
    border-radius: 14px;
    padding: 60px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #FAFAFA;
    margin-bottom: 20px;
}

.dashboard-upload-zone:hover {
    border-color: var(--button-bg);
    background-color: #F5F5F5;
}

.dashboard-upload-zone.drag-over {
    border-color: var(--button-bg);
    background-color: #F0F0F0;
    border-style: solid;
}

.dashboard-upload-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-upload-zone:hover .dashboard-upload-icon {
    color: var(--button-bg);
}

.dashboard-upload-zone-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.dashboard-upload-zone-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #999;
}

.dashboard-waiting-time {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-top: 20px;
    text-align: center;
}

.dashboard-video-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.dashboard-video-element {
    width: 100%;
    max-width: 500px;
    border-radius: 14px;
    background-color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.dashboard-video-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

.dashboard-download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background-color: var(--button-bg);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
    cursor: pointer;
    border: none;
    flex: 1;
}

.dashboard-download-btn:hover {
    opacity: 0.9;
}

.dashboard-download-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.dashboard-upload-another-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid #D9D9D9;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    flex: 1;
    font-family: 'DM Sans', sans-serif;
}

.dashboard-upload-another-btn:hover {
    border-color: var(--button-bg);
    background-color: #F5F5F5;
}

.dashboard-upload-another-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.dashboard-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.dashboard-image-item {
    width: 100%;
}

/* Hide image items 2-10 by default, show only first */
.dashboard-image-item:not(:first-child) {
    display: none;
}

.dashboard-image-item:first-child {
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 0 auto;
    display: block !important;
}

.dashboard-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    padding: 20px;
    border-radius: 14px;
    transition: background-color 0.3s;
}

.dashboard-image-container:hover {
    background-color: #F5F5F5;
}

.dashboard-image-preview {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    object-fit: contain;
}

.dashboard-upload-another-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.3s;
}

.dashboard-upload-another-text:hover {
    opacity: 0.7;
}

.dashboard-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background-color: #FFE4E4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.dashboard-image-number {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
}

.dashboard-swap-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    opacity: 0;
    transition: opacity 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-swap-icon svg {
    width: 100%;
    height: 100%;
}

.dashboard-image-placeholder:hover .dashboard-swap-icon {
    opacity: 1;
}

.dashboard-main-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.dashboard-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.dashboard-credits-display {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: inline-block;
}

.dashboard-options {
    margin-bottom: 25px;
}

.dashboard-options-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.dashboard-option-buttons {
    display: flex;
    gap: 12px;
}

.dashboard-option-btn {
    flex: 1;
    padding: 14px;
    border-radius: 14px;
    border: 2px solid #D9D9D9;
    background-color: transparent;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
}

.dashboard-option-btn-active {
    background-color: #FFE4E4;
    border-color: #FFCDA3;
}

.dashboard-soundtrack {
    margin-bottom: 25px;
}

.dashboard-soundtrack-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.dashboard-soundtrack-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dashboard-soundtrack-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #D9D9D9;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dashboard-soundtrack-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dashboard-soundtrack-btn.active {
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.soundtrack-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.dashboard-soundtrack-btn:hover .soundtrack-icon {
    opacity: 1;
}

.soundtrack-preview-container {
    margin-top: 15px;
    padding: 12px;
    background-color: #F5F5F5;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.soundtrack-preview-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.soundtrack-preview-play-pause {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: var(--button-bg);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.soundtrack-preview-play-pause:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.soundtrack-preview-play-pause img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

.soundtrack-preview-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.soundtrack-preview-time {
    font-size: 12px;
    color: var(--text-gray);
}

.dashboard-generate-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--button-bg);
    color: var(--text-light);
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    transition: opacity 0.2s;
}

.dashboard-generate-btn:hover {
    opacity: 0.9;
}

.dashboard-generate-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.dashboard-privacy-note {
    font-size: 12px;
    font-weight: 400;
    color: #A1A1A1;
    text-align: center;
}

.dashboard-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.dashboard-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.dashboard-notification-success {
    background-color: #4CAF50;
}

.dashboard-notification-error {
    background-color: #f44336;
}

.dashboard-image-placeholder {
    cursor: pointer;
}

.dashboard-generate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 1400px) {
    .dashboard-container {
        flex-direction: column;
    }
    
    .dashboard-upload-left,
    .dashboard-upload-right {
        max-width: 100%;
    }
}

/* Missing Image Placeholder */
.missing-image {
    background-color: red;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px;
}

/* Pricing Section */
.pricing-section {
    padding: 47.5px 18px 95px 18px;
    max-width: 80%;
    margin: 0 auto;
}

.pricing-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.pricing-info-banners {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5%;
}

.info-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #6B6B6B;
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 90px;
    font-size: 16px;
    font-weight: 400;
}

.info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pricing-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    flex-wrap: nowrap;
}

.pricing-card-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1 1 33.333%;
    min-width: 250px;
    max-width: 33.333%;
    height: 100%;
}

.pricing-card-subtitle-above {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
    color: var(--text-dark);
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.subtitle-info-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pricing-card {
    background-color: var(--bg-color);
    border: 2px solid #D5CFCF;
    border-radius: 40px;
    padding: 35px 30px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.pricing-card-featured {
    background-color: var(--bg-color);
    border: 2px solid #FFA10A;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    border-radius: 40px;
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #FFA10A;
    z-index: 0;
    border-radius: 40px 40px 0 0;
    margin: 0;
}

.pricing-content-white {
    background-color: var(--text-light);
    border-radius: 14px;
    padding: 25px 30px 35px;
    margin: 50px 0 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.pricing-card-featured .pricing-plan-title {
    color: var(--text-dark);
    margin-top: 0;
}

.pricing-content-white .pricing-title-row {
    margin-top: 0;
    margin-bottom: 8px;
}

.pricing-card-featured .pricing-price {
    color: var(--text-dark);
}

.pricing-card-featured .pricing-note {
    color: var(--text-dark);
}

.pricing-card-featured .pricing-features {
    background-color: transparent;
    padding: 0;
    margin-top: 30px;
}

.pricing-card-featured .pricing-features li {
    color: var(--text-dark);
}

.pricing-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 6px;
}

.pricing-badge {
    background-color: #FF4242;
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 90px;
    font-size: 12px;
    font-weight: 400;
    flex-shrink: 0;
}

.pricing-badge-unlimited {
    background-color: #FF4242;
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 90px;
    font-size: 12px;
    font-weight: 400;
    flex-shrink: 0;
}

.pricing-badge-featured {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    color: var(--text-light);
    padding: 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    z-index: 2;
    text-align: center;
    width: 100%;
    pointer-events: none;
}

.pricing-plan-title {
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    flex-grow: 1;
}

.pricing-subtitle {
    display: none;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.price-current {
    font-size: 32px;
    font-weight: 400;
}

.price-period {
    font-size: 20px;
    font-weight: 400;
}

.price-original {
    font-size: 20px;
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.6;
}

.price-per-video {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    display: block;
    margin-top: 4px;
}

.pricing-note {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.8;
}

.pricing-card-featured .pricing-note {
    opacity: 1;
}

.pricing-features {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dark);
}

.pricing-card-featured .pricing-features li {
    color: var(--text-dark);
}

.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-button {
    background-color: var(--button-bg);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

.pricing-button-featured {
    background-color: var(--button-bg);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.button-icon-white {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.pricing-button:hover {
    opacity: 0.9;
}

.pricing-privacy-bottom {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-top: 40px;
    color: var(--text-dark);
}

.pricing-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
    max-width: 984px;
    margin-left: auto;
    margin-right: auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
}

.trust-icon {
    width: 16px;
    height: 16px;
}

.payments-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-top: 5px;
}

/* Responsive adjustments - simplified for desktop-first */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .final-cta .section-title {
        font-size: 40px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .pricing-container {
        flex-wrap: wrap;
    }
    
    .pricing-card-wrapper,
    .pricing-card-featured {
        flex: 1 1 calc(50% - 10px);
        min-width: 300px;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .pricing-card-wrapper,
    .pricing-card-featured {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Page Notification Styles */
.page-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.page-notification-success {
    background-color: #4CAF50;
}

.page-notification-error {
    background-color: #f44336;
}

/* Paywall Modal */
.paywall-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paywall-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.paywall-content {
    position: relative;
    z-index: 10001;
    background-color: var(--bg-color);
    border-radius: 18px;
    padding: 40px 30px;
    max-width: 76%;
    max-height: 95vh;
    min-height: 80vh;
    overflow-y: auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: auto;
}

.paywall-plans {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

/* Make paywall pricing cards fill the whole space */
.paywall-content .pricing-card-wrapper {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
}

.paywall-content .pricing-card-featured {
    width: 100% !important;
    max-width: 100% !important;
}

.paywall-content .pricing-card {
    padding: 25px 20px;
}

.paywall-content .pricing-card-featured {
    padding: 0;
}

.paywall-content .pricing-content-white {
    padding: 25px 20px;
}

.paywall-content .pricing-plan-title {
    font-size: 20px;
    line-height: 1.3;
}

.paywall-content .pricing-price {
    margin: 12px 0;
}

.paywall-content .pricing-price .price-current {
    font-size: 32px;
}

.paywall-content .pricing-note {
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.4;
}

.paywall-content .pricing-features {
    margin-top: 15px;
    gap: 8px;
}

.paywall-content .pricing-features li {
    font-size: 14px;
    padding: 4px 0;
    line-height: 1.4;
}

.paywall-content .pricing-button {
    margin-top: 15px;
    padding: 14px 24px;
    font-size: 16px;
}

.paywall-content .pricing-card-subtitle-above {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.paywall-content .pricing-badge {
    font-size: 12px;
    padding: 5px 10px;
}

.paywall-content .pricing-badge-featured {
    font-size: 12px;
    padding: 6px 12px;
    height: auto;
}

.paywall-content .feature-icon {
    width: 18px;
    height: 18px;
}

.paywall-content .pricing-title-row {
    margin-bottom: 10px;
}

/* Dashboard hidden when paywall is shown - controlled by JS */
.paywall-modal:not([style*="none"]) ~ * .dashboard-section,
body.has-paywall .dashboard-section {
    display: none;
}

@media (max-width: 1200px) {
    .paywall-plans {
        flex-wrap: wrap;
    }
    
    .paywall-plans .pricing-card-wrapper,
    .paywall-plans .pricing-card-featured {
        flex: 1 1 calc(50% - 10px);
        min-width: 300px;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .paywall-content {
        padding: 20px;
        max-width: 95%;
        overflow-y: auto;
    }
    
    .paywall-plans .pricing-card-wrapper,
    .paywall-plans .pricing-card-featured {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ============================================
   MOBILE RESPONSIVE STYLES (Landing Page)
   ============================================ */

/* Hamburger Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 768px) {
    /* Top Banner */
    .top-banner {
        padding: 16px 0;
        font-size: 18px;
    }
    
    .top-banner .snowflake {
        font-size: 16px;
    }
    
    /* Header */
    .header {
        padding: 12px 0 0;
        max-width: 100%;
    }
    
    .header-content {
        padding: 0 15px;
        position: relative;
        flex-wrap: nowrap;
        gap: 14px;
    }
    
    .logo-section {
        gap: 10px;
        flex: 1;
    }
    
    .logo-img {
        width: 52px;
        height: 52px;
    }
    
    .logo-title {
        font-size: 22px;
    }
    
    .logo-subtitle {
        font-size: 14px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 1000;
        transition: left 0.3s ease;
        padding: 80px 20px 20px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 24px;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
    }
    
    .nav .btn-primary {
        font-size: 20px;
        padding: 16px 32px;
        width: 100%;
        max-width: 300px;
        margin-top: 20px;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0 50px;
        max-width: 100%;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        padding: 0;
    }
    
    .hero-image {
        width: 100%;
        max-width: none;
        order: 1;
        padding: 0;
        margin: 0;
    }
    
    .hero-img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        display: block;
        border-radius: 19px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    }
    
    .hero-text {
        width: 100%;
        max-width: none;
        order: 2;
        text-align: center;
        padding: 0;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 24px;
        max-width: none;
    }
    
    .hero-description {
        font-size: 22px;
        line-height: 1.6;
        margin-bottom: 35px;
    }
    
    .hero-cta {
        align-items: center;
        margin-bottom: 30px;
        width: 100%;
        padding: 0;
    }
    
    .cta-wrapper {
        width: 100%;
        align-items: center;
    }
    
    .btn-upload {
        width: 100%;
        max-width: 100%;
        padding: 24px 32px;
        font-size: 22px;
        min-height: 68px;
    }
    
    .privacy-text {
        font-size: 16px;
        text-align: center;
        margin-top: 20px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-review-logos {
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .hero-review-logo {
        height: 32px;
        width: auto;
    }
    
    /* Examples Section */
    .examples-section {
        padding: 60px 0;
        max-width: 100%;
    }
    
    .examples-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .examples-section .section-title {
        font-size: 38px;
        margin-bottom: 35px;
    }
    
    .examples-grid {
        display: block;
        width: 100%;
        padding: 0;
    }
    
    .example-item {
        width: 100%;
        max-width: none;
        display: block;
        padding: 15px 0;
    }
    
    .example-video-wrapper {
        aspect-ratio: 16 / 9;
        width: 100%;
        display: block;
    }
    
    .example-video {
        width: 100%;
        display: block;
    }
    
    /* How It Works Section */
    .how-it-works {
        padding: 60px 0;
        max-width: 100%;
    }
    
    .how-it-works .section-title {
        font-size: 38px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .how-it-works-content {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        padding: 0 20px;
    }
    
    .steps-container {
        width: 100%;
        gap: 20px;
    }
    
    .step {
        padding: 20px 0;
    }
    
    .step-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 19px;
        line-height: 1.6;
    }
    
    .how-it-works-video {
        width: 100%;
    }
    
    .how-it-works-video-wrapper {
        aspect-ratio: 5 / 4;
        width: 100%;
    }
    
    .how-it-works-cta {
        margin-top: 30px;
    }
    
    .how-it-works-cta .btn-upload {
        width: 100%;
        padding: 24px 32px;
        font-size: 22px;
        min-height: 68px;
    }
    
    /* Reviews Section */
    .reviews-section {
        padding: 60px 0;
        max-width: 100%;
    }
    
    .reviews-section .section-title {
        font-size: 38px;
        margin-bottom: 35px;
        line-height: 1.3;
        padding: 0 20px;
    }
    
    .reviews-scroll-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        scroll-padding: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .reviews-grid {
        display: flex;
        gap: 24px;
        min-width: min-content;
        padding-bottom: 5px;
    }
    
    .review-card {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        flex-shrink: 0;
        padding: 30px;
        scroll-snap-align: center;
    }
    
    .review-title {
        font-size: 24px;
        margin-bottom: 14px;
    }
    
    .review-text {
        font-size: 19px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .review-author {
        gap: 14px;
    }
    
    .author-avatar-img {
        width: 46px;
        height: 46px;
    }
    
    .author-name {
        font-size: 17px;
    }
    
    .author-stars img {
        height: 16px;
    }
    
    .reviews-logos {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        align-items: center;
    }
    
    .review-logo {
        height: 40px;
        width: auto;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
        max-width: 100%;
    }
    
    .faq-section .section-title {
        font-size: 38px;
        margin-bottom: 35px;
        padding: 0 20px;
    }
    
    .faq-container {
        max-width: 90%;
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }
    
    .faq-item {
        padding: 0 20px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    .faq-question {
        font-size: 20px;
        padding: 16px 0 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 50px;
    }
    
    .faq-answer {
        font-size: 19px;
        line-height: 1.7;
        margin-top: 16px;
    }
    
    .faq-toggle {
        width: 32px;
        height: 32px;
    }
    
    /* Pricing Section */
    .pricing-section {
        max-width: 90%;
        width: 90%;
        margin: 0 auto;
        padding: 47.5px 0 95px 0;
    }
    
    .pricing-button,
    .pricing-button-featured {
        font-size: 20px;
        padding: 18px 32px;
        min-height: 60px;
    }
    
    /* Final CTA Section */
    .final-cta {
        padding: 70px 20px;
        max-width: 100%;
    }
    
    .final-cta .section-title {
        font-size: 42px;
        margin-bottom: 24px;
    }
    
    .cta-description {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 35px;
    }
    
    .final-cta .btn-upload {
        width: 100%;
        max-width: 100%;
        padding: 24px 32px;
        font-size: 22px;
        min-height: 68px;
    }
    
    .final-cta .privacy-text {
        font-size: 16px;
        margin-top: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 20px;
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 16px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 14px;
    }
    
    .footer-link {
        font-size: 18px;
    }
    
    /* Page Notification */
    .page-notification {
        top: 80px;
        right: 15px;
        left: 15px;
        padding: 16px 20px;
        font-size: 18px;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 19px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .review-card {
        min-width: 300px;
        max-width: 300px;
    }
    
    .btn-upload {
        padding: 20px 28px;
        font-size: 19px;
        min-height: 62px;
    }
    
    .step-title {
        font-size: 24px;
    }
    
    .step-description {
        font-size: 18px;
    }
    
    .faq-question {
        font-size: 19px;
    }
    
    .faq-answer {
        font-size: 18px;
    }
    
    .examples-section .section-title,
    .how-it-works .section-title,
    .reviews-section .section-title,
    .faq-section .section-title {
        font-size: 34px;
    }
}

