﻿:root {
            --primary: #42C4C1;
            --accent: #B89B72;
            --paradise-gold: #FFD700;
            --paradise-orange: #FF6B35;
            --paradise-purple: #9D4EDD;
            --paradise-turquoise: #06FFA5;
            --paradise-crimson: #DC143C;
            --bg-dark: #0a0e0d;
            --bg-dark-lighter: #1a1f1d;
            --white: #FFFFFF;
            --text: #ffffff;
            --text-soft: rgba(255, 255, 255, 0.7);
            --green: #7BBF6A;
            --orange: #F39221;
            --border: rgba(66, 196, 193, 0.2);
            --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            --shadow-hover: 0 35px 60px -15px rgba(66, 196, 193, 0.3);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
.hero-paradise-product {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0e0d 0%, #1a1414 50%, #1a0e1a 100%);
            padding: 100px 0 80px;
        }
@media (max-width: 900px) {
            .hero-paradise-product {
                min-height: auto;
                padding: 80px 0 60px;
            }
        }
.hero-paradise-product::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -20%;
            width: 140%;
            height: 140%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.18) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(157, 78, 221, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 70% 60%, rgba(6, 255, 165, 0.1) 0%, transparent 40%);
            animation: paradiseGradientFlow 25s ease-in-out infinite;
            pointer-events: none;
        }
@keyframes paradiseGradientFlow {
            0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 1; }
            33% { transform: translate(5%, 3%) scale(1.1) rotate(5deg); opacity: 0.85; }
            66% { transform: translate(-3%, 5%) scale(1.05) rotate(-5deg); opacity: 0.9; }
        }
.hero-paradise-feathers {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }
.paradise-feather {
            position: absolute;
            width: clamp(25px, 4vw, 40px);
            height: clamp(60px, 8vw, 100px);
            background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.4) 0%, 
                rgba(255, 107, 53, 0.35) 50%, 
                rgba(157, 78, 221, 0.3) 100%);
            border-radius: 50% 0 50% 0;
            animation: paradiseFeatherFloat 20s ease-in-out infinite;
            filter: blur(1.5px);
            opacity: 0.7;
        }
.paradise-feather:nth-child(1) { 
            top: 10%; 
            left: 8%; 
            animation-delay: 0s;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.5) 0%, rgba(255, 107, 53, 0.4) 100%);
        }
.paradise-feather:nth-child(2) { 
            top: 45%; 
            right: 10%; 
            animation-delay: 7s;
            background: linear-gradient(135deg, rgba(157, 78, 221, 0.4) 0%, rgba(6, 255, 165, 0.35) 100%);
        }
.paradise-feather:nth-child(3) { 
            top: 65%; 
            left: 15%; 
            animation-delay: 14s;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.45) 0%, rgba(220, 20, 60, 0.35) 100%);
        }
.paradise-feather:nth-child(4) { 
            top: 25%; 
            right: 20%; 
            animation-delay: 4s;
            width: clamp(20px, 3vw, 30px);
            height: clamp(50px, 6vw, 80px);
            background: linear-gradient(135deg, rgba(6, 255, 165, 0.4) 0%, rgba(66, 196, 193, 0.3) 100%);
        }
@keyframes paradiseFeatherFloat {
            0%, 100% { 
                transform: translateY(0) translateX(0) rotate(0deg); 
                opacity: 0.4; 
            }
            25% { 
                transform: translateY(-50px) translateX(30px) rotate(90deg); 
                opacity: 0.7; 
            }
            50% { 
                transform: translateY(-30px) translateX(-20px) rotate(180deg); 
                opacity: 0.5; 
            }
            75% { 
                transform: translateY(-60px) translateX(40px) rotate(270deg); 
                opacity: 0.6; 
            }
        }
.paradise-sparkles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
.sparkle {
            position: absolute;
            width: clamp(3px, 0.5vw, 6px);
            height: clamp(3px, 0.5vw, 6px);
            background: radial-gradient(circle, rgba(255, 215, 0, 0.9) 0%, transparent 70%);
            border-radius: 50%;
            animation: sparkleShine 3s ease-in-out infinite;
        }
.sparkle:nth-child(1) { top: 15%; left: 25%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 40%; right: 15%; animation-delay: 1s; }
.sparkle:nth-child(3) { bottom: 30%; left: 35%; animation-delay: 2s; }
.sparkle:nth-child(4) { top: 55%; right: 30%; animation-delay: 0.5s; }
.sparkle:nth-child(5) { bottom: 20%; right: 20%; animation-delay: 1.5s; }
@keyframes sparkleShine {
            0%, 100% { 
                opacity: 0; 
                transform: scale(0); 
            }
            50% { 
                opacity: 1; 
                transform: scale(1.5); 
                box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
            }
        }
.hero-paradise-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
.hero-paradise-left h1{
            font-family:'Manrope',sans-serif;
            font-size: clamp(3rem, 7vw, 3.5rem);
            font-weight:800;
            line-height: 1.1;
            margin-bottom: 30px;
            text-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
.paradise-title-gradient {
            background: linear-gradient(135deg, 
                #FFD700 0%, 
                #FF6B35 25%, 
                #9D4EDD 50%, 
                #06FFA5 75%, 
                #FFD700 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: paradiseTitleShift 8s ease infinite;
        }
@keyframes paradiseTitleShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
.hero-paradise-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.25) 0%, 
                rgba(255, 107, 53, 0.2) 50%,
                rgba(157, 78, 221, 0.18) 100%);
            border: 2px solid var(--paradise-gold);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.85rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
            animation: paradiseBadgePulse 4s ease-in-out infinite;
        }
@media (max-width: 900px) {
            .hero-paradise-badge {
                font-size: 0.75rem;
                padding: 8px 16px;
                justify-content: center;
                width: 100%;
                max-width: 320px;
                margin-left: auto;
                margin-right: auto;
            }
        }
@keyframes paradiseBadgePulse {
            0%, 100% { 
                transform: scale(1); 
                box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4); 
                border-color: var(--paradise-gold);
            }
            50% { 
                transform: scale(1.05); 
                box-shadow: 0 15px 45px rgba(255, 107, 53, 0.6);
                border-color: var(--paradise-orange);
            }
        }
