:root {
  --bg: #0d0d14; --surface: #15151f; --surface2: #1e1e2a; --surface3: #232330;
  --accent: #6effe8; --accent3: #a78bfa; --text: #f0f0f5; --muted: #9090a8;
  --border: rgba(110,255,232,0.1); --font-display: "Fraunces", serif; --font-body: "Outfit", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: linear-gradient(160deg, #0d0d14 0%, #111120 50%, #0d0d14 100%); background-attachment: fixed; color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; overflow-x: hidden; max-width: 100vw; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0.4rem 5vw; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); background: rgba(13,13,20,0.9); backdrop-filter: blur(16px); }
.logo-img { height: 58px; width: auto; display: block; }
nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; }
nav ul a { color: var(--muted); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
nav ul a:hover, nav ul a.active { color: var(--accent); }
.nav-cta { background: var(--accent) !important; color: var(--bg) !important; padding: 0.5rem 1.2rem; border-radius: 4px; font-weight: 500 !important; }
.nav-phone { color: var(--accent) !important; font-size: 0.82rem !important; border: 1px solid rgba(110,255,232,0.3); padding: 0.4rem 0.9rem; border-radius: 4px; }
.hamburger { display: none; }

/* MOBILE NAV */
.mobile-nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(13,13,20,0.98); z-index: 250; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; padding: 2rem; }
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a { font-size: 1.3rem; color: var(--text); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.mobile-nav-overlay a:hover { color: var(--accent); }
.mobile-nav-overlay .nav-cta { background: var(--accent) !important; color: var(--bg) !important; padding: 0.75rem 2.5rem; border-radius: 6px; }
.mobile-nav-overlay .nav-phone { color: var(--accent) !important; border: 1px solid rgba(110,255,232,0.3); padding: 0.5rem 1.2rem; border-radius: 4px; font-size: 1rem !important; }

/* HERO */
.page-hero { padding: 9rem 5vw 5rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.hero-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(110,255,232,0.08) 0%, transparent 70%); top: -150px; right: -150px; pointer-events: none; }
.hero-glow2 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(167,139,250,0.07) 0%, transparent 70%); bottom: 0; left: 20%; pointer-events: none; }
.page-hero-inner { max-width: 700px; position: relative; z-index: 1; }
.page-hero-inner h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 1.2rem; }
.page-hero-inner h1 span { color: var(--accent); }
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 520px; line-height: 1.75; }

/* TYPOGRAPHY */
h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 1.2rem; }
h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.section-label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.section-label::after { content: ""; display: block; flex: 1; max-width: 40px; height: 1px; background: var(--accent); opacity: 0.5; }
section { padding: 5rem 5vw; }

/* PRICING */
.swipe-hint { color: var(--muted); font-size: 0.82rem; margin-bottom: 1rem; display: none; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card { background: linear-gradient(145deg, var(--surface), var(--surface2)); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; position: relative; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); border-color: rgba(110,255,232,0.2); }
.pricing-card.featured { border-color: rgba(110,255,232,0.4); background: linear-gradient(145deg, #161622, rgba(110,255,232,0.06)); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 100px; white-space: nowrap; }
.pricing-tier { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.pricing-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--muted); margin-bottom: 0.8rem; }
.pricing-price span { font-size: 2.4rem; font-weight: 700; color: var(--text); }
.pricing-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
.pricing-list li { font-size: 0.9rem; color: var(--muted); }
.pricing-list li.dim { opacity: 0.4; }
.pricing-btn { display: block; text-align: center; padding: 0.85rem; border-radius: 8px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; margin-top: auto; }
.pricing-btn.primary { background: var(--accent); color: var(--bg); }
.pricing-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(110,255,232,0.25); }
.pricing-btn.outline { border: 1px solid var(--border); color: var(--text); }
.pricing-btn.outline:hover { border-color: var(--accent); color: var(--accent); }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 2.5rem; }
.pricing-note a { color: var(--accent); text-decoration: none; }

/* AUTOMATION INLINE */
.automation-inline { margin-top: 2.5rem; background: linear-gradient(135deg, rgba(167,139,250,0.07), rgba(110,255,232,0.04)); border: 1px solid rgba(167,139,250,0.2); border-radius: 14px; padding: 1.8rem 2rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.automation-inline-text { flex: 1; min-width: 200px; }
.automation-inline-pills { display: flex; flex-direction: column; gap: 0.6rem; }
.auto-pill { background: rgba(167,139,250,0.08); border: 1px solid rgba(167,139,250,0.2); color: var(--muted); font-size: 0.85rem; padding: 0.4rem 1rem; border-radius: 100px; white-space: nowrap; }

/* MAINTENANCE */
.maintenance-intro { max-width: 600px; margin-bottom: 3.5rem; }
.maintenance-note { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(110,255,232,0.07); border: 1px solid rgba(110,255,232,0.2); color: var(--accent); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.2rem; }
.maintenance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.maintenance-card { background: linear-gradient(145deg, var(--surface), var(--surface2)); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; gap: 1.2rem; transition: transform 0.3s, border-color 0.3s; }
.maintenance-card:hover { transform: translateY(-6px); }
.maintenance-card.featured { border-color: rgba(110,255,232,0.4); background: linear-gradient(145deg, #161622, rgba(110,255,232,0.06)); }
.maintenance-tier { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.maintenance-price { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--muted); }
.maintenance-price span { font-size: 2.2rem; font-weight: 700; color: var(--text); }
.maintenance-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.maintenance-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
.maintenance-list li { font-size: 0.9rem; color: var(--muted); }
.maintenance-list li.dim { opacity: 0.4; }
.maintenance-btn { display: block; text-align: center; padding: 0.8rem; border-radius: 8px; font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; border: 1px solid var(--border); color: var(--text); margin-top: auto; }
.maintenance-btn:hover { border-color: var(--accent); color: var(--accent); }
.maintenance-btn.primary { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.maintenance-footer-note { margin-top: 2rem; text-align: center; color: var(--muted); font-size: 0.85rem; line-height: 1.8; }
.maintenance-footer-note a { color: var(--accent); text-decoration: none; }

/* CONTACT */
#contact-content { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.contact-info { }
.contact-info h2 { margin-bottom: 0.6rem; }
.contact-info p { color: var(--muted); margin-bottom: 1.5rem; line-height: 1.8; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; padding: 0.9rem 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--muted); font-size: 0.9rem; }
.contact-form { background: linear-gradient(145deg, var(--surface), var(--surface2)); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; position: relative; overflow: hidden; }
.contact-form::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent3)); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 0.85rem 1rem; color: var(--text); font-size: 0.95rem; font-family: var(--font-body); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: var(--surface2); }
.form-submit { width: 100%; background: var(--accent); color: var(--bg); border: none; border-radius: 8px; padding: 1rem; font-family: var(--font-display); font-weight: 700; font-size: 1rem; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(110,255,232,0.25); }
.form-note { text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 1rem; }

