:root {
  --brand: #14538C;
  --brand-light: #1E74BF;
  --brand-pale: #EAF3FB;
  --brand-muted: #D2E4F5;
  --accent: #2E7D32;
  --accent-light: #43A047;
  --accent-pale: #E8F5E9;
  --ink: #142430;
  --text: #2B3A44;
  --text-light: #66787F;
  --white: #fff;
}
.ig * { margin: 0; padding: 0; box-sizing: border-box; }
.ig {
  font-family: 'PT Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.ig .page { max-width: 860px; margin: 0 auto; padding: 56px 24px 80px; }
.ig a { color: inherit; }
.ig h1, .ig h2, .ig h3 { font-family: 'PT Serif', serif; color: var(--ink); }

/* BREADCRUMB */
.ig .crumb { font-size: 13.5px; color: var(--text-light); margin-bottom: 20px; }
.ig .crumb a { color: var(--brand); text-decoration: none; font-weight: 700; }
.ig .crumb a:hover { text-decoration: underline; }

/* HERO */
.ig .hero {
  display: flex; gap: 32px; align-items: center;
  padding-bottom: 40px; margin-bottom: 40px;
  border-bottom: 2px solid var(--brand-muted);
}
@media (max-width: 640px) { .ig .hero { flex-direction: column; text-align: center; } }
.ig .hero__photo-wrap { flex-shrink: 0; position: relative; }
.ig .hero__photo {
  width: 200px; height: 260px; object-fit: cover; border-radius: 14px;
  background: var(--brand-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-light); font-size: 13px; text-align: center; padding: 12px;
  border: 2px dashed var(--brand-muted);
}
.ig .hero__content { flex: 1; }
.ig .hero__label {
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-light); margin-bottom: 10px;
}
.ig .hero__title { font-size: 34px; font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.ig .hero__subtitle { font-size: 17px; color: var(--text-light); margin-bottom: 22px; }
.ig .hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 640px) { .ig .hero__cta { justify-content: center; } }

.ig .btn {
  display: inline-block; padding: 14px 26px; border-radius: 100px;
  font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer; border: none;
}
.ig .btn--primary { background: var(--brand); color: var(--white); }
.ig .btn--primary:hover { background: var(--brand-light); }
.ig .btn--block { display: block; width: 100%; text-align: center; }
.ig .btn--ghost { background: var(--white); color: var(--brand); border: 2px solid var(--brand-muted); }

/* STATS */
.ig .stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 56px; }
@media (max-width: 640px) { .ig .stats { grid-template-columns: repeat(2,1fr); } }
.ig .stat { background: var(--brand-pale); border-radius: 10px; padding: 18px 12px; text-align: center; }
.ig .stat__number { font-family: 'PT Serif', serif; font-size: 24px; font-weight: 700; color: var(--brand); line-height: 1.1; margin-bottom: 4px; }
.ig .stat__label { font-size: 12.5px; color: var(--text-light); }

/* SECTIONS */
.ig section { margin-bottom: 56px; }
.ig .section__title { font-size: 26px; margin-bottom: 8px; }
.ig .section__lead { color: var(--text-light); font-size: 15.5px; margin-bottom: 26px; }

