:root {
  --text: #2a2a2a;
  --muted: #555;
  --light: #999;
  --rule: #ddd;
  --bg: #fff;
  --accent: #c88c3c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
}

/* --- NAV --- */
nav {
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
}
.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.nav-logo img {
  height: 40px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.nav-links a:hover {
  color: var(--accent);
}

/* --- HEADER / TAGLINE --- */
.tagline {
  text-align: center;
  font-size: 12px;
  color: var(--light);
  letter-spacing: 1px;
  padding: 4px 0 0;
}

/* --- MAIN CONTENT --- */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 28px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 22px;
  font-weight: 400;
  margin: 32px 0 16px;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 20px 0 8px;
}

p {
  margin-bottom: 14px;
  color: var(--text);
}

.intro {
  text-align: center;
  margin-bottom: 30px;
}

.intro p {
  max-width: 700px;
  margin: 0 auto 12px;
}

.cta-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 28px;
  border: 2px solid var(--text);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: var(--text);
  color: var(--bg);
}

/* --- IMAGE --- */
.hero-image {
  text-align: center;
  margin: 30px 0;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}

/* --- BENEFITS BOX --- */
.benefits-box {
  border: 1px solid var(--rule);
  padding: 30px 36px;
  margin: 40px 0;
}
.benefits-box h2 {
  text-align: center;
  margin-top: 0;
}
.benefits-box ul {
  list-style: disc;
  padding-left: 24px;
}
.benefits-box li {
  margin-bottom: 6px;
}

/* --- FEATURES LIST --- */
.features ul {
  list-style: disc;
  padding-left: 24px;
}
.features li {
  margin-bottom: 10px;
}

/* --- TEAM --- */
.team {
  margin-bottom: 40px;
}
.team p {
  line-height: 1.9;
}
.team strong {
  font-weight: 600;
}

/* --- CONTACT FORM --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form h2 {
  text-align: center;
}
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.form-row .field { flex: 1; }
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid var(--rule);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  background: transparent;
}
.field textarea {
  min-height: 80px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--text);
}
.submit-btn {
  display: block;
  margin: 24px auto 0;
  padding: 10px 40px;
  background: var(--text);
  color: var(--bg);
  border: none;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.submit-btn:hover {
  background: #444;
}

/* --- DIVIDER --- */
.divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 40px 0;
}

/* --- FOOTER --- */
footer {
  text-align: center;
  padding: 30px 20px 40px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
  .nav-inner {
    flex-direction: column;
    gap: 8px;
  }
  .nav-links { gap: 16px; }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .benefits-box { padding: 20px; }
  h1 { font-size: 24px; }
}
