:root {
  --wf-navy: #123552;
  --wf-navy-dark: #0a263d;
  --wf-blue: #176a9b;
  --wf-gold: #c78c2d;
  --wf-gold-soft: #f7eddc;
  --wf-ink: #172733;
  --wf-text: #3c4e5c;
  --wf-muted: #6b7a86;
  --wf-line: #dce3e8;
  --wf-soft: #f5f7f9;
  --wf-blue-soft: #eef4f7;
  --wf-white: #ffffff;
}

body {
  overflow-x: hidden;
  background: var(--wf-white);
}

.site-top {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: #e1e6ea;
  box-shadow: 0 2px 12px rgba(20, 44, 62, 0.04);
}

.site-nav {
  min-height: 72px;
}

.site-brand {
  min-width: 174px;
}

.site-brand img {
  width: 105px;
  height: 38px;
  object-fit: contain;
  border-radius: 4px;
}

.brand-context {
  display: block;
  color: #788792;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.site-links {
  gap: 20px;
}

.site-links a {
  padding: 25px 0 22px;
  color: #475966;
}

.site-links a.active {
  color: var(--wf-navy);
  border-bottom-color: var(--wf-gold);
}

.mobile-site-menu {
  position: relative;
  display: none;
}

.mobile-site-menu summary {
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wf-line);
  border-radius: 6px;
  background: var(--wf-white);
  color: var(--wf-navy);
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  list-style: none;
}

.mobile-site-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-site-menu[open] summary {
  border-color: #b9cbd8;
  background: var(--wf-blue-soft);
}

.mobile-site-menu-panel {
  position: absolute;
  top: 48px;
  right: 0;
  z-index: 30;
  width: 220px;
  padding: 8px;
  display: grid;
  border: 1px solid var(--wf-line);
  border-radius: 6px;
  background: var(--wf-white);
  box-shadow: 0 14px 32px rgba(20, 44, 62, 0.14);
}

.mobile-site-menu-panel a {
  padding: 10px 12px;
  border-radius: 4px;
  color: #475966;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-site-menu-panel a:hover,
.mobile-site-menu-panel a.active {
  background: var(--wf-blue-soft);
  color: var(--wf-navy);
}

.mobile-site-menu-panel .mobile-teacher-link {
  margin-top: 4px;
  border-top: 1px solid var(--wf-line);
  border-radius: 0 0 4px 4px;
  color: var(--wf-muted);
}

.site-actions .site-btn.primary {
  border-color: var(--wf-blue);
  background: var(--wf-blue);
}

.site-actions .site-btn.teacher-login {
  border-color: transparent;
  background: transparent;
  color: #63727e;
}

.site-main.site-home,
.site-main.public-site-page {
  max-width: none;
  padding: 0;
  overflow: hidden;
}

.wf-container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.wf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--wf-blue);
  font-size: 13px;
  font-weight: 800;
}

.wf-kicker::before {
  width: 22px;
  height: 2px;
  background: var(--wf-gold);
  content: "";
}

.wf-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.wf-section-head h2 {
  margin: 0;
  color: var(--wf-ink);
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 0;
}

.wf-section-head p {
  margin: 10px 0 0;
  color: var(--wf-muted);
  font-size: 15px;
  line-height: 1.75;
}

.wf-section-action {
  margin-top: 26px;
}

.wf-btn {
  min-height: 44px;
  padding: 10px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #aebbc4;
  border-radius: 6px;
  background: #fff;
  color: var(--wf-navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.wf-btn:hover {
  transform: translateY(-1px);
  border-color: var(--wf-blue);
  color: var(--wf-blue);
}

.wf-btn.primary {
  border-color: var(--wf-blue);
  background: var(--wf-blue);
  color: #fff;
}

.wf-btn.primary:hover {
  border-color: #115779;
  background: #115779;
  color: #fff;
}

.wf-btn.light {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}

.wf-hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dbe2e7;
  background: var(--wf-blue-soft);
}

.wf-hero-grid {
  padding-top: 58px;
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  align-items: center;
  gap: 68px;
}

.wf-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--wf-navy-dark);
  font-size: 48px;
  line-height: 1.18;
  letter-spacing: 0;
}

.wf-hero-copy > p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #506472;
  font-size: 17px;
  line-height: 1.8;
}

.wf-brand-line {
  margin-top: 18px;
  color: #7b653b;
  font-size: 14px;
  font-weight: 800;
}

