*,
ul {
    padding: 0;
    margin: 0
}

.navbar-brand,
.section-title,
body,
section {
    position: relative
}

.btn::before,
.nav-link::after {
    content: '';
    transition: transform var(--transition-normal)
}

.nav-item .btn,
.upload-filename {
    white-space: nowrap
}

.video-link,
a {
    text-decoration: none
}

.badge,
.pricing-badge,
.section-label {
    text-transform: uppercase
}

.accordion-item,
.author-avatar,
.btn,
.cta-card,
.feature-card,
.feature-hover,
.hero-section,
.pricing-card,
.shape-divider,
.upload-card,
.upload-filename,
.upload-progress-bar,
.upload-thumbnail {
    overflow: hidden
}

:root {
    --primary: #6C63FF;
    --primary-light: #8A83FF;
    --primary-dark: #5046FF;
    --secondary: #F8F9FA;
    --accent: #00D5A0;
    --background: #FFFFFF;
    --background-alt: #F9FAFB;
    --background-card: #FFFFFF;
    --bg-body: #f8fafc;
    --text: #222222;
    --text-secondary: #6A6A6A;
    --text-muted: #909090;
    --border: #EEEEEE;
    --shadow-sm: 0 2px 10px rgba(108, 99, 255, 0.05);
    --shadow-md: 0 6px 24px rgba(108, 99, 255, 0.08);
    --shadow-lg: 0 12px 32px rgba(108, 99, 255, 0.12);
    --shadow-hover: 0 20px 40px rgba(108, 99, 255, 0.16);
    --success: #4CD964;
    --warning: #FFC107;
    --danger: #FF3B30;
    --info: #5AC8FA;
    --blur-effect: 10px;
    --glass-background: rgba(255, 255, 255, 0.9);
    --gradient-primary: linear-gradient(135deg, #3763f4, #3763f4a3);
    --gradient-secondary: linear-gradient(135deg, #00D5A0, #2DCE89);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --space-1: 0.25rem;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-md: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem
}

* {
    box-sizing: border-box
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    color: var(--primary);
    transition: color var(--transition-normal)
}

.video-link:hover,
a:hover {
    color: var(--primary-dark)
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto
}

section {
    padding: 5rem 0
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text)
}

.section-header {
    margin: 0 auto 4rem;
    padding: 0 1rem
}

.section-label {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 2px;
    margin-bottom: .75rem
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text);
    padding-bottom: 1.5rem
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto
}

.navbar {
    padding: 1rem 0;
    background-color: var(--glass-background);
    backdrop-filter: blur(var(--blur-effect));
    -webkit-backdrop-filter: blur(var(--blur-effect));
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal)
}

.logo-text,
.nav-link::after {
    background: var(--gradient-primary)
}

.navbar.scrolled {
    padding: .75rem 0;
    box-shadow: var(--shadow-md)
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700
}

.navbar-logo {
    width: 170px;
    height: auto
}

.logo-text {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.copy-btn,
.logo-wrapper {
    position: relative;
    overflow: hidden
}

.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .8) 50%, rgba(255, 255, 255, 0) 100%);
    animation: 3s infinite shine;
    z-index: 2
}

.btn,
.headline,
.hero-section,
.nav-link {
    position: relative
}

@keyframes shine {
    0% {
        left: -100%
    }

    100%,
    20% {
        left: 100%
    }
}

.navbar-toggler {
    border: none;
    background: 0 0;
    color: var(--text);
    font-size: 1.5rem;
    outline: 0;
    transition: color var(--transition-normal)
}

.btn,
.nav-link,
.upload-card {
    transition: all var(--transition-normal)
}

.navbar-toggler:focus {
    box-shadow: none
}

.nav-link.active,
.nav-link:hover,
.navbar-toggler:hover,
.upload-status.uploading {
    color: var(--primary)
}

.navbar-nav {
    align-items: center
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    padding: .5rem 1rem;
    margin: 0 .25rem
}

.badge,
.btn {
    font-weight: 600
}

.nav-link::after {
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    border-radius: 1px
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1)
}

.nav-item {
    display: flex;
    align-items: center;
    margin: 0 var(--space-1)
}

