:root {
  --teal: #0e7c7b; --teal-deep: #075e5d; --teal-soft: #e0f4f3; --mint: #f4fbfa;
  --coral: #ff6b6b; --ink: #22333a; --muted: #63757e; --line: #dcebea;
  --radius: 14px; --shadow: 0 8px 26px rgba(14,124,123,.10);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif; color: var(--ink); line-height: 1.6; background: #fff; }
img, svg { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1140px, 92%); margin: 0 auto; }
.muted { color: var(--muted); }
h1, h2, h3 { color: var(--teal-deep); line-height: 1.25; }
h2 { font-size: 1.75rem; }
.small { font-size: .85rem; color: var(--muted); }

.topbar { background: var(--teal-deep); color: #cdeeed; font-size: .86rem; }
.tb-row { display: flex; justify-content: space-between; padding: .45rem 0; gap: 1rem; flex-wrap: wrap; }
.tb-links a { color: #fff; margin-left: 1.2rem; font-weight: 600; }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: .8rem 0; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .5rem; font-size: 1.35rem; font-weight: 800; color: var(--teal-deep); }
.brand svg { width: 26px; height: 26px; fill: var(--teal); }
.brand span { color: var(--teal); }
.site-header nav { display: flex; align-items: center; gap: 1.3rem; }
.site-header nav a { color: var(--ink); font-weight: 600; font-size: .93rem; }
.site-header nav a.active { color: var(--teal); }
.nav-cta { background: var(--teal); color: #fff !important; padding: .5rem 1.1rem; border-radius: 30px; }
.nav-cta:hover { background: var(--teal-deep); text-decoration: none; }
#nav-toggle { display: none; }
.burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 26px; height: 3px; background: var(--teal-deep); border-radius: 2px; }

.btn { display: inline-block; font-weight: 700; padding: .75rem 1.6rem; border-radius: 30px; cursor: pointer; border: 2px solid transparent; font-size: .95rem; transition: .15s; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: #ff5252; }
.btn-line { border-color: var(--teal); color: var(--teal); background: #fff; }
.btn-light { background: #fff; color: var(--teal-deep); }

.pill { display: inline-block; background: #fff3d6; color: #8a6d1d; border-radius: 30px; padding: .3rem .9rem; font-size: .85rem; font-weight: 700; margin-bottom: 1rem; }

.hero { background: linear-gradient(160deg, var(--teal-soft), var(--mint) 60%, #fff); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center; padding: 3.6rem 0 4.6rem; }
.hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero-copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.5rem; max-width: 33rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.trust-row { display: flex; gap: 2.2rem; list-style: none; flex-wrap: wrap; }
.trust-row b { font-size: 1.6rem; color: var(--teal-deep); display: block; }
.trust-row span { font-size: .8rem; color: var(--muted); }
.hero-art img { filter: drop-shadow(0 16px 30px rgba(14,124,123,.25)); }
.wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 60px; }

.section { padding: 4.2rem 0; }
.section.alt { background: var(--mint); }
.section.teal { background: var(--teal-deep); }
.section.teal h2 { color: #fff; }
.section-title { text-align: center; max-width: 44rem; margin: 0 auto 2.3rem; }
.section-title.left { text-align: left; margin-left: 0; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800; color: var(--coral); margin-bottom: .35rem; }
.eyebrow.light { color: #ffd5a3; }
.grid { display: grid; gap: 1.2rem; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); transition: .18s; }
.card:hover { transform: translateY(-5px); }
.card .icon { display: inline-flex; width: 52px; height: 52px; border-radius: 16px; background: var(--teal-soft); align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: .9rem; }
.card p { color: var(--muted); font-size: .93rem; }
.card .more { display: inline-block; margin-top: .8rem; font-weight: 700; }

.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.4rem; align-items: center; }
.why-media img { border-radius: 20px; box-shadow: var(--shadow); }
.checks { list-style: none; }
.checks li { padding-left: 2rem; position: relative; margin: .65rem 0; color: #3d4f57; }
.checks li b { color: var(--teal-deep); }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #fff; background: var(--teal); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; }

.price-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; position: relative; box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--teal); }
.price-card h3 { margin-bottom: 1rem; }
.price-card .badge { position: absolute; top: -12px; right: 16px; background: var(--coral); color: #fff; font-size: .7rem; font-weight: 800; padding: .25rem .8rem; border-radius: 20px; text-transform: uppercase; }
.kv { display: flex; justify-content: space-between; gap: 1rem; padding: .42rem 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.kv span { color: var(--muted); }
.kv b { color: var(--teal-deep); white-space: nowrap; }
.price-tables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.pt { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.pt h3 { margin-bottom: .8rem; }
.fine { margin-top: 1.6rem; color: var(--muted); font-size: .85rem; }

.t-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 1.5rem; color: #e6f5f4; }
.t-card blockquote { font-size: .97rem; line-height: 1.55; }
.t-card footer { display: flex; gap: .8rem; align-items: center; margin-top: 1.1rem; }
.t-card img { width: 44px; height: 44px; border-radius: 50%; }
.t-card b { display: block; color: #fff; }
.t-card small { color: #9fcbc9; }

.cta-band { background: linear-gradient(100deg, var(--coral), #ff9a5a); color: #fff; padding: 2.8rem 0; }
.cta-band .row { display: flex; justify-content: space-between; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; }

.page-head { background: var(--teal-soft); padding: 2.8rem 0; }
.page-head p { color: var(--teal-deep); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; text-align: center; box-shadow: var(--shadow); }
.member img { width: 92px; height: 92px; margin: 0 auto .9rem; border-radius: 50%; border: 4px solid var(--teal-soft); }
.member .role { color: var(--coral); font-weight: 700; font-size: .85rem; display: block; margin: .15rem 0 .6rem; }
.member p { font-size: .9rem; color: var(--muted); }
.member small { display: block; margin-top: .7rem; color: var(--teal-deep); font-weight: 600; font-size: .78rem; }

.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.2rem; align-items: start; }
.book-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.8rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.book-form label { display: flex; flex-direction: column; gap: .3rem; font-size: .82rem; font-weight: 700; color: var(--teal-deep); margin-bottom: .9rem; }
.book-form input, .book-form select, .book-form textarea { border: 1px solid #cfe1e0; border-radius: 10px; padding: .65rem .8rem; font: inherit; font-size: .95rem; background: var(--mint); }
.book-form input:focus, .book-form select:focus, .book-form textarea:focus { outline: 2px solid rgba(14,124,123,.3); border-color: var(--teal); }
.book-form .msg { grid-column: 1 / -1; }
.chips { background: var(--teal-soft); border-radius: 10px; padding: .7rem .9rem; font-size: .86rem; margin-bottom: 1rem; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; margin-bottom: 1rem; box-shadow: var(--shadow); }
.info-card h3 { margin-bottom: .5rem; }
.map { border-radius: 10px; overflow: hidden; margin: .7rem 0; }

.site-footer { background: var(--teal-deep); color: #bfe3e1; padding: 2.8rem 0 1.3rem; margin-top: 2rem; }
.site-footer h4 { color: #fff; margin-bottom: .6rem; }
.site-footer a { color: #bfe3e1; }
.site-footer a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2rem; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.site-footer .brand { color: #fff; }
.site-footer .brand span { color: #8fd8d5; }
.site-footer p { font-size: .9rem; }
.copyright { display: flex; justify-content: space-between; padding-top: 1rem; font-size: .82rem; color: #86b8b5; flex-wrap: wrap; gap: .5rem; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; padding: 2.6rem 0 4rem; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3, .team-grid, .price-cols { grid-template-columns: 1fr; }
  .price-cols { max-width: 520px; margin: 0 auto; }
  .why-grid, .split, .price-tables { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .burger { display: flex; }
  .site-header nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 1.2rem 5%; gap: 1rem; border-bottom: 1px solid var(--line); box-shadow: 0 14px 20px rgba(0,0,0,.06); }
  #nav-toggle:checked ~ nav { display: flex; }
  .cols-4 { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .cta-band .row { flex-direction: column; text-align: center; }
}
