/* Basic Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

:root {
  --bg: #0b0f0e;
  --text: #f2f7f4;
  --muted: #b7c7c0;
  --brand: #0e7a57;
  --brand-2: #13a67a;
  --card: #121715;
  --border: #26332d;
  --shadow: rgba(0,0,0,.2);
}

.light {
  --bg: #f7fbf9;
  --text: #0f1714;
  --muted: #556b63;
  --card: #ffffff;
  --border: #dfe7e3;
  --shadow: rgba(0,0,0,.06);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,14,12,.7); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.light .site-header { background: rgba(255,255,255,.7); }

.site-header .container {
  display: flex; align-items: center; gap: 1rem; justify-content: space-between;
  padding: .6rem 0;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--text); font-weight: 700; }
.logo { width: 36px; height: 36px; }

.nav a { color: var(--text); text-decoration: none; margin: 0 .6rem; font-weight: 600; }
.nav .btn.small { padding: .4rem .8rem; border-radius: 10px; border: 1px solid var(--border); }
.nav #themeToggle { margin-left: .6rem; background: transparent; border: 1px solid var(--border); padding: .35rem .6rem; border-radius: 10px; color: var(--text); cursor: pointer; }

.hero {
  background: radial-gradient(1200px 600px at 10% -10%, rgba(19,166,122,.35), transparent 60%),
              radial-gradient(800px 400px at 100% 0%, rgba(14,122,87,.35), transparent 60%);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem;
  padding: 5rem 0 3rem;
}
.hero h1 { font-size: clamp(2rem, 2.8vw + 1rem, 3.2rem); margin: 0 0 .6rem; }
.hero p { color: var(--muted); max-width: 55ch; }
.cta-row { display: flex; gap: 1rem; margin: 1.2rem 0; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: .9rem 1.2rem; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white; text-decoration: none; font-weight: 700;
  border: none; cursor: pointer;
}
.btn.outline { background: transparent; color: var(--text); border: 1px solid var(--border); }

.trust-badges { display: flex; gap: .9rem; padding: 0; list-style: none; color: var(--muted); flex-wrap: wrap; }

.hero-art { display: grid; place-items: center; position: relative; }
.blob {
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brand-2), var(--brand));
  filter: blur(26px); opacity: .55; box-shadow: 0 20px 80px var(--shadow);
}

.pad { padding: 4rem 0; }
.alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,.03)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.lead { color: var(--muted); }

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.2rem;
}
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.2rem;
  box-shadow: 0 8px 30px var(--shadow);
}
.card.highlight { border-color: var(--brand); }
.card .price { font-weight: 800; margin-top: .6rem; }

.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.4rem; align-items: start; }
.about-card, .contact-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.2rem;
}

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1rem; }
.stats div { background: var(--card); border: 1px dashed var(--border); border-radius: 12px; padding: .8rem; text-align: center; }
.stats strong { font-size: 1.4rem; display: block; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery figure { margin: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--card); }
.gallery img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption { padding: .6rem; color: var(--muted); font-size: .9rem; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
blockquote { margin: 0; padding: 1rem; background: var(--card); border-left: 4px solid var(--brand); border-radius: 10px; }
blockquote cite { display: block; margin-top: .6rem; color: var(--muted); font-style: normal; }

.contact-form { display: grid; gap: .8rem; }
label { display: grid; gap: .3rem; font-weight: 600; }
input, textarea {
  padding: .8rem; border-radius: 10px; border: 1px solid var(--border); background: var(--card); color: var(--text);
}
.contact-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.contact-list li { margin: .3rem 0; }
.map-embed iframe { width: 100%; height: 250px; border: 0; border-radius: 12px; }

.site-footer { border-top: 1px solid var(--border); padding: 1rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.floating-wa {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
  width: 56px; height: 56px; display: grid; place-items: center; text-decoration: none;
  border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white; font-size: 1.4rem;
  box-shadow: 0 10px 30px var(--shadow);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .two-col { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
}