.btn {
    padding: .75rem 1.5rem;
    border-radius: var(--border-radius-md);
    border: none;
    z-index: 1
}

.btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .1);
    transform: translateY(100%);
    z-index: -1
}

.btn:hover::before {
    transform: translateY(0)
}

.btn:active {
    transform: translateY(2px)
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--text-lg)
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #fff;
    box-shadow: 0 8px 20px rgba(108, 99, 255, .3)
}

.btn-gradient-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(108, 99, 255, .25)
}

.btn-gradient-primary:hover {
    box-shadow: 0 8px 24px rgba(108, 99, 255, .4);
    color: #fff;
    transform: translateY(-2px)
}

.btn-gradient-secondary {
    background: var(--gradient-secondary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 213, 160, .25)
}

.btn-gradient-secondary:hover {
    box-shadow: 0 8px 24px rgba(0, 213, 160, .4);
    color: #fff;
    transform: translateY(-2px)
}

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

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(108, 99, 255, .2)
}

.hero-section {
    padding-top: 8rem;
    padding-bottom: 6rem;
    background: linear-gradient(180deg, rgba(249, 250, 251, .8) 0, #fff 100%)
}

.bg-gradient,
.headline {
    background: var(--gradient-primary)
}

.headline {
    font-size: var(--text-5xl);
    margin-bottom: 1.5rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    display: inline-block
}

.description {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px
}

.badge {
    padding: .5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: var(--text-xs);
    letter-spacing: 1px;
    vertical-align: middle;
    margin-left: .5rem
}

.bg-gradient {
    color: #fff
}

.dropzone .dz-message i,
.stat-value {
    color: var(--primary);
    background: var(--gradient-primary)
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem
}

.pricing-action,
.stat-item {
    text-align: center
}

.stat-value {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: .25rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-secondary)
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 80px
}

.shape-divider .shape-fill {
    fill: var(--background)
}

.animation-container {
    width: 100%;
    height: 400px;
    position: relative;
    perspective: 1000px;
    margin-top: 2rem;
    visibility: visible !important;
    display: block !important
}

.main-container {
    padding-top: 50px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.upload-section {
    padding-top: 2rem;
    padding-bottom: 5rem;
    z-index: 2;
    position: relative
}

.upload-container {
    max-width: 900px;
    margin: 0 auto
}

.upload-card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--background-card)
}

.upload-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover)
}

.card-header {
    background: linear-gradient(135deg, rgba(108, 99, 255, .05), rgba(0, 213, 160, .05));
    border-bottom: 1px solid var(--border);
    padding: 1.5rem
}

.upload-title {
    margin: 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .5rem
}

.card-body {
    padding: 2rem
}

.dropzone {
    background: linear-gradient(135deg, rgba(108, 99, 255, .02), rgba(0, 213, 160, .02)) !important;
    border: 2px dashed rgba(108, 99, 255, .2) !important;
    border-radius: var(--border-radius-lg) !important;
    padding: 3rem !important;
    transition: all var(--transition-normal) !important;
    min-height: 200px !important
}

.dropzone:hover {
    border-color: var(--primary) !important;
    background: linear-gradient(135deg, rgba(108, 99, 255, .05), rgba(0, 213, 160, .05)) !important;
    box-shadow: var(--shadow-sm) !important
}

.upload-complete-link:hover,
.upload-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm)
}

.dropzone .dz-message {
    margin: 0 !important;
    text-align: center
}

.dropzone .dz-message i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.dropzone .dz-message h3 {
    font-size: var(--text-2xl);
    margin-bottom: .75rem;
    color: var(--text)
}

.dropzone .dz-message p {
    color: var(--text-secondary);
    font-size: var(--text-md)
}

.upload-progress-container {
    display: none;
    background: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto
}

.upload-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border)
}

.upload-progress-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text)
}

.btn-cancel,
.upload-stats,
.upload-status,
.warning-note {
    font-size: var(--text-sm)
}

.upload-progress-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: .8s linear infinite spinner
}

@keyframes spinner {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.upload-item {
    background: linear-gradient(135deg, rgba(108, 99, 255, .02), rgba(0, 213, 160, .02));
    border: 1px solid var(--border);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    align-items: center;
    transition: all var(--transition-normal)
}

.upload-filename,
.upload-status {
    margin-bottom: .5rem;
    font-weight: 600
}

.upload-thumbnail {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(108, 99, 255, .1), rgba(0, 213, 160, .1));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(108, 99, 255, .1)
}