.wf-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wf-entry-panel {
  padding: 28px;
  border: 1px solid #183f5b;
  border-radius: 8px;
  background: var(--wf-navy-dark);
  color: #fff;
  box-shadow: 0 18px 42px rgba(16, 45, 65, 0.16);
}

.wf-entry-panel .wf-panel-label {
  margin: 0 0 8px;
  color: #e5bd70;
  font-size: 12px;
  font-weight: 800;
}

.wf-entry-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.4;
}

.wf-entry-panel > p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.wf-entry-list {
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
}

.wf-entry-list li {
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.wf-entry-panel .wf-btn {
  width: 100%;
  border-color: #e5bd70;
  background: #e5bd70;
  color: #163149;
}

.wf-section {
  padding: 66px 0;
  background: #fff;
}

.wf-section.soft {
  background: var(--wf-soft);
}

.wf-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.wf-service-card {
  min-height: 224px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(25, 49, 66, 0.04);
}

.wf-service-card .wf-card-no {
  margin-bottom: 22px;
  color: var(--wf-gold);
  font-size: 12px;
  font-weight: 900;
}

.wf-service-card h3 {
  margin: 0 0 9px;
  color: var(--wf-ink);
  font-size: 18px;
  line-height: 1.45;
}

.wf-service-card p {
  margin: 0 0 18px;
  color: var(--wf-muted);
  font-size: 14px;
  line-height: 1.7;
}

.wf-text-link {
  margin-top: auto;
  color: var(--wf-blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.wf-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--wf-line);
  border-bottom: 1px solid var(--wf-line);
}

.wf-flow-step {
  min-height: 128px;
  padding: 22px 15px;
  border-right: 1px solid var(--wf-line);
}

.wf-flow-step:last-child {
  border-right: 0;
}

.wf-flow-step span {
  display: block;
  margin-bottom: 13px;
  color: var(--wf-gold);
  font-size: 12px;
  font-weight: 900;
}

.wf-flow-step strong {
  color: var(--wf-ink);
  font-size: 15px;
  line-height: 1.45;
}

.wf-capability-box {
  padding: 24px;
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  background: #fff;
}

.wf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wf-tag {
  padding: 10px 13px;
  border: 1px solid #cedbe3;
  border-radius: 5px;
  background: var(--wf-blue-soft);
  color: #284c63;
  font-size: 13px;
  font-weight: 800;
}

.wf-expert-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 0.75fr));
  gap: 14px;
}

.wf-expert-card {
  min-height: 250px;
  padding: 22px;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 20px;
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  background: #fff;
}

.wf-expert-card.compact {
  grid-template-columns: 1fr;
}

.wf-expert-photo {
  width: 116px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #d7e0e5;
  border-radius: 6px;
  background: var(--wf-soft);
}

.wf-expert-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.wf-role-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--wf-navy);
  color: #e5bd70;
  font-weight: 900;
}

.wf-expert-card h3 {
  margin: 0 0 5px;
  color: var(--wf-ink);
  font-size: 19px;
}

.wf-expert-title {
  margin-bottom: 12px;
  color: var(--wf-blue);
  font-size: 13px;
  font-weight: 800;
}

.wf-expert-card p {
  margin: 0;
  color: var(--wf-muted);
  font-size: 14px;
  line-height: 1.7;
}

.wf-cta {
  padding: 54px 0;
  background: var(--wf-navy-dark);
  color: #fff;
}

.wf-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.wf-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.4;
}

.wf-cta p {
  max-width: 760px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.wf-cta .wf-actions {
  margin: 0;
  flex: 0 0 auto;
}

.wf-page-hero {
  padding: 70px 0 58px;
  border-bottom: 1px solid var(--wf-line);
  background: var(--wf-blue-soft);
}

.wf-page-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--wf-navy-dark);
  font-size: 42px;
  line-height: 1.25;
  letter-spacing: 0;
}

.wf-page-hero p {
  max-width: 820px;
  margin: 15px 0 0;
  color: #586c78;
  font-size: 16px;
  line-height: 1.8;
}

.wf-page-section {
  padding: 60px 0;
  background: #fff;
}

.wf-page-section.soft {
  background: var(--wf-soft);
}

.wf-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--wf-line);
  border-bottom: 1px solid var(--wf-line);
  background: #fff;
}

.wf-stat-item {
  min-width: 0;
  padding: 21px 20px;
  border-right: 1px solid var(--wf-line);
}

.wf-stat-item:last-child {
  border-right: 0;
}

.wf-stat-item strong,
.wf-stat-item span {
  display: block;
}

.wf-stat-item strong {
  color: var(--wf-navy);
  font-size: 28px;
  line-height: 1.2;
}