.hero-paradise-description {
            font-size: clamp(1.05rem, 2.2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            margin-bottom: 40px;
        }
.hero-paradise-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
.hero-feature-paradise {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-left: 3px solid var(--paradise-gold);
            border-radius: 10px;
            transition: 0.3s;
        }
.hero-feature-paradise:hover {
            background: rgba(255, 215, 0, 0.1);
            transform: translateX(10px);
            border-left-color: var(--paradise-orange);
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
        }
.hero-feature-icon-paradise {
            font-size: 1.8rem;
        }
.hero-feature-text-paradise {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
        }
.hero-paradise-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
.btn-hero-paradise {
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 800;
            text-transform: uppercase;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
.btn-paradise-primary {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 50%,
                var(--paradise-purple) 100%);
            background-size: 200% 200%;
            color: white;
            animation: paradiseButtonGlow 3s ease infinite;
        }
@keyframes paradiseButtonGlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
.btn-paradise-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
        }
.btn-paradise-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--paradise-gold);
            color: white;
        }
.btn-paradise-secondary:hover {
            background: rgba(255, 215, 0, 0.15);
            border-color: var(--paradise-orange);
            transform: translateY(-5px);
        }
.hero-paradise-right {
            position: relative;
        }
.hero-paradise-image-container {
            position: relative;
            width: 100%;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
@media (max-width: 900px) {
            .hero-paradise-image-container {
                height: 550px;
                margin-bottom: 20px;
            }
        }
@media (max-width: 480px) {
            .hero-paradise-image-container {
                height: 480px;
            }
        }
.hero-paradise-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            border: 3px solid transparent;
            background: linear-gradient(#0a0e0d, #0a0e0d) padding-box,
                        linear-gradient(135deg, 
                            var(--paradise-gold) 0%, 
                            var(--paradise-orange) 25%,
                            var(--paradise-purple) 50%,
                            var(--paradise-turquoise) 75%,
                            var(--paradise-gold) 100%) border-box;
            background-size: 300% 300%;
            transition: 0.5s;
            animation: paradiseImageBorderFlow 6s ease-in-out infinite, paradiseImageFloat 8s ease-in-out infinite;
        }
@keyframes paradiseImageBorderFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
@keyframes paradiseImageFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.02); }
        }
.hero-paradise-main-image:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 40px 100px rgba(255, 215, 0, 0.5);
        }
.hero-paradise-floating-badge {
            position: absolute;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(15px);
            padding: 15px 20px;
            border-radius: 15px;
            border: 2px solid var(--paradise-gold);
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
            animation: paradiseFloatBadge 5s ease-in-out infinite;
            z-index: 10;
        }
.hero-paradise-floating-badge:nth-child(1) {
            top: 10%;
            right: -20px;
            border-color: var(--paradise-gold);
        }
.hero-paradise-floating-badge:nth-child(2) {
            bottom: 15%;
            left: -30px;
            border-color: var(--paradise-purple);
            animation-delay: 2s;
        }
@media (max-width: 900px) {
            .hero-paradise-floating-badge {
                position: relative !important;
                top: auto !important;
                bottom: auto !important;
                left: auto !important;
                right: auto !important;
                display: inline-block;
                margin: 10px 5px;
                padding: 12px 18px;
                font-size: 0.8rem;
                animation: none;
            }
            
            .hero-paradise-floating-badge:nth-child(2) {
                animation-delay: 0s;
            }
        }
@keyframes paradiseFloatBadge {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-15px) scale(1.05); }
        }
.hero-paradise-badges-mobile-wrapper {
            display: none;
        }
@media (max-width: 900px) {
            .hero-paradise-image-container .hero-paradise-floating-badge {
                display: none !important;
            }
            
            .hero-paradise-badges-mobile-wrapper {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px;
                margin-top: 20px;
            }
            
            .hero-paradise-badges-mobile-wrapper .hero-paradise-floating-badge {
                display: inline-flex !important;
                position: relative !important;
                animation: none;
            }
        }
@media (max-width: 900px) {
            .hero-paradise-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .hero-paradise-right {
                order: -1;
            }
            
            .hero-paradise-features {
                grid-template-columns: 1fr;
            }
            
            .hero-paradise-left {
                text-align: center;
            }
            
            .hero-paradise-cta {
                justify-content: center;
            }
        }
.gallery-paradise-section {
            padding: clamp(60px, 10vw, 100px) 0;
            background: linear-gradient(180deg, #0a0e0d 0%, #1a1414 100%);
            position: relative;
            overflow: hidden;
        }
.gallery-paradise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 35%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 65%, rgba(157, 78, 221, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
.gallery-paradise-header {
            text-align: center;
            margin-bottom: clamp(40px, 8vw, 60px);
            position: relative;
            z-index: 2;
        }
.gallery-paradise-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(2rem, 5vw, 4rem);
            color: white;
            margin-bottom: 20px;
        }
.gallery-paradise-title span {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 50%, 
                var(--paradise-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.gallery-paradise-subtitle {
            font-size: clamp(0.95rem, 1.8vw, 1.1rem);
            color: rgba(255, 255, 255, 0.6);
        }
.gallery-paradise-slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(20px, 10vw, 80px);
            z-index: 2;
        }
.gallery-paradise-slider {
            position: relative;
            height: clamp(350px, 50vw, 600px);
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1500px;
        }
.gallery-paradise-slide {
            position: absolute;
            width: clamp(280px, 80vw, 700px);
            height: clamp(250px, 60vw, 500px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateX(0) scale(0.8) rotateY(0deg);
            pointer-events: none;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            border: 2px solid transparent;
        }
.gallery-paradise-slide.active {
            opacity: 1;
            transform: translateX(0) scale(1) rotateY(0deg);
            z-index: 10;
            pointer-events: auto;
            box-shadow: 0 40px 100px rgba(255, 215, 0, 0.5);
            border-color: var(--paradise-gold);
        }
.gallery-paradise-slide.prev {
            opacity: 0.5;
            transform: translateX(-350px) scale(0.85) rotateY(15deg);
            z-index: 5;
            filter: brightness(0.7);
        }
.gallery-paradise-slide.next {
            opacity: 0.5;
            transform: translateX(350px) scale(0.85) rotateY(-15deg);
            z-index: 5;
            filter: brightness(0.7);
        }
.gallery-paradise-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: 0.5s;
        }
.gallery-paradise-slide.active img {
            transform: scale(1.05);
        }
.gallery-paradise-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: clamp(50px, 8vw, 60px);
            height: clamp(50px, 8vw, 60px);
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border: 2px solid var(--paradise-gold);
            border-radius: 50%;
            color: white;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: 0.3s;
        }
.gallery-paradise-nav-btn:hover {
            background: var(--paradise-gold);
            border-color: var(--paradise-orange);
            color: #000;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
        }
.gallery-paradise-nav-btn.prev {
            left: 0;
        }
.gallery-paradise-nav-btn.next {
            right: 0;
        }
.gallery-paradise-indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: clamp(30px, 5vw, 40px);
        }
