/* ============================================
   MAINTENANCE HANDY â€” Modern Stylesheet
   v2.0 â€” Images, animations & interactivity
   ============================================ */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --primary-glow: rgba(37, 99, 235, 0.4);
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #e2e8f0;
    --light: #f8fafc;
    --white: #ffffff;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 6px 12px -2px rgb(0 0 0 / 0.1), 0 3px 6px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px -10px var(--primary-glow);
    
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { text-align: center; }
.preloader-logo { width: 80px; height: 80px; margin-bottom: 1.5rem; animation: preloaderPulse 1.5s ease-in-out infinite; }
.preloader-bar { width: 160px; height: 3px; background: var(--gray-lighter); border-radius: 3px; overflow: hidden; margin: 0 auto; }
.preloader-progress { width: 0; height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 3px; animation: preloaderLoad 1.2s ease forwards; }
@keyframes preloaderPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes preloaderLoad { 0% { width: 0; } 100% { width: 100%; } }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { width: 42px; height: 42px; transition: var(--transition); }
.logo:hover .logo-img { transform: rotate(-5deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-weight: 700; font-size: 1.1rem; color: var(--dark); letter-spacing: -0.02em; }
.logo-subtitle { font-weight: 800; font-size: 1.1rem; color: var(--primary); letter-spacing: -0.02em; margin-top: -2px; }

.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-link { font-weight: 500; color: var(--dark-light); transition: var(--transition); font-size: 0.95rem; position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.nav-phone {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--primary); color: var(--white) !important;
    padding: 0.5rem 1.25rem; border-radius: var(--radius);
    font-weight: 600; font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.nav-phone:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35); }
.nav-phone svg { width: 14px; height: 14px; }

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1002; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: var(--transition); border-radius: 1px; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; transition: opacity 0.3s ease; }
.nav-overlay.active { display: block; opacity: 1; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.875rem 1.75rem;
    font-family: inherit; font-size: 1rem; font-weight: 600;
    border: none; border-radius: var(--radius);
    cursor: pointer; transition: var(--transition); text-align: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}
.btn-glow { position: relative; }
.btn-glow::before {
    content: ''; position: absolute; inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: calc(var(--radius) + 2px);
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}
.btn-glow:hover::before { opacity: 0.5; }

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }

.btn-whatsapp-large {
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    color: var(--white); padding: 1rem 2rem;
    font-size: 1.05rem; width: 100%;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    border-radius: var(--radius-lg);
}
.btn-whatsapp-large:hover { background: linear-gradient(135deg, #22c55e 0%, #0d9488 100%); transform: translateY(-2px); }

.btn-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white); width: 100%; padding: 1rem;
    font-size: 1rem; border-radius: var(--radius-lg);
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 7rem 0 4rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.hero:hover .hero-bg-img { transform: scale(1.05); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(15, 23, 42, 0.85) 100%); }

.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-particles::before,
.hero-particles::after {
    content: ''; position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    animation: particleFloat 20s ease-in-out infinite;
}
.hero-particles::before { width: 400px; height: 400px; top: 10%; right: -100px; animation-delay: 0s; }
.hero-particles::after { width: 300px; height: 300px; bottom: 20%; left: -50px; background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%); animation-delay: -10s; }
@keyframes particleFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.1); } }

.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(239, 68, 68, 0.15); color: #fca5a5;
    padding: 0.5rem 1rem; border-radius: 50px;
    font-size: 0.875rem; font-weight: 600;
    margin-bottom: 1.5rem; border: 1px solid rgba(239, 68, 68, 0.25);
    backdrop-filter: blur(10px);
}
.badge-pulse { width: 8px; height: 8px; background: var(--danger); border-radius: 50%; animation: badgePulse 2s infinite; }
@keyframes badgePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); } 70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); } }

.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; }
.hero-title .line { display: block; opacity: 0; transform: translateY(30px); animation: lineReveal 0.8s ease forwards; }
.hero-title .line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) { animation-delay: 0.5s; }
.hero-title .line:nth-child(3) { animation-delay: 0.7s; }
.hero-title .highlight { color: var(--secondary); }
@keyframes lineReveal { to { opacity: 1; transform: translateY(0); } }

.hero-subtitle { font-size: 1.15rem; color: var(--gray-light); margin-bottom: 2.5rem; max-width: 550px; opacity: 0; animation: fadeInUp 0.8s ease 0.9s forwards; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; opacity: 0; animation: fadeInUp 0.8s ease 1.1s forwards; }
.hero-cta .btn svg { width: 18px; height: 18px; }

.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; opacity: 0; animation: fadeInUp 0.8s ease 1.3s forwards; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: var(--radius); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); }
.trust-icon svg { width: 18px; height: 18px; color: var(--secondary); }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { color: var(--white); font-weight: 700; font-size: 0.95rem; }
.trust-text span { color: var(--gray-light); font-size: 0.85rem; }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--gray-light); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; transition: var(--transition); }
.scroll-indicator:hover { color: var(--white); }
.scroll-mouse { width: 22px; height: 36px; border: 2px solid currentColor; border-radius: 11px; position: relative; }
.scroll-wheel { width: 4px; height: 8px; background: currentColor; border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s ease infinite; }
@keyframes scrollWheel { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 18px; } }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   SECTION COMMON
   ============================================ */