.upload-thumbnail i {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.upload-info {
    min-width: 0
}

.upload-filename {
    text-overflow: ellipsis;
    color: var(--text)
}

.btn-cancel,
.step-card p,
.upload-stats,
.upload-status.pending {
    color: var(--text-secondary)
}

.upload-stats {
    display: flex;
    gap: 1rem
}

.upload-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, .05);
    border-radius: 3px;
    margin-top: .75rem
}

.upload-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    transition: width .3s;
    border-radius: 3px
}

.upload-status.processing {
    color: var(--warning)
}

.pricing-features .available i,
.upload-status.complete {
    color: var(--success)
}

.btn-cancel:hover,
.upload-status.error {
    color: var(--danger)
}

.btn-cancel {
    background: 0 0;
    border: none;
    cursor: pointer;
    transition: color var(--transition-normal)
}

.feature-card,
.feature-card i,
.icon-wrapper,
.upload-complete-link {
    transition: all var(--transition-normal)
}

.upload-complete-actions {
    display: none;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    animation: .5s fadeIn
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.footer-brand,
.step-icon,
.success-animation {
    margin-bottom: 1.5rem
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--success);
    stroke-miterlimit: 10;
    box-shadow: 0 0 0 rgba(76, 217, 100, .4);
    animation: .4s ease-in-out .4s forwards checkmark-fill, .3s ease-in-out .9s both checkmark-scale;
    margin: 0 auto 1rem
}

.feature-card,
.step-card {
    box-shadow: var(--shadow-md)
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--success);
    fill: none;
    animation: .6s cubic-bezier(.65, 0, .45, 1) forwards checkmark-stroke
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: .3s cubic-bezier(.65, 0, .45, 1) .8s forwards checkmark-stroke
}

.step-number,
.step-path {
    left: 50%;
    transform: translateX(-50%)
}

@keyframes checkmark-stroke {
    100% {
        stroke-dashoffset: 0
    }
}

@keyframes checkmark-scale {

    0%,
    100% {
        transform: none
    }

    50% {
        transform: scale3d(1.1, 1.1, 1)
    }
}

@keyframes checkmark-fill {
    100% {
        box-shadow: inset 0 0 0 80px rgba(76, 217, 100, .1)
    }
}

.upload-complete-actions p {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem
}

.guest-links {
    margin: 1.5rem 0;
    text-align: left;
    display: none
}

.guest-links>p {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text)
}

.warning-note {
    color: var(--warning);
    margin-top: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem
}

.step-number,
.video-link {
    font-size: var(--text-md)
}

.warning-note::before {
    content: '\f071';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900
}

.feature-card::before,
.icon-wrapper::after {
    content: '';
    position: absolute;
    transition: opacity var(--transition-normal);
    opacity: 0
}

#guestLinks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0
}

.upload-complete-link {
    background: linear-gradient(135deg, rgba(108, 99, 255, .05), rgba(0, 213, 160, .05));
    border: 1px solid rgba(108, 99, 255, .1);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    text-align: left
}

.upload-complete-link:hover {
    border-color: rgba(108, 99, 255, .2)
}

.video-link {
    color: var(--primary);
    display: block;
    margin-bottom: .75rem;
    word-break: break-all;
    font-weight: 500
}

.video-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.copy-btn.copy-success {
    background: rgba(76, 217, 100, .1);
    color: var(--success);
    border-color: rgba(76, 217, 100, .2)
}

.features-section {
    background-color: var(--background-alt);
    position: relative;
    padding: 6rem 0
}

.features-section .section-header {
    margin-bottom: 3rem
}

.features-section .section-label {
    margin-bottom: 1rem
}

.features-section .section-title {
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1.3
}

.features-grid {
    margin-top: 3rem
}

.feature-card {
    background: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 100%;
    border: 1px solid var(--border)
}

.feature-card::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, .05), rgba(0, 213, 160, .05));
    z-index: -1
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover)
}

.feature-card:hover .icon-wrapper::after,
.feature-card:hover::before {
    opacity: 1
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, .1), rgba(0, 213, 160, .1));
    position: relative
}