.gallery-paradise-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: 0.3s;
            border: 2px solid transparent;
        }
.gallery-paradise-indicator.active {
            background: var(--paradise-gold);
            border-color: var(--paradise-orange);
            transform: scale(1.3);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
        }
.gallery-paradise-indicator:hover {
            background: rgba(255, 215, 0, 0.5);
            transform: scale(1.2);
        }
@media (max-width: 1024px) {
            .gallery-paradise-slider-container {
                padding: 0 60px;
            }
            
            .gallery-paradise-slider {
                height: clamp(300px, 45vw, 450px);
            }
            
            .gallery-paradise-slide {
                width: clamp(260px, 75vw, 600px);
                height: clamp(230px, 55vw, 450px);
            }
            
            .gallery-paradise-slide.prev {
                transform: translateX(-250px) scale(0.85) rotateY(15deg);
            }
            
            .gallery-paradise-slide.next {
                transform: translateX(250px) scale(0.85) rotateY(-15deg);
            }
        }
@media (max-width: 768px) {
            .gallery-paradise-section {
                padding: 50px 0;
            }
            
            .gallery-paradise-slider-container {
                padding: 0 50px;
            }
            
            .gallery-paradise-slider {
                height: 350px;
            }
            
            .gallery-paradise-slide {
                width: 90%;
                max-width: 400px;
                height: 300px;
            }
            
            .gallery-paradise-slide.prev,
            .gallery-paradise-slide.next {
                opacity: 0.3;
                transform: translateX(0) scale(0.7) rotateY(0deg);
            }
            
            .gallery-paradise-nav-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .gallery-paradise-indicators {
                margin-top: 25px;
                gap: 10px;
            }
            
            .gallery-paradise-indicator {
                width: 10px;
                height: 10px;
            }
        }
@media (max-width: 480px) {
            .gallery-paradise-section {
                padding: 40px 0;
            }
            
            .gallery-paradise-slider-container {
                padding: 0 40px;
            }
            
            .gallery-paradise-slider {
                height: 280px;
            }
            
            .gallery-paradise-slide {
                width: 95%;
                max-width: 320px;
                height: 240px;
                border-radius: 20px;
            }
            
            .gallery-paradise-slide.prev,
            .gallery-paradise-slide.next {
                display: none;
            }
            
            .gallery-paradise-nav-btn {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
            
            .gallery-paradise-nav-btn.prev {
                left: -5px;
            }
            
            .gallery-paradise-nav-btn.next {
                right: -5px;
            }
            
            .gallery-paradise-indicators {
                gap: 8px;
            }
            
            .gallery-paradise-indicator {
                width: 8px;
                height: 8px;
            }
        }
.specs-paradise-section {
            padding: clamp(60px, 10vw, 100px) 0;
            background: radial-gradient(circle at 50% 50%, #1a1414 0%, #0a0e0d 100%);
            position: relative;
            overflow: hidden;
        }
.specs-paradise-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: 
                linear-gradient(rgba(255, 215, 0, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 215, 0, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.5;
            pointer-events: none;
        }
.specs-paradise-header {
            text-align: center;
            margin-bottom: clamp(40px, 8vw, 70px);
            position: relative;
            z-index: 2;
        }
.specs-paradise-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(2rem, 5vw, 4rem);
            color: white;
            margin-bottom: 20px;
        }
.specs-paradise-title span {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 50%,
                var(--paradise-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.specs-paradise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(20px, 3vw, 30px);
            position: relative;
            z-index: 2;
        }
@media (max-width: 1024px) {
            .specs-paradise-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
@media (max-width: 640px) {
            .specs-paradise-grid {
                grid-template-columns: 1fr;
            }
        }
.spec-paradise-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 25px;
            padding: clamp(30px, 4vw, 40px) clamp(25px, 3vw, 30px);
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: default;
        }
.spec-paradise-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255, 215, 0, 0.1) 50%, 
                transparent 70%);
            opacity: 0;
            transition: 0.8s;
            pointer-events: none;
        }
.spec-paradise-card:hover::before {
            opacity: 1;
            transform: rotate(45deg);
        }
.spec-paradise-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--paradise-gold);
            background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.08) 0%, 
                rgba(255, 107, 53, 0.05) 100%);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
        }
.spec-paradise-icon {
            font-size: clamp(3rem, 6vw, 4rem);
            margin-bottom: 20px;
            display: block;
            animation: specParadiseIconFloat 3s ease-in-out infinite;
            transition: 0.4s;
        }
@keyframes specParadiseIconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
.spec-paradise-card:hover .spec-paradise-icon {
            transform: scale(1.15) rotate(5deg);
            animation: none;
        }
