:root {
  --bg: #0b0f0d;
  --surface: #0f1512;
  --alt: #101a15;
  --text: #e7f6ee;
  --muted: #a7c8b9;
  --brand: #41B619;
  --brand-2: #41B619;
  --accent: #a6f5c9;
  --danger: #ff5a5f;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(20,163,93,.12), transparent),
              radial-gradient(1000px 500px at -10% 10%, rgba(14,125,73,.18), transparent),
              var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section { padding: 64px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0) 30%), var(--alt); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(15, 21, 18, 0.7);
  border-bottom: 1px solid rgba(124, 242, 176, 0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle { background: rgba(124,242,176,.1); color: var(--text); border: 1px solid rgba(124,242,176,.25); padding: 8px 10px; border-radius: 8px; cursor: pointer; }
.logo { color: var(--text); text-decoration: none; font-weight: 800; letter-spacing: .5px; font-size: 20px; }
.logo span { color: var(--accent); }

.cta-btn {
  display: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #06140e; font-weight: 700; text-decoration: none; padding: 10px 14px;
  border-radius: 999px; border: 1px solid rgba(124,242,176,.4);
  box-shadow: 0 6px 18px rgba(65,182,25,.28);
}

.nav { position: relative; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 4px; padding: 8px; border: 1px solid rgba(124,242,176,.25);
  background: rgba(16,26,21,.6); border-radius: 8px; cursor: pointer;
}
.nav-toggle .bar { width: 22px; height: 2px; background: var(--text); display: block; border-radius: 1px; }
.menu {
  list-style: none; margin: 10px 0 0; padding: 8px; position: absolute; right: 0; top: 42px; width: 230px;
  background: var(--surface); border: 1px solid rgba(124,242,176,.18); border-radius: 12px; box-shadow: var(--shadow);
  display: none;
}
.menu.open { display: block; }
.menu a { display: block; padding: 10px 12px; color: var(--text); text-decoration: none; border-radius: 8px; }
.menu a:hover { background: rgba(124,242,176,.12); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .menu { position: static; display: flex; gap: 18px; background: transparent; border: 0; box-shadow: none; margin: 0; padding: 0; width: auto; }
  .menu a { padding: 8px 10px; opacity: .9; }
  .cta-btn { display: inline-block; }
}

.hero { padding-top: 42px; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }
.hero-text h1 { margin: 0 0 12px; font-size: 34px; line-height: 1.15; }
.hero-text p { margin: 0 0 14px; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; margin-bottom: 14px; }
.hero-actions .btn { flex: 1; text-align: center; }
.btn {
  display: inline-block; padding: 12px 18px; border-radius: 12px; text-decoration: none; font-weight: 700; letter-spacing: .2px;
  border: 1px solid rgba(124,242,176,.3); transition: transform .06s ease, background .2s;
}
.btn.primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #04120b; }
.btn.primary:hover { transform: translateY(-1px); }
.btn.ghost { background: rgba(124,242,176,.08); color: var(--text); }
.btn.block { width: 100%; text-align: center; margin-top: 10px; }

.badges { display: flex; gap: 8px; flex-wrap: wrap; padding: 0; margin: 0; list-style: none; }
.badges li { padding: 6px 10px; background: rgba(124,242,176,.12); border: 1px solid rgba(124,242,176,.25); border-radius: 999px; color: var(--muted); font-size: 13px; }

.hero-media { display: grid; place-items: center; }
.hero-card { position: relative; width: 280px; padding: 18px; border-radius: 18px; background: linear-gradient(180deg, rgba(124,242,176,.09), rgba(255,255,255,0)); border: 1px solid rgba(124,242,176,.22); box-shadow: var(--shadow); }
.hero-card .dot { position: absolute; width: 8px; height: 8px; border-radius: 4px; background: var(--accent); opacity: .8; }
.hero-card .dot:nth-child(1) { left: -8px; top: 16px; }
.hero-card .dot:nth-child(2) { right: -6px; top: 40px; }
.hero-card .dot:nth-child(3) { right: 20px; bottom: -6px; }
.hero-card strong { display: block; font-size: 18px; margin-bottom: 4px; }
.hero-card span { color: var(--muted); font-size: 13px; }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.2fr .8fr; gap: 36px; }
  .hero-text h1 { font-size: 44px; }
}

/* Tablet tuning */
@media (min-width: 700px) and (max-width: 1024px) {
  .header-inner { flex-wrap: wrap; row-gap: 8px; }
  .hero { padding-top: 48px; }
  .hero-inner { grid-template-columns: 1.1fr .9fr; gap: 28px; }
  .hero-text h1 { font-size: clamp(32px, 4.2vw, 40px); }
  .hero-text p { max-width: 62ch; }
  .cards.three { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.grid.two { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) { .grid.two { grid-template-columns: 1.2fr .8fr; gap: 28px; } }

.list { padding-left: 18px; margin: 12px 0; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 8px 10px; margin-bottom: 8px; background: rgba(124,242,176,.08); border: 1px solid rgba(124,242,176,.22); border-radius: 10px; }

.card { padding: 18px; border-radius: var(--radius); background: linear-gradient(180deg, rgba(124,242,176,.06), rgba(255,255,255,0)); border: 1px solid rgba(124,242,176,.22); box-shadow: var(--shadow); }

.cards.three { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 900px) { .cards.three { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.price-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 800px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price { padding: 18px; border: 1px solid rgba(124,242,176,.22); border-radius: var(--radius); background: rgba(124,242,176,.06); }
.price h3 { margin: 0 0 6px; }
.price .value { font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }

.muted { color: var(--muted); }

.contact { list-style: none; padding: 0; margin: 10px 0 18px; }
.contact li { margin-bottom: 6px; }
.contact span { display: inline-block; min-width: 84px; color: var(--muted); }

.map-wrap { display: none; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.site-footer { padding: 28px 0; border-top: 1px solid rgba(124,242,176,.18); background: rgba(16,26,21,.6); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.to-top { color: var(--accent); text-decoration: none; border: 1px solid rgba(124,242,176,.25); padding: 6px 10px; border-radius: 8px; }

html { scroll-behavior: smooth; }

/* Global link styles for contrast */
a { color: #a6f5c9; text-decoration-color: rgba(166,245,201,.55); }
a:hover { color: #d2ffe9; }

/* Map text link next to address */
.map-link { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.map-link:hover { color: #d2ffe9; }

/* Fine-tune small screens */
@media (max-width: 420px) {
  .logo { font-size: 18px; }
  .cta-btn { padding: 9px 12px; font-size: 14px; }
  .hero-text h1 { font-size: 28px; }
  .btn { padding: 11px 14px; }
}

/* Map height breakpoints */
@media (min-width: 600px) { .map-wrap { height: 360px; } }
@media (min-width: 900px) { .map-wrap { height: 420px; } }
@media (min-width: 1200px) { .map-wrap { height: 480px; } }

/* Fix backgrounds in mobile landscape where gradients band/misalign */
@media (orientation: landscape) and (max-height: 500px) {
  body {
    background: var(--bg);
  }
  .section {
    background: var(--bg);
    padding: 48px 0;
  }
  .section.alt {
    background: var(--alt);
  }
  .site-header {
    background: rgba(15, 21, 18, 0.88);
  }
}

/* Force solid backgrounds on narrow mobile to avoid banding */
@media (max-width: 420px) {
  body { background: var(--bg); }
  .section { background: var(--bg); }
  .section.alt { background: var(--alt); }
}