section { padding: 5rem 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.section-tag { display: inline-block; background: var(--primary-light); color: var(--primary); padding: 0.375rem 1rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; color: var(--dark); letter-spacing: -0.02em; }
.section-header p { color: var(--gray); font-size: 1.1rem; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats { position: relative; padding: 5rem 0; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; z-index: 0; }
.stats-bg-img { width: 100%; height: 100%; object-fit: cover; }
.stats-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(37, 99, 235, 0.85) 100%); }
.stats .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; color: var(--white); padding: 1.5rem; border-radius: var(--radius-xl); background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.stat-item:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); box-shadow: var(--shadow-lg); }
.stat-number { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.stat-number span { background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.8); }

/* ============================================
   SERVICES GRID
   ============================================ */
.services { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.service-card {
    background: var(--white); border-radius: var(--radius-xl);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 1px solid var(--gray-lighter);
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }

.service-image { position: relative; height: 200px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-image img { transform: scale(1.1); }
.service-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s ease; }
.service-card:hover .service-image-overlay { opacity: 1; }

.service-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--primary); color: var(--white);
    padding: 0.35rem 0.75rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    box-shadow: var(--shadow); z-index: 2;
}
.service-badge.certified { background: var(--success); }

.service-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); }
.service-content p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.service-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--primary); font-weight: 600; font-size: 0.9rem;
    transition: var(--transition);
}
.service-link:hover { gap: 0.75rem; color: var(--primary-dark); }
.service-link svg { transition: transform 0.2s ease; }
.service-link:hover svg { transform: translateX(3px); }

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us { background: var(--white); }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-us-content .section-tag { margin-bottom: 1rem; }
.why-us-content h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; color: var(--dark); letter-spacing: -0.02em; }
.why-us-content > p { color: var(--gray); font-size: 1.1rem; margin-bottom: 2.5rem; }

.features-list { display: flex; flex-direction: column; gap: 1.5rem; }
.feature { display: flex; gap: 1rem; padding: 1rem; border-radius: var(--radius-lg); transition: var(--transition); }
.feature:hover { background: var(--light); transform: translateX(4px); }
.feature-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-light) 0%, #bfdbfe 100%); border-radius: var(--radius); flex-shrink: 0; color: var(--primary); }
.feature-text h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--dark); }
.feature-text p { color: var(--gray); font-size: 0.9rem; }

.why-us-image { display: flex; justify-content: center; }
.image-frame { position: relative; width: 100%; max-width: 450px; }
.image-frame img { width: 100%; border-radius: var(--radius-2xl); box-shadow: var(--shadow-xl); }
.image-float-card {
    position: absolute; bottom: -1rem; left: -1rem;
    background: var(--white); padding: 1rem 1.5rem;
    border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
    display: flex; align-items: center; gap: 0.75rem;
    animation: floatCard 3s ease-in-out infinite;
}
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-card-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--success); color: var(--white); border-radius: 50%; }
.float-card-text { display: flex; flex-direction: column; }
.float-card-text strong { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.float-card-text span { font-size: 0.8rem; color: var(--gray); }


/* ============================================
   CONTACT SECTION
   ============================================ */
.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 1000px; margin: 0 auto; }

.whatsapp-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: var(--radius-2xl); padding: 2.5rem;
    display: flex; flex-direction: column; gap: 1.25rem;
    border: 1px solid rgba(37, 211, 102, 0.15); height: fit-content;
}
.whatsapp-header { display: flex; align-items: center; gap: 1rem; }
.whatsapp-icon-bg { width: 56px; height: 56px; border-radius: var(--radius-lg); background: var(--whatsapp); color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3); }
.whatsapp-icon-bg svg { width: 28px; height: 28px; }
.whatsapp-header h3 { font-size: 1.35rem; font-weight: 700; color: var(--dark); }
.whatsapp-header p { color: var(--gray); font-size: 0.9rem; }
.whatsapp-desc { color: var(--gray); line-height: 1.6; }

.whatsapp-status { display: flex; align-items: center; gap: 0.5rem; color: var(--gray); font-size: 0.875rem; margin-top: 0.5rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-light); }
.status-dot.online { background: var(--success); box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.contact-methods { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.contact-method {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem; background: var(--white);
    border-radius: var(--radius-lg); border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}
.contact-method:hover { border-color: var(--primary-light); transform: translateX(4px); box-shadow: var(--shadow); }
.method-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--primary-light); color: var(--primary); border-radius: var(--radius); flex-shrink: 0; }
.method-info { display: flex; flex-direction: column; }
.method-label { font-size: 0.8rem; color: var(--gray); }
.method-value { font-weight: 600; color: var(--dark); font-size: 0.95rem; }