.icon-wrapper::after {
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0, transparent 65%, var(--primary) 65%, var(--accent) 85%, transparent 85%, transparent 100%);
    animation: 4s linear infinite rotate
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.feature-card i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.feature-card h3,
.step-card h3 {
    font-size: var(--text-xl);
    margin-bottom: 1rem;
    color: var(--text)
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem
}

.feature-hover {
    max-height: 0;
    transition: max-height var(--transition-slow)
}

.feature-card:hover .feature-hover {
    max-height: 200px
}

.feature-details {
    text-align: left;
    padding-top: 1rem
}

.feature-details li {
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--text-secondary)
}

.feature-details li i {
    font-size: 1rem;
    color: var(--success)
}

.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--background-alt) 0, var(--background) 100%);
    position: relative
}

.steps-container {
    position: relative;
    padding: 3rem 0
}

.step-path {
    position: absolute;
    top: 120px;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1
}

.step-card {
    background: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    height: 100%;
    border: 1px solid var(--border);
    transition: all var(--transition-normal)
}

.step-icon i,
.step-number {
    background: var(--gradient-primary)
}

.pricing-card:hover,
.step-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover)
}

.social-link:hover,
.stat-counter:hover {
    transform: translateY(-5px)
}

.step-number {
    position: absolute;
    top: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(108, 99, 255, .3)
}

.accordion-button:not(.collapsed),
.stats-section {
    background: linear-gradient(135deg, rgba(108, 99, 255, .05), rgba(0, 213, 160, .05))
}

.pricing-card,
.testimonial-card {
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal)
}

.step-icon i {
    font-size: 3rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.cta-text {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text)
}

.stat-number,
.stat-unit {
    font-weight: 700;
    display: inline-block
}

.stats-section {
    padding: 6rem 0
}

.pricing-cards,
.stats-container,
.testimonial-slider {
    padding: 2rem 0
}

.stat-counter {
    padding: 2rem 1rem;
    position: relative;
    transition: all var(--transition-normal)
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.author-info h4,
.stat-number {
    margin-bottom: .25rem;
    color: var(--text)
}

.stat-number {
    font-size: var(--text-4xl)
}

.stat-unit {
    font-size: var(--text-lg);
    color: var(--text)
}

.author-info h4,
.stat-label,
.testimonial-text {
    font-size: var(--text-md)
}

.stat-label {
    color: var(--text-secondary)
}

.faq-section,
.testimonial-section {
    padding: 6rem 0;
    background: var(--background)
}

.testimonial-card {
    background: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    height: 100%
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    color: #ffc107
}

.testimonial-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(108, 99, 255, .1)
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.author-info p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0
}

.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, .03), rgba(0, 213, 160, .03))
}

.pricing-card {
    background: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    position: relative;
    height: 100%
}

.amount,
.pricing-badge {
    background: var(--gradient-primary)
}

.pricing-card.featured {
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(108, 99, 255, .2)
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    color: #fff;
    padding: .5rem 2.5rem;
    font-size: var(--text-xs);
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(108, 99, 255, .3)
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border)
}

.pricing-title {
    font-size: var(--text-2xl);
    margin-bottom: 1.5rem;
    color: var(--text)
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--text)
}

.currency {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-right: .25rem
}

.amount {
    font-size: var(--text-4xl);
    font-weight: 700;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.accordion-button,
.accordion-item {
    background: var(--background-card)
}

.period {
    font-size: var(--text-md);
    color: var(--text-secondary);
    margin-left: .25rem
}

.pricing-features {
    margin-bottom: 2rem
}

.footer-links,
.pricing-features ul {
    list-style: none;
    padding: 0
}

.pricing-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative
}

.pricing-features li i {
    position: absolute;
    left: 0;
    top: 4px
}

.pricing-features .unavailable,
.pricing-features .unavailable i {
    color: var(--text-muted)
}

.accordion-item {
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal)
}

.accordion-item:hover {
    box-shadow: var(--shadow-sm)
}

.accordion-header,
.footer-bottom p {
    margin: 0
}

.accordion-button {
    font-weight: 600;
    color: var(--text);
    padding: 1.5rem;
    box-shadow: none
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    box-shadow: none
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(108, 99, 255, .1)
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236C63FF'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform var(--transition-normal)
}