/* USP GRID */
.ig .usp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
@media (max-width: 640px) { .ig .usp-grid { grid-template-columns: 1fr; } }
.ig .usp {
  background: var(--white); border: 1px solid var(--brand-muted); border-radius: 12px; padding: 20px;
}
.ig .usp__icon { font-size: 26px; margin-bottom: 10px; }
.ig .usp__title { font-family: 'PT Sans', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.ig .usp__text { font-size: 14.5px; color: var(--text-light); }

/* BRANCHES */
.ig .branch-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
@media (max-width: 640px) { .ig .branch-grid { grid-template-columns: 1fr; } }
.ig .branch {
  background: var(--brand-pale); border-radius: 14px; padding: 22px;
}
.ig .branch__name { font-weight: 700; font-size: 18px; color: var(--brand); margin-bottom: 10px; }
.ig .branch__row { display: flex; gap: 8px; font-size: 14.5px; margin-bottom: 6px; }
.ig .branch__row b { flex-shrink: 0; color: var(--text-light); font-weight: 600; min-width: 88px; }
.ig .branch__link { display: inline-block; margin-top: 10px; font-size: 13.5px; font-weight: 700; color: var(--brand); text-decoration: none; }
.ig .branch__link:hover { text-decoration: underline; }
.ig .placeholder { color: var(--brand-light); font-style: italic; }

/* GROUPS TABLE */
.ig .groups { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
@media (max-width: 640px) { .ig .groups { grid-template-columns: repeat(2,1fr); } }
.ig .group-card { background: var(--white); border: 1px solid var(--brand-muted); border-radius: 10px; padding: 16px; text-align: center; }
.ig .group-card__age { font-family: 'PT Serif', serif; font-weight: 700; font-size: 19px; color: var(--brand); }
.ig .group-card__label { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* SCHEDULE TABLE */
.ig .schedule { width: 100%; border-collapse: collapse; }
.ig .schedule th, .ig .schedule td { text-align: left; padding: 10px 12px; font-size: 14px; border-bottom: 1px solid var(--brand-muted); }
.ig .schedule th { color: var(--text-light); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; }
.ig .schedule td:first-child { font-weight: 700; color: var(--ink); }

/* COACHES */
.ig .coach-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
@media (max-width: 640px) { .ig .coach-grid { grid-template-columns: 1fr; } }
.ig .coach { display: flex; gap: 14px; align-items: flex-start; }
.ig .coach__photo {
  width: 76px; height: 76px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-muted); display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--brand-light); text-align: center; padding: 4px;
}
.ig .coach__name { font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.ig .coach__role { font-size: 13.5px; color: var(--text-light); margin-bottom: 4px; }
.ig .coach__bio { font-size: 13.5px; color: var(--text-light); }

/* PROCESS */
.ig .process { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; counter-reset: step; }
@media (max-width: 640px) { .ig .process { grid-template-columns: 1fr; } }
.ig .step { text-align: left; }
.ig .step__num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 10px;
}
.ig .step__title { font-weight: 700; color: var(--ink); font-size: 15px; margin-bottom: 4px; }
.ig .step__text { font-size: 13.5px; color: var(--text-light); }

/* PRICING */
.ig .price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 640px) { .ig .price-grid { grid-template-columns: 1fr; } }
.ig .price-card { border: 1px solid var(--brand-muted); border-radius: 12px; padding: 22px; text-align: center; }
.ig .price-card--featured { border-color: var(--accent); background: var(--accent-pale); position: relative; }
.ig .price-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white); font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap;
}
.ig .price-card__name { font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ig .price-card__value { font-family: 'PT Serif', serif; font-size: 24px; font-weight: 700; color: var(--brand); margin-bottom: 10px; }
.ig .price-card__desc { font-size: 13.5px; color: var(--text-light); }

/* FAQ */
.ig .faq-item { border-bottom: 1px solid var(--brand-muted); padding: 16px 0; }
.ig .faq-item__q { font-weight: 700; color: var(--ink); margin-bottom: 6px; font-size: 15.5px; }
.ig .faq-item__a { font-size: 14.5px; color: var(--text-light); }

/* LEAD FORM */
.ig .lead-form { background: var(--brand-pale); border-radius: 16px; padding: 32px; }
.ig .lead-form__form label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.ig .lead-form__form input, .ig .lead-form__form select, .ig .lead-form__form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 11px 14px; border-radius: 8px;
  border: 1px solid var(--brand-muted); font-family: inherit; font-size: 14.5px; font-weight: 400;
  background: var(--white); color: var(--text);
}
.ig .lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .ig .lead-form__row { grid-template-columns: 1fr; } }
.ig .lead-form__note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }
.ig .lead-form__hp { position: absolute; left: -9999px; }
.ig .lead-form__thanks { text-align: center; padding: 20px 0; }
.ig .lead-form__thanks-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--accent-pale); color: var(--accent);
  font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.ig .lead-form__thanks h3 { margin-bottom: 8px; }
.ig .lead-form__thanks p { color: var(--text-light); font-size: 14.5px; }

/* FOOTER */
.ig .site-footer { border-top: 2px solid var(--brand-muted); padding-top: 24px; text-align: center; }
.ig .site-footer__name { font-family: 'PT Serif', serif; font-weight: 700; color: var(--brand); font-size: 17px; margin-bottom: 6px; }
.ig .site-footer__meta { font-size: 13px; color: var(--text-light); }
.ig .site-footer__note { font-size: 11.5px; color: var(--text-light); margin-top: 14px; opacity: .7; }