.spec-paradise-title {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
.spec-paradise-value {
            font-size: clamp(1.6rem, 3vw, 2rem);
            font-weight: 800;
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            display: block;
        }
.spec-paradise-description {
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }
.spec-paradise-bars {
            margin-top: 25px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
.spec-paradise-bar-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
.spec-paradise-bar-label {
            font-size: clamp(0.75rem, 1.4vw, 0.85rem);
            color: rgba(255, 255, 255, 0.7);
            min-width: 90px;
            text-align: left;
        }
.spec-paradise-bar-track {
            flex: 1;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
.spec-paradise-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            border-radius: 10px;
            transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
            width: 0;
        }
.spec-paradise-card:hover .spec-paradise-bar-fill {
            width: var(--bar-width) !important;
        }
.spec-paradise-card.in-view .spec-paradise-bar-fill {
            width: var(--bar-width);
        }
@media (max-width: 768px) {
            .specs-paradise-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .spec-paradise-card {
                padding: 30px 25px;
            }
            
            .spec-paradise-bar-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .spec-paradise-bar-label {
                min-width: 100%;
                text-align: center;
            }
        }
@media (max-width: 480px) {
            .specs-paradise-section {
                padding: 50px 0;
            }
            
            .spec-paradise-card {
                padding: 25px 20px;
            }
            
            .spec-paradise-icon {
                font-size: 2.5rem;
            }
            
            .spec-paradise-bars {
                margin-top: 20px;
            }
        }
.legality-paradise-section {
            padding: clamp(4rem, 10vw, 8rem) 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #1a1f1d 100%);
            position: relative;
            overflow: hidden;
        }
.legality-paradise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }
.legality-paradise-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 8vw, 80px);
            align-items: center;
            position: relative;
            z-index: 1;
        }
.legality-paradise-left {
            color: #ffffff;
        }
.legality-paradise-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
.legality-paradise-title-accent {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.legality-paradise-description {
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 50px;
            max-width: 550px;
        }
.legality-paradise-docs {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
.doc-paradise-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 30px;
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }
.doc-paradise-item:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: var(--paradise-gold);
            transform: translateX(10px);
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.25);
        }
.doc-paradise-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: rgba(255, 215, 0, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--paradise-gold);
            transition: all 0.3s ease;
        }
.doc-paradise-item:hover .doc-paradise-icon {
            background: var(--paradise-gold);
            color: #0a0e0d;
            transform: scale(1.1) rotate(5deg);
        }
.doc-paradise-content h4 {
            font-size: clamp(0.95rem, 1.5vw, 1.1rem);
            font-weight: 800;
            color: var(--paradise-gold);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
.doc-paradise-content p {
            font-size: clamp(0.85rem, 1.4vw, 0.95rem);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }
.legality-paradise-right {
            position: relative;
        }
.animal-paradise-card {
            position: relative;
            border-radius: 40px;
            overflow: hidden;
            background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.1) 0%, 
                rgba(255, 107, 53, 0.08) 100%);
            border: 2px solid rgba(255, 215, 0, 0.3);
            padding: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
        }
.animal-paradise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 80px rgba(255, 215, 0, 0.4);
            border-color: var(--paradise-gold);
        }
.animal-paradise-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            aspect-ratio: 4/5;
            background: #1a1f1d;
        }
.animal-paradise-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
.animal-paradise-card:hover .animal-paradise-image img {
            transform: scale(1.08);
        }
.animal-paradise-badges {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 20px;
        }
.badge-paradise {
            padding: 25px 20px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
.badge-paradise-green {
            background: linear-gradient(135deg, 
                rgba(123, 191, 106, 0.2) 0%, 
                rgba(123, 191, 106, 0.1) 100%);
            border-color: rgba(123, 191, 106, 0.3);
        }
.badge-paradise-gold {
            background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.2) 0%, 
                rgba(255, 215, 0, 0.1) 100%);
            border-color: rgba(255, 215, 0, 0.3);
        }
.badge-paradise:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }
.badge-paradise-green:hover {
            border-color: #7BBF6A;
        }
.badge-paradise-gold:hover {
            border-color: var(--paradise-gold);
        }
.badge-paradise-number {
            display: block;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
        }
.badge-paradise-green .badge-paradise-number {
            color: #7BBF6A;
        }
.badge-paradise-gold .badge-paradise-number {
            color: var(--paradise-gold);
        }
.badge-paradise-label {
            display: block;
            font-size: clamp(0.75rem, 1.2vw, 0.85rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.8);
        }
@media (max-width: 1024px) {
            .legality-paradise-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .legality-paradise-left {
                text-align: center;
            }
            
            .legality-paradise-description {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            
            .doc-paradise-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .doc-paradise-item:hover {
                transform: translateY(-10px);
            }
        }
@media (max-width: 640px) {
            .legality-paradise-section {
                padding: 3rem 0;
            }
            
            .animal-paradise-badges {
                grid-template-columns: 1fr;
            }
            
            .doc-paradise-item {
                padding: 25px 20px;
            }
            
            .animal-paradise-card {
                padding: 15px;
                border-radius: 30px;
            }
            
            .animal-paradise-image {
                border-radius: 20px;
            }
        }
.price-paradise-section {
            padding: clamp(60px, 10vw, 100px) 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #141418 100%);
            position: relative;
            overflow: hidden;
        }
.price-paradise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(157, 78, 221, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
.price-paradise-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: start;
            position: relative;
            z-index: 2;
        }
.price-paradise-includes {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 30px;
            padding: clamp(35px, 5vw, 50px) clamp(30px, 4vw, 40px);
        }
.price-paradise-includes-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: white;
            margin-bottom: 30px;
            text-align: center;
        }
.price-paradise-includes-title span {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.price-paradise-includes-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
.price-paradise-include-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: clamp(18px, 3vw, 20px);
            background: rgba(255, 215, 0, 0.03);
            border-left: 3px solid var(--paradise-gold);
            border-radius: 15px;
            transition: 0.3s;
        }
.price-paradise-include-item:hover {
            background: rgba(255, 215, 0, 0.08);
            transform: translateX(5px);
            border-left-color: var(--paradise-orange);
        }
.price-paradise-include-icon {
            font-size: clamp(1.5rem, 3vw, 2rem);
            min-width: clamp(40px, 7vw, 50px);
            height: clamp(40px, 7vw, 50px);
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 12px;
            transition: 0.3s;
            flex-shrink: 0;
        }
.price-paradise-include-item:hover .price-paradise-include-icon {
            transform: scale(1.1) rotate(5deg);
            background: rgba(255, 215, 0, 0.2);
        }
.price-paradise-include-text h4 {
            font-size: clamp(0.95rem, 1.8vw, 1.1rem);
            color: white;
            margin-bottom: 5px;
            font-weight: 700;
        }
