:root {
  --lime: #d4f55e;
  --lime-dark: #c5e84f;
  --ink: #0f0f0f;
  --ink-soft: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #ffffff;
  --bg: #ffffff;
  --radius: 16px;
  --radius-pill: 999px;
  --container: 1140px;
  --shadow: 0 20px 50px rgba(15, 15, 15, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* Announcement bar */
.announce-bar {
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
}
.announce-bar a { color: var(--ink); font-weight: 700; text-decoration: none; }

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--ink); }
.brand img, .brand svg { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text strong { display: block; font-size: 1.15rem; line-height: 1.2; }
.brand-text small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 16rem;
  line-height: 1.3;
  margin-top: 0.15rem;
}
.nav { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.nav a { color: var(--ink-soft); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: #000; }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-dark); }
.btn-outline { background: white; color: var(--ink); border: 1px solid var(--border); }
.btn-sm { padding: 0.6rem 1rem; font-size: 0.875rem; }

/* Hero */
.hero { padding: 3rem 0 4rem; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.pill-badge {
  display: inline-block;
  background: var(--ink);
  color: white;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin: 0 0 1rem; font-weight: 800; }
.hero-highlight {
  display: inline;
  background: var(--lime);
  padding: 0.1rem 0.35rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.lead { font-size: 1.05rem; color: var(--muted); max-width: 36rem; margin: 0 0 1rem; }
.hero-note { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.25rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.25rem 0; }
.tag {
  background: #f3f4f6;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.tag span { color: var(--muted); font-weight: 500; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-visual {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}
.hero-blob {
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,245,94,0.55) 0%, rgba(212,245,94,0.15) 70%);
}
.phone-mock {
  position: relative;
  width: min(280px, 80%);
  background: white;
  border: 8px solid var(--ink);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.phone-mock .bar { height: 8px; width: 40%; background: #e5e7eb; border-radius: 4px; margin-bottom: 1rem; }
.phone-mock .line { height: 10px; background: #f3f4f6; border-radius: 4px; margin-bottom: 0.5rem; }
.phone-mock .line.short { width: 70%; }
.phone-mock .pay { margin-top: 1rem; background: var(--ink); color: white; text-align: center; padding: 0.6rem; border-radius: 10px; font-size: 0.85rem; font-weight: 600; }

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: #fafafa; }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin: 0 0 0.75rem; }
.section-head p { color: var(--muted); margin: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.card p { color: var(--muted); margin: 0 0 1rem; }
.price { font-size: 1.75rem; font-weight: 800; color: var(--ink); margin: 0.25rem 0 0.75rem; }
.price small { font-size: 0.95rem; font-weight: 600; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.step-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 10px;
  background: #f3f4f6;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.check-list { list-style: none; padding: 0; margin: 1rem 0; }
.check-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 700;
}

.cta-band {
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.cta-band h2 { margin-top: 0; color: white; }
.cta-band p { color: #d1d5db; }

.prose { max-width: 72ch; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.25rem; }

.faq details {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.faq summary { cursor: pointer; font-weight: 600; }

/* Forms */
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1rem; }
.form-grid.two { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; }
input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}
textarea { min-height: 100px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }
.form-hint { font-size: 0.9rem; color: var(--muted); margin: 0 0 0.75rem; }
.form-section-title { font-size: 1.1rem; margin: 0 0 1rem; }
.form-field { margin-bottom: 0.25rem; }
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.btn-block { width: 100%; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}
.service-tile,
.contact-tile,
.slot-btn {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.service-tile { display: flex; flex-direction: column; gap: 0.25rem; }
.service-tile span { color: var(--muted); font-size: 0.85rem; }
.service-tile.is-selected,
.contact-tile.is-selected,
.slot-btn.is-selected {
  border-color: var(--ink);
  background: #f9fafb;
  box-shadow: inset 0 0 0 1px var(--ink);
}
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.contact-tile { text-align: center; font-weight: 600; padding: 0.85rem; }
.price-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
}
.price-summary strong { font-size: 1.5rem; }
.success-card { text-align: center; }
.success-icon {
  width: 4rem; height: 4rem; border-radius: 1.25rem;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 1.75rem; font-weight: 700;
  margin: 0 auto 1rem;
}
.ref-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.25rem; }
.ref-value { font-size: 2rem; font-weight: 800; letter-spacing: 0.08em; margin: 0 0 1.5rem; }
.success-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.availability-grid { display: grid; gap: 0.75rem; }
.availability-row { display: grid; grid-template-columns: 3rem 1fr; gap: 0.75rem; align-items: start; }
.availability-row strong { padding-top: 0.65rem; font-size: 0.85rem; }
.slot-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.slot-btn { padding: 0.5rem 0.75rem; font-size: 0.8rem; }

@media (max-width: 600px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card-body { padding: 1.25rem; }
.blog-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #d1d5db;
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}
.site-footer h3 { color: white; margin-top: 0; font-size: 0.95rem; }
.site-footer a { color: #e5e7eb; text-decoration: none; }
.site-footer a:hover { color: var(--lime); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.wa-float:hover { filter: brightness(1.05); }

.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.area-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  background: white;
}
.area-card:hover { border-color: var(--ink); }
.area-card strong { display: block; font-size: 1.05rem; }
.area-card span { color: var(--muted); font-size: 0.9rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; order: -1; }
  .brand-text small { display: none; }
  .nav a:not(.btn) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