.wf-stat-item span {
  margin-top: 7px;
  color: var(--wf-ink);
  font-size: 14px;
  font-weight: 800;
}

.wf-stat-item p {
  margin: 6px 0 0;
  color: var(--wf-muted);
  font-size: 12px;
  line-height: 1.6;
}

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

.wf-detail-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wf-detail-card {
  padding: 24px;
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(25, 49, 66, 0.035);
}

.wf-detail-card h2,
.wf-detail-card h3 {
  margin: 0 0 12px;
  color: var(--wf-ink);
  line-height: 1.4;
}

.wf-detail-card h2 {
  font-size: 22px;
}

.wf-detail-card h3 {
  font-size: 18px;
}

.wf-detail-card > p {
  margin: 0 0 15px;
  color: var(--wf-muted);
  font-size: 14px;
  line-height: 1.75;
}

.wf-case-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--wf-blue-soft);
  color: var(--wf-blue);
  font-size: 12px;
  font-weight: 800;
}

.wf-case-card .wf-facts li {
  line-height: 1.7;
}

.wf-facts {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.wf-facts li {
  padding-top: 9px;
  border-top: 1px solid #e9edf0;
  color: var(--wf-text);
  font-size: 13px;
  line-height: 1.65;
}

.wf-facts strong {
  color: var(--wf-ink);
}

.wf-direction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wf-direction-item {
  padding: 18px;
  border-left: 3px solid var(--wf-gold);
  background: #fff;
}

.wf-direction-item h3 {
  margin: 0 0 7px;
  color: var(--wf-ink);
  font-size: 17px;
}

.wf-direction-item p {
  margin: 0;
  color: var(--wf-muted);
  font-size: 13px;
  line-height: 1.65;
}

.wf-growth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--wf-line);
  border-bottom: 1px solid var(--wf-line);
}

.wf-growth-step {
  min-width: 0;
  padding: 22px 20px;
  border-right: 1px solid var(--wf-line);
}

.wf-growth-step:last-child {
  border-right: 0;
}

.wf-growth-step span {
  color: var(--wf-gold);
  font-size: 12px;
  font-weight: 900;
}

.wf-growth-step h3 {
  margin: 8px 0 7px;
  color: var(--wf-ink);
  font-size: 17px;
}

.wf-growth-step p {
  margin: 0;
  color: var(--wf-muted);
  font-size: 13px;
  line-height: 1.65;
}

.wf-profile-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  background: #fff;
}

.wf-profile-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #d7e0e5;
  border-radius: 6px;
  background: var(--wf-soft);
}

.wf-profile-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.wf-profile-card h2 {
  margin: 0 0 5px;
  color: var(--wf-ink);
  font-size: 28px;
}

.wf-profile-card .wf-profile-role {
  margin-bottom: 9px;
  color: var(--wf-blue);
  font-weight: 800;
}

.wf-profile-summary {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--wf-muted);
  font-size: 14px;
  line-height: 1.7;
}

.wf-profile-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wf-profile-field {
  padding: 13px;
  border: 1px solid var(--wf-line);
  border-radius: 6px;
  background: var(--wf-soft);
}

.wf-profile-field span {
  display: block;
  margin-bottom: 4px;
  color: var(--wf-muted);
  font-size: 12px;
}

.wf-profile-field strong {
  color: var(--wf-ink);
  font-size: 14px;
  line-height: 1.55;
}

.wf-disclaimer {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 3px solid var(--wf-gold);
  background: var(--wf-gold-soft);
  color: #655238;
  font-size: 13px;
  line-height: 1.7;
}

.wf-faq-list {
  max-width: 900px;
  display: grid;
  gap: 10px;
}

.wf-faq-item {
  border: 1px solid var(--wf-line);
  border-radius: 8px;
  background: #fff;
}

.wf-faq-item summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: var(--wf-ink);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.wf-faq-item summary::-webkit-details-marker {
  display: none;
}

.wf-faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--wf-blue);
  font-size: 21px;
  content: "+";
}

.wf-faq-item[open] summary::after {
  content: "−";
}

.wf-faq-answer {
  padding: 0 54px 18px 20px;
  color: var(--wf-muted);
  font-size: 14px;
  line-height: 1.75;
}

.site-footer {
  padding: 40px 24px 26px;
  border-top: 0;
  background: #102c42;
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  max-width: 1180px;
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  gap: 36px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.footer-brand p,
.footer-contact p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}