.price-paradise-include-text p {
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }
.price-paradise-order-card {
            background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.1) 0%, 
                rgba(255, 107, 53, 0.05) 100%);
            backdrop-filter: blur(20px);
            border: 2px solid var(--paradise-gold);
            border-radius: 30px;
            padding: clamp(35px, 5vw, 40px) clamp(30px, 4vw, 35px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            position: sticky;
            top: 100px;
            transition: 0.4s;
        }
.price-paradise-order-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 40px 100px rgba(255, 215, 0, 0.4);
        }
.price-paradise-badge-top {
            display: inline-block;
            background: var(--paradise-gold);
            color: #000;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: clamp(0.7rem, 1.4vw, 0.8rem);
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
.price-paradise-main {
            font-size: clamp(2.5rem, 6vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            line-height: 1;
        }
.price-paradise-old {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: rgba(255, 255, 255, 0.3);
            text-decoration: line-through;
            margin-bottom: 20px;
            display: block;
        }
.price-paradise-discount-badge {
            display: inline-block;
            background: var(--paradise-orange);
            color: white;
            padding: 6px 15px;
            border-radius: 10px;
            font-size: clamp(0.75rem, 1.5vw, 0.85rem);
            font-weight: 800;
            margin-bottom: 25px;
        }
.price-paradise-perks {
            list-style: none;
            margin: 25px 0;
            padding: 0;
        }
.price-paradise-perks li {
            padding: 12px 0;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: clamp(0.85rem, 1.6vw, 0.95rem);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
.price-paradise-perks li:last-child {
            border-bottom: none;
        }
.price-paradise-perks li::before {
            content: '✓';
            color: var(--paradise-gold);
            font-weight: bold;
            font-size: 1.3rem;
            min-width: 20px;
        }
.price-paradise-order-form {
            margin-top: 30px;
        }
.form-paradise-input {
            width: 100%;
            padding: clamp(14px, 2.5vw, 16px) clamp(18px, 3vw, 20px);
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: white;
            margin-bottom: 15px;
            font-size: clamp(0.9rem, 1.6vw, 1rem);
            outline: none;
            transition: 0.3s;
        }
.form-paradise-input:focus {
            border-color: var(--paradise-gold);
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
.form-paradise-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
.btn-paradise-order-main {
            width: 100%;
            padding: clamp(16px, 3vw, 18px);
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            font-size: clamp(0.95rem, 1.8vw, 1.05rem);
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }
.btn-paradise-order-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
        }
.btn-paradise-order-phone {
            width: 100%;
            padding: clamp(14px, 2.5vw, 16px);
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--paradise-gold);
            border-radius: 12px;
            color: white;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            font-size: clamp(0.9rem, 1.6vw, 1rem);
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
.btn-paradise-order-phone:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: var(--paradise-orange);
            transform: translateY(-2px);
        }
.price-paradise-note {
            font-size: clamp(0.7rem, 1.3vw, 0.75rem);
            color: rgba(255, 255, 255, 0.4);
            text-align: center;
            margin-top: 15px;
        }
@media (min-width: 1100px) {
            .price-paradise-grid {
                grid-template-columns: 1fr 450px;
                gap: 50px;
            }
        }
@media (max-width: 768px) {
            .price-paradise-order-card {
                position: relative;
                top: auto;
            }
            
            .price-paradise-include-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }
@media (max-width: 480px) {
            .price-paradise-includes {
                padding: 30px 20px;
            }
            
            .price-paradise-order-card {
                padding: 30px 20px;
            }
            
            .price-paradise-include-item {
                padding: 15px;
            }
        }
.care-paradise-section {
            padding: clamp(60px, 10vw, 100px) 0;
            background: radial-gradient(circle at 50% 50%, #1a1f1d 0%, #0a0e0d 100%);
            position: relative;
        }
.care-paradise-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: 
                linear-gradient(rgba(255, 215, 0, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 215, 0, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.4;
            pointer-events: none;
        }
.care-paradise-header {
            text-align: center;
            margin-bottom: clamp(40px, 8vw, 60px);
            position: relative;
            z-index: 2;
        }
.care-paradise-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            margin-bottom: 20px;
        }
.care-paradise-title span {
            background: linear-gradient(135deg, 
                var(--primary) 0%, 
                var(--paradise-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.care-paradise-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }
.care-paradise-tab-btn {
            padding: 15px 30px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.care-paradise-tab-btn:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: var(--paradise-gold);
            color: white;
        }
.care-paradise-tab-btn.active {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            border-color: transparent;
            color: white;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
        }
.care-paradise-content {
            position: relative;
            z-index: 2;
        }
.care-paradise-tab-panel {
            display: none;
            animation: fadeInParadise 0.5s ease;
        }
.care-paradise-tab-panel.active {
            display: block;
        }
@keyframes fadeInParadise {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
.care-paradise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
.care-paradise-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 35px 30px;
            transition: 0.4s;
        }
.care-paradise-card:hover {
            background: rgba(255, 215, 0, 0.08);
            border-color: var(--paradise-gold);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
        }
.care-paradise-card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
.care-paradise-card h4 {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 700;
        }
.care-paradise-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            font-size: 0.95rem;
        }
.care-paradise-card ul {
            list-style: none;
            margin-top: 15px;
            padding: 0;
        }
.care-paradise-card li {
            padding: 8px 0;
            color: rgba(255, 255, 255, 0.6);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
        }
.care-paradise-card li::before {
            content: '•';
            color: var(--paradise-gold);
            font-weight: bold;
            font-size: 1.5rem;
            line-height: 1;
        }
@media (max-width: 768px) {
            .care-paradise-tabs {
                flex-direction: column;
                align-items: stretch;
            }
            
            .care-paradise-tab-btn {
                justify-content: center;
            }
        }
.delivery-paradise-section {
            padding: clamp(60px, 10vw, 100px) 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #141a18 100%);
            position: relative;
            overflow: hidden;
        }
.delivery-paradise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 70%, rgba(157, 78, 221, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }
.delivery-paradise-header {
            text-align: center;
            margin-bottom: clamp(50px, 8vw, 70px);
            position: relative;
            z-index: 2;
        }
.delivery-paradise-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            margin-bottom: 25px;
            line-height: 1.1;
        }
.delivery-paradise-title span {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.delivery-paradise-subtitle {
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }
.delivery-paradise-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 6vw, 60px);
            margin-bottom: clamp(60px, 10vw, 80px);
            position: relative;
            z-index: 2;
        }
.delivery-paradise-block-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            color: white;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
.delivery-paradise-block-title.center {
            text-align: center;
        }
.delivery-paradise-methods {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 25px;
            padding: clamp(30px, 5vw, 40px);
        }
.delivery-paradise-method-card {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 215, 0, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 18px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
.delivery-paradise-method-card:last-child {
            margin-bottom: 0;
        }
.delivery-paradise-method-card:hover {
            background: rgba(255, 215, 0, 0.08);
            border-color: var(--paradise-gold);
            transform: translateX(5px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }
.delivery-paradise-method-icon {
            font-size: clamp(2.5rem, 4vw, 3rem);
            min-width: clamp(60px, 10vw, 70px);
            height: clamp(60px, 10vw, 70px);
            background: rgba(255, 215, 0, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
.delivery-paradise-method-content h4 {
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }
.delivery-paradise-method-content p {
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 15px;
        }
.delivery-paradise-price {
            display: inline-block;
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: 800;
        }
.delivery-paradise-process {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(157, 78, 221, 0.2);
            border-radius: 25px;
            padding: clamp(30px, 5vw, 40px);
        }
.delivery-paradise-step {
            display: flex;
            gap: 20px;
            padding: 25px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
.delivery-paradise-step:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
.delivery-paradise-step-number {
            min-width: 50px;
            height: 50px;
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 800;
            flex-shrink: 0;
        }
.delivery-paradise-step-content h4 {
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }
.delivery-paradise-step-content p {
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }
.delivery-paradise-guarantees {
            margin-bottom: clamp(60px, 10vw, 80px);
            position: relative;
            z-index: 2;
        }
.delivery-paradise-guarantees-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(20px, 3vw, 30px);
            margin-top: 40px;
        }
.delivery-paradise-guarantee-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            padding: clamp(25px, 4vw, 35px);
            text-align: center;
            transition: all 0.3s ease;
        }
.delivery-paradise-guarantee-card:hover {
            background: rgba(255, 215, 0, 0.08);
            border-color: var(--paradise-gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        }
.delivery-paradise-guarantee-icon {
            font-size: clamp(2.5rem, 4vw, 3rem);
            margin-bottom: 20px;
        }
.delivery-paradise-guarantee-card h4 {
            font-size: clamp(1rem, 1.8vw, 1.1rem);
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }
.delivery-paradise-guarantee-card p {
            font-size: clamp(0.85rem, 1.5vw, 0.9rem);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }
.delivery-paradise-map {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 25px;
            padding: clamp(40px, 6vw, 50px);
            margin-bottom: clamp(50px, 8vw, 60px);
            position: relative;
            z-index: 2;
        }
.delivery-paradise-map-text {
            text-align: center;
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 35px;
        }
.delivery-paradise-cities {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
.delivery-paradise-city-tag {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            padding: 10px 20px;
            border-radius: 50px;
            color: white;
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            font-weight: 600;
            transition: all 0.3s ease;
        }
.delivery-paradise-city-tag:hover {
            background: rgba(255, 215, 0, 0.2);
            border-color: var(--paradise-gold);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }
.delivery-paradise-cta {
            background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.1) 0%, 
                rgba(255, 107, 53, 0.05) 100%);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 30px;
            padding: clamp(40px, 6vw, 50px);
            text-align: center;
            position: relative;
            z-index: 2;
        }
.delivery-paradise-cta h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
        }
.delivery-paradise-cta p {
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 35px;
        }
.delivery-paradise-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
.btn-delivery-paradise-cta {
            padding: clamp(16px, 3vw, 20px) clamp(35px, 5vw, 45px);
            font-size: clamp(0.95rem, 1.7vw, 1.1rem);
            font-weight: 800;
            text-transform: uppercase;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            color: white;
        }
.btn-delivery-paradise-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
        }
.btn-delivery-paradise-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--paradise-gold);
        }
.btn-delivery-paradise-secondary:hover {
            background: rgba(255, 215, 0, 0.15);
            border-color: var(--paradise-orange);
        }
@media (max-width: 1024px) {
            .delivery-paradise-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .delivery-paradise-guarantees-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
@media (max-width: 640px) {
            .delivery-paradise-method-card {
                flex-direction: column;
                text-align: center;
            }
            
            .delivery-paradise-method-icon {
                margin: 0 auto;
            }
            
            .delivery-paradise-step {
                flex-direction: column;
                text-align: center;
            }
            
            .delivery-paradise-step-number {
                margin: 0 auto;
            }
            
            .delivery-paradise-guarantees-grid {
                grid-template-columns: 1fr;
            }
            
            .delivery-paradise-cta-buttons {
                flex-direction: column;
            }
            
            .btn-delivery-paradise-cta {
                width: 100%;
                justify-content: center;
            }
        }
.faq-paradise-section {
            padding: clamp(60px, 10vw, 100px) 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #141a18 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(66, 196, 193, 0.2);
        }
.faq-paradise-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: 
                linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.4;
            pointer-events: none;
        }
.faq-paradise-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
.faq-paradise-header {
            text-align: center;
            margin-bottom: 60px;
        }
.faq-paradise-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            margin-bottom: 20px;
        }
