/*
Theme Name: landing page template
*/

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors (Red Accent) */
    --color-primary: #e53935;
    --color-primary-dark: #c62828;
    --color-primary-darker: #b71c1c;

    /* Neutral Colors */
    --color-text-primary: #1f1f1f;
    --color-text-secondary: #666666;
    --color-text-light: #888888;
    --color-white: #ffffff;
    --color-black: #000000;

    /* Background Colors */
    --color-bg-white: #ffffff;
    --color-bg-light: #f8fafc;
    --color-bg-lighter: #f1f5f9;
    --color-bg-dark: #1a1a1a;
    --color-bg-darker: #2c2c2c;
    --color-bg-darkest: #3a3a3a;

    /* Border Colors */
    --color-border-light: rgba(0, 0, 0, 0.1);
    --color-border-medium: rgba(0, 0, 0, 0.2);
    --color-border-dark: rgba(0, 0, 0, 0.3);

    /* Shadow Colors */
    --shadow-primary: rgba(229, 57, 53, 0.4);
    --shadow-primary-hover: rgba(229, 57, 53, 0.6);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --shadow-darker: rgba(0, 0, 0, 0.3);
    --shadow-darkest: rgba(0, 0, 0, 0.4);
    --shadow-light: rgba(15, 23, 42, 0.08);

    /* Accent Colors */
    --color-accent-blue: #ac292900;
    --color-accent-blue-light: rgba(236, 89, 89, 0);

    /* Overlay Colors */
    --overlay-dark: rgba(0, 0, 0, 0.3);
    --overlay-white: rgba(255, 255, 255, 0.5);
    --overlay-white-medium: rgba(255, 255, 255, 0.8);
    --overlay-white-strong: rgba(255, 255, 255, 0.95);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-white);
    overflow-x: hidden;
}

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

/* Button Base Styles */
.btn-base {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Button for Dark Backgrounds */
.btn-dark-bg {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px var(--shadow-primary);
}

.btn-dark-bg:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-primary-hover);
    color: var(--color-white);
}

/* Special button for header on clean background */
.btn-header-dark {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px var(--shadow-primary);
    border: 1px solid var(--color-border-medium);
}

.btn-header-dark:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-primary-hover);
    color: var(--color-white);
    border-color: var(--color-border-dark);
}

/* Button for Light Backgrounds */
.btn-light-bg {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px var(--shadow-primary-hover);
}

.btn-light-bg:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-primary-hover);
    color: var(--color-white);
}

/* Header Styles - Clean Professional Theme */
.header {
    background: var(--color-bg-white);
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    will-change: transform;
    contain: layout style;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header.header-visible {
    transform: translateY(0);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.logo-vitpoll {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(30, 41, 59, 0.1);
}

.logo-vitpoll:hover {
    color: #6366f1;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
    text-shadow: 0 1px 2px rgba(71, 85, 105, 0.1);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-blue);
    box-shadow: 0 1px 2px rgba(99, 102, 241, 0.2);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #6366f1;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
}

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

.cta-header {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Mobile Menu Styles - Dark Theme */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: #475569;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #6366f1;
}

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

.mobile-menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #6366f1;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-white);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.15);
    padding: 30px 20px;
    text-align: center;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 20px;
}

.mobile-nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-shadow: 0 1px 2px rgba(71, 85, 105, 0.1);
}

.mobile-nav-link:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.mobile-cta {
    display: inline-block;
}

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

/* Main Content Styles */
.product-landing {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #1f1f1f;
}

/* Hero Section - Modern Clean Style */
.hero-section {
    background: var(--color-bg-light);
    padding: 170px 0 80px;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 50%,
            rgba(99, 102, 241, 0.04) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(79, 70, 229, 0.03) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 80%,
            rgba(67, 56, 202, 0.02) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 34px;
    font-weight: 800;
    color: #070707;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(99, 102, 241, 0.1);
}