.footer-contact-link {
  display: inline-flex;
  margin-top: 8px;
  color: #f0c673;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1180px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .site-brand {
    min-width: 150px;
  }

  .mobile-site-menu {
    display: block;
  }

  .mobile-site-menu summary {
    display: flex;
  }

  .site-actions .teacher-login {
    display: none;
  }

  .wf-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 38px;
  }

  .wf-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wf-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wf-flow-step:nth-child(3) {
    border-right: 0;
  }

  .wf-flow-step:nth-child(-n + 3) {
    border-bottom: 1px solid var(--wf-line);
  }

  .wf-expert-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wf-expert-card:first-child {
    grid-column: 1 / -1;
  }

  .wf-stat-strip,
  .wf-growth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wf-stat-item:nth-child(2),
  .wf-growth-step:nth-child(2) {
    border-right: 0;
  }

  .wf-stat-item:nth-child(-n + 2),
  .wf-growth-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--wf-line);
  }
}

@media (max-width: 760px) {
  .site-nav {
    min-height: 66px;
  }

  .site-brand {
    min-width: 0;
  }

  .brand-context {
    display: none;
  }

  .site-actions .teacher-login {
    display: none;
  }

  .wf-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .wf-hero {
    min-height: 0;
  }

  .wf-hero-grid {
    padding-top: 46px;
    padding-bottom: 46px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wf-hero-copy h1 {
    font-size: 37px;
  }

  .wf-hero-copy > p {
    font-size: 15px;
  }

  .wf-entry-panel {
    padding: 22px;
  }

  .wf-section,
  .wf-page-section {
    padding: 52px 0;
  }

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

  .wf-page-hero h1 {
    font-size: 34px;
  }

  .wf-section-head h2,
  .wf-cta h2 {
    font-size: 26px;
  }

  .wf-service-grid,
  .wf-detail-grid,
  .wf-detail-grid.three,
  .wf-direction-grid,
  .wf-expert-grid {
    grid-template-columns: 1fr;
  }

  .wf-expert-card:first-child {
    grid-column: auto;
  }

  .wf-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wf-flow-step:nth-child(3) {
    border-right: 1px solid var(--wf-line);
  }

  .wf-flow-step:nth-child(even) {
    border-right: 0;
  }

  .wf-flow-step:nth-child(-n + 4) {
    border-bottom: 1px solid var(--wf-line);
  }

  .wf-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .wf-cta .wf-actions {
    width: 100%;
  }

  .wf-profile-card {
    padding: 22px;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
  }

  .wf-profile-fields {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .mobile-site-menu-panel {
    right: auto;
    left: 50%;
    width: min(220px, calc(100vw - 32px));
    transform: translateX(-50%);
  }

  .site-brand img {
    width: 92px;
    height: 34px;
  }

  .site-actions .site-btn.primary {
    padding-right: 12px;
    padding-left: 12px;
  }

  .wf-hero-grid {
    padding-top: 32px;
    padding-bottom: 32px;
    gap: 20px;
  }

  .wf-hero-copy h1 {
    font-size: 32px;
  }

  .wf-hero-copy > p {
    margin-top: 14px;
    line-height: 1.65;
  }

  .wf-brand-line {
    margin-top: 12px;
    font-size: 13px;
  }

  .wf-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wf-actions .wf-btn {
    width: 100%;
  }

  .wf-hero .wf-actions {
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .wf-hero .wf-btn {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 13px;
  }

  .wf-entry-panel {
    padding: 20px;
  }

  .wf-entry-panel h2 {
    font-size: 22px;
  }

  .wf-entry-panel > p {
    margin: 8px 0 14px;
    line-height: 1.6;
  }

  .wf-entry-list {
    margin-bottom: 16px;
  }

  .wf-entry-list li {
    padding: 8px;
  }

  .wf-stat-strip,
  .wf-growth-grid {
    grid-template-columns: 1fr;
  }

  .wf-stat-item,
  .wf-stat-item:nth-child(2),
  .wf-growth-step,
  .wf-growth-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--wf-line);
  }

  .wf-stat-item:last-child,
  .wf-growth-step:last-child {
    border-bottom: 0;
  }

  .wf-flow,
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .wf-flow-step {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--wf-line);
  }

  .wf-flow-step:last-child {
    border-bottom: 0;
  }

  .wf-expert-card,
  .wf-profile-card {
    grid-template-columns: 1fr;
  }

  .wf-expert-photo {
    width: 104px;
  }

  .wf-profile-photo {
    max-width: 190px;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wf-btn {
    transition: none;
  }
}