/* Contact Form */
.contact-form-wrapper { background: var(--white); border-radius: var(--radius-2xl); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--gray-lighter); }
.contact-form-wrapper h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--dark); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
    padding: 0.75rem 1rem; border: 1.5px solid var(--gray-lighter);
    border-radius: var(--radius); font-family: inherit; font-size: 1rem;
    color: var(--dark); background: var(--white); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-light); }
.form-group textarea { resize: vertical; min-height: 100px; }

.select-wrapper { position: relative; }
.select-wrapper select { appearance: none; width: 100%; cursor: pointer; }
.select-wrapper svg { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--gray); pointer-events: none; }

.checkbox-label {
    display: flex; align-items: center; gap: 0.75rem;
    cursor: pointer; font-size: 0.95rem; color: var(--dark-light);
}
.checkbox-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-custom {
    width: 22px; height: 22px; border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    transition: var(--transition); flex-shrink: 0;
}
.checkbox-custom svg { opacity: 0; transform: scale(0); transition: var(--transition); color: var(--white); }
.checkbox-label input:checked + .checkbox-custom { background: var(--primary); border-color: var(--primary); }
.checkbox-label input:checked + .checkbox-custom svg { opacity: 1; transform: scale(1); }
.checkbox-text { user-select: none; }

.form-success {
    display: none; background: #ecfdf5; border: 1px solid var(--success);
    border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin-top: 1rem;
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }
.success-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--success); color: var(--white); border-radius: 50%; margin: 0 auto 1rem; }
.form-success p { color: var(--dark); }
.form-success p strong { font-size: 1.1rem; }

.form-error {
    display: none; background: #fef2f2; border: 1px solid var(--danger);
    border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; margin-top: 1rem;
    color: #991b1b; font-weight: 500;
}
.form-error.show { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark); color: var(--gray-light); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { width: 40px; height: 40px; }
.footer-logo-title { display: block; font-weight: 700; font-size: 1.1rem; color: var(--white); line-height: 1.2; }
.footer-logo-subtitle { display: block; font-weight: 800; font-size: 1.1rem; color: var(--primary); line-height: 1.2; }
.footer-brand p { line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.95rem; }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 40px; height: 40px; border-radius: var(--radius);
    background: var(--dark-light); color: var(--gray-light);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

.footer h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer ul li a {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--gray-light); transition: var(--transition); font-size: 0.95rem;
}
.footer ul li a:hover { color: var(--white); transform: translateX(3px); }
.footer ul li a svg { flex-shrink: 0; }

.postcodes { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.postcodes span { background: var(--dark-light); color: var(--gray-light); padding: 0.35rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600; }

.footer-bottom { border-top: 1px solid var(--dark-light); padding-top: 2rem; text-align: center; font-size: 0.875rem; }
.footer-credit { margin-top: 0.5rem; color: var(--gray); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    border: none; cursor: pointer; z-index: 998;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg); transition: var(--transition);
    opacity: 0; transform: translateY(20px); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-xl); }

/* ============================================
   FLOATING CTA (Mobile)
   ============================================ */
.floating-cta {
    display: none; position: fixed; bottom: 1.5rem; right: 1.5rem;
    flex-direction: column; gap: 0.75rem; z-index: 997;
}
.floating-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: var(--transition); animation: floatIn 0.5s ease backwards; }
.floating-btn.phone { background: var(--primary); color: var(--white); animation-delay: 0.1s; }
.floating-btn.whatsapp { background: var(--whatsapp); color: var(--white); animation-delay: 0.2s; }
.floating-btn:hover { transform: scale(1.1) translateY(-2px); }
@keyframes floatIn { from { opacity: 0; transform: translateY(20px) scale(0.8); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .why-us-grid { gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: 0; bottom: 0;
        width: 280px; background: var(--white);
        flex-direction: column; padding: 6rem 2rem 2rem;
        gap: 0; box-shadow: var(--shadow-xl);
        transform: translateX(100%); transition: transform 0.3s ease;
        z-index: 999; align-items: flex-start;
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-menu li { width: 100%; border-bottom: 1px solid var(--gray-lighter); }
    .nav-menu li:last-child { border-bottom: none; margin-top: 1rem; }
    .nav-link { display: block; padding: 1rem 0; }
    .nav-link::after { display: none; }
    .nav-phone { width: 100%; justify-content: center; }
    
    .mobile-menu-toggle { display: flex; }
    .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    
    .hero { min-height: auto; padding: 6rem 0 3rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-trust { flex-direction: column; gap: 1rem; }
    .hero-scroll { display: none; }
    
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-number { font-size: 2rem; }
    
    .why-us-grid { grid-template-columns: 1fr; }
    .why-us-image { order: -1; }
    .image-frame { max-width: 350px; margin: 0 auto; }
    .image-float-card { left: 0; bottom: -0.5rem; }
    
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-social { justify-content: center; }
    
    .floating-cta { display: flex; }
    .back-to-top { bottom: 1rem; right: 1rem; width: 44px; height: 44px; }
}

@media (max-width: 480px) {
    section { padding: 3rem 0; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 1rem; }
    .whatsapp-card, .contact-form-wrapper { padding: 1.5rem; }
}

/* Active nav link */
.nav-link.active { color: var(--primary); }
.nav-link.active::after { width: 100%; }

/* ============================================
   HERO WIZARD â€” DARK GLASS QUOTE FLOW (v3)
   ============================================ */
.hero-grid { display: grid; grid-template-columns: 1fr 480px; gap: 2.5rem; align-items: center; }
.hero-wizard { position: relative; z-index: 2; opacity: 0; animation: fadeInUp 0.8s ease 1.1s forwards; }

.wz2-card {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    backdrop-filter: blur(22px) saturate(140%);
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 32px 90px -28px rgba(2, 6, 23, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    height: 570px;
    overflow: hidden;
}
.wz2-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: linear-gradient(140deg, rgba(37, 99, 235, 0.14) 0%, rgba(37, 99, 235, 0) 38%, rgba(245, 158, 11, 0) 62%, rgba(245, 158, 11, 0.10) 100%); }
.wz2-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(44px); opacity: 0.8; }
.wz2-orb-a { width: 260px; height: 260px; top: -110px; right: -80px; background: radial-gradient(circle, rgba(37, 99, 235, 0.45), transparent 70%); animation: wz2float 16s ease-in-out infinite; }
.wz2-orb-b { width: 230px; height: 230px; bottom: -100px; left: -70px; background: radial-gradient(circle, rgba(245, 158, 11, 0.30), transparent 70%); animation: wz2float 20s ease-in-out infinite reverse; }
@keyframes wz2float { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-18px, 16px) scale(1.14); } }

