﻿:root {
            --primary: #42C4C1;
            --accent: #B89B72;
            --owl-orange: #FF8C42;
            --owl-brown: #8B4513;
            --owl-yellow: #FFD700;
            --owl-dark: #2C1810;
            --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-owl-product {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e0d 0%, #1a1210 50%, #2C1810 100%);
    padding: 100px 0 80px;
}
@media (max-width: 900px) {
    .hero-owl-product {
        min-height: auto;
        padding: 80px 0 60px;
    }
}
.hero-owl-product::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 140, 66, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 69, 19, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    animation: heroOwlGradientMove 20s ease-in-out infinite;
    pointer-events: none;
}
@keyframes heroOwlGradientMove {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(5%, 5%) scale(1.1); opacity: 0.8; }
}
.hero-floating-feathers-owl {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}
.feather-owl {
    position: absolute;
    width: 25px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.3) 0%, rgba(139, 69, 19, 0.3) 100%);
    border-radius: 50% 0 50% 0;
    animation: floatFeatherOwl 18s ease-in-out infinite;
    filter: blur(1px);
}
.feather-owl:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.feather-owl:nth-child(2) { top: 50%; left: 85%; animation-delay: 6s; background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(255, 140, 66, 0.2) 100%); }
.feather-owl:nth-child(3) { top: 70%; left: 20%; animation-delay: 12s; background: linear-gradient(135deg, var(--primary) 0%, rgba(255, 140, 66, 0.25) 100%); }
@keyframes floatFeatherOwl {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.6; }
}
.hero-owl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-owl-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);
}
.owl-title-gradient {
    background: linear-gradient(135deg, #FF8C42 0%, #FFD700 50%, #8B4513 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: owlTitleGradientShift 6s ease infinite;
    background-size: 200% 200%;
}
@keyframes owlTitleGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-owl-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2) 0%, rgba(139, 69, 19, 0.15) 100%);
    border: 2px solid var(--owl-orange);
    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, 140, 66, 0.4);
    animation: owlBadgePulse 3s ease-in-out infinite;
}
@media (max-width: 900px) {
    .hero-owl-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        justify-content: center;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}
