:root {
    --primary: #ff4d00;
    --primary-blue: #2F80ED;
    --dark: #111111;
    --bg: #f7f7f7;
    --text-muted: #555555;
    --glow-orange: rgba(255, 77, 0, 0.4);
    --glow-orange-light: rgba(255, 77, 0, 0.15);
    --glow-blue: rgba(47, 128, 237, 0.5);
    --glow-blue-subtle: rgba(47, 128, 237, 0.15);
}

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

html {
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 80px;
}

/* Typography */
h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary);
}

.highlight-blue {
    color: var(--primary-blue);
}

.hero-desc {
    margin-bottom: 1rem;
}

/* Layout */
img {
    max-width: 100%;
    height: auto;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
}

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

section {
    padding: 4rem 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero {
    min-height: 60vh;
    padding: 3rem 0;
}

.hero-grid, .features-grid, .pricing-grid, .guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-section {
    padding: 3rem 0;
}

.split-grid {
    align-items: stretch;
}

/* Elements */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #1d61d1, var(--primary-blue));
    color: #ffffff;
    border: none;
}

.btn-glow {
    position: relative;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    background: var(--primary-blue);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 20px var(--glow-blue);
}

.btn-glow:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 128, 237, 0.4);
}

.btn-pulse {
    position: relative;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50px;
    border: 2px solid rgba(47, 128, 237, 0.6);
    opacity: 0;
    animation: pulse-ring 2s infinite ease-out;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 0; }
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-full {
    display: block;
    text-align: center;
    width: 100%;
}

/* Legal Pages Styling */
.legal-header {
    background: #0f1218;
    color: #ffffff;
    padding: 6rem 0 3rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(47, 128, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.legal-header::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--glow-blue-subtle) 0%, transparent 60%);
    transform: translateX(-50%);
    pointer-events: none;
}

.legal-header h1 {
    font-size: 36px;
    margin-bottom: 0.5rem;
}

.legal-header p {
    color: #aaaaaa;
    margin: 0;
    font-size: 14px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: -1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.legal-content h2 {
    font-size: 22px;
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: 12px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eeeeee;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p, .legal-content ul {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* Image Wrappers & Effects */
.hero-image-wrapper, .features-image-wrapper, .guarantee-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--glow-orange-light) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(20px);
}

.glow-bg-alt {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,77,0,0.1) 0%, rgba(255,255,255,0) 70%);
}

.floating-mockup {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
}

.floating-mockup-slow {
    animation: float 8s ease-in-out infinite;
    max-width: 80%;
    margin-top: 2rem;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Radar Split Image */
.radar-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--glow-blue) 0%, rgba(47,128,237,0) 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(30px);
    opacity: 0.6;
}

.radar-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-protection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: transparent;
    cursor: default;
}

/* Premium Tech Card */
.premium-card {
    position: relative;
    background: #0f1218;
    border-radius: 20px;
    padding: 2.5rem;
    color: #ffffff;
    z-index: 1;
    border: 1px solid rgba(47, 128, 237, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(47, 128, 237, 0.1);
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(47, 128, 237, 0.15), transparent);
    transform: skewX(-20deg);
    animation: lightning-sweep 5s infinite;
}

@keyframes lightning-sweep {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 1; }
    40% { left: 200%; opacity: 0; }
    100% { left: 200%; opacity: 0; }
}

.premium-card-glow {
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, transparent, var(--primary-blue), transparent, var(--primary));
    border-radius: 22px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
    animation: pulse-tech-border 3s infinite alternate;
}

@keyframes pulse-tech-border {
    0% { opacity: 0.3; filter: blur(8px); box-shadow: 0 0 10px var(--glow-blue); }
    100% { opacity: 0.8; filter: blur(15px); box-shadow: 0 0 25px var(--primary-blue); }
}

.tech-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(47, 128, 237, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.15;
    animation: particle-drift 20s linear infinite;
    pointer-events: none;
}

@keyframes particle-drift {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.pricing-card-inner {
    position: relative;
    z-index: 2;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #dddddd;
    font-size: 1rem;
}

.benefits-list-dark li {
    color: var(--text-muted);
}

.benefits-list-compact {
    margin-bottom: 1.5rem;
}

.benefits-list-compact li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.check-icon {
    color: var(--primary);
    font-weight: 800;
    margin-right: 10px;
}

/* Guarantee Section */
.radial-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
}

.rotating-glow {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.guarantee-badge {
    position: relative;
    z-index: 1;
    max-width: 200px;
    filter: drop-shadow(0 10px 20px var(--glow-orange));
}

/* Footer Section */
.footer {
    background: #0a0a0a;
    padding-top: 3rem;
    margin-top: 2rem;
    color: #dddddd;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
}

.footer-logo {
    max-width: 130px;
    opacity: 0.8;
}

.footer-right p {
    font-size: 0.95rem;
    color: #aaaaaa;
    margin: 0;
}

.footer-divider {
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0 1.5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    background: transparent;
    text-align: left;
}

.footer-bottom-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-link {
    color: #888888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-blue);
}

.footer-bottom-left p, .footer-bottom-right p {
    color: #888888;
    font-size: 0.85rem;
    margin: 0;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    .hero-grid, .features-grid, .pricing-grid, .guarantee-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .features-content { order: -1; }
    
    .floating-mockup { max-width: 80%; }
    
    .pricing-card { max-width: 500px; margin: 0 auto; text-align: left; }
    
    .footer-top {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-right { text-align: center; }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    section { padding: 4rem 0; min-height: auto; }
    
    .nav-links {
        gap: 1rem;
    }
    .nav-links a {
        font-size: 0.8rem;
    }
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }
    body { padding-top: 120px; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(247, 247, 247, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    position: relative;
    display: inline-block;
    border: 1px solid transparent;
}

.nav-links a:hover {
    color: var(--primary-blue);
    background: rgba(47, 128, 237, 0.05);
}

.nav-links a.active {
    color: var(--primary-blue);
    font-weight: 700;
    background: rgba(47, 128, 237, 0.08);
    border: 1px solid var(--glow-blue);
    box-shadow: inset 0 0 10px var(--glow-blue-subtle), 0 0 10px var(--glow-blue-subtle);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 8px var(--glow-blue);
    animation: pulse-led 2s infinite alternate;
}

@keyframes pulse-led {
    0% { opacity: 0.6; box-shadow: 0 -2px 5px var(--glow-blue); }
    100% { opacity: 1; box-shadow: 0 -2px 12px var(--primary-blue); }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: gentle-pulse 3s infinite;
}

@keyframes gentle-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8), 0 0 15px rgba(37, 211, 102, 0.6);
}

/* Section Separator */
.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 128, 237, 0.3), transparent);
    position: relative;
    margin: 2rem 0;
}

.section-separator::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    box-shadow: 0 0 10px var(--glow-blue);
    opacity: 0.6;
}
