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

:root {
    --purple: #7C3AED;
    --purple-deep: #5B21B6;
    --purple-light: #EDE9FE;
    --purple-glow: rgba(124,58,237,0.15);
    --dark: #0F0F14;
    --dark-card: #1A1A24;
    --dark-lighter: #23232F;
    --black: #111;
    --gray-800: #2D2D3A;
    --gray-600: #6B7280;
    --gray-400: #9CA3AF;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --white: #FFF;
    --green: #22C55E;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --t: 0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color: var(--black); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { color: var(--purple); text-decoration: none; }
.hidden { display: none !important; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: var(--radius); font-size: 1rem; font-weight: 600; border: 2px solid transparent; cursor: pointer; transition: all var(--t); text-decoration: none; }
.btn-primary { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-primary:hover { background: var(--purple-deep); border-color: var(--purple-deep); color: var(--white); }
.btn-glass { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.3); backdrop-filter: blur(4px); }
.btn-glass:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(15,15,20,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { border-radius: 6px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.logo-bold { font-style: italic; font-weight: 800; }
.logo-davie { font-style: normal; font-weight: 500; color: var(--purple); }
.logo-sub { font-size: 0.65rem; color: var(--gray-400); letter-spacing: 0.04em; }
.logo-sub strong { color: var(--purple); font-weight: 600; }
.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a { color: var(--gray-400); font-size: 0.95rem; font-weight: 500; transition: color var(--t); }
.nav-links a:hover { color: var(--white); }
.nav-phone { color: var(--white) !important; font-weight: 600 !important; }
.nav-cta { background: var(--purple); color: var(--white) !important; padding: 8px 20px; border-radius: var(--radius); }
.nav-cta:hover { background: var(--purple-deep); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }

/* Hero */
.hero { background: var(--dark); position: relative; overflow: hidden; padding: 80px 0 100px; text-align: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.15) 0%, transparent 70%); }
.hero-inner { position: relative; z-index: 1; }
.hero-logo { margin: 0 auto 32px; display: block; filter: drop-shadow(0 0 40px rgba(124,58,237,0.3)); }
.hero h1 { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero h1 span { color: var(--purple); }
.hero-sub { font-size: 1.15rem; color: var(--gray-400); max-width: 580px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-urgency { margin-top: 28px; }
.urgency-badge { display: inline-block; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3); color: var(--white); padding: 10px 24px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; }
.urgency-badge .urgency-live { display: inline-block; width: 8px; height: 8px; background: #22C55E; border-radius: 50%; margin-right: 8px; animation: urgency-pulse 1.5s infinite; }
.urgency-badge .urgency-closed { display: inline-block; width: 8px; height: 8px; background: #EF4444; border-radius: 50%; margin-right: 8px; }
.urgency-badge .urgency-highlight { color: var(--purple); font-weight: 700; }
@keyframes urgency-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Local Trust */
.local-trust { padding: 70px 0; }
.local-trust h2 { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.area-tag { background: var(--purple-light); color: var(--purple-deep); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.trust-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item svg { width: 28px; height: 28px; color: var(--purple); flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; font-size: 1rem; color: var(--black); margin-bottom: 2px; }
.trust-item span { display: block; font-size: 0.9rem; color: var(--gray-600); }
.trust-item a { color: var(--purple); }

/* What We Offer */
.offers { padding: 80px 0; background: var(--dark); color: var(--white); }
.offers h2 { text-align: center; font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.offers .section-sub { color: var(--gray-400); }
.offers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.offer-item { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 24px 20px; }
.offer-item:hover { border-color: var(--purple); }
.offer-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.offer-item p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.5; }

/* Products */
.products { padding: 90px 0; background: var(--gray-100); }
.products-note { text-align: center; font-size: 0.9rem; color: var(--gray-600); margin-top: 24px; }
.products-note a { color: var(--purple); font-weight: 600; }
.products h2 { text-align: center; font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--gray-600); font-size: 1.1rem; max-width: 560px; margin: 0 auto 48px; }
.hours-bar { display: flex; justify-content: center; align-items: center; gap: 24px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px 32px; margin-bottom: 48px; flex-wrap: wrap; }
.hours-item { text-align: center; }
.hours-item strong { display: block; font-size: 0.9rem; color: var(--black); margin-bottom: 2px; }
.hours-item span { font-size: 0.85rem; color: var(--gray-600); }
.hours-divider { width: 1px; height: 36px; background: var(--gray-200); }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 28px; position: relative; transition: all var(--t); display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-lg); border-color: var(--purple); transform: translateY(-2px); }
.card-featured { border-color: var(--purple); box-shadow: 0 0 0 1px var(--purple), var(--shadow-lg); }
.card-badge { display: inline-block; background: var(--purple); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; width: fit-content; letter-spacing: 0.05em; }
.badge-uv { background: var(--dark); }
.card-popular { position: absolute; top: -1px; right: 24px; background: var(--purple); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 6px 16px; border-radius: 0 0 8px 8px; }
.card-timer { font-size: 0.85rem; font-weight: 600; padding: 6px 14px; border-radius: 8px; margin-bottom: 14px; display: none; }
.card-timer.timer-live { display: inline-block; background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.card-timer.timer-live .timer-dot { display: inline-block; width: 6px; height: 6px; background: #22C55E; border-radius: 50%; margin-right: 6px; animation: urgency-pulse 1.5s infinite; }
.card-timer.timer-after { display: inline-block; background: var(--purple-light); color: var(--purple-deep); border: 1px solid #DDD6FE; }
.product-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--black); }
.product-card > p { color: var(--gray-600); margin-bottom: 16px; font-size: 0.95rem; }
.product-card ul { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.product-card li { padding: 5px 0; font-size: 0.9rem; color: var(--gray-600); position: relative; padding-left: 20px; }
.product-card li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: var(--purple); opacity: 0.5; }
.product-card .btn { margin-top: auto; }

/* How It Works */
.how-it-works { padding: 90px 0; }
.how-it-works h2 { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 48px; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.step { text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--purple); color: var(--white); font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--gray-600); font-size: 0.95rem; }

/* Why Us */
.why-us { padding: 90px 0; background: var(--gray-100); }
.why-us h2 { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 48px; color: var(--black); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature { text-align: center; padding: 20px; }
.feature svg { width: 40px; height: 40px; color: var(--purple); margin-bottom: 16px; }
.feature h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.feature p { color: var(--gray-600); font-size: 0.9rem; }

/* FAQ */
.faq { padding: 90px 0; }
.faq h2 { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 40px; }
.faq-category { font-size: 1.1rem; font-weight: 700; color: var(--purple); margin-top: 32px; margin-bottom: 8px; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item summary { padding: 20px 0; font-size: 1.05rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--purple); }
.faq-item[open] summary::after { content: '-'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 0 20px; color: var(--gray-600); line-height: 1.7; }

/* Contact */
.contact { padding: 90px 0; background: var(--gray-100); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 28px; }
.contact-phone { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 700; color: var(--purple); margin-bottom: 12px; }
.contact-phone svg { width: 28px; height: 28px; }
.contact-email { color: var(--gray-600); font-size: 1rem; }
.contact-email:hover { color: var(--purple); }
.contact-address { color: var(--gray-600); font-size: 0.95rem; margin-top: 16px; }
.contact-hours { margin-top: 16px; }
.contact-hours p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 4px; }
.contact-hours strong { color: var(--black); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.form-intro { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--gray-600); margin-bottom: 6px; }
.form-group input { width: 100%; padding: 12px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 1rem; font-family: inherit; transition: border-color var(--t); }
.form-group input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-glow); }
.form-group input.error { border-color: #DC2626; }
.success-msg { text-align: center; padding: 24px; }
.success-msg svg { width: 48px; height: 48px; color: var(--green); margin: 0 auto 12px; display: block; }
.success-msg p { color: var(--green); font-weight: 600; }

/* Footer */
.site-footer { background: var(--dark); color: var(--gray-400); padding: 40px 0 20px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-left { display: flex; align-items: center; gap: 24px; }
.footer-left img { border-radius: 6px; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { color: var(--gray-400); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--white); }
.footer-right { display: flex; gap: 24px; }
.footer-right a { color: var(--gray-400); font-size: 0.9rem; }
.footer-right a:hover { color: var(--white); }
.footer-bottom { padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--gray-600); }
.footer-bottom a { color: var(--purple); }
.footer-bottom a:hover { color: var(--white); }
.footer-powered { font-size: 0.8rem; color: var(--gray-600); margin-top: 4px; }
.footer-powered a { color: var(--purple); }
.footer-powered a:hover { color: var(--white); }

/* Sticky Mobile CTA */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; padding: 12px 16px; background: var(--white); border-top: 1px solid var(--gray-200); box-shadow: 0 -4px 12px rgba(0,0,0,0.1); }
.sticky-cta .btn { font-size: 1rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-links.active { display: flex; }
    .hero { padding: 48px 0 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-logo { width: 180px; height: 180px; }
    .products-grid { grid-template-columns: 1fr; }
    .hours-bar { flex-direction: column; gap: 12px; }
    .hours-divider { width: 60px; height: 1px; }
    .steps { grid-template-columns: 1fr; gap: 20px; }
    .trust-details { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .sticky-cta { display: block; }
    .site-footer { padding-bottom: 70px; }
    .wa-widget { bottom: 80px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
    .footer-left { flex-direction: column; }
    .footer-right { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .features-grid { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}

/* WhatsApp Widget */
.wa-widget { position: fixed; z-index: 9999; display: flex; align-items: center; right: 20px; bottom: 30px; }
.wa-icon-wrap { position: relative; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-curved-text { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; animation: wa-spin 12s linear infinite; }
.wa-curved-text text { fill: var(--purple); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
@keyframes wa-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.wa-button { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: var(--purple); box-shadow: 0 4px 12px rgba(0,0,0,0.2); cursor: pointer; border: none; text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease; animation: wa-pulse 2s infinite; }
.wa-button:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.28); animation: none; }
.wa-button svg { width: 36px; height: 36px; }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(124,58,237,0.5); } 70% { box-shadow: 0 0 0 14px rgba(124,58,237,0); } 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); } }
.wa-desktop { display: flex; }
.wa-mobile { display: none; }
.wa-tooltip { margin-right: 12px; order: -1; background: var(--white); color: var(--black); padding: 10px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,0.12); opacity: 0; pointer-events: none; transform: translateX(10px); transition: opacity 0.25s ease, transform 0.25s ease; }
.wa-tooltip-label { font-weight: 400; font-size: 12px; display: block; margin-bottom: 2px; color: var(--gray-600); }
.wa-widget:hover .wa-tooltip { opacity: 1; pointer-events: auto; transform: translateX(0); }
@media (max-width: 768px) {
    .wa-widget { right: 14px; bottom: 20px; }
    .wa-icon-wrap { width: 102px; height: 102px; }
    .wa-button { width: 52px; height: 52px; }
    .wa-button svg { width: 31px; height: 31px; }
    .wa-curved-text text { font-size: 12px; }
    .wa-tooltip { display: none !important; }
    .wa-desktop { display: none; }
    .wa-mobile { display: flex; }
}
