:root {
  --primary: #4FAFB3;
  --primary-dark: #2e8287;
  --secondary: #A8C3B5;
  --text: #2F2F2F;
  --muted: #667477;
  --bg: #F5F7F6;
  --white: #ffffff;
  --line: #d8e3e1;
  --shadow: 0 20px 55px rgba(39, 79, 80, 0.08);
  --radius: 22px;
  --content: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef7f6 0%, #f6f8f8 42%, #ffffff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; }
.serif { font-family: Georgia, "Times New Roman", serif; }
.topbar {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(79,175,179,.12);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
}
.brand img { height: 38px; }
.nav-links { display: flex; gap: 30px; align-items: center; font-size: 15px; color: #445558; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-dark); }
.nav-cta {
  padding: 12px 18px; border-radius: 999px; background: var(--primary);
  color: white; font-weight: 600; box-shadow: 0 8px 24px rgba(79,175,179,.22);
}
.hero {
  padding: 46px 0 56px;
}
.hero-wrap {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 34px;
  align-items: center; background: var(--white); border-radius: 30px; padding: 26px;
  box-shadow: var(--shadow); overflow: hidden;
}
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center; padding: 8px 12px;
  border-radius: 999px; background: #e7f6f6; color: var(--primary-dark); font-size: 13px; font-weight: 700;
  letter-spacing: .02em; text-transform: uppercase;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif; font-size: 64px; line-height: 1.02;
  margin: 18px 0 18px; letter-spacing: -0.02em; color: #193738;
}
.hero p {
  font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 600px;
}
.btn-row { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  padding: 15px 22px; border-radius: 999px; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 12px 30px rgba(79,175,179,.25); }
.btn-secondary { background: #edf5f5; color: #29484b; border: 1px solid #dbe8e6; }
.hero-card {
  position: relative; min-height: 520px; border-radius: 28px; overflow: hidden;
  background: linear-gradient(180deg, rgba(24,78,80,0.12), rgba(24,78,80,0.32));
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,55,56,.34) 0%, rgba(25,55,56,.05) 55%, rgba(25,55,56,.18) 100%);
}
.hero-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px;
}
.badge {
  padding: 10px 14px; border: 1px solid rgba(79,175,179,.18); border-radius: 999px;
  color: #29484b; background: #fbffff; font-size: 14px; font-weight: 600;
}
.stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 22px 0 0;
}
.stat {
  background: linear-gradient(180deg, #fcffff 0%, #f3f8f7 100%); border: 1px solid var(--line);
  border-radius: 20px; padding: 18px;
}
.stat strong { display: block; font-size: 28px; color: #143839; margin-bottom: 6px; }
.stat span { color: var(--muted); font-size: 14px; line-height: 1.5; }
section { padding: 78px 0; }
.section-head { display: grid; grid-template-columns: 1fr .9fr; gap: 30px; align-items: end; margin-bottom: 32px; }
.section-head h2 { font-family: Georgia, "Times New Roman", serif; font-size: 48px; line-height: 1.1; margin: 0; color: #183738; }
.section-head p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card {
  background: white; border: 1px solid var(--line); border-radius: 24px; padding: 28px; box-shadow: var(--shadow);
}
.card h3 { font-size: 24px; margin: 0 0 10px; color: #183738; }
.card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 16px; }
.icon {
  width: 54px; height: 54px; border-radius: 16px; background: #eaf7f6; display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-size: 24px; margin-bottom: 18px;
}
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step { position: relative; padding: 28px; background: white; border: 1px solid var(--line); border-radius: 24px; }
.step-num {
  width: 42px; height: 42px; border-radius: 999px; background: var(--primary); color: white; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.step h3, .testimonial h3, .faq h3 { margin: 0 0 10px; font-size: 23px; color: #173738; }
.step p, .testimonial p, .faq p, .list p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 16px; }
.service-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center;
  background: white; border-radius: 28px; border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow);
}
.service-feature + .service-feature { margin-top: 24px; }
.service-copy { padding: 34px; }
.service-copy h3 { font-size: 36px; margin: 0 0 14px; font-family: Georgia, serif; color: #173738; }
.service-copy ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); line-height: 1.9; }
.service-image { min-height: 360px; background: linear-gradient(145deg, #d8efec, #f8fbfb); }
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.band {
  background: linear-gradient(135deg, #1b6f73 0%, #4FAFB3 55%, #82c8cb 100%); color: white; border-radius: 30px; padding: 36px;
}
.band h2, .band p { color: white; }
.band .btn-secondary { background: rgba(255,255,255,.15); color: white; border-color: rgba(255,255,255,.25); }
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial {
  background: white; border-radius: 24px; border: 1px solid var(--line); padding: 28px; box-shadow: var(--shadow);
}
.quote { font-size: 42px; line-height: 1; color: #c3dedd; margin-bottom: 12px; }
.kicker { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--primary-dark); font-weight: 800; margin-bottom: 8px; }
.two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center; }
.panel { background: white; border: 1px solid var(--line); border-radius: 28px; padding: 32px; box-shadow: var(--shadow); }
.list { display: grid; gap: 16px; }
.list-item { display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start; }
.check {
  width: 24px; height: 24px; border-radius: 999px; background: #e6f7f6; color: var(--primary-dark);
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; margin-top: 2px;
}
.community-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.community-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%); border: 1px solid var(--line); padding: 24px; border-radius: 22px;
}
.form-wrap {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: start;
}
form {
  background: white; border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: var(--shadow);
}
label { display: block; font-weight: 700; font-size: 14px; color: #29484b; margin-bottom: 8px; }
input, select, textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid #d5e3e0; background: #fbfefe;
  font: inherit; color: var(--text); margin-bottom: 18px;
}
textarea { min-height: 150px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.small-note { color: var(--muted); font-size: 14px; line-height: 1.7; }
.footer {
  padding: 26px 0 38px; color: #506266; font-size: 14px;
}
.footer-wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid var(--line); padding-top: 26px;
}
@media (max-width: 1100px) {
  .hero-wrap, .two-col, .form-wrap, .service-feature, .section-head { grid-template-columns: 1fr; }
  .grid-3, .testimonials, .steps, .community-grid, .stats { grid-template-columns: repeat(2,1fr); }
  .hero h1 { font-size: 52px; }
}
@media (max-width: 760px) {
  .container { width: min(var(--content), calc(100% - 26px)); }
  .nav { flex-wrap: wrap; }
  .nav-links { gap: 14px; flex-wrap: wrap; }
  .hero { padding-top: 24px; }
  .hero-wrap { padding: 18px; }
  .hero h1 { font-size: 42px; }
  .section-head h2 { font-size: 36px; }
  .grid-3, .testimonials, .steps, .community-grid, .stats, .form-grid { grid-template-columns: 1fr; }
  .service-copy h3 { font-size: 30px; }
}