.faq-paradise-title span {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.faq-paradise-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
        }
.faq-paradise-list {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 30px;
            padding: 50px 45px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
        }
.faq-paradise-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            transition: 0.3s;
        }
.faq-paradise-item:last-child {
            border-bottom: none;
        }
.faq-paradise-question {
            font-weight: 700;
            color: white;
            font-size: 1.15rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s;
            padding-right: 20px;
            user-select: none;
        }
.faq-paradise-question:hover {
            color: var(--paradise-gold);
        }
.faq-paradise-icon {
            font-size: 1.5rem;
            color: var(--paradise-gold);
            transition: 0.4s;
            min-width: 30px;
            text-align: center;
            font-weight: 300;
        }
.faq-paradise-item.active .faq-paradise-icon {
            transform: rotate(45deg);
            color: var(--paradise-orange);
        }
.faq-paradise-answer {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
.faq-paradise-item.active .faq-paradise-answer {
            max-height: 1000px;
            padding-top: 20px;
        }
.faq-paradise-item.active .faq-paradise-question {
            color: var(--paradise-gold);
        }
.final-paradise-cta-section {
            padding: clamp(80px, 15vw, 120px) 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #1a1414 50%, #0a0e0d 100%);
            position: relative;
            overflow: hidden;
        }
.final-paradise-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 40%);
            animation: finalParadiseCtaGlow 15s ease-in-out infinite;
            pointer-events: none;
        }
