/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a2332;
    line-height: 1.6;
    background: #f5f7fa;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input { font-family: inherit; }

/* ===== LAYOUT ===== */
.wrap { width: 100%; overflow: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.section { padding: 80px 0; position: relative; }

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #0f1924;
}
.section-title.white { color: #fff; }
.section-sub {
    text-align: center;
    font-size: clamp(15px, 2vw, 18px);
    color: #5a6878;
    max-width: 680px;
    margin: 0 auto 50px;
}
.section-sub.white { color: rgba(255,255,255,0.85); }

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0a1119 0%, #14253b 50%, #0a1119 100%);
    color: #fff;
    padding: 30px 0 80px;
    overflow: hidden;
}

/* HERO декоративный фон */
.hero-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(45, 211, 111, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(45, 211, 111, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(88, 232, 150, 0.15) 0%, transparent 50%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
    width: 350px; height: 350px;
    background: #2dd36f;
    top: -100px; right: -80px;
    animation-delay: 0s;
}
.orb-2 {
    width: 250px; height: 250px;
    background: #58e896;
    bottom: -80px; left: -60px;
    animation-delay: 2s;
    opacity: 0.3;
}
.orb-3 {
    width: 180px; height: 180px;
    background: #2dd36f;
    top: 40%; left: 50%;
    animation-delay: 4s;
    opacity: 0.25;
}
@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(45, 211, 111, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 211, 111, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}
.logo {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.02em;
}
.logo span {
    color: #2dd36f;
    font-size: 16px;
    vertical-align: super;
}
.hero-badges-top { display: flex; gap: 12px; flex-wrap: wrap; }
.hb {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff3b3b, #d62b2b);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 20px rgba(255, 59, 59, 0.4);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.hero h1 span {
    background: linear-gradient(135deg, #2dd36f, #58e896);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.55;
}
.hero-sub b { color: #fff; font-weight: 700; }

.hero-bullets { margin-bottom: 30px; }
.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}
.hero-bullets li span {
    width: 36px; height: 36px;
    background: rgba(45, 211, 111, 0.15);
    border: 1px solid rgba(45, 211, 111, 0.3);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}
.hero-bullets li b { color: #2dd36f; font-weight: 700; }

.price-block {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.price-old {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}
.price-old s { font-weight: 600; }
.price-new {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}
.price-new .amount {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 900;
    color: #2dd36f;
    line-height: 1;
    letter-spacing: -0.02em;
}
.price-new .curr {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.price-new .discount {
    margin-left: auto;
    background: #ff3b3b;
    color: #fff;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 800;
}
.price-note {
    font-size: 13px;
    color: #ffd54f;
    font-weight: 600;
}

/* CTA BUTTON */
.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2dd36f 0%, #1eb85a 100%);
    color: #fff !important;
    font-weight: 800;
    text-align: center;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 17px;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 30px rgba(45, 211, 111, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    width: auto;
}
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}
.cta-btn:hover::before { left: 100%; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(45, 211, 111, 0.5); }
.cta-btn:active { transform: translateY(0); }
.cta-big { font-size: 18px; padding: 20px 42px; width: 100%; }
.cta-white {
    background: #fff;
    color: #1a2332 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.trust-row {
    display: flex;
    gap: 20px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.trust-item {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ===== HERO PHOTO STAGE — красивая «сцена» под фото ===== */
.hero-image-desktop { display: block; }
.hero-image-mobile { display: none; }

.hero-img-wrap {
    position: relative;
    padding: 50px 30px;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* «Сцена» под товаром — несколько слоёв декорации */
.photo-stage {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.stage-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    aspect-ratio: 1;
    background:
        radial-gradient(circle at 35% 35%, rgba(45, 211, 111, 0.55), transparent 55%),
        radial-gradient(circle at 65% 65%, rgba(88, 232, 150, 0.4), transparent 50%);
    border-radius: 50%;
    filter: blur(30px);
    animation: stagePulse 5s ease-in-out infinite;
}
@keyframes stagePulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.stage-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    aspect-ratio: 1;
    border: 2px dashed rgba(45, 211, 111, 0.35);
    border-radius: 50%;
    animation: rotate 25s linear infinite;
}
.stage-circle::before {
    content: '';
    position: absolute;
    width: 14px; height: 14px;
    background: #2dd36f;
    border-radius: 50%;
    top: -7px; left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 25px rgba(45, 211, 111, 1);
}
.stage-circle::after {
    content: '';
    position: absolute;
    width: 8px; height: 8px;
    background: #58e896;
    border-radius: 50%;
    bottom: -4px; right: 20%;
    box-shadow: 0 0 18px rgba(88, 232, 150, 1);
}
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
.stage-platform {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(45, 211, 111, 0.4), transparent 70%);
    filter: blur(15px);
    border-radius: 50%;
}

.hero-photo {
    position: relative;
    z-index: 3;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 35px 50px rgba(0, 0, 0, 0.55)) drop-shadow(0 5px 25px rgba(45, 211, 111, 0.4));
    transition: transform 0.4s ease;
}
.hero-photo:hover { transform: scale(1.04) rotate(1deg); }

.hero-discount-badge {
    position: absolute;
    top: 20px; right: 0;
    width: 100px; height: 100px;
    background: linear-gradient(135deg, #ff3b3b, #c42727);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 15px 35px rgba(255, 59, 59, 0.5);
    animation: rotate-badge 8s linear infinite;
    z-index: 5;
}
@keyframes rotate-badge { to { transform: rotate(360deg); } }
.hero-discount-badge span { font-size: 26px; font-weight: 900; line-height: 1; }
.hero-discount-badge small { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; margin-top: 2px; }

.hero-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    color: #0f1924;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(45, 211, 111, 0.25);
    z-index: 5;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
    animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hfb-1 { top: 12%; left: -5%; animation-delay: 0s; }
.hfb-2 { top: 50%; right: -6%; animation-delay: 1s; }
.hfb-3 { bottom: 18%; left: 0%; animation-delay: 2s; }


/* ===== ВЕРХНЯЯ ФОРМА ===== */
.order-top-section {
    background: linear-gradient(135deg, #2dd36f 0%, #1a9c4f 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.order-top-section::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.order-top-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.order-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.order-top-text { color: #fff; }
.order-top-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    animation: pulse 2s ease-in-out infinite;
}
.order-top-text h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #fff;
}
.order-top-text h2 span {
    background: #fff;
    color: #1a9c4f;
    padding: 2px 12px;
    border-radius: 8px;
    font-size: 0.9em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.order-top-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 22px;
    line-height: 1.55;
}
.order-top-list { display: flex; flex-direction: column; gap: 10px; }
.order-top-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}
.order-top-list li b { color: #fff; font-weight: 700; }

.order-top-form-wrap { display: flex; justify-content: center; }
.order-top-form {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    max-width: 420px;
    width: 100%;
    position: relative;
}
.order-top-form::before {
    content: '🎁';
    position: absolute;
    top: -18px; right: -10px;
    background: #ff3b3b;
    color: #fff;
    font-size: 22px;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 59, 59, 0.5);
    animation: shake 3s ease-in-out infinite;
    z-index: 2;
}
@keyframes shake {
    0%, 90%, 100% { transform: rotate(0); }
    93% { transform: rotate(-10deg); }
    96% { transform: rotate(10deg); }
}
.otf-price {
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 2px dashed #e5e9ef;
}
.otf-old { font-size: 13px; color: #8a95a3; margin-bottom: 4px; }
.otf-old s { font-weight: 600; }
.otf-new { display: flex; justify-content: center; align-items: baseline; gap: 8px; }
.otf-amount {
    font-size: 50px;
    font-weight: 900;
    color: #1a9c4f;
    letter-spacing: -0.02em;
    line-height: 1;
}
.otf-curr { font-size: 20px; font-weight: 700; color: #1a2332; }
.otf-badge {
    background: #ff3b3b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    margin-left: 6px;
}

/* ===== GALLERY ===== */
.gallery-section { background: #fff; }
.gallery {
    max-width: 900px;
    margin: 40px auto 0;
}
.gallery-main {
    background: linear-gradient(135deg, #f0fff4 0%, #e8f9ee 50%, #d4f4dd 100%);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(45, 211, 111, 0.15);
}
.gallery-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.gallery-orb-1, .gallery-orb-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}
.gallery-orb-1 {
    width: 400px; height: 400px;
    background: rgba(45, 211, 111, 0.3);
    top: -100px; right: -100px;
}
.gallery-orb-2 {
    width: 300px; height: 300px;
    background: rgba(88, 232, 150, 0.25);
    bottom: -80px; left: -80px;
}
.gallery-main img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-main:hover img { transform: scale(1.02); }
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}
.thumb {
    width: 100%;
    height: 80px;
    object-fit: contain;
    background: linear-gradient(135deg, #f0fff4, #e8f9ee);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.thumb:hover { border-color: rgba(45, 211, 111, 0.5); transform: translateY(-2px); }
.thumb.active {
    border-color: #2dd36f;
    box-shadow: 0 5px 18px rgba(45, 211, 111, 0.3);
}

/* ===== PROBLEM ===== */
.problem { background: #fff; }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.problem-card {
    background: #f8f9fb;
    border: 1px solid #e5e9ef;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}
.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #2dd36f;
}
.problem-icon { font-size: 48px; margin-bottom: 16px; }
.problem-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: #1a2332; }
.problem-card p { color: #5a6878; font-size: 15px; }

.problem-arrow {
    text-align: center;
    margin-top: 50px;
}
.problem-arrow span {
    display: inline-block;
    background: #2dd36f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(45, 211, 111, 0.35);
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===== BRUSHLESS FEATURE ===== */
.feature-brushless {
    background: linear-gradient(135deg, #0a1119 0%, #14253b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.feature-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.fb-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(45, 211, 111, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 211, 111, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.fb-orb {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(45, 211, 111, 0.3), transparent 70%);
    border-radius: 50%;
    top: 50%; right: -100px;
    transform: translateY(-50%);
    filter: blur(60px);
    animation: orbFloat 10s ease-in-out infinite;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.feature-tag-bl {
    display: inline-block;
    background: rgba(45, 211, 111, 0.15);
    border: 1px solid rgba(45, 211, 111, 0.3);
    color: #2dd36f;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.feature-text h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.02em;
}
.grad-text {
    background: linear-gradient(135deg, #2dd36f, #58e896);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feature-lead {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.55;
}
.feature-lead b { color: #2dd36f; font-weight: 700; }

.feature-list { display: flex; flex-direction: column; gap: 18px; }
.fl-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}
.fl-item:hover {
    background: rgba(45, 211, 111, 0.08);
    border-color: rgba(45, 211, 111, 0.3);
    transform: translateX(4px);
}
.fl-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #2dd36f, #1a9c4f);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(45, 211, 111, 0.35);
}
.fl-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.fl-item p { font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.5; }

/* Изображение мотора */
.feature-image {
    position: relative;
    padding: 30px;
}
.bl-glow-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(45, 211, 111, 0.5), transparent 60%);
    filter: blur(50px);
    animation: stagePulse 4s ease-in-out infinite;
}
.feature-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 30px rgba(45, 211, 111, 0.4));
}

/* ===== SOLUTION ===== */
.solution {
    background: linear-gradient(135deg, #14253b 0%, #1c3151 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.solution-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.sol-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(45, 211, 111, 0.18), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(45, 211, 111, 0.12), transparent 50%);
}
.solution-tag {
    display: inline-block;
    background: rgba(45, 211, 111, 0.2);
    color: #2dd36f;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    border: 1px solid rgba(45, 211, 111, 0.3);
}
.solution .container { text-align: center; }
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 40px;
    text-align: left;
}
.sol-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.sol-card:hover {
    background: rgba(45, 211, 111, 0.08);
    border-color: rgba(45, 211, 111, 0.4);
    transform: translateY(-4px);
}
.sol-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #2dd36f, #1a9c4f);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(45, 211, 111, 0.3);
}
.sol-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.sol-card p { color: rgba(255,255,255,0.75); font-size: 15px; }

/* ===== DETAILED ===== */
.detailed { background: #fff; }
.detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fb, #f0f2f5);
    border-radius: 24px;
    transition: all 0.3s ease;
}
.detail-block:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}
.detail-block.reverse .detail-image { order: 2; }
.detail-image {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.detail-img-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(45, 211, 111, 0.18), transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(88, 232, 150, 0.15), transparent 50%);
    filter: blur(20px);
}
.detail-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}
.detail-text h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 800;
    margin-bottom: 14px;
    color: #0f1924;
    line-height: 1.2;
}
.detail-text p {
    font-size: 16px;
    color: #5a6878;
    line-height: 1.6;
    margin-bottom: 18px;
}
.detail-text p b { color: #1a9c4f; font-weight: 700; }
.detail-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.detail-bullets li {
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
    font-size: 14px;
    color: #1a2332;
    border-left: 3px solid #2dd36f;
}
.detail-bullets li b { color: #1a9c4f; font-weight: 700; }

/* ===== SPECS ===== */
.specs { background: #f5f7fa; }
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 40px auto 0;
}
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    border-left: 4px solid #2dd36f;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    transition: transform 0.2s ease;
}
.spec-row:hover { transform: translateX(4px); }
.spec-label { font-size: 14px; color: #5a6878; font-weight: 500; }
.spec-value { font-size: 15px; font-weight: 700; color: #0f1924; text-align: right; }

/* ===== PACKAGE ===== */
.package { background: #fff; }
.package-photo {
    position: relative;
    max-width: 760px;
    margin: 30px auto 40px;
    background: linear-gradient(135deg, #f0fff4, #e8f9ee);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(45, 211, 111, 0.15);
    overflow: hidden;
}
.pkg-bg-decor { position: absolute; inset: 0; pointer-events: none; }
.pkg-orb {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(45, 211, 111, 0.3), transparent 70%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
}
.package-photo img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 40px;
}
.pkg-item {
    background: #f8f9fb;
    border: 1px solid #e5e9ef;
    border-radius: 16px;
    padding: 28px 20px 22px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.pkg-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #2dd36f;
}
.pkg-num {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2dd36f, #1a9c4f);
    color: #fff;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(45, 211, 111, 0.4);
}
.pkg-icon { font-size: 42px; margin: 10px 0 14px; }
.pkg-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #1a2332; }
.pkg-item p { font-size: 13px; color: #5a6878; line-height: 1.45; }

.gift-banner {
    margin-top: 40px;
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    border: 2px dashed #f5a623;
    border-radius: 18px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.gift-icon { font-size: 56px; flex-shrink: 0; animation: shake 3s ease-in-out infinite; }
.gift-text h3 { font-size: 18px; font-weight: 800; color: #b8860b; margin-bottom: 6px; }
.gift-text p { font-size: 15px; color: #6b5511; }

/* ===== COMPARE ===== */
.compare { background: #f5f7fa; }
.compare-table {
    max-width: 900px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.ct-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #eef1f5;
}
.ct-row:last-child { border-bottom: none; }
.ct-cell {
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
.ct-cell:first-child {
    justify-content: flex-start;
    text-align: left;
    font-weight: 600;
    color: #1a2332;
}
.ct-head .ct-cell { font-weight: 800; background: #f8f9fb; color: #1a2332; padding: 18px 12px; }
.ct-head .ct-us { background: linear-gradient(135deg, #2dd36f, #1a9c4f); color: #fff; }
.ct-us { background: rgba(45, 211, 111, 0.06); }
.yes { color: #2dd36f; font-size: 22px; font-weight: 900; }
.no { color: #d62b2b; font-size: 22px; font-weight: 900; }

/* ===== REVIEWS ===== */
.reviews { background: #fff; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-top: 40px;
}
.review {
    background: linear-gradient(135deg, #f8f9fb, #fff);
    border: 1px solid #e5e9ef;
    border-radius: 16px;
    padding: 26px;
    transition: all 0.3s ease;
}
.review:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.rev-stars {
    color: #ffb400;
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.review p {
    font-size: 15px;
    color: #1a2332;
    margin-bottom: 18px;
    line-height: 1.6;
    font-style: italic;
}
.rev-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #eef1f5;
}
.rev-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}
.rev-author b { display: block; font-size: 14px; font-weight: 700; color: #1a2332; }
.rev-author small { display: block; font-size: 12px; color: #8a95a3; margin-top: 2px; }

/* ===== OFFER FORM ===== */
.offer-block {
    background: linear-gradient(135deg, #0a1119 0%, #14253b 100%);
    color: #fff;
}
.offer-card {
    max-width: 580px;
    margin: 0 auto;
    background: #fff;
    color: #1a2332;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
}
.offer-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff3b3b, #d62b2b);
    color: #fff;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(255, 59, 59, 0.35);
    animation: pulse 2s ease-in-out infinite;
}
.offer-card h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}
.offer-card .highlight {
    background: linear-gradient(135deg, #2dd36f, #1a9c4f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.offer-sub { font-size: 15px; color: #5a6878; margin-bottom: 24px; }
.offer-sub b { color: #ff3b3b; font-weight: 800; font-size: 17px; }

.offer-image {
    background: linear-gradient(135deg, #f0fff4, #e8f9ee);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 22px;
}
.offer-image img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
}

.offer-price-box {
    background: linear-gradient(135deg, #f0fff4, #e8f9ee);
    border: 2px solid #c8efd6;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 24px;
}
.opb-old { font-size: 13px; color: #8a95a3; margin-bottom: 4px; }
.opb-old s { font-weight: 600; }
.opb-new { display: flex; justify-content: center; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.opb-amount {
    font-size: 56px;
    font-weight: 900;
    color: #1a9c4f;
    letter-spacing: -0.02em;
    line-height: 1;
}
.opb-curr { font-size: 22px; font-weight: 700; color: #1a2332; }
.opb-save { font-size: 14px; color: #5a6878; }
.opb-save b { color: #ff3b3b; font-weight: 800; }

.offer-includes {
    text-align: left;
    margin: 24px 0;
}
.offer-includes li {
    padding: 8px 0;
    font-size: 14px;
    color: #1a2332;
    border-bottom: 1px solid #f0f2f5;
}
.offer-includes li:last-child { border-bottom: none; }
.offer-includes li b { color: #ff3b3b; }

.main-order-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.main-order-form input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e9ef;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: #f8f9fb;
    transition: all 0.2s ease;
}
.main-order-form input:focus {
    outline: none;
    border-color: #2dd36f;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45, 211, 111, 0.12);
}
.main-order-form input::placeholder { color: #8a95a3; }
.cta-form { width: 100%; margin-top: 4px; }
.form-note {
    font-size: 13px;
    color: #5a6878;
    margin-top: 8px;
    font-weight: 500;
    text-align: center;
}

/* ===== STEPS ===== */
.steps { background: #fff; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}
.step {
    background: #f8f9fb;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e5e9ef;
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #2dd36f;
}
.step-num {
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2dd36f, #1a9c4f);
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 17px;
    box-shadow: 0 8px 20px rgba(45, 211, 111, 0.4);
}
.step-icon { font-size: 56px; margin: 16px 0 18px; }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: #5a6878; }

/* ===== FAQ ===== */
.faq { background: #f5f7fa; }
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    background: #fff;
    border: 1px solid #e5e9ef;
    border-radius: 14px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.faq-item[open] {
    border-color: #2dd36f;
    box-shadow: 0 10px 25px rgba(45, 211, 111, 0.1);
}
.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: #1a2332;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: #2dd36f;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    padding: 0 22px 20px;
    color: #5a6878;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, #2dd36f 0%, #1a9c4f 100%);
    color: #fff;
    text-align: center;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15), transparent 50%);
    pointer-events: none;
}
.final-cta h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}
.final-cta h2 s { opacity: 0.6; font-weight: 600; }
.final-cta h2 b { font-size: 1.2em; }
.final-cta p { font-size: 16px; margin-bottom: 30px; opacity: 0.95; }
.final-cta .cta-btn { max-width: 480px; }

/* ===== FOOTER ===== */
.footer {
    background: #050a10;
    color: rgba(255,255,255,0.6);
    padding: 40px 0 30px;
    text-align: center;
}
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: #2dd36f; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .section { padding: 60px 0; }
    .hero { padding: 20px 0 40px; }
    .hero-grid { grid-template-columns: 1fr; gap: 24px; }

    .hero-image-desktop { display: none; }
    .hero-image-mobile {
        display: block;
        max-width: 460px;
        margin: 0 auto 10px;
    }
    .hero-text {
        display: flex;
        flex-direction: column;
    }
    .hero-text .hero-tag { order: 1; }
    .hero-text h1 { order: 2; margin-bottom: 14px; }
    .hero-text .hero-image-mobile { order: 3; margin: 0 auto 20px; }
    .hero-text .hero-sub { order: 4; }
    .hero-text .hero-bullets { order: 5; }
    .hero-text .price-block { order: 6; }
    .hero-text .cta-btn { order: 7; }
    .hero-text .trust-row { order: 8; }

    .hero-img-wrap { padding: 30px 20px; }
    .hero-discount-badge { width: 76px; height: 76px; }
    .hero-discount-badge span { font-size: 22px; }
    .hero-floating-badge { font-size: 12px; padding: 7px 12px; }
    .hfb-1 { top: 6%; left: 0%; }
    .hfb-2 { top: 45%; right: 0%; }
    .hfb-3 { bottom: 12%; left: 5%; }

    .order-top-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .order-top-list { max-width: 380px; margin: 0 auto; text-align: left; }

    .ct-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .ct-cell { padding: 14px 8px; font-size: 12px; }
    .ct-head .ct-cell { font-size: 11px; padding: 14px 6px; }
    .gift-banner { flex-direction: column; text-align: center; padding: 22px 18px; }
    .gift-icon { font-size: 48px; }
    .feature-grid { grid-template-columns: 1fr; gap: 30px; }
    .feature-image { max-width: 460px; margin: 0 auto; }
    .detail-block { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; }
    .detail-block.reverse .detail-image { order: 0; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .thumb { height: 70px; }
}
@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .section { padding: 50px 0; }
    .order-top-section { padding: 45px 0; }
    .logo-row { justify-content: center; text-align: center; }
    .hero-badges-top { justify-content: center; }
    .hb { font-size: 12px; padding: 6px 12px; }
    .hero-bullets li { font-size: 14px; gap: 10px; }
    .hero-bullets li span { width: 32px; height: 32px; font-size: 16px; }
    .hero-image-mobile { max-width: 340px; }
    .hero-img-wrap { padding: 25px 15px; }
    .hero-discount-badge { width: 64px; height: 64px; top: 5px; right: -5px; }
    .hero-discount-badge span { font-size: 18px; }
    .hero-discount-badge small { font-size: 9px; }
    .hero-floating-badge { font-size: 11px; padding: 6px 10px; }
    .price-block { padding: 18px; }
    .trust-row { gap: 14px; }
    .trust-item { font-size: 12px; }
    .order-top-form { padding: 24px 20px; }
    .otf-amount { font-size: 42px; }
    .offer-card { padding: 30px 22px; }
    .offer-includes li { font-size: 13px; }
    .opb-amount { font-size: 46px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .spec-row { padding: 14px 16px; }
    .spec-label, .spec-value { font-size: 13px; }
    .ct-row { grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr; }
    .ct-cell:first-child { font-size: 12px; }
    .yes, .no { font-size: 18px; }
    .footer-links { flex-direction: column; gap: 8px; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .thumb { height: 60px; padding: 4px; }
    .gallery-main { padding: 20px; }
    .detail-image { padding: 20px; }
    .package-photo { padding: 20px; }
}
