:root {
  --ink: #172126;
  --ink-soft: #53636a;
  --navy: #183d4a;
  --teal: #4d9cab;
  --teal-deep: #2f7787;
  --teal-soft: #e9f4f5;
  --yellow: #f5dc59;
  --yellow-soft: #fff8cf;
  --cream: #f7f6f1;
  --line: #dbe6e8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(27, 64, 73, .12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.kicker { margin: 0 0 14px; color: var(--teal-deep); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.kicker-light { color: #bfe0e5; }
h1, h2, h3 { margin: 0; font-family: "Manrope", "DM Sans", sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(48px, 6.2vw, 84px); font-weight: 800; }
h2 { font-size: clamp(36px, 4.4vw, 60px); font-weight: 800; }
h3 { font-size: 24px; font-weight: 700; }
p { margin: 0; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219,230,232,.8);
}
.header-inner { min-height: 104px; display: flex; align-items: center; gap: 24px; }
.brand { width: 210px; height: 88px; flex: 0 0 210px; display: flex; align-items: center; justify-content: flex-start; overflow: visible; }
.brand img { width: 100%; max-height: 78px; height: auto; display: block; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.main-nav a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 600; transition: .2s ease; }
.main-nav a:hover { color: var(--teal-deep); }
.header-cta { text-decoration: none; background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: 14px; }
.menu-toggle { display: none; margin-left: auto; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 10px 14px; color: var(--navy); font-weight: 700; }

