/* RESET CANINO - PREMIUM SALES PAGE STYLES */
:root {
    --primary: #4f46e5;
    --primary-glow: rgba(79, 70, 229, 0.4);
    --secondary: #fb923c;
    --secondary-glow: rgba(251, 146, 60, 0.4);
    --dark: #0f172a;
    --dark-lighter: #1e293b;
    --white: #ffffff;
    --accent: #22c55e;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.text-center { text-align: center; }

/* Background Blobs */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary-glow);
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo { height: 45px; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    filter: drop-shadow(0 0 50px rgba(79,70,229,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.offer-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.5rem;
    transform: rotate(15deg);
    box-shadow: 0 10px 20px var(--secondary-glow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.offer-badge small { font-size: 0.8rem; text-decoration: line-through; opacity: 0.8; }

/* Pricing Section */
.price-tag {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin: 20px 0;
}

.price-tag span { font-size: 1.5rem; vertical-align: top; margin-right: 5px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    color: white;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #f97316);
    color: white;
    box-shadow: 0 10px 30px var(--secondary-glow);
    animation: pulse 2s infinite;
}

.btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(79,70,229,0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(251, 146, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0); }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--dark-lighter);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--glass);
    border-color: var(--primary);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Testimonials */
.testimonials {
    background: radial-gradient(circle at 10% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 50%);
}

.testimonial-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 40px 0;
    scrollbar-width: none;
}

.testimonial-img {
    flex: 0 0 350px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 2px solid var(--glass-border);
}

/* Package Items */
.package-item {
    background: var(--dark-lighter);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.package-item img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
}

/* Social Proof Mobile */
#social-proof {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Changed to left */
    background: rgba(15, 23, 42, 0.9);
    padding: 15px 25px;
    border-radius: 100px;
    border: 1px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transform: translateX(-150%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
}

#social-proof.show { transform: translateX(0); }

/* Live Viewer */
.live-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 100px;
    color: #ef4444;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    background: #0b0f1a;
}

/* Trust Container Styles */
.trust-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--text-muted);
    background: var(--dark-lighter);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.trust-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .trust-container { gap: 15px; }
    .trust-item { font-size: 0.9rem; padding: 8px 15px; width: 100%; justify-content: center; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { margin: 0 auto 2rem; }
    .hero-image-wrapper { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-image-wrapper img { width: 80%; }
}