@keyframes finalParadiseCtaGlow {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
            50% { transform: translate(5%, 5%) scale(1.1); opacity: 0.8; }
        }
.final-paradise-cta-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
.final-paradise-cta-badge {
            display: inline-block;
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            color: black;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.85rem;
            text-transform: uppercase;
            margin-bottom: 30px;
            letter-spacing: 1px;
            animation: paradiseBadgePulse 3s ease-in-out infinite;
        }
.final-paradise-cta-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(3rem, 7vw, 5rem);
            color: white;
            line-height: 1.1;
            margin-bottom: 30px;
        }
.final-paradise-cta-title span {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 50%,
                var(--paradise-purple) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: paradiseTitleShift 6s ease infinite;
        }
.final-paradise-cta-text {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 50px;
            line-height: 1.7;
        }
.final-paradise-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
.btn-final-paradise-cta {
            padding: 22px 50px;
            font-size: 1.2rem;
            font-weight: 800;
            text-transform: uppercase;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }
.btn-final-paradise-primary {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            color: white;
        }
.btn-final-paradise-primary:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 25px 60px rgba(255, 215, 0, 0.6);
        }
.btn-final-paradise-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--paradise-gold);
            color: white;
        }
.btn-final-paradise-secondary:hover {
            background: rgba(255, 215, 0, 0.15);
            border-color: var(--paradise-orange);
            transform: translateY(-8px) scale(1.05);
        }
.final-paradise-cta-note {
            margin-top: 40px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.5);
        }
@media (max-width: 768px) {
            .final-paradise-cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn-final-paradise-cta {
                width: 100%;
                justify-content: center;
            }
        }
.seo-paradise-section {
            padding: clamp(3rem, 8vw, 6rem) 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #1a1f1d 100%);
            position: relative;
        }
.seo-paradise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 20%, rgba(255, 215, 0, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 85% 80%, rgba(157, 78, 221, 0.03) 0%, transparent 40%);
            pointer-events: none;
        }
.seo-paradise-wrapper {
            position: relative;
            z-index: 1;
        }
.seo-paradise-hero {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 60px);
            padding: clamp(30px, 5vw, 50px);
            background: rgba(255, 215, 0, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 25px;
        }
.seo-paradise-h1 {
            font-size: clamp(1.8rem, 4vw, 3.2rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.seo-paradise-lead {
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            color: rgba(255, 255, 255, 0.7);
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.6;
        }
.seo-paradise-content {
            max-width: 1200px;
            margin: 0 auto;
        }
.seo-paradise-block {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            padding: clamp(30px, 5vw, 45px);
            margin-bottom: clamp(25px, 4vw, 35px);
            transition: all 0.3s ease;
        }
.seo-paradise-block:hover {
            border-color: var(--paradise-gold);
            background: rgba(255, 215, 0, 0.05);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
        }
.seo-paradise-primary {
            background: rgba(255, 215, 0, 0.05);
            border-color: rgba(255, 215, 0, 0.3);
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }
.seo-paradise-icon {
            font-size: clamp(3rem, 5vw, 4rem);
            flex-shrink: 0;
        }
.seo-paradise-text {
            flex: 1;
        }
.seo-paradise-block h2 {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 800;
            color: var(--paradise-gold);
            margin-bottom: 20px;
            line-height: 1.3;
        }
.seo-paradise-block h3 {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-weight: 800;
            color: var(--paradise-orange);
            margin-bottom: 18px;
        }
.seo-paradise-block p {
            font-size: clamp(0.95rem, 1.6vw, 1.05rem);
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
            margin-bottom: 15px;
        }
.seo-paradise-block strong {
            color: var(--paradise-gold);
        }
.seo-paradise-block a {
            color: var(--paradise-gold);
        }
.seo-paradise-block a:hover {
            color: var(--paradise-orange);
        }
.seo-paradise-grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(20px, 3vw, 30px);
            margin-bottom: clamp(25px, 4vw, 35px);
        }
.seo-paradise-list {
            list-style: none;
            padding: 0;
        }
.seo-paradise-list li {
            padding: 12px 0 12px 35px;
            position: relative;
            font-size: clamp(0.95rem, 1.6vw, 1.05rem);
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
.seo-paradise-list li:last-child {
            border-bottom: none;
        }
.seo-paradise-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--paradise-orange);
            font-weight: 800;
            font-size: 1.2rem;
        }
.seo-paradise-list-compact {
            list-style: none;
            padding: 0;
        }
.seo-paradise-list-compact li {
            padding: 8px 0 8px 25px;
            position: relative;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: rgba(255, 255, 255, 0.7);
        }
.seo-paradise-list-compact li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--paradise-gold);
        }
.seo-paradise-steps {
            list-style: none;
            counter-reset: step-counter;
            padding: 0;
        }
.seo-paradise-steps li {
            counter-increment: step-counter;
            padding: 15px 0 15px 50px;
            position: relative;
            font-size: clamp(0.95rem, 1.6vw, 1.05rem);
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
            margin-bottom: 10px;
        }
.seo-paradise-steps li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 15px;
            width: 35px;
            height: 35px;
            background: rgba(255, 215, 0, 0.2);
            border: 2px solid var(--paradise-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--paradise-gold);
            font-weight: 800;
            font-size: 1rem;
        }
.specs-paradise-grid-seo {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: clamp(15px, 2.5vw, 20px);
            margin-top: 30px;
        }
.spec-paradise-card-seo {
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 15px;
            padding: clamp(20px, 3vw, 25px);
            display: flex;
            gap: 15px;
            align-items: flex-start;
            transition: all 0.3s ease;
        }