.hero { padding: 72px 0 96px; background: radial-gradient(circle at 14% 18%, #f3fbfb 0, #fff 40%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 68px; align-items: center; }
.hero-copy { padding: 24px 0; }
.hero-copy h1 { max-width: 680px; color: var(--navy); }
.hero-lead { margin-top: 24px; max-width: 640px; color: var(--ink-soft); font-size: clamp(19px, 2vw, 24px); line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border: 0; border-radius: 999px; padding: 14px 22px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal-deep); color: #fff; box-shadow: 0 12px 30px rgba(47,119,135,.22); }
.button-secondary { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.button-yellow { background: var(--yellow); color: #20272a; width: 100%; }
.hero-proof { display: flex; gap: 32px; margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-proof div { display: flex; flex-direction: column; gap: 2px; }
.hero-proof strong { color: var(--navy); font-family: "Manrope"; font-size: 18px; }
.hero-proof span { color: var(--ink-soft); font-size: 13px; }
.hero-visual { position: relative; min-height: 620px; }
.hero-photo-wrap { position: absolute; inset: 0 0 0 40px; border-radius: 46px 46px 120px 46px; overflow: hidden; box-shadow: var(--shadow); background: var(--teal-soft); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before { content: ""; position: absolute; width: 260px; height: 260px; background: var(--yellow); border-radius: 50%; right: -95px; top: -60px; opacity: .78; }
.floating-card { position: absolute; display: flex; gap: 12px; align-items: center; width: 240px; padding: 16px; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.8); border-radius: 18px; box-shadow: 0 16px 38px rgba(25,58,66,.16); }
.floating-card-top { right: -14px; top: 88px; }
.floating-card-bottom { left: 0; bottom: 72px; }
.floating-icon { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--yellow-soft); color: var(--teal-deep); font-weight: 900; }
.floating-card div { display: flex; flex-direction: column; }
.floating-card strong { font-size: 14px; color: var(--navy); }
.floating-card small { color: var(--ink-soft); }

.total-care-section { padding: 100px 0; background: var(--navy); color: #fff; }
.split-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: end; margin-bottom: 52px; }
.split-intro h2 { color: #fff; }
.split-intro > p { color: #d6e5e8; font-size: 21px; line-height: 1.6; max-width: 760px; }
.care-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.care-card { min-height: 300px; padding: 26px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); display: flex; flex-direction: column; }
.care-card .number { color: #8ec7d1; font-family: "Manrope"; font-size: 13px; font-weight: 800; }
.care-card h3 { margin-top: auto; margin-bottom: 14px; color: #fff; font-size: 22px; }
.care-card p { color: #cbdde1; font-size: 15px; }
.accent-card { background: var(--yellow); border-color: var(--yellow); }
.accent-card .number, .accent-card h3, .accent-card p { color: #26363b; }

.how-section { padding: 110px 0; background: #fff; }
.section-intro.centered { max-width: 820px; margin: 0 auto 56px; text-align: center; }
.section-intro.centered h2 { color: var(--navy); }
.section-intro.centered > p:last-child { margin: 20px auto 0; max-width: 700px; color: var(--ink-soft); font-size: 19px; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
.how-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.how-card.featured { background: var(--teal-soft); border-color: transparent; transform: translateY(-12px); }
.how-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 16px; background: var(--navy); color: #fff; font-family: "Manrope"; font-weight: 800; }
.featured .how-icon { background: var(--yellow); color: var(--navy); }
.how-card h3 { color: var(--navy); margin-bottom: 18px; }
.how-card ul { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.how-card li + li { margin-top: 12px; }

.experience-section { padding: 100px 0; background: var(--cream); }
.experience-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 76px; align-items: center; }
.experience-copy h2 { color: var(--navy); max-width: 520px; }
.experience-copy > p:last-child { color: var(--ink-soft); margin-top: 22px; max-width: 520px; font-size: 18px; }
.logos-panel { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.logos-panel img { width: 100%; height: 108px; object-fit: contain; background: #fff; padding: 18px; border-radius: 18px; border: 1px solid rgba(219,230,232,.8); filter: saturate(.8); }

.pricing-section { padding: 110px 0; background: var(--navy); }
.pricing-heading h2 { color: #fff !important; }
.pricing-heading > p:last-child { color: #cfe0e4 !important; }
.pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.price-card { background: #fff; border-radius: 28px; padding: 32px; box-shadow: 0 24px 60px rgba(0,0,0,.1); }
.premium-card { background: #f6fbfb; }
.price-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.price-level { color: var(--teal-deep); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.price-card h3 { margin-top: 6px; color: var(--navy); font-size: 34px; }
.hour-price { color: var(--ink-soft); font-size: 13px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; white-space: nowrap; }
.price-table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; margin-top: 20px; min-width: 460px; }
.price-table th, .price-table td { padding: 16px 10px; text-align: left; border-bottom: 1px solid #e8eeee; }
.price-table th { color: var(--ink-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.price-table td { font-weight: 700; color: var(--navy); }
.highlight-row td { background: var(--yellow-soft); }
.highlight-row td:first-child { border-radius: 12px 0 0 12px; }
.highlight-row td:last-child { border-radius: 0 12px 12px 0; color: var(--teal-deep); }
.price-extras { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 22px; }
.price-extras span { background: var(--cream); border-radius: 999px; padding: 8px 12px; color: var(--ink-soft); font-size: 13px; }
.pricing-note { margin: 28px auto 0; color: #cfe0e4; text-align: center; font-size: 15px; }

.mentoring-section { padding: 110px 0; background: #fff; }
.mentoring-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: center; }
.mentoring-photo-wrap { position: relative; border-radius: 34px; overflow: hidden; min-height: 700px; background: var(--teal-soft); }
.mentoring-photo-wrap img { width: 100%; height: 700px; object-fit: cover; object-position: center top; }
.photo-caption { position: absolute; left: 22px; bottom: 22px; background: var(--yellow); color: var(--navy); border-radius: 999px; padding: 10px 14px; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.mentoring-copy h2 { color: var(--navy); }
.mentoring-copy > p:nth-of-type(2) { margin-top: 20px; color: var(--ink-soft); font-size: 18px; }
.steps-list { list-style: none; margin: 30px 0 0; padding: 0; }
.steps-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.steps-list li > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-soft); color: var(--teal-deep); font-weight: 800; }
.steps-list div { display: flex; flex-direction: column; }
.steps-list strong { color: var(--navy); }
.steps-list small { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.mentoring-note { margin-top: 20px; color: var(--teal-deep); font-weight: 700; }

.contact-section { padding: 100px 0; background: var(--teal-deep); }
.contact-shell { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; background: var(--navy); border-radius: 36px; box-shadow: var(--shadow); }
.contact-copy { padding: 54px; color: #fff; }
.contact-copy h2 { color: #fff; font-size: clamp(36px,4vw,54px); }
.contact-copy > p:nth-of-type(2) { margin-top: 20px; color: #d3e1e4; font-size: 17px; }
.contact-image-wrap { margin-top: 36px; height: 220px; border-radius: 22px; overflow: hidden; opacity: .9; }
.contact-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.contact-form { background: #fff; padding: 54px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; color: var(--navy); font-size: 13px; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; background: #fbfcfc; padding: 13px 14px; color: var(--ink); outline: none; transition: border .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(77,156,171,.12); }
.form-note { margin-top: 12px; color: var(--ink-soft); font-size: 13px; }

.site-footer { padding: 70px 0 28px; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 40px; }
.footer-brand img { width: 220px; max-width: 100%; height: auto; object-fit: contain; object-position: left center; }
.footer-brand p { color: var(--ink-soft); max-width: 330px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-links strong { color: var(--navy); margin-bottom: 4px; }
.footer-links a { color: var(--ink-soft); text-decoration: none; }
.footer-links span { color: var(--ink-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; }

@media (max-width: 980px) {
  .container { width: min(100% - 32px, var(--max)); }
  .main-nav { display: none; position: absolute; top: 104px; left: 16px; right: 16px; flex-direction: column; align-items: stretch; gap: 0; background: #fff; padding: 12px; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .hero-grid, .experience-grid, .mentoring-grid, .contact-shell { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-visual { min-height: 560px; }
  .hero-photo-wrap { inset: 0; }
  .floating-card-top { right: 10px; }
  .floating-card-bottom { left: 10px; }
  .split-intro { grid-template-columns: 1fr; gap: 24px; }
  .care-grid { grid-template-columns: repeat(2,1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .how-card.featured { transform: none; }
  .logos-panel { grid-template-columns: repeat(4,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .mentoring-photo-wrap, .mentoring-photo-wrap img { min-height: 520px; height: 520px; }
  .contact-shell { border-radius: 28px; }
  .contact-copy, .contact-form { padding: 40px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .header-inner { min-height: 84px; }
  .brand { width: 170px; height: 72px; flex-basis: 170px; }
  .brand img { width: 100%; max-height: 64px; height: auto; }
  .main-nav { top: 84px; }
  .hero { padding: 36px 0 70px; }
  h1 { font-size: 46px; }
  h2 { font-size: 38px; }
  .hero-grid { gap: 42px; }
  .hero-proof { flex-direction: column; gap: 14px; }
  .hero-visual { min-height: 470px; }
  .hero-photo-wrap { border-radius: 28px 28px 78px 28px; }
  .floating-card { width: 210px; padding: 12px; }
  .floating-card-top { top: 28px; }
  .floating-card-bottom { bottom: 26px; }
  .total-care-section, .how-section, .experience-section, .pricing-section, .mentoring-section, .contact-section { padding: 76px 0; }
  .care-grid { grid-template-columns: 1fr; }
  .care-card { min-height: 230px; }
  .logos-panel { grid-template-columns: repeat(2,1fr); }
  .logos-panel img { height: 96px; }
  .pricing-section .container { width: calc(100% - 24px); }
  .pricing-grid { gap: 16px; }
  .price-card { width: 100%; min-width: 0; padding: 20px 14px 18px; border-radius: 20px; overflow: hidden; }
  .price-card-header { flex-direction: column; gap: 10px; padding-bottom: 16px; }
  .price-card h3 { font-size: 30px; }
  .hour-price { font-size: 12px; padding: 7px 9px; }
  .price-table-wrap { width: 100%; overflow: visible; }
  .price-table { width: 100%; min-width: 0; table-layout: fixed; margin-top: 12px; }
  .price-table th, .price-table td { padding: 12px 4px; }
  .price-table th { font-size: 9px; line-height: 1.25; letter-spacing: .03em; white-space: normal; }
  .price-table td { font-size: 13px; line-height: 1.2; white-space: nowrap; }
  .price-table th:nth-child(1), .price-table td:nth-child(1) { width: 18%; }
  .price-table th:nth-child(2), .price-table td:nth-child(2) { width: 41%; }
  .price-table th:nth-child(3), .price-table td:nth-child(3) { width: 41%; }
  .price-extras { gap: 7px; padding-top: 16px; }
  .price-extras span { padding: 7px 9px; font-size: 11px; }
  .pricing-note { margin-top: 20px; padding: 0 6px; font-size: 13px; line-height: 1.55; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-copy, .contact-form { padding: 28px; }
  .contact-image-wrap { height: 170px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; }
}