@keyframes owlBadgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5); }
}
.hero-owl-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-owl-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
.hero-feature-owl {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--owl-orange);
    border-radius: 10px;
    transition: 0.3s;
}
.hero-feature-owl:hover {
    background: rgba(255, 140, 66, 0.08);
    transform: translateX(10px);
    border-left-color: var(--owl-yellow);
}
.hero-feature-icon-owl {
    font-size: 1.8rem;
}
.hero-feature-text-owl {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}
.hero-owl-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-hero-owl {
    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-hero-owl-primary {
    background: linear-gradient(135deg, #FF8C42 0%, var(--primary) 100%);
    color: white;
}
.btn-hero-owl-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.5);
}
.btn-hero-owl-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--owl-orange);
    color: white;
}
.btn-hero-owl-secondary:hover {
    background: rgba(255, 140, 66, 0.1);
    border-color: var(--owl-yellow);
    transform: translateY(-5px);
}
.hero-owl-right {
    position: relative;
}
.hero-owl-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 900px) {
    .hero-owl-image-container {
        height: 550px;
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .hero-owl-image-container {
        height: 480px;
    }
}
.hero-owl-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 rgba(255, 140, 66, 0.4);
    transition: 0.5s;
    animation: heroOwlImageFloat 6s ease-in-out infinite;
}
@keyframes heroOwlImageFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}
.hero-owl-main-image:hover {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--owl-yellow);
    box-shadow: 0 40px 100px rgba(255, 140, 66, 0.6);
}
.hero-floating-badge-owl {
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    border: 2px solid var(--owl-orange);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    animation: floatOwlBadge 4s ease-in-out infinite;
    z-index: 10;
}
.hero-floating-badge-owl:nth-child(1) {
    top: 10%;
    right: -20px;
}
.hero-floating-badge-owl:nth-child(2) {
    bottom: 15%;
    left: -30px;
    border-color: var(--owl-yellow);
    animation-delay: 1.5s;
}
@media (max-width: 900px) {
    .hero-floating-badge-owl {
        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-floating-badge-owl:nth-child(2) {
        animation-delay: 0s;
    }
}
@keyframes floatOwlBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-badges-owl-mobile-wrapper {
    display: none;
}
@media (max-width: 900px) {
    .hero-owl-image-container .hero-floating-badge-owl {
        display: none !important;
    }
    
    .hero-badges-owl-mobile-wrapper {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }
    
    .hero-badges-owl-mobile-wrapper .hero-floating-badge-owl {
        display: inline-flex !important;
        position: relative !important;
        animation: none;
    }
}
@media (max-width: 900px) {
    .hero-owl-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-owl-right {
        order: -1;
    }
    
    .hero-owl-features {
        grid-template-columns: 1fr;
    }
    
    .hero-owl-left {
        text-align: center;
    }
    
    .hero-owl-cta {
        justify-content: center;
    }
}
.gallery-section-owl {
    padding: clamp(60px, 10vw, 100px) 0;
    background: linear-gradient(180deg, #0a0e0d 0%, #1a1210 100%);
    position: relative;
    overflow: hidden;
}
.gallery-section-owl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 140, 66, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.gallery-header-owl {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
    position: relative;
    z-index: 2;
}
.gallery-title-owl {
    font-family:'Manrope',sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: white;
    margin-bottom: 20px;
}
.gallery-title-owl span {
    background: linear-gradient(135deg, #FF8C42 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gallery-subtitle-owl {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.6);
}
.gallery-slider-container-owl {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 10vw, 80px);
    z-index: 2;
}
.gallery-slider-owl {
    position: relative;
    height: clamp(350px, 50vw, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}
.gallery-slide-owl {
    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);
}
.gallery-slide-owl.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 10;
    pointer-events: auto;
    box-shadow: 0 40px 100px rgba(255, 140, 66, 0.4);
}
.gallery-slide-owl.prev {
    opacity: 0.5;
    transform: translateX(-350px) scale(0.85) rotateY(15deg);
    z-index: 5;
    filter: brightness(0.7);
}
.gallery-slide-owl.next {
    opacity: 0.5;
    transform: translateX(350px) scale(0.85) rotateY(-15deg);
    z-index: 5;
    filter: brightness(0.7);
}
.gallery-slide-owl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}
.gallery-slide-owl.active img {
    transform: scale(1.05);
}
.gallery-nav-btn-owl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid #FF8C42;
    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-nav-btn-owl:hover {
    background: #FF8C42;
    border-color: #FFD700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.6);
}
.gallery-nav-btn-owl.prev {
    left: 0;
}
.gallery-nav-btn-owl.next {
    right: 0;
}
.gallery-indicators-owl {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: clamp(30px, 5vw, 40px);
}
.gallery-indicator-owl {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}
.gallery-indicator-owl.active {
    background: #FF8C42;
    border-color: #FFD700;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.8);
}
.gallery-indicator-owl:hover {
    background: rgba(255, 140, 66, 0.5);
    transform: scale(1.2);
}
@media (max-width: 1024px) {
    .gallery-slider-container-owl {
        padding: 0 60px;
    }
    
    .gallery-slider-owl {
        height: clamp(300px, 45vw, 450px);
    }
    
    .gallery-slide-owl {
        width: clamp(260px, 75vw, 600px);
        height: clamp(230px, 55vw, 450px);
    }
    
    .gallery-slide-owl.prev {
        transform: translateX(-250px) scale(0.85) rotateY(15deg);
    }
    
    .gallery-slide-owl.next {
        transform: translateX(250px) scale(0.85) rotateY(-15deg);
    }
}
@media (max-width: 768px) {
    .gallery-section-owl {
        padding: 50px 0;
    }
    
    .gallery-slider-container-owl {
        padding: 0 50px;
    }
    
    .gallery-slider-owl {
        height: 350px;
    }
    
    .gallery-slide-owl {
        width: 90%;
        max-width: 400px;
        height: 300px;
    }
    
    .gallery-slide-owl.prev,
    .gallery-slide-owl.next {
        opacity: 0.3;
        transform: translateX(0) scale(0.7) rotateY(0deg);
    }
    
    .gallery-nav-btn-owl {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
@media (max-width: 480px) {
    .gallery-section-owl {
        padding: 40px 0;
    }
    
    .gallery-slider-container-owl {
        padding: 0 40px;
    }
    
    .gallery-slider-owl {
        height: 280px;
    }
    
    .gallery-slide-owl {
        width: 95%;
        max-width: 320px;
        height: 240px;
        border-radius: 20px;
    }
    
    .gallery-slide-owl.prev,
    .gallery-slide-owl.next {
        display: none;
    }
    
    .gallery-nav-btn-owl {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .gallery-nav-btn-owl.prev {
        left: -5px;
    }
    
    .gallery-nav-btn-owl.next {
        right: -5px;
    }
}
.specs-section-owl {
    padding: clamp(60px, 10vw, 100px) 0;
    background: radial-gradient(circle at 50% 50%, #1a1210 0%, #0a0e0d 100%);
    position: relative;
    overflow: hidden;
}
.specs-section-owl::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(255, 140, 66, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 66, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}
.specs-header-owl {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 70px);
    position: relative;
    z-index: 2;
}
.specs-title-owl {
    font-family:'Manrope',sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: white;
    margin-bottom: 20px;
}
.specs-title-owl span {
    background: linear-gradient(135deg, #FF8C42 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.specs-grid-owl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 30px);
    position: relative;
    z-index: 2;
}
@media (max-width: 1024px) {
    .specs-grid-owl {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .specs-grid-owl {
        grid-template-columns: 1fr;
    }
}
.spec-card-owl {
    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, 140, 66, 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-card-owl::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 140, 66, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: 0.8s;
    pointer-events: none;
}
.spec-card-owl:hover::before {
    opacity: 1;
    transform: rotate(45deg);
}
.spec-card-owl:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #FF8C42;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.3);
}
.spec-icon-owl {
    font-size: clamp(3rem, 6vw, 4rem);
    margin-bottom: 20px;
    display: block;
    animation: specOwlIconFloat 3s ease-in-out infinite;
    transition: 0.4s;
}
@keyframes specOwlIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.spec-card-owl:hover .spec-icon-owl {
    transform: scale(1.15) rotate(5deg);
    animation: none;
}
.spec-title-owl {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.spec-value-owl {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #FF8C42 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}
.spec-description-owl {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}
.spec-bars-owl {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.spec-bar-item-owl {
    display: flex;
    align-items: center;
    gap: 12px;
}
.spec-bar-label-owl {
    font-size: clamp(0.75rem, 1.4vw, 0.85rem);
    color: rgba(255, 255, 255, 0.7);
    min-width: 90px;
    text-align: left;
}
.spec-bar-track-owl {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.spec-bar-fill-owl {
    height: 100%;
    background: linear-gradient(90deg, #FF8C42 0%, #FFD700 100%);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.6);
    width: 0;
}
.spec-card-owl:hover .spec-bar-fill-owl {
    width: var(--bar-width) !important;
}
.spec-card-owl.in-view .spec-bar-fill-owl {
    width: var(--bar-width);
}
@media (max-width: 768px) {
    .spec-bar-item-owl {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .spec-bar-label-owl {
        min-width: 100%;
        text-align: center;
    }
}
.legality-section-owl {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: linear-gradient(135deg, #0a0e0d 0%, #1a1210 100%);
    position: relative;
    overflow: hidden;
}
.legality-section-owl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.legality-grid-owl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
}
.legality-left-owl {
    color: #ffffff;
}
.legality-title-owl {
    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-title-accent-owl {
    background: linear-gradient(135deg, #FF8C42 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.legality-description-owl {
    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-docs-owl {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.doc-item-owl {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 140, 66, 0.05);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.doc-item-owl:hover {
    background: rgba(255, 140, 66, 0.08);
    border-color: #FF8C42;
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 140, 66, 0.25);
}
.doc-icon-owl {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 140, 66, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C42;
    transition: all 0.3s ease;
}
.doc-item-owl:hover .doc-icon-owl {
    background: #FF8C42;
    color: #0a0e0d;
    transform: scale(1.1) rotate(5deg);
}
.doc-content-owl h4 {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.doc-content-owl p {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}
.legality-right-owl {
    position: relative;
}
.animal-card-owl {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(139, 69, 19, 0.08) 100%);
    border: 2px solid rgba(255, 140, 66, 0.3);
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}
.animal-card-owl:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(255, 140, 66, 0.3);
    border-color: #FF8C42;
}
.animal-image-owl {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #1a1f1d;
}
.animal-image-owl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.animal-card-owl:hover .animal-image-owl img {
    transform: scale(1.08);
}
.animal-badges-owl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}
.badge-owl {
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.badge-green-owl {
    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-orange-owl {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2) 0%, rgba(255, 140, 66, 0.1) 100%);
    border-color: rgba(255, 140, 66, 0.3);
}
.badge-owl:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}
.badge-green-owl:hover {
    border-color: #7BBF6A;
}
.badge-orange-owl:hover {
    border-color: #FF8C42;
}
.badge-number-owl {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}
.badge-green-owl .badge-number-owl {
    color: #7BBF6A;
}
.badge-orange-owl .badge-number-owl {
    color: #FF8C42;
}
.badge-label-owl {
    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-grid-owl {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .legality-left-owl {
        text-align: center;
    }
    
    .legality-description-owl {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .doc-item-owl {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .doc-item-owl:hover {
        transform: translateY(-10px);
    }
}
@media (max-width: 640px) {
    .animal-badges-owl {
        grid-template-columns: 1fr;
    }
}
.price-order-section-owl {
    padding: clamp(60px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #0a0e0d 0%, #1a1210 100%);
    position: relative;
    overflow: hidden;
}
.price-order-section-owl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 140, 66, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.price-order-grid-owl {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}
.price-includes-owl {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 30px;
    padding: clamp(35px, 5vw, 50px) clamp(30px, 4vw, 40px);
}
.price-includes-title-owl {
    font-family:'Manrope',sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 30px;
    text-align: center;
}
.price-includes-title-owl span {
    background: linear-gradient(135deg, #FF8C42 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-includes-list-owl {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.price-include-item-owl {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: clamp(18px, 3vw, 20px);
    background: rgba(255, 140, 66, 0.03);
    border-left: 3px solid #FF8C42;
    border-radius: 15px;
    transition: 0.3s;
}
.price-include-item-owl:hover {
    background: rgba(255, 140, 66, 0.08);
    transform: translateX(5px);
    border-left-color: #FFD700;
}
.price-include-icon-owl {
    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, 140, 66, 0.1);
    border-radius: 12px;
    transition: 0.3s;
    flex-shrink: 0;
}
.price-include-item-owl:hover .price-include-icon-owl {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 140, 66, 0.2);
}
.price-include-text-owl h4 {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: white;
    margin-bottom: 5px;
    font-weight: 700;
}
.price-include-text-owl p {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}
.price-order-card-owl {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(139, 69, 19, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid #FF8C42;
    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-order-card-owl:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 100px rgba(255, 140, 66, 0.4);
}
.price-badge-top-owl {
    display: inline-block;
    background: #FF8C42;
    color: white;
    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-main-owl {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #FF8C42 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}
.price-perks-owl {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}
.price-perks-owl 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-perks-owl li:last-child {
    border-bottom: none;
}
.price-perks-owl li::before {
    content: '✓';
    color: #FF8C42;
    font-weight: bold;
    font-size: 1.3rem;
    min-width: 20px;
}
.price-order-form-owl {
    margin-top: 30px;
}
.form-input-price-owl {
    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;
    font-family: inherit;
}
.form-input-price-owl:focus {
    border-color: #FF8C42;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.3);
}
.form-input-price-owl::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.btn-order-main-owl {
    width: 100%;
    padding: clamp(16px, 3vw, 18px);
    background: linear-gradient(135deg, #FF8C42 0%, #42C4C1 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, 140, 66, 0.4);
}
.btn-order-main-owl:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6);
}
.btn-order-phone-owl {
    width: 100%;
    padding: clamp(14px, 2.5vw, 16px);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #FF8C42;
    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;
    text-decoration: none;
}
.btn-order-phone-owl:hover {
    background: rgba(255, 140, 66, 0.1);
    border-color: #FFD700;
    transform: translateY(-2px);
}
.price-note-owl {
    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-order-grid-owl {
        grid-template-columns: 1fr 450px;
        gap: 50px;
    }
}
@media (max-width: 768px) {
    .price-order-card-owl {
        position: relative;
        top: auto;
    }
}
.care-section-owl {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, #1a1210 0%, #0a0e0d 100%);
    position: relative;
}
.care-section-owl::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(255, 140, 66, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 66, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}
.care-header-owl {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.care-title-owl {
    font-family:'Manrope',sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 20px;
}
.care-title-owl span {
    background: linear-gradient(135deg, var(--owl-orange) 0%, var(--owl-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.care-tabs-owl {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}
.care-tab-btn-owl {
    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-tab-btn-owl:hover {
    background: rgba(255, 140, 66, 0.1);
    border-color: var(--owl-orange);
    color: white;
}
.care-tab-btn-owl.active {
    background: linear-gradient(135deg, var(--owl-orange) 0%, var(--primary) 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
}
.care-content-owl {
    position: relative;
    z-index: 2;
}
.care-tab-panel-owl {
    display: none;
    animation: fadeInOwl 0.5s ease;
}
.care-tab-panel-owl.active {
    display: block;
}
@keyframes fadeInOwl {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.care-grid-owl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.care-card-owl {
    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-card-owl:hover {
    background: rgba(255, 140, 66, 0.08);
    border-color: var(--owl-orange);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.3);
}
.care-card-icon-owl {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}
.care-card-owl h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}
.care-card-owl p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}
.care-card-owl ul {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}
.care-card-owl li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}
.care-card-owl li::before {
    content: '•';
    color: var(--owl-orange);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}
.delivery-section-owl {
    padding: clamp(60px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #0a0e0d 0%, #1a1210 100%);
    position: relative;
    overflow: hidden;
}
.delivery-section-owl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 30%, rgba(255, 140, 66, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(139, 69, 19, 0.04) 0%, transparent 50%);
    pointer-events: none;
}
.delivery-header-owl {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 70px);
    position: relative;
    z-index: 2;
}
.delivery-title-owl {
    font-family:'Manrope',sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
}
.delivery-title-owl span {
    background: linear-gradient(135deg, #FF8C42 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.delivery-subtitle-owl {
    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-cards-owl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}
.delivery-card-owl {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 25px;
    padding: 35px 30px;
    transition: 0.4s;
}
.delivery-card-owl:hover {
    background: rgba(255, 140, 66, 0.08);
    border-color: #FF8C42;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.3);
}
.delivery-card-icon-owl {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}
.delivery-card-owl h3{
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    font-weight:800;
}
.delivery-card-owl p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.delivery-price-owl {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF8C42 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-section-owl {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e0d 0%, #1a1210 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(66, 196, 193, 0.2);
}
.faq-section-owl::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(255, 140, 66, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 66, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}
.faq-container-owl {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.faq-header-owl {
    text-align: center;
    margin-bottom: 60px;
}
.faq-title-owl {
    font-family:'Manrope',sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 20px;
}
.faq-title-owl span {
    background: linear-gradient(135deg, var(--owl-orange) 0%, var(--owl-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-subtitle-owl {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}
.faq-list-owl {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 30px;
    padding: 50px 45px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.faq-item-owl {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    transition: 0.3s;
}
.faq-item-owl:last-child {
    border-bottom: none;
}
.faq-question-owl {
    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-question-owl:hover {
    color: var(--owl-orange);
}
.faq-icon-owl {
    font-size: 1.5rem;
    color: var(--owl-orange);
    transition: 0.4s;
    min-width: 30px;
    text-align: center;
    font-weight: 300;
}
.faq-item-owl.active .faq-icon-owl {
    transform: rotate(45deg);
    color: var(--owl-yellow);
}
.faq-answer-owl {
    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-item-owl.active .faq-answer-owl {
    max-height: 1000px;
    padding-top: 20px;
}
.faq-item-owl.active .faq-question-owl {
    color: var(--owl-orange);
}
.final-cta-section-owl {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0e0d 0%, #1a1210 50%, #0a0e0d 100%);
    position: relative;
    overflow: hidden;
}
.final-cta-section-owl::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 140, 66, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(139, 69, 19, 0.12) 0%, transparent 40%);
    animation: finalOwlCtaGlow 15s ease-in-out infinite;
    pointer-events: none;
}
@keyframes finalOwlCtaGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(5%, 5%) scale(1.1); opacity: 0.8; }
}
.final-cta-content-owl {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.final-cta-badge-owl {
    display: inline-block;
    background: linear-gradient(135deg, var(--owl-orange) 0%, var(--owl-yellow) 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: owlBadgePulse 3s ease-in-out infinite;
}
.final-cta-title-owl {
    font-family:'Manrope',sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
}
.final-cta-title-owl span {
    background: linear-gradient(135deg, var(--owl-orange) 0%, var(--owl-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.final-cta-text-owl {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 50px;
    line-height: 1.7;
}
.final-cta-buttons-owl {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-final-cta-owl {
    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-owl-primary {
    background: linear-gradient(135deg, var(--owl-orange) 0%, var(--primary) 100%);
    color: white;
}
.btn-final-owl-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 140, 66, 0.6);
}
.btn-final-owl-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--owl-orange);
    color: white;
    text-decoration: none;
}
.btn-final-owl-secondary:hover {
    background: rgba(255, 140, 66, 0.15);
    border-color: var(--owl-yellow);
    transform: translateY(-8px) scale(1.05);
}
.final-cta-note-owl {
    margin-top: 40px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
    .final-cta-buttons-owl {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-final-cta-owl {
        width: 100%;
        justify-content: center;
    }
}
.similar-section-owl {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, #1a1210 0%, #0a0e0d 100%);
    position: relative;
}
.similar-header-owl {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.similar-title-owl {
    font-family:'Manrope',sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 20px;
}
.similar-title-owl span {
    background: linear-gradient(135deg, var(--owl-orange) 0%, var(--owl-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.similar-grid-owl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}
.similar-card-owl {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: 0.5s;
    cursor: pointer;
}
.similar-card-owl:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--owl-orange);
    box-shadow: 0 25px 50px rgba(255, 140, 66, 0.4);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(139, 69, 19, 0.05) 100%);
}
.similar-img-wrapper-owl {
    height: 320px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}
.similar-img-owl {
    width: 85%;
    max-width: 85%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.8s;
    filter: brightness(0.95);
}
.similar-card-owl:hover .similar-img-owl {
    transform: translate(-50%, -50%) scale(1.15) rotate(5deg);
    filter: brightness(1.1);
}
.similar-content-owl {
    padding: 30px;
}
.similar-name-owl {
    font-family:'Manrope',sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.similar-card-owl:hover .similar-name-owl {
    color: var(--owl-orange);
}
.similar-latin-owl {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-bottom: 15px;
}
.similar-price-owl {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--owl-orange) 0%, var(--owl-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}
.similar-link-owl {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid var(--owl-orange);
    border-radius: 50px;
    color: var(--owl-orange);
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}
.similar-link-owl:hover {
    background: var(--owl-orange);
    color: #000;
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .similar-grid-owl {
        grid-template-columns: 1fr;
    }
}
.seo-owl-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, #0a0e0d 0%, #1a1210 100%);
    position: relative;
}
.seo-owl-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 140, 66, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(139, 69, 19, 0.03) 0%, transparent 40%);
    pointer-events: none;
}
.seo-owl-wrapper {
    position: relative;
    z-index: 1;
}
.seo-owl-hero {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    padding: clamp(30px, 5vw, 50px);
    background: rgba(255, 140, 66, 0.03);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 25px;
}
.seo-owl-h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF8C42 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.seo-owl-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-owl-content {
    max-width: 1200px;
    margin: 0 auto;
}
.seo-owl-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 20px;
    padding: clamp(30px, 5vw, 45px);
    margin-bottom: clamp(25px, 4vw, 35px);
    transition: all 0.3s ease;
}
.seo-owl-block:hover {
    border-color: #FF8C42;
    background: rgba(255, 140, 66, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.15);
}
.seo-owl-block h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #FF8C42;
    margin-bottom: 20px;
    line-height: 1.3;
}
.seo-owl-block h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 18px;
}
.seo-owl-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-owl-block strong {
    color: #FF8C42;
}
.seo-owl-list {
    list-style: none;
    padding: 0;
}
.seo-owl-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, 140, 66, 0.1);
}
.seo-owl-list li:last-child {
    border-bottom: none;
}
.seo-owl-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: 800;
    font-size: 1.2rem;
}
@media (max-width: 768px) {
    .seo-owl-section {
        padding: 2.5rem 0;
    }
}
.modal-box { 
    position: relative !important; 
    background: linear-gradient(135deg, #111 0%, #1a1f1d 100%); 
    border: 2px solid var(--owl-orange); 
    border-radius: 25px; 
    width: 500px; 
    max-width: 95%; 
    max-height: 90vh; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    animation: modalOwlZoomIn 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(--owl-orange);
    }
}
@keyframes modalOwlZoomIn { 
    from { 
        opacity: 0; 
        transform: scale(0.9); 
    } 
    to { 
        opacity: 1; 
        transform: scale(1); 
    } 
}
@media (max-width: 480px) {
    @keyframes modalOwlZoomIn { 
        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(--owl-orange) !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(--owl-orange) !important;
    color: #000 !important;
    transform: rotate(90deg);
    border-color: var(--owl-yellow) !important;
}
.modal-title span {
    background: linear-gradient(135deg, var(--owl-orange) 0%, var(--owl-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.form-input-modal:focus {
    border-color: var(--owl-orange);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.3);
}
.btn-modal-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--owl-orange) 0%, var(--primary) 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, 140, 66, 0.4);
    -webkit-appearance: none;
}
.btn-modal-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6);
}
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--owl-orange) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9000;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 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, 140, 66, 0.7);
}
body {
    opacity: 1;animation: pageOwlLoad 0.8s ease forwards;
}
@keyframes pageOwlLoad {
    to { opacity: 1; }
}