:root {
  --ink: #0b1b3a;
  --text: #26334d;
  --muted: #65738b;
  --line: #dce7f3;
  --soft: #f4f9fc;
  --green: #52b788;
  --teal: #239789;
  --blue: #1d63f2;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(11, 27, 58, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  background: var(--white);
}

a { color: inherit; }

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand img { width: 220px; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
  font-size: 22px;
  height: 42px;
  width: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a.active,
.nav-links a:hover { color: var(--teal); }

.client-login {
  border: 1px solid var(--teal);
  border-radius: 7px;
  color: var(--teal) !important;
  padding: 9px 14px;
}

.hero,
.page-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f5fbf9 58%, #eaf7f4 100%);
}

.hero {
  padding: 78px 0 48px;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-heading span {
  color: var(--teal);
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 0;
}

h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 22px; }

.accent { color: var(--blue); }

.lead {
  color: var(--text);
  font-size: 19px;
  margin: 22px 0 0;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  box-shadow: 0 14px 32px rgba(35, 151, 137, .24);
}

.btn-secondary {
  border: 1px solid var(--teal);
  color: var(--teal);
  background: var(--white);
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.chat-head {
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  display: flex;
  gap: 14px;
  padding: 18px 22px;
}

.avatar {
  border-radius: 50%;
  height: 46px;
  object-fit: cover;
  width: 46px;
}

.chat-body { padding: 24px; }

.bubble {
  border-radius: 15px;
  margin-bottom: 16px;
  max-width: 82%;
  padding: 14px 16px;
}

.bubble.bot { background: #eef4f8; color: var(--ink); }
.bubble.user { background: var(--blue); color: var(--white); margin-left: auto; }

.lead-card {
  background: #f8fcfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 22px;
  padding: 18px;
}

.metric-strip {
  background: var(--ink);
  color: var(--white);
  padding: 26px 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric strong {
  display: block;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.metric span {
  color: #cfdae8;
  display: block;
  margin-top: 4px;
}

.section { padding: 78px 0; }
.section-soft { background: var(--soft); }

.section-heading {
  margin: 0 auto 38px;
  max-width: 760px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  margin: 16px auto 0;
  max-width: 700px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card,
.price-card,
.contact-panel,
.address-card,
.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 42px rgba(11, 27, 58, .08);
  padding: 28px;
}

.card p,
.price-card p { color: var(--muted); }

.check-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.check-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.check-list li:before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.page-hero {
  padding: 72px 0 54px;
}

.page-hero .section-heading { margin-bottom: 0; }

.section-image {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.coach-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  gap: 16px;
  padding: 18px;
}

.coach-card img {
  border-radius: 50%;
  height: 74px;
  object-fit: cover;
  width: 74px;
}

.pricing-toggle-wrap {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
}

.pricing-toggle {
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 30px;
  padding: 3px;
  width: 58px;
}

.pricing-toggle span {
  background: var(--white);
  border-radius: 50%;
  display: block;
  height: 24px;
  transition: transform .2s ease;
  width: 24px;
}

.pricing-toggle[aria-pressed="true"] span {
  transform: translateX(28px);
}

.toggle-label {
  color: var(--muted);
  font-weight: 800;
}

.toggle-label.active { color: var(--ink); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.price-card.featured {
  border-color: rgba(35, 151, 137, .35);
  box-shadow: 0 24px 70px rgba(35, 151, 137, .18);
}

.price {
  align-items: baseline;
  color: var(--ink);
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.price-period {
  color: var(--muted);
  font-weight: 800;
}

.annual-note { display: none; }
.pricing-annual .annual-note { display: block; }

.feature-trial {
  display: block;
  margin-top: 8px;
}

.feature-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.info {
  display: inline-block;
  position: relative;
}

.info-icon {
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 18px;
  justify-content: center;
  margin-left: 4px;
  width: 18px;
}

.info-text {
  background: var(--ink);
  border-radius: 7px;
  bottom: 130%;
  color: var(--white);
  font-size: 12px;
  left: 50%;
  line-height: 1.35;
  opacity: 0;
  padding: 8px 10px;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  transition: opacity .15s ease;
  visibility: hidden;
  width: 220px;
  z-index: 10;
}

.info:hover .info-text,
.info:focus-within .info-text {
  opacity: 1;
  visibility: visible;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: 900;
  justify-content: space-between;
  padding: 20px 22px;
  text-align: left;
  width: 100%;
}

.faq-answer {
  color: var(--muted);
  display: none;
  padding: 0 22px 20px;
}

.faq-item.open .faq-answer { display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 24px;
}

label {
  color: var(--ink);
  display: block;
  font-weight: 800;
  margin-bottom: 7px;
}

input,
textarea,
select {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  font: inherit;
  margin-bottom: 16px;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

textarea { min-height: 140px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.site-footer {
  background: #081730;
  color: #dce7f3;
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
}

.footer-logo { width: 220px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
}

.footer-links a {
  color: #dce7f3;
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 28px;
  padding-top: 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    background: var(--white);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 18px 20px;
    position: absolute;
    right: 0;
    top: 82px;
  }
  .nav-links.open { display: flex; }
  .hero-grid,
  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .metric-grid,
  .card-grid,
  .coach-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1140px); }
  .brand img { width: 184px; }
  .hero { padding-top: 46px; }
  .metric-grid,
  .card-grid,
  .coach-grid,
  .pricing-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}