.hero-subtitle {
    font-size: 22px;
    color: #4b5563;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(16, 185, 129, 0.1);
    line-height: 1.2;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
@media (max-width: 940px) {
    .hero-features {
        justify-content: center;
    }
}
.feature-badge {
    background: var(--color-accent-blue);
    color: var(--color-bg-dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.hero-price {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #059669;
    margin-right: 20px;
    text-shadow: 2px 2px 8px rgba(5, 150, 105, 0.3);
    display: inline-block;
}

.old-price {
    font-size: 1.8rem;
    color: #ef4444;
    text-decoration: line-through;
    margin-right: 20px;
    display: inline-block;
    opacity: 0.8;
}

.discount {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    display: inline-block;
    animation: pulse 2s infinite;
}

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

/* New Price Block Styles */
.price-block {
    max-width: 100%;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    text-align: center;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    animation: pulse 2s infinite;
}

.price-container {
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.price-block .old-price {
    font-size: 32px;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
    margin: 0;
    opacity: 1;
}

.arrow {
    font-size: 28px;
    color: #ff4757;
    margin: 0 10px;
}

.price-block .new-price {
    font-size: 56px;
    color: #2ecc71;
    font-weight: 900;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(46, 204, 113, 0.2);
}

.savings {
    color: #555;
    font-size: 16px;
    margin: 10px 0 20px 0;
    font-weight: 600;
}

.savings-highlight {
    color: #2ecc71;
    font-weight: 700;
}

.urgency {
    background: #fff3cd;
    border: 2px dashed #ff4757;
    border-radius: 12px;
    padding: 12px 20px;
    margin: 20px 0;
    color: #856404;
    font-weight: 700;
    font-size: 15px;
    animation: shake 3s infinite;
    max-width: 340px;
    margin: 0 auto;
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px);
    }
}

.urgency-icon {
    font-size: 18px;
    margin-right: 8px;
}

.package-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 25px 0 15px 0;
}

.package-list {
    list-style: none;
    text-align: left;
    max-width: 100%;
    margin: 0 auto 25px auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}
@media (max-width: 478px) {
    .package-list {
        align-items: flex-start;
        padding-left: 20px;
    }
}
.package-list li {
    padding: 10px 0;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.checkmark {
    color: #2ecc71;
    font-size: 20px;
    margin-right: 12px;
    font-weight: 900;
    flex-shrink: 0;
}

.cta-button-primary {
    display: block;
    max-width: 490px;
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.886);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(122, 5, 5, 0.4);
    transition: all 0.3s ease;
    margin: 25px auto 45px;
    letter-spacing: 1px;
    text-decoration: none;
}
@media (max-width: 768px) {
    .cta-button-primary {
        font-size: 12px;
    }
}
.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(87, 10, 3, 0.486);
    background: var(--color-primary-darker);
}

.price-block .cta-button:active {
    transform: translateY(-1px);
}

.guarantees {
    list-style: none;
    text-align: left;
    max-width: 100%;
    margin: 20px 0 0 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}
.guarantees li {
    padding: 8px 0;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.guarantee-check {
    color: #2ecc71;
    font-size: 18px;
    margin-right: 10px;
    font-weight: 900;
    flex-shrink: 0;
}

.cta-button {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 1px;
    flex: 1 1 auto;
}

/* Hero Image Slider - Modern Style */
.hero-image {
    text-align: center;
    position: relative;
    flex: 1 1 50%;
}

.image-slider {
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    contain: layout style paint;
    background: var(--color-bg-darker);
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 400%;
    will-change: transform;
}

.slide {
    width: 25%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 20%;
    background-color: var(--color-bg-light);
}
.slide img {
    object-fit: contain;
}
.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.slide:hover .product-image {
    transform: scale(1.03);
}

/* Navigation Arrows - Hidden */
.slider-nav {
    display: none;
}

/* Pagination Dots - Modern Style */
.slider-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.pagination-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

/* Features Section - Clean Layout */
.features-section {
    padding: 50px 0;
    background: var(--color-bg-white);
    position: relative;
}

.features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 30% 40%,
            rgba(99, 102, 241, 0.04) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 60%,
            rgba(79, 70, 229, 0.03) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(30, 41, 59, 0.1);
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-accent-blue);
    border-radius: 2px;
}