.spec-paradise-card-seo:hover {
            border-color: var(--paradise-gold);
            background: rgba(255, 215, 0, 0.1);
            transform: translateY(-5px);
        }
.spec-paradise-icon-seo {
            font-size: 2.5rem;
            flex-shrink: 0;
        }
.spec-paradise-info-seo h4 {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: var(--paradise-orange);
            margin-bottom: 5px;
            font-weight: 700;
        }
.spec-paradise-info-seo p {
            font-size: clamp(0.85rem, 1.4vw, 0.9rem);
            margin: 0;
        }
.price-paradise-table {
            background: rgba(255, 215, 0, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 15px;
            padding: clamp(20px, 3vw, 30px);
            margin: 25px 0;
        }
.price-paradise-row {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
.price-paradise-row:last-child {
            border-bottom: none;
        }
.price-paradise-item {
            font-size: clamp(0.95rem, 1.6vw, 1.05rem);
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
        }
.price-paradise-dots {
            flex: 1;
            border-bottom: 2px dotted rgba(255, 215, 0, 0.3);
            margin: 0 15px 3px;
        }
.price-paradise-value {
            font-size: clamp(1.1rem, 1.8vw, 1.3rem);
            color: var(--paradise-orange);
            font-weight: 800;
            white-space: nowrap;
        }
.price-paradise-note {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid var(--paradise-orange);
            padding: 15px 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
.faq-paradise-item-seo {
            background: rgba(255, 215, 0, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 15px;
            padding: clamp(20px, 3vw, 30px);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
.faq-paradise-item-seo:hover {
            border-color: var(--paradise-gold);
            background: rgba(255, 215, 0, 0.08);
        }
.faq-paradise-item-seo h3 {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--paradise-orange);
            margin-bottom: 15px;
        }
.faq-paradise-item-seo p {
            margin: 0;
        }
.seo-paradise-final {
            background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.1) 0%, 
                rgba(255, 107, 53, 0.05) 100%);
            border: 2px solid rgba(255, 215, 0, 0.3);
            text-align: center;
        }
.final-paradise-text {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
.final-paradise-cta-seo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
        }
.btn-paradise-cta-seo {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            color: white;
            padding: clamp(18px, 3vw, 24px) clamp(40px, 6vw, 60px);
            border-radius: 100px;
            font-weight: 800;
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }
.btn-paradise-cta-seo:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
        }
.btn-paradise-cta-seo svg {
            transition: transform 0.3s ease;
        }
.btn-paradise-cta-seo:hover svg {
            transform: translateX(5px);
        }
.final-paradise-contacts {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            align-items: center;
        }
.final-paradise-phone {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            font-weight: 800;
            color: var(--paradise-gold);
            text-decoration: none;
        }
.final-paradise-phone:hover {
            color: var(--paradise-orange);
        }
.final-paradise-address {
            font-size: clamp(1rem, 1.6vw, 1.15rem);
            color: rgba(255, 255, 255, 0.7);
        }
@media (max-width: 768px) {
            .seo-paradise-section {
                padding: 2.5rem 0;
            }

            .seo-paradise-primary {
                flex-direction: column;
                text-align: center;
            }

            .seo-paradise-grid-2,
            .specs-paradise-grid-seo {
                grid-template-columns: 1fr;
            }

            .price-paradise-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .price-paradise-dots {
                display: none;
            }

            .btn-paradise-cta-seo {
                width: 100%;
                justify-content: center;
            }
        }
.modal-box { 
            position: relative !important; 
            background: linear-gradient(135deg, #111 0%, #1a1f1d 100%); 
            border: 2px solid var(--paradise-gold); 
            border-radius: 25px; 
            width: 500px; 
            max-width: 95%; 
            max-height: 90vh; 
            display: flex; 
            flex-direction: column; 
            overflow: hidden; 
            animation: modalParadiseZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
            box-shadow: 0 30px 80px rgba(0,0,0,0.8); 
        }
@media (max-width: 480px) {
            .modal-box {
                width: 100%;
                max-width: 100%;
                height: 100vh;
                max-height: 100vh;
                border-radius: 0;
                border: none;
                border-top: 3px solid var(--paradise-gold);
            }
        }
@keyframes modalParadiseZoomIn { 
            from { 
                opacity: 0; 
                transform: scale(0.9); 
            } 
            to { 
                opacity: 1; 
                transform: scale(1); 
            } 
        }
@media (max-width: 480px) {
            @keyframes modalParadiseZoomIn { 
                from { 
                    opacity: 0; 
                    transform: translateY(100%);
                } 
                to { 
                    opacity: 1; 
                    transform: translateY(0);
                } 
            }
        }
.modal-close { 
            position: absolute !important; 
            top: 20px !important; 
            right: 20px !important; 
            width: 44px !important; 
            height: 44px !important; 
            background: rgba(0,0,0,0.7) !important; 
            border: 2px solid var(--paradise-gold) !important; 
            border-radius: 50% !important; 
            color: white !important; 
            font-size: 24px !important; 
            display: flex !important; 
            align-items: center !important; 
            justify-content: center !important; 
            cursor: pointer !important; 
            z-index: 100 !important; 
            transition: var(--transition) !important;
            line-height: 1 !important;
        }
.modal-close:hover {
            background: var(--paradise-gold) !important;
            color: #000 !important;
            transform: rotate(90deg);
            border-color: var(--paradise-orange) !important;
        }
.modal-title span {
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.form-input-modal:focus {
            border-color: var(--paradise-gold);
            background: rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
.btn-modal-submit {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            font-size: 1rem;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
            -webkit-appearance: none;
        }
.btn-modal-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
        }
.scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, 
                var(--paradise-gold) 0%, 
                var(--paradise-orange) 100%);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9000;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
            transition: 0.3s;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }
.scroll-to-top:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.7);
        }
body {
            opacity: 1;animation: pageParadiseLoad 0.8s ease forwards;
        }
@keyframes pageParadiseLoad {
            to { opacity: 1; }
        }
@media (max-width: 480px) {
            .modal-box {
                touch-action: pan-y;
            }
        }