.cta-card::after,
.cta-card::before {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, .1);
    z-index: 1
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7
}

.cta-card,
.cta-title {
    color: #fff;
    position: relative
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background) 0, var(--background-alt) 100%)
}

.cta-card,
.footer-brand .logo-text {
    background: var(--gradient-primary)
}

.cta-card {
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg)
}

.cta-card::before {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%
}

.cta-card::after {
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%
}

.cta-title {
    font-size: var(--text-3xl);
    margin-bottom: 1rem;
    z-index: 2
}

.cta-text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, .8);
    margin-bottom: 0;
    position: relative;
    z-index: 2
}

.footer,
.footer-links a {
    color: var(--text-secondary)
}

.btn-gradient-secondary {
    position: relative;
    z-index: 2
}

.footer {
    padding: 5rem 0 2rem;
    background: var(--background-alt)
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.footer-description {
    margin-bottom: 1.5rem;
    max-width: 360px
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(108, 99, 255, .1), rgba(0, 213, 160, .1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all var(--transition-normal)
}

.social-link:hover {
    background: var(--gradient-primary);
    color: #fff
}

.footer-heading {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text)
}

.footer-links li {
    margin-bottom: .75rem
}

.footer-links a {
    transition: color var(--transition-normal);
    display: inline-block
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px)
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-lang-selector {
    width: 150px
}

.form-select {
    border: 1px solid var(--border);
    border-radius: var(--border-radius-md);
    padding: .5rem 1rem;
    background-color: var(--background-card);
    color: var(--text);
    font-size: var(--text-sm)
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .25rem rgba(108, 99, 255, .1)
}

.floating-action-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(108, 99, 255, .3);
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 100
}

.fab-button:hover {
    transform: scale(1.1)
}

.fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal)
}

.fab-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.fab-item {
    background: var(--background-card);
    color: var(--text);
    padding: .75rem 1.25rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: var(--shadow-md);
    font-weight: 500;
    transition: all var(--transition-normal);
    border: 1px solid var(--border)
}

.fab-item:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(-5px)
}

.fab-item i {
    font-size: 1.2rem
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 1rem
}

@media (max-width:1200px) {
    .headline {
        font-size: var(--text-4xl)
    }

    .section-title {
        font-size: var(--text-3xl)
    }

    .cta-title {
        font-size: var(--text-2xl)
    }
}

@media (max-width:992px) {

    .footer-brand,
    .footer-description,
    .hero-section {
        text-align: center
    }

    .description,
    .footer-brand,
    .footer-description,
    .hero-stats {
        margin-left: auto;
        margin-right: auto
    }

    .hero-section {
        padding-top: 6rem
    }

    .cta-group,
    .social-links {
        justify-content: center
    }

    .animation-container {
        margin-top: 3rem
    }

    .step-path {
        display: none
    }

    .footer-heading {
        margin-top: 2rem
    }
}

@media (max-width:768px) {
    .headline {
        font-size: var(--text-3xl)
    }

    .description {
        font-size: var(--text-lg)
    }

    .section-title {
        font-size: var(--text-2xl)
    }

    .feature-card,
    .pricing-card,
    .step-card,
    .testimonial-card {
        margin-bottom: 2rem
    }

    .cta-card {
        padding: 2rem;
        text-align: center
    }

    .cta-section [class*=col-] {
        margin-bottom: 1rem
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }

    .footer-lang-selector {
        margin: 0 auto
    }
}

@media (max-width:576px) {
    .headline {
        font-size: var(--text-2xl)
    }

    .btn-lg,
    .description {
        font-size: var(--text-md)
    }

    .btn-lg {
        padding: .75rem 1.5rem
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center
    }

    .upload-item {
        grid-template-columns: 60px 1fr
    }

    .upload-actions {
        grid-column: span 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: .5rem
    }

    .video-actions {
        flex-direction: column;
        gap: .5rem
    }

    .video-actions .btn {
        width: 100%
    }

    .floating-action-button {
        bottom: 20px;
        right: 20px
    }

    .fab-button {
        width: 50px;
        height: 50px;
        font-size: 1.25rem
    }
}