/* [SITESECTION:1:variables] */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg-dark: #0d0d14;
    --bg-deep: #0d0d14;
    --bg-light: #1a1a24;
    --bg-card: #1a1a24;
    --bg-card-alt: #21212e;
    --primary: #ff2e63;
    --primary-light: #ff5c87;
    --primary-dark: #d11a4a;
    --primary-rgb: 255, 46, 99;
    --secondary: #9d4edd;
    --secondary-rgb: 157, 78, 221;
    --accent: #00d4ff;
    --accent-rgb: 0, 212, 255;
    --text-color: #f0f0f5;
    --text-muted: #a0a0b0;
    --gradient-1: linear-gradient(135deg, #ff2e63, #9d4edd);
    --gradient-2: linear-gradient(135deg, #9d4edd, #00d4ff);
    --gradient-dark: linear-gradient(180deg, #0d0d14, #15151f);
    --border-radius: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

video {
    max-width: 100%;
}
/* [/SITESECTION:1] */

/* [SITESECTION:2:layout] */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.45);
}

.btn-primary:hover::after {
    left: 130%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 2px solid rgba(var(--secondary-rgb), 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.25);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
}

.btn-danger:hover {
    background: #b02a37;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.btn-pulse {
    animation: attention-pulse 2s infinite;
}

.req {
    color: var(--primary);
}
/* [/SITESECTION:2] */

/* [SITESECTION:3:header] */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(var(--secondary-rgb), 0.2);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(13, 13, 20, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo i {
    font-size: 1.6rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    color: #fff;
}

.logo strong {
    color: var(--primary);
}

.logo em {
    font-style: normal;
    color: var(--accent);
    font-size: 0.85rem;
    margin-left: 4px;
}

.main-nav ul {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent);
}

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

.header-cta {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* [/SITESECTION:3] */

/* [SITESECTION:4:hero] */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 50% 40%, rgba(var(--primary-rgb), 0.25), transparent 55%),
                radial-gradient(circle at 70% 70%, rgba(var(--secondary-rgb), 0.2), transparent 50%);
    animation: pulse-glow 7s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.5);
    animation: float-particle linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(var(--primary-rgb), 0.15);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
    border-radius: 30px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 18px;
}

.hero-text p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.hero-video-block {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 40px auto;
    border-radius: 16px;
    padding: 4px;
    background: var(--gradient-1);
    box-shadow: 0 0 40px rgba(var(--secondary-rgb), 0.4);
    animation: video-glow-pulse 4s ease-in-out infinite;
}

.video-glow {
    position: absolute;
    inset: -10px;
    border-radius: 20px;
    background: var(--gradient-2);
    filter: blur(30px);
    opacity: 0.4;
    z-index: -1;
}

.hero-video {
    width: 100%;
    border-radius: 14px;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000;
}

.hero-upload {
    margin-top: 16px;
}

.upload-preview {
    position: relative;
    display: inline-block;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(var(--accent-rgb), 0.4);
}

.upload-preview img {
    width: 100%;
    border-radius: 10px;
}

.preview-clear {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.upload-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    color: var(--accent);
    font-weight: 500;
}

.upload-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(var(--accent-rgb), 0.3);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
/* [/SITESECTION:4] */

/* [SITESECTION:5:sections] */
.how-section,
.gallery-section,
.faq-section {
    position: relative;
    background: var(--bg-light);
    padding: 80px 0 100px;
}

.stats-section,
.features-section,
.testimonials-section {
    position: relative;
    background: var(--gradient-dark);
    padding: 80px 0 100px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--bg-card-alt);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-1);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.25);
}

.step-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-2);
    font-size: 1.8rem;
    color: #fff;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    min-height: 30px;
}

.step-card p {
    color: var(--text-muted);
    flex-grow: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
    min-width: 150px;
    display: inline-block;
    text-align: center;
}

.stat-label {
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--bg-card-alt);
    border-radius: 16px;
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.25);
}

.video-card-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.video-card-media video,
.video-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .video-card-media video,
.video-card:hover .video-card-media img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-1);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.5);
}

.video-card:hover .video-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.video-card-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    min-height: 28px;
}

.video-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card-alt);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(var(--accent-rgb), 0.2);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.1));
    font-size: 1.8rem;
    color: var(--accent);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: var(--gradient-1);
    color: #fff;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    min-height: 30px;
}

.feature-card p {
    color: var(--text-muted);
    flex-grow: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card-alt);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.2);
}

.t-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: rgba(var(--secondary-rgb), 0.3);
}

.t-stars {
    color: #ffc107;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.t-text {
    color: var(--text-color);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t-author img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.t-author strong {
    display: block;
    color: #fff;
}

.t-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card-alt);
    border-radius: 12px;
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-q i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-a {
    max-height: 250px;
    padding: 0 24px 20px;
}

.faq-a p {
    color: var(--text-muted);
}
/* [/SITESECTION:5] */

/* [SITESECTION:6:contact] */
.contact-section {
    position: relative;
    background: var(--bg-light);
    padding: 80px 0 100px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card-alt);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
}

.contact-info-item i {
    font-size: 1.4rem;
    color: var(--accent);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.1);
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    color: #fff;
}

.contact-info-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-socials {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.contact-socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-alt);
    color: var(--text-color);
    font-size: 1.2rem;
    border: 1px solid rgba(var(--secondary-rgb), 0.2);
}

.contact-socials a:hover {
    background: var(--gradient-1);
    color: #fff;
    transform: translateY(-4px);
}

.contact-form {
    background: var(--bg-card-alt);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(var(--secondary-rgb), 0.2);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--secondary-rgb), 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.captcha-group img {
    height: 50px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.captcha-group input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--secondary-rgb), 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
}

.captcha-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.captcha-refresh-btn {
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.3rem;
    padding: 8px;
    border-radius: var(--border-radius);
    transition: opacity 0.3s ease;
}

.captcha-refresh-btn:hover {
    opacity: 0.7;
}

.consent-group {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    padding: 5px 0;
}

.consent-group label {
    display: flex;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.consent-group input {
    margin-top: 3px;
    accent-color: var(--primary);
}
/* [/SITESECTION:6] */

/* [SITESECTION:7:footer] */
.site-footer {
    background: #08080d;
    padding: 60px 0 0;
    border-top: 1px solid rgba(var(--secondary-rgb), 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-alt);
    color: var(--text-color);
    font-size: 1.1rem;
}

.footer-socials a:hover {
    background: var(--gradient-1);
    color: #fff;
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding: 22px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.85rem;
}
/* [/SITESECTION:7] */

/* [SITESECTION:8:components] */
.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    transition: right 0.3s ease-out;
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-1);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.6);
}

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    color: #fff;
    font-size: 1.3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.4);
    animation: attention-pulse 2.5s infinite;
}

.floating-call-btn:hover {
    transform: translateY(-4px) scale(1.08);
}

.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 10, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-modal.active {
    display: flex;
}

.age-modal-box {
    background: var(--bg-card);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
    border-radius: 20px;
    padding: 44px 36px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 60px rgba(var(--primary-rgb), 0.3);
}

.age-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.age-modal-box h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.age-modal-box p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.age-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.exit-popup {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 10, 0.9);
    backdrop-filter: blur(6px);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-popup.active {
    display: flex;
}

.exit-popup-box {
    background: var(--bg-card);
    border: 1px solid rgba(var(--secondary-rgb), 0.4);
    border-radius: 20px;
    padding: 40px 32px;
    max-width: 460px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 0 50px rgba(var(--secondary-rgb), 0.3);
}

.exit-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
}

.exit-icon {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.exit-popup-box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.exit-popup-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.exit-form input[type="text"],
.exit-form input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--secondary-rgb), 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
}

.exit-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.exit-form .captcha-group input {
    margin-bottom: 0;
}
/* [/SITESECTION:8] */

/* [SITESECTION:9:animations] */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(1.1); }
}

@keyframes video-glow-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(var(--secondary-rgb), 0.4); }
    50% { box-shadow: 0 0 60px rgba(var(--primary-rgb), 0.5); }
}

@keyframes attention-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4); }
    50% { box-shadow: 0 6px 30px rgba(var(--primary-rgb), 0.7); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.4s; }

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

.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.no-js .animate-on-scroll,
.no-js .reveal {
    opacity: 1;
    transform: none;
}
/* [/SITESECTION:9] */

/* [SITESECTION:10:responsive] */
.admin-wrapper {
    min-height: 100vh;
    padding: 40px 20px;
    background: var(--gradient-dark);
}

.admin-login-box {
    max-width: 400px;
    margin: 60px auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(var(--secondary-rgb), 0.3);
    text-align: center;
}

.admin-login-box h1 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.admin-form label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.admin-form input,
.admin-form textarea {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--secondary-rgb), 0.3);
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.admin-form input:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.admin-form button {
    margin-top: 18px;
}

.admin-back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent);
    font-size: 0.9rem;
}

.admin-panel {
    max-width: 1100px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.admin-header h1 {
    font-size: 1.6rem;
}

.admin-header-actions {
    display: flex;
    gap: 12px;
}

.admin-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.admin-alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid #28a745;
    color: #5dd879;
}

.admin-alert-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid #dc3545;
    color: #ff6b7a;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 28px;
    align-items: start;
}

.admin-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(var(--secondary-rgb), 0.2);
}

.admin-card h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.admin-empty {
    color: var(--text-muted);
}

.admin-video-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-video-item {
    background: var(--bg-card-alt);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(var(--secondary-rgb), 0.15);
}

.admin-video-info strong {
    color: #fff;
    display: block;
    margin-bottom: 6px;
}

.admin-video-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.admin-video-info small {
    color: var(--accent);
    font-size: 0.75rem;
    word-break: break-all;
}

.admin-edit-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.admin-edit-form input {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--secondary-rgb), 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
}

.admin-item-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(13, 13, 20, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 30px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(var(--secondary-rgb), 0.3);
    }
    .main-nav.active {
        right: 0;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 22px;
    }
    .hamburger {
        display: flex;
    }
    .header-cta {
        display: none;
    }
    .steps-grid,
    .video-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-socials,
    .footer-nav {
        justify-content: center;
        align-items: center;
    }
    .stat-number {
        min-width: 120px;
    }
    .scroll-top-btn,
    .floating-call-btn {
        bottom: 20px;
    }
    .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }
    .captcha-group img {
        align-self: center;
    }
    .hero {
        padding: 100px 0 80px;
    }
    .how-section,
    .gallery-section,
    .faq-section,
    .stats-section,
    .features-section,
    .testimonials-section,
    .contact-section {
        padding: 50px 0 60px;
    }
    .video-play-btn {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 576px) {
    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
    }
    .toast-notification.show {
        right: 20px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .contact-form,
    .admin-card,
    .admin-login-box {
        padding: 22px;
    }
    .age-modal-box,
    .exit-popup-box {
        padding: 30px 22px;
    }
}
/* [/SITESECTION:10] */