/* BUTTONS */
.btn-primary { background: var(--accent); color: var(--bg); padding: 0.85rem 2rem; border-radius: 6px; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(110,255,232,0.25); }
.btn-book { background: linear-gradient(135deg, var(--accent3), #9b6dff); color: #fff; padding: 0.85rem 2rem; border-radius: 6px; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; box-shadow: 0 4px 20px rgba(167,139,250,0.3); }
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(167,139,250,0.45); }

/* FOOTER */
footer { border-top: 1px solid var(--border); background: var(--surface); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 4rem 5vw; border-bottom: 1px solid var(--border); }
.footer-tagline { color: var(--muted); font-size: 0.88rem; line-height: 1.75; max-width: 260px; margin-bottom: 0.9rem; }
.footer-contact-line { color: var(--muted); font-size: 0.85rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 0.3rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 5vw; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom span { color: var(--muted); font-size: 0.78rem; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }

/* MOBILE */
@media (max-width: 900px) {
  nav ul { display: none; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; z-index: 300; position: relative; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .logo-img { height: 44px; }
  .pricing-grid { display: flex; overflow-x: auto; gap: 1rem; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
  .pricing-card { min-width: 280px; scroll-snap-align: start; flex-shrink: 0; }
  .maintenance-grid { display: flex; overflow-x: auto; gap: 1rem; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
  .maintenance-card { min-width: 280px; scroll-snap-align: start; flex-shrink: 0; }
  .swipe-hint { display: block; }
  #contact-content { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  section { padding: 3rem 5vw; }
  .page-hero { padding: 6rem 5vw 3rem; }
  .footer-top { grid-template-columns: 1fr; padding: 2.5rem 5vw; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .automation-inline { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .automation-inline-pills { flex-direction: row; flex-wrap: wrap; }
}

/* WHATSAPP + CHAT WIDGET */
.whatsapp-btn { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
.chat-widget { position: fixed; bottom: 6.5rem; right: 2rem; z-index: 200; }
.chat-btn { width: 56px; height: 56px; background: var(--accent); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 8px 24px rgba(110,255,232,0.3); transition: transform 0.2s, box-shadow 0.2s; color: var(--bg); }
.chat-btn:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(110,255,232,0.4); }
.chat-bubble { position: fixed; bottom: 6rem; right: 2rem; width: 420px; max-height: 80vh; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: none; flex-direction: column; box-shadow: 0 24px 64px rgba(0,0,0,0.6); }
.chat-bubble.open { display: flex; }
.chat-header { background: var(--accent); padding: 1rem 1.2rem; display: flex; align-items: center; gap: 0.6rem; }
.chat-header-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.3); animation: pulse 1.5s infinite; }
.chat-header span { color: var(--bg); font-size: 0.95rem; font-weight: 600; font-family: var(--font-display); }
.chat-messages { padding: 1.2rem; min-height: 200px; max-height: 55vh; overflow-y: auto; display: flex; flex-direction: column; gap: 0.8rem; }
.chat-msg { max-width: 85%; padding: 0.75rem 1rem; border-radius: 10px; font-size: 0.9rem; line-height: 1.6; }
.chat-msg.bot { background: var(--surface2); border: 1px solid var(--border); color: var(--text); align-self: flex-start; }
.chat-msg.user { background: var(--accent); color: var(--bg); align-self: flex-end; }
.chat-input-row { display: flex; border-top: 1px solid var(--border); padding: 0.9rem 1rem; gap: 0.6rem; }
.chat-input-row input { flex: 1; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 0.7rem 1rem; color: var(--text); font-size: 0.9rem; outline: none; font-family: var(--font-body); }
.chat-send { background: var(--accent); border: none; border-radius: 8px; width: 42px; height: 42px; cursor: pointer; color: var(--bg); font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
@media (max-width: 600px) {
  .chat-widget { bottom: 5.5rem; right: 1rem; }
  .whatsapp-btn { bottom: 1rem; right: 1rem; }
  .chat-bubble { width: calc(100vw - 2rem); right: 1rem; bottom: 5rem; max-height: 75vh; }
}