@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --brand: #0dbf6f;
  --brand-dark: #09965a;
  --ink: #0b1f17;
  --ink-soft: #3d5249;
  --surface: #f3f7f4;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 31, 23, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.55;
}

a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(13, 191, 111, 0.2), transparent 60%),
    linear-gradient(165deg, #e8f5ee 0%, #f3f7f4 50%, #dceee4 100%);
}

.hero-inner { max-width: 720px; }

.logo {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.04em;
}

.tagline {
  margin-top: 0.75rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.badges {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.badge {
  background: var(--white);
  border: 1px solid #d5e3db;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; }

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid #d5e3db;
}
.btn-secondary:hover { text-decoration: none; }

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

section { margin-bottom: 2.5rem; }

h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.card strong { display: block; margin-bottom: 0.35rem; }

.contact-box {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0.75rem 0 0.35rem;
}

input, textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #d5e3db;
  border-radius: 10px;
  font: inherit;
}

textarea { min-height: 120px; resize: vertical; }

.form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.2rem;
}
.form-status.ok { color: var(--brand-dark); }
.form-status.err { color: #c0392b; }

.contact-info {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e4ece7;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  border-top: 1px solid #e4ece7;
}

@media (max-width: 600px) {
  .cta-row { flex-direction: column; align-items: stretch; }
}