/* --- Header: brand + step pills + progress rail --- */
.wz2-top { position: relative; z-index: 1; padding: 16px 18px 13px; border-bottom: 1px solid rgba(148, 163, 184, 0.14); flex-shrink: 0; }
.wz2-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.wz2-logo { width: 34px; height: 34px; flex-shrink: 0; }
.wz2-brand-title { color: #f1f5f9; font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; }
.wz2-brand-sub { color: #94a3b8; font-size: 0.7rem; margin-top: 1px; }
.wz2-steps { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-bottom: 1px; }
.wz2-steps::-webkit-scrollbar { display: none; }
.wz2-step {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 11px 5px 6px; border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(148, 163, 184, 0.08);
    color: #94a3b8; font-size: 0.68rem; font-weight: 600;
    white-space: nowrap; cursor: default;
    transition: all 0.25s ease; font-family: inherit;
}
.wz2-step .wz2-dot {
    width: 18px; height: 18px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(148, 163, 184, 0.16); font-size: 0.6rem; font-weight: 800;
    transition: all 0.3s ease;
}
.wz2-step.done { color: #6ee7b7; border-color: rgba(16, 185, 129, 0.38); background: rgba(16, 185, 129, 0.10); cursor: pointer; }
.wz2-step.done .wz2-dot { background: #10b981; color: #022c22; }
.wz2-step.done:hover { background: rgba(16, 185, 129, 0.18); }
.wz2-step.current { color: #ffffff; border-color: rgba(59, 130, 246, 0.55); background: rgba(37, 99, 235, 0.24); box-shadow: 0 0 18px -4px rgba(37, 99, 235, 0.55); }
.wz2-step.current .wz2-dot { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; }
.wz2-rail { margin-top: 11px; height: 3px; border-radius: 999px; background: rgba(148, 163, 184, 0.15); overflow: hidden; }
.wz2-rail-fill {
    height: 100%; width: 0; border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #38bdf8 55%, #f59e0b);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
}

/* --- Body & step panels --- */
.wz2-body { position: relative; z-index: 1; flex: 1; overflow: hidden; }
.wz2-panel {
    position: absolute; inset: 0; padding: 20px 22px 12px; overflow-y: auto;
    display: flex; flex-direction: column;
    opacity: 0; transform: translateY(16px) scale(0.985); pointer-events: none;
    transition: opacity 0.3s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.wz2-panel.leaving { opacity: 0; transform: translateY(-12px) scale(0.99); transition-duration: 0.16s; }
.wz2-panel.active { opacity: 1; transform: none; pointer-events: auto; }
.wz2-panel-inner { width: 100%; max-width: 520px; margin: auto 0; outline: none; }
.wz2-kicker { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #f59e0b; margin-bottom: 8px; }
.wz2-title { font-size: 1.3rem; font-weight: 800; color: #f8fafc; letter-spacing: -0.01em; margin-bottom: 6px; }
.wz2-sub { font-size: 0.83rem; color: #94a3b8; margin-bottom: 16px; }
.wz2-sub a { color: #60a5fa; font-weight: 600; }
.wz2-sub a:hover { text-decoration: underline; }

/* Trade cards */
.wz2-trades { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.wz2-trade {
    position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 12px 6px 10px; border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: #e2e8f0; cursor: pointer; font-family: inherit;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.wz2-trade:hover { border-color: rgba(59, 130, 246, 0.55); background: rgba(37, 99, 235, 0.12); transform: translateY(-2px); }
.wz2-trade:focus-visible { outline: 2px solid #60a5fa; outline-offset: 2px; }
.wz2-trade.selected { border-color: rgba(59, 130, 246, 0.9); background: rgba(37, 99, 235, 0.22); box-shadow: 0 0 24px -6px rgba(37, 99, 235, 0.65); }
.wz2-trade-ic {
    width: 34px; height: 34px; border-radius: 10px;
    display: grid; place-items: center;
    background: rgba(148, 163, 184, 0.12); color: #cbd5e1;
    transition: all 0.22s ease;
}
.wz2-trade.selected .wz2-trade-ic { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff; box-shadow: 0 4px 14px -2px rgba(37, 99, 235, 0.55); }
.wz2-trade-ic svg { width: 18px; height: 18px; }
.wz2-trade-name { font-size: 0.72rem; font-weight: 700; color: #f1f5f9; }
.wz2-trade-desc { font-size: 0.6rem; color: #94a3b8; line-height: 1.25; }
.wz2-tick {
    position: absolute; top: 6px; right: 6px;
    width: 16px; height: 16px; border-radius: 50%;
    display: grid; place-items: center;
    background: #10b981; color: #022c22;
    opacity: 0; transform: scale(0.4);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wz2-tick svg { width: 9px; height: 9px; }
.wz2-trade.selected .wz2-tick { opacity: 1; transform: scale(1); }

/* Staggered entrance for cards in the active panel */
.wz2-panel.active .wz2-stagger { animation: wz2pop 0.45s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
.wz2-panel.active .wz2-stagger:nth-child(1) { animation-delay: 0.02s; }
.wz2-panel.active .wz2-stagger:nth-child(2) { animation-delay: 0.05s; }
.wz2-panel.active .wz2-stagger:nth-child(3) { animation-delay: 0.08s; }
.wz2-panel.active .wz2-stagger:nth-child(4) { animation-delay: 0.11s; }
.wz2-panel.active .wz2-stagger:nth-child(5) { animation-delay: 0.14s; }
.wz2-panel.active .wz2-stagger:nth-child(6) { animation-delay: 0.17s; }
.wz2-panel.active .wz2-stagger:nth-child(7) { animation-delay: 0.20s; }
.wz2-panel.active .wz2-stagger:nth-child(8) { animation-delay: 0.23s; }
.wz2-panel.active .wz2-stagger:nth-child(9) { animation-delay: 0.26s; }
.wz2-panel.active .wz2-stagger:nth-child(10) { animation-delay: 0.29s; }
.wz2-panel.active .wz2-stagger:nth-child(11) { animation-delay: 0.32s; }
.wz2-panel.active .wz2-stagger:nth-child(12) { animation-delay: 0.35s; }
@keyframes wz2pop { from { opacity: 0; transform: translateY(10px) scale(0.96); } to { opacity: 1; transform: none; } }

/* Chips (sub-services, time windows, budget, property, contact pref) */
.wz2-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.wz2-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 14px; border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.03);
    color: #cbd5e1; font-size: 0.8rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s ease; font-family: inherit;
}
.wz2-chip:hover { border-color: rgba(59, 130, 246, 0.5); color: #fff; }
.wz2-chip:focus-visible { outline: 2px solid #60a5fa; outline-offset: 2px; }
.wz2-chip.selected { border-color: rgba(59, 130, 246, 0.9); background: rgba(37, 99, 235, 0.25); color: #fff; box-shadow: 0 0 16px -4px rgba(37, 99, 235, 0.6); }
.wz2-chips.multi .wz2-chip.selected::before { content: "âœ“"; font-size: 0.72em; font-weight: 800; color: #7dd3fc; margin-right: 1px; }

/* Inputs */
.wz2-field { margin-bottom: 13px; }
.wz2-label { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.74rem; font-weight: 700; color: #cbd5e1; margin-bottom: 5px; }
.wz2-opt { font-size: 0.66rem; font-weight: 500; color: #64748b; }
.wz2-input, .wz2-textarea {
    width: 100%; padding: 11px 13px; border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.6);
    color: #f1f5f9; font-size: 0.9rem; font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wz2-input::placeholder, .wz2-textarea::placeholder { color: #64748b; }
.wz2-input:focus, .wz2-textarea:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25); background: rgba(2, 6, 23, 0.55); }
.wz2-input.error, .wz2-textarea.error { border-color: #f87171; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.16); }
.wz2-textarea { resize: none; min-height: 84px; line-height: 1.55; }
.wz2-hint { font-size: 0.68rem; color: #64748b; margin-top: 4px; }
.wz2-hint.ok { color: #34d399; }
.wz2-err { display: flex; align-items: center; gap: 6px; color: #fca5a5; font-size: 0.72rem; font-weight: 600; margin-top: 6px; }
.wz2-err[hidden] { display: none; }
.wz2-err svg { width: 13px; height: 13px; flex-shrink: 0; }
.wz2-counter { font-size: 0.68rem; color: #64748b; transition: color 0.2s ease; }
.wz2-counter.ready { color: #34d399; }

/* Suggestion chips for the job description */
.wz2-suggest { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.wz2-suggest-btn {
    padding: 5px 10px; border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, 0.3); background: transparent;
    color: #94a3b8; font-size: 0.68rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s ease; font-family: inherit;
}
.wz2-suggest-btn:hover { color: #fff; border-color: rgba(59, 130, 246, 0.6); background: rgba(37, 99, 235, 0.12); }

/* Photo upload */
.wz2-drop {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 14px; border: 1.5px dashed rgba(148, 163, 184, 0.35);
    border-radius: 14px; cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.wz2-drop:hover, .wz2-drop.dragover { border-color: #3b82f6; background: rgba(37, 99, 235, 0.08); }
.wz2-drop:focus-visible { outline: 2px solid #60a5fa; outline-offset: 2px; }
.wz2-drop-ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(59, 130, 246, 0.15); color: #60a5fa; flex-shrink: 0; }
.wz2-drop-ic svg { width: 18px; height: 18px; }
.wz2-drop-text { font-size: 0.76rem; color: #94a3b8; line-height: 1.4; }
.wz2-drop-text strong { color: #cbd5e1; }
.wz2-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.wz2-thumb { position: relative; width: 62px; height: 62px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(148, 163, 184, 0.25); animation: wz2pop 0.3s ease; }
.wz2-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wz2-thumb-x {
    position: absolute; top: 3px; right: 3px;
    width: 18px; height: 18px; border-radius: 50%; border: none;
    background: rgba(2, 6, 23, 0.85); color: #fff;
    font-size: 0.7rem; line-height: 1;
    display: grid; place-items: center; cursor: pointer;
}

/* Urgency */
.wz2-urgency { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.wz2-urg {
    position: relative; text-align: left;
    padding: 12px 14px; border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer; color: #e2e8f0; font-family: inherit;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.wz2-urg:hover { transform: translateY(-2px); border-color: rgba(59, 130, 246, 0.5); }
.wz2-urg:focus-visible { outline: 2px solid #60a5fa; outline-offset: 2px; }
.wz2-urg.selected { border-color: rgba(59, 130, 246, 0.9); background: rgba(37, 99, 235, 0.2); box-shadow: 0 0 22px -6px rgba(37, 99, 235, 0.55); }
.wz2-urg-top { display: flex; align-items: center; gap: 7px; margin-bottom: 2px; }
.wz2-urg-name { font-weight: 700; font-size: 0.85rem; color: #f1f5f9; }
.wz2-urg-desc { font-size: 0.7rem; color: #94a3b8; }
.wz2-pulse { width: 7px; height: 7px; border-radius: 50%; background: #ef4444; flex-shrink: 0; animation: wz2pulse 1.6s infinite; }
@keyframes wz2pulse { 0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); } 70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); } 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); } }

/* Review */
.wz2-review { border: 1px solid rgba(148, 163, 184, 0.16); border-radius: 14px; background: rgba(255, 255, 255, 0.03); overflow: hidden; }
.wz2-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 13px; border-bottom: 1px solid rgba(148, 163, 184, 0.10); }
.wz2-row:last-child { border-bottom: none; }
.wz2-row-label { font-size: 0.66rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.07em; flex-shrink: 0; }
.wz2-row-value { font-size: 0.8rem; color: #e2e8f0; text-align: right; overflow-wrap: anywhere; }
.wz2-edit { border: none; background: none; color: #60a5fa; font-size: 0.66rem; font-weight: 700; cursor: pointer; padding: 2px 6px; border-radius: 6px; font-family: inherit; flex-shrink: 0; }
.wz2-edit:hover { background: rgba(59, 130, 246, 0.15); text-decoration: underline; }
.wz2-badge-urgent { display: inline-block; padding: 2px 8px; border-radius: 999px; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.4); color: #fca5a5; font-size: 0.68rem; font-weight: 700; }

/* Terms */
.wz2-terms { display: flex; gap: 10px; align-items: flex-start; margin-top: 12px; cursor: pointer; }
.wz2-terms input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.wz2-box {
    width: 18px; height: 18px; border-radius: 5px;
    border: 1.5px solid rgba(148, 163, 184, 0.45);
    flex-shrink: 0; display: grid; place-items: center;
    transition: all 0.2s ease; margin-top: 1px;
}
.wz2-box svg { width: 11px; height: 11px; opacity: 0; transform: scale(0.5); transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); }
.wz2-terms input:checked + .wz2-box { background: #2563eb; border-color: #2563eb; box-shadow: 0 0 10px -2px rgba(37, 99, 235, 0.7); }
.wz2-terms input:checked + .wz2-box svg { opacity: 1; transform: scale(1); }
.wz2-terms input:focus-visible + .wz2-box { outline: 2px solid #60a5fa; outline-offset: 2px; }
.wz2-terms-text { font-size: 0.7rem; color: #94a3b8; line-height: 1.55; }
.wz2-terms-text a { color: #60a5fa; }
.wz2-terms-text a:hover { text-decoration: underline; }

/* Status (success / error) */
.wz2-status { text-align: center; }
.wz2-status-ic { width: 74px; height: 74px; margin: 0 auto 14px; position: relative; }
.wz2-status-ic svg { width: 100%; height: 100%; overflow: visible; }
.wz2-check-circle { stroke-dasharray: 166; stroke-dashoffset: 166; animation: wz2draw 0.7s cubic-bezier(0.65, 0, 0.45, 1) forwards 0.15s; }
.wz2-check-mark { stroke-dasharray: 48; stroke-dashoffset: 48; animation: wz2draw 0.4s cubic-bezier(0.65, 0, 0.45, 1) forwards 0.75s; }
@keyframes wz2draw { to { stroke-dashoffset: 0; } }
.wz2-status-title { font-size: 1.3rem; font-weight: 800; color: #f8fafc; margin-bottom: 6px; }
.wz2-status-text { font-size: 0.85rem; color: #94a3b8; line-height: 1.6; }
.wz2-ref { display: inline-flex; align-items: center; gap: 9px; margin: 15px 0 4px; padding: 10px 16px; border-radius: 12px; border: 1px dashed rgba(16, 185, 129, 0.5); background: rgba(16, 185, 129, 0.08); }
.wz2-ref-num { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 700; color: #34d399; letter-spacing: 0.05em; font-size: 0.92rem; }
.wz2-copy { border: none; background: rgba(16, 185, 129, 0.15); color: #6ee7b7; font-size: 0.66rem; font-weight: 700; padding: 4px 9px; border-radius: 6px; cursor: pointer; font-family: inherit; transition: all 0.2s ease; }
.wz2-copy:hover { background: rgba(16, 185, 129, 0.28); }
.wz2-timeline { text-align: left; margin: 12px 0 0; padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(148, 163, 184, 0.16); background: rgba(255, 255, 255, 0.03); }
.wz2-timeline li { list-style: none; display: flex; gap: 9px; padding: 5px 0; font-size: 0.78rem; color: #cbd5e1; line-height: 1.5; }
.wz2-timeline li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #10b981; flex-shrink: 0; margin-top: 7px; box-shadow: 0 0 8px rgba(16, 185, 129, 0.8); }
.wz2-status-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 15px; }
.wz2-ghost-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 16px; border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.3); background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0; font-size: 0.82rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s ease; font-family: inherit; text-decoration: none;
}
.wz2-ghost-btn:hover { border-color: rgba(59, 130, 246, 0.6); background: rgba(37, 99, 235, 0.12); }
.wz2-ghost-btn.whatsapp { border-color: rgba(37, 211, 102, 0.45); color: #86efac; }
.wz2-ghost-btn.whatsapp:hover { background: rgba(37, 211, 102, 0.12); }
.wz2-link-btn { background: none; border: none; color: #64748b; font-size: 0.74rem; font-weight: 600; cursor: pointer; font-family: inherit; padding: 4px; }
.wz2-link-btn:hover { color: #94a3b8; text-decoration: underline; }
.wz2-status.error .wz2-status-title { color: #fca5a5; }

/* Confetti dots */
.wz2-confetti { position: absolute; left: 50%; top: 50%; width: 0; height: 0; pointer-events: none; }
.wz2-confetti i {
    position: absolute; width: 6px; height: 6px; border-radius: 2px; opacity: 0;
    animation: wz2confetti 1.1s ease-out forwards;
}
.wz2-confetti i:nth-child(1) { background: #3b82f6; --dx: -44px; --dy: -58px; animation-delay: 0.35s; }
.wz2-confetti i:nth-child(2) { background: #f59e0b; --dx: 38px; --dy: -64px; animation-delay: 0.42s; }
.wz2-confetti i:nth-child(3) { background: #10b981; --dx: -58px; --dy: -30px; animation-delay: 0.5s; }
.wz2-confetti i:nth-child(4) { background: #60a5fa; --dx: 54px; --dy: -34px; animation-delay: 0.58s; }
.wz2-confetti i:nth-child(5) { background: #fbbf24; --dx: -24px; --dy: -70px; animation-delay: 0.66s; }
.wz2-confetti i:nth-child(6) { background: #34d399; --dx: 24px; --dy: -74px; animation-delay: 0.74s; }
.wz2-confetti i:nth-child(7) { background: #38bdf8; --dx: -64px; --dy: -44px; animation-delay: 0.82s; }
.wz2-confetti i:nth-child(8) { background: #f472b6; --dx: 64px; --dy: -46px; animation-delay: 0.9s; }
@keyframes wz2confetti {
    0% { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(0.6); }
    12% { opacity: 1; }
    100% { opacity: 0; transform: translate(var(--dx), var(--dy)) rotate(260deg) scale(1.1); }
}

/* Footer */
.wz2-foot { position: relative; z-index: 1; display: flex; gap: 10px; padding: 13px 18px; border-top: 1px solid rgba(148, 163, 184, 0.14); flex-shrink: 0; }
.wz2-back {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 16px; border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.25); background: transparent;
    color: #94a3b8; font-size: 0.83rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s ease; font-family: inherit;
}
.wz2-back:hover { color: #f1f5f9; border-color: rgba(148, 163, 184, 0.5); }
.wz2-back:focus-visible, .wz2-next:focus-visible { outline: 2px solid #60a5fa; outline-offset: 2px; }
.wz2-next {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 11px 18px; border: none; border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff; font-size: 0.88rem; font-weight: 700;
    cursor: pointer; transition: all 0.22s ease; font-family: inherit;
}
.wz2-next:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -8px rgba(37, 99, 235, 0.75); }
.wz2-next:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.wz2-next.send { background: linear-gradient(135deg, #f59e0b, #d97706); }
.wz2-next.send:hover { box-shadow: 0 10px 26px -8px rgba(245, 158, 11, 0.6); }
.wz2-spinner { display: none; width: 14px; height: 14px; border: 2px solid rgba(255, 255, 255, 0.35); border-top-color: #fff; border-radius: 50%; animation: wz2spin 0.8s linear infinite; }
.wz2-next.loading .wz2-spinner { display: inline-block; }
@keyframes wz2spin { to { transform: rotate(360deg); } }

/* Toast */
.wz2-toast {
    position: absolute; left: 50%; bottom: 76px; z-index: 5;
    transform: translateX(-50%) translateY(12px);
    padding: 8px 14px; border-radius: 999px;
    background: rgba(2, 6, 23, 0.92); border: 1px solid rgba(148, 163, 184, 0.3);
    color: #cbd5e1; font-size: 0.72rem; font-weight: 600;
    opacity: 0; pointer-events: none; white-space: nowrap; max-width: 92%;
    overflow: hidden; text-overflow: ellipsis;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.wz2-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Screen reader live region */
.wz2-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-wizard { max-width: 540px; margin: 0 auto; width: 100%; order: -1; }
    .hero-content { text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-trust { justify-content: center; }
}

@media (max-width: 640px) {
    .wz2-card { height: 540px; border-radius: 18px; }
    .wz2-panel { padding: 16px 16px 10px; }
    .wz2-title { font-size: 1.15rem; }
    .wz2-trades { grid-template-columns: repeat(2, 1fr); }
    .wz2-urgency { grid-template-columns: repeat(2, 1fr); }
    .wz2-top { padding: 13px 14px 11px; }
    .wz2-foot { padding: 11px 14px; }
    .wz2-toast { bottom: 70px; }
}

@media (prefers-reduced-motion: reduce) {
    .wz2-panel, .wz2-rail-fill, .wz2-trade, .wz2-chip, .wz2-urg, .wz2-tick,
    .wz2-thumb, .wz2-step, .wz2-box, .wz2-toast, .wz2-back, .wz2-next {
        transition: none !important;
    }
    .wz2-panel.active .wz2-stagger,
    .wz2-check-circle, .wz2-check-mark, .wz2-confetti i,
    .wz2-orb-a, .wz2-orb-b, .wz2-pulse {
        animation: none !important;
    }
}

/* ============================================
   RECENT CUSTOMER REVIEWS (home page, fed by reviews-data.js)
   ============================================ */
.recent-reviews { background: var(--light); }

.recent-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.review-stars { display: flex; gap: 0.15rem; color: var(--secondary); }
.review-stars svg { width: 15px; height: 15px; }
.review-stars svg.star-empty { color: var(--gray-lighter); }

.review-service {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    white-space: nowrap;
}

.review-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }

.review-text {
    font-size: 0.925rem;
    line-height: 1.7;
    color: var(--gray);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.1rem;
}

.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--white);
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.av-c0 { background: linear-gradient(135deg, #2563EB, #3B82F6); }
.av-c1 { background: linear-gradient(135deg, #059669, #10B981); }
.av-c2 { background: linear-gradient(135deg, #D97706, #F59E0B); }
.av-c3 { background: linear-gradient(135deg, #7C3AED, #8B5CF6); }
.av-c4 { background: linear-gradient(135deg, #DC2626, #F87171); }
.av-c5 { background: linear-gradient(135deg, #0891B2, #22D3EE); }
.av-c6 { background: linear-gradient(135deg, #DB2777, #F472B6); }
.av-c7 { background: linear-gradient(135deg, #4D7C0F, #84CC16); }

.review-author-info strong { display: block; font-size: 0.9rem; color: var(--dark); }
.review-author-info span { font-size: 0.8rem; color: var(--gray); }

.recent-reviews-cta { text-align: center; margin-top: 2.5rem; }
.recent-reviews-note { margin-top: 0.9rem; font-size: 0.85rem; color: var(--gray); }

@media (max-width: 960px) {
    .recent-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .recent-reviews-grid { grid-template-columns: 1fr; }
}