/* Chess Board Features Layout */
.features-chess {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 350px;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-row:hover {
    transform: scale(1.01);
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-image-block {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-image-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 1;
    border-radius: 8px;
}

.feature-text-block {
    padding: 80px 60px;
    background: var(--color-bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.feature-text-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.feature-image-block .feature-image {
    width: 100%;
    max-width: 320px;
    height: 320px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.feature-row:hover .feature-image {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.feature-text-block h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-text-block h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-accent-blue);
    border-radius: 2px;
}

.feature-text-block p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Video Section Styles */
.video-section {
    max-width: 900px;
    margin: 20px auto 60px auto;
    padding: 40px 20px;
    text-align: center;
}
@media (max-width: 478px) {
    .video-section {
        margin: 20px auto;
    }
}
.video-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.video-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.video-container {
    position: relative;
    padding-bottom: 85%; /* 16:9 соотношение */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.video-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.benefit-icon {
    font-size: 20px;
}

/* How to Order Section - Modern Style */
.how-to-order-section {
    padding: 50px 0;
    background: var(--color-bg-light);
}

.how-to-order-section .section-title {
    color: #1f1f1f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .how-to-order-section .section-title {
        font-size: 30px;
    }
}
.order-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
}

.step-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 25px;
    background: var(--color-bg-white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    flex: 0 1 320px;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-bg-darker);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-accent-blue);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotateY(15deg);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 15px;
}

.step-content p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

/* Specifications Section - Clean Style */
.specs-section {
    padding: 50px 0;
    background: var(--color-bg-light);
    color: #1f2937;
}

.specs-section .section-title {
    color: #1f2937;
    text-shadow: 2px 2px 4px rgba(30, 41, 59, 0.1);
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.specs-list,
.specs-details {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.08);
}

.specs-list h3,
.specs-details h3 {
    color: var(--color-bg-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.specs-list ul,
.specs-details ul {
    list-style: none;
    padding: 0;
}

.specs-list li,
.specs-details li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    color: #64748b;
    font-size: 1.1rem;
}

.specs-list li:last-child,
.specs-details li:last-child {
    border-bottom: none;
}

.specs-list strong,
.specs-details strong {
    color: #1f2937;
    font-weight: 600;
}

/* Reviews Section - Modern Style */
.reviews-section {
    padding: 50px 0;
    background: var(--color-bg-light);
}

.reviews-section .section-title {
    color: #1f1f1f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: var(--color-bg-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    flex: 1 1 340px;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-white);
    font-family: serif;
    opacity: 0.3;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3a3a3a;
}

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

.reviewer-name {
    color: #1f1f1f;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.star.empty {
    color: #ddd;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-text {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Section - Modern Accordion Style */
.faq-section {
    padding: 80px 0;
    background: var(--color-bg-white);
}

.faq-section .section-title {
    color: #1f2937;
    text-shadow: 2px 2px 4px rgba(30, 41, 59, 0.1);
    margin-bottom: 60px;
}

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

.faq-item {
    background: var(--color-bg-white);
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: #6366f1;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #6366f1;
}

.faq-item.active .faq-question {
    color: #6366f1;
}

.faq-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #94a3b8;
    min-width: 30px;
}

.faq-item.active .faq-number {
    color: #6366f1;
}

.faq-text {
    flex: 1;
}

.faq-icon {
    font-size: 1.8rem;
    color: #94a3b8;
    font-weight: 300;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #6366f1;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 75px;
}

.faq-answer p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section - Clean Modern Style */
.cta-section,
section#order {
    padding: 50px 0;
    background: var(--color-bg-light) !important;
    color: #1f2937;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 80%,
            rgba(99, 102, 241, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(79, 70, 229, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.order-content {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.order-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.order-info p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.price-comparison {
    margin-bottom: 30px;
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.final-price {
    font-size: 3rem;
    font-weight: 800;
    color: #059669;
    text-shadow: 2px 2px 8px rgba(5, 150, 105, 0.3);
}

.market-price {
    font-size: 1.8rem;
    color: #ef4444;
    opacity: 0.8;
    text-decoration: line-through;
    margin-top: -33px;
}

.discount-badge {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 478px) {
    .guarantees {
        align-items: flex-start;
    }
}
.guarantee-item {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.order-last-img {
    border-radius: 10px;
    flex: 1 1 auto;
}
.order-last-img img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}
/* Order Form - Clean Modern Style */
.order-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    flex: 0 1 auto;
}

.order-form h3 {
    color: #1f1f1f;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    color: #1f1f1f;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-white);
    color: #1f1f1f;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.order-submit-btn,
#submitOrderBtn {
    width: 100%;
    margin-bottom: 20px;
}

.form-note {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
}

/* Form Error Styles */
.field-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.form-group input.error,
.form-group select.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.error:focus,
.form-group select.error:focus {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Success Popup - Modern Style */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.popup-content {
    background: var(--color-white);
    padding: 50px;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease;
}

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

.popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #2dd4bf;
}

.popup-title {
    color: #1f1f1f;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.popup-message {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.order-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Footer Styles - Clean Light Theme */
.footer {
    background: var(--color-bg-light);
    color: #475569;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo .logo-main {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(30, 41, 59, 0.1);
}

.footer-description {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-2px);
}

.footer-title {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(30, 41, 59, 0.1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #6366f1;
    padding-left: 5px;
}

.footer-contact {
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(71, 85, 105, 0.1);
}

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

.footer-contact-info p {
    color: #64748b;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-info strong {
    color: #1e293b;
    font-weight: 600;
}

.newsletter-text {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-input:focus {
    outline: none;
    border-color: #3a3a3a;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

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

.copyright {
    color: #64748b;
    font-size: 0.95rem;
}

.copyright a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #6366f1;
}

.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(99, 102, 241, 0.1);
}

.badge:hover {
    background: rgba(99, 102, 241, 0.15);
    color: #4f46e5;
    border-color: rgba(99, 102, 241, 0.3);
}

/* Back to Top Button - Clean Style */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    background: var(--color-primary);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
    transition: all 0.3s ease;
    font-size: 32px;
    color: var(--color-white);
    text-transform: none;
    letter-spacing: 0;
    padding: 0;
    line-height: 1;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 20px;
    }

    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .feature-text-block {
        padding: 60px 40px;
    }

    .feature-text-block h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

    .desktop-nav,
    .desktop-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .product-landing {
        padding-top: 23px;
    }

    .hero-section {
        padding: 60px 0 60px;
        min-height: auto;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-text {
        display: contents;
    }

    .hero-title {
        font-size: 2.5rem;
        order: 1;
        margin-bottom: 8px;
        padding-top: 20px;
    }

    .hero-image {
        order: 2;
        width: 100%;
        margin-bottom: -5px;
    }

    .hero-features {
        order: 3;
        margin-bottom: 20px;
    }

    .hero-price {
        order: 4;
        margin-bottom: 20px;
    }

    .hero-btn__wrapper {
        order: 5;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .old-price {
        font-size: 1.5rem;
    }

    /* Price Block Mobile Styles */
    .price-block {
        order: 4;
        padding: 20px;
        margin: 20px 0;
    }

    .price-block .old-price {
        font-size: 24px;
    }

    .price-block .new-price {
        font-size: 42px;
    }

    .price-block .cta-button {
        font-size: 16px;
        padding: 18px 30px;
    }

    .promo-badge {
        font-size: 14px;
        padding: 10px 20px;
    }

    .package-title {
        font-size: 16px;
    }

    .package-list li,
    .guarantees li {
        font-size: 14px;
    }

    /* Video Section Mobile Styles */
    .video-title {
        font-size: 24px;
    }

    .video-subtitle {
        font-size: 16px;
    }

    .video-benefits {
        gap: 15px;
    }

    .video-benefit-item {
        font-size: 14px;
        padding: 10px 16px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .feature-row .feature-image-block,
    .feature-row.reverse .feature-image-block {
        order: 1;
    }

    .feature-row .feature-text-block,
    .feature-row.reverse .feature-text-block {
        order: 2;
    }

    .feature-image-block,
    .feature-text-block {
        padding: 40px 30px;
    }

    .feature-text-block h3 {
        font-size: 25px;
    }

    .feature-text-block p {
        font-size: 1.1rem;
    }

    .order-content {
        flex-wrap: wrap;
        gap: 40px;
        text-align: center;
    }

    .specs-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

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

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 25px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .old-price {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-text-block h3 {
        font-size: 1.5rem;
    }

    .feature-text-block p {
        font-size: 1rem;
    }

    .product-image {
        height: 300px;
    }

    .slider-nav {
        width: 30px;
        height: 30px;
    }

    .thumbnail {
        width: 70px;
        height: 55px;
    }

    .order-form {
        padding: 30px 20px;
    }

    .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
}

/* Animation and Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .mobile-menu-toggle,
    .mobile-nav {
        display: none !important;
    }

    .product-landing {
        padding-top: 0 !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

.hero-btn__wrapper {
    width: 100%;
    display: flex;
}
.hero-text {
    flex: 1 1 50%;
}
.cta-section__title {
    font-size: 50px;
    text-align: center;
}
.cta-section__subtitle {
    text-align: center;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .features-section {
        padding: 20px 0;
    }
    .how-to-order-section {
        padding: 20px 0;
    }
    .specs-section {
        padding: 20px 0;
    }
    .specs-section .section-title {
        margin: 0 0 20px 0;
        font-size: 30px;
        line-height: 1.2;
    }
    .reviews-section {
        padding: 20px 0;
    }
    .reviews-section .section-title {
        margin: 0 0 40px 0;
        font-size: 30px;
    }
    .reviews-grid {
        margin: 0;
    }
    .cta-section,
    section#order {
        padding: 30px 0 30px 0;
    }
    .features-section .section-title {
        margin: 0 0 40px 0;
        font-size: 30px;
    }
    .specs-content {
        margin: 10px;
    }

    .cta-section__title {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 10px;
        font-weight: 900;
    }

    /* FAQ Mobile Styles */
    .faq-section {
        padding: 40px 0;
    }

    .faq-section .section-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
        gap: 10px;
    }

    .faq-number {
        font-size: 1.1rem;
        min-width: 25px;
    }

    .faq-icon {
        font-size: 1.5rem;
        min-width: 25px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 55px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}
.thank-you-page {
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
}

.thank-you-section {
    padding: 40px 0;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px 40px 20px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Success Animation */
.success-animation {
    margin-bottom: 30px;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.check-icon {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    box-sizing: border-box;
    border: 4px solid #4caf50;
    background: white;
    overflow: hidden;
}

.icon-line {
    height: 5px;
    background-color: #4caf50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 2;
}

.icon-line.line-tip {
    top: 56px;
    left: 28px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s ease-in-out;
}

.icon-line.line-long {
    top: 48px;
    left: 42px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s ease-in-out;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 1;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    box-sizing: border-box;
    border: 4px solid rgba(76, 175, 80, 0.2);
}

.icon-fix {
    display: none;
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 28px;
        top: 56px;
    }

    50% {
        width: 0;
        left: 28px;
        top: 56px;
    }

    100% {
        width: 25px;
        left: 28px;
        top: 56px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        left: 42px;
        top: 48px;
    }

    50% {
        width: 0;
        left: 42px;
        top: 48px;
    }

    100% {
        width: 47px;
        left: 42px;
        top: 48px;
    }
}

/* Thank You Title */
.thank-you-title {
    font-size: 2.5rem;
    color: #1f1f1f;
    margin-bottom: 15px;
    font-weight: 700;
}

.order-number {
    font-size: 1.2rem;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: 600;
}

.thank-you-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Order Details Box */
.order-details-box {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.order-details-box h2 {
    font-size: 1.5rem;
    color: #1f1f1f;
    margin-bottom: 20px;
    text-align: center;
}

.order-info {
    max-width: 500px;
    margin: 0 auto;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    gap: 20px;
}

.info-row.total {
    border-bottom: none;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 2px solid #667eea;
    font-weight: 600;
    font-size: 1.2rem;
}

.info-label {
    color: #666;
}

.info-value {
    color: #1f1f1f;
    font-weight: 500;
}

.info-row.total .info-value {
    color: #667eea;
    font-size: 1.3rem;
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
}

.problems-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.problems-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
    font-weight: 500;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.problem-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.problem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
}
.problem-ex {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    img {
        width: 100%;
        height: 100%;
    }
}
.problem-content h3,
.problem-content h4 {
    font-size: 1.1rem;
    color: #1f1f1f;
    margin-bottom: 8px;
    font-weight: 600;
}

.problem-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Button after Problems */
.cta-btn {
    text-align: center;
    padding: 50px 0;
    background: var(--color-bg-white);
}

.cta-btn .cta-button {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.cta-btn .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Next Steps */
.next-steps {
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 1.8rem;
    color: #1f1f1f;
    margin-bottom: 30px;
}

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

.step-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.step-item h4 {
    font-size: 1.1rem;
    color: #1f1f1f;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Action Buttons */
.thank-you-actions {
    margin-bottom: 30px;
}

.thank-you-actions .btn-base {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Additional Info */
.additional-info {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.info-note {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 40px 20px;
    }

    .thank-you-title {
        font-size: 1.8rem;
    }

    .order-number {
        font-size: 1rem;
    }

    .thank-you-text {
        font-size: 1rem;
    }

    .problems-section {
        padding: 30px 0;
    }

    .problems-section .section-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .problems-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .problem-item {
        padding: 20px;
        text-align: center;
        gap: 10px;
    }

    .problem-icon {
        font-size: 2.5rem;
    }

    .problem-content h3,
    .problem-content h4 {
        font-size: 1rem;
    }

    .problem-content p {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 30px 20px;
    }

    .cta-btn .cta-button {
        padding: 15px 35px;
        font-size: 12px;
        width: 100%;
        max-width: 300px;
    }

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

    .order-details-box {
        padding: 20px;
    }

    .info-row {
        flex-direction: column;
        gap: 5px;
    }

    .success-checkmark {
        width: 100px;
        height: 100px;
    }

    .check-icon {
        width: 100px;
        height: 100px;
    }

    .icon-line.line-tip {
        top: 47px;
        left: 23px;
        width: 21px;
    }

    .icon-line.line-long {
        top: 40px;
        left: 35px;
        width: 39px;
    }

    .icon-circle {
        width: 100px;
        height: 100px;
    }
}
.problem-img-wrapper {
    position: relative;
    padding-bottom: 100%;
    width: 80px;
    img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}
