.focus-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 46px;
  background:
    radial-gradient(circle at 12% 8%, rgba(0,168,168,0.10), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(244,123,32,0.08), transparent 28%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.focus-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(0,51,102,0.12), transparent);
}

.focus-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.focus-eyebrow {
  margin-bottom: 14px;
  color: #00a8a8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.focus-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #00264d;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 850;
}

.focus-hero-text {
  max-width: 730px;
  margin-top: 18px;
  color: #506273;
  font-size: 1.02rem;
  line-height: 1.75;
}

.focus-zigzag-section {
  padding: 58px 24px 76px;
  background:
    radial-gradient(circle at top left, rgba(0,168,168,0.04), transparent 26%),
    radial-gradient(circle at bottom right, rgba(149,184,77,0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.focus-zigzag-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.focus-zigzag-row {
  position: relative;
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 66px;
  align-items: center;
}

.focus-zigzag-row.reverse {
  grid-template-columns: minmax(0, 1fr) 500px;
}

.focus-zigzag-row::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -35px;
  width: 86%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(0,51,102,0.10), transparent);
}

.focus-zigzag-row:last-child::after {
  display: none;
}

.focus-zigzag-image {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.focus-zigzag-image::before {
  content: "";
  position: absolute;
  left: -12px;
  bottom: -12px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(0,168,168,0.08), rgba(149,184,77,0.10));
}

.focus-zigzag-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(9,44,76,0.13);
}

#skill-development {
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 78px;
}

#skill-development .focus-zigzag-image {
  max-width: 380px;
  justify-self: center;
}

#skill-development .focus-zigzag-image img {
  height: 360px;
  object-position: 26% center;
}

.focus-zigzag-text {
  position: relative;
  max-width: 590px;
}

.focus-zigzag-row.reverse .focus-zigzag-text {
  justify-self: end;
}

.focus-number {
  display: block;
  margin-bottom: 8px;
  color: rgba(0,51,102,0.20);
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.85;
  font-weight: 850;
  letter-spacing: -0.08em;
}

.focus-zigzag-text h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 2.6vw, 2.55rem);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.focus-zigzag-text h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.75;
}

.focus-zigzag-text p {
  color: #506273;
  font-size: 1.01rem;
  line-height: 1.78;
}

.blue-text { color: #4f7dbb; }
.red-text { color: #c7524c; }
.green-text { color: #95b84d; }
.purple-text { color: #7d63a8; }

.highlight-box {
  margin: 18px 0 24px;
  padding: 16px 20px;
  border-left: 5px solid currentColor;
  border-radius: 16px;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(9,44,76,0.06);
}

.highlight-box strong {
  font-weight: 850;
}

.highlight-box.blue {
  color: #4f7dbb;
  background: rgba(79,125,187,0.10);
}

.highlight-box.red {
  color: #c7524c;
  background: rgba(199,82,76,0.10);
}

.highlight-box.green {
  color: #7f9e37;
  background: rgba(149,184,77,0.12);
}

.highlight-box.purple {
  color: #7d63a8;
  background: rgba(125,99,168,0.10);
}

.faq-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.58);
}

.faq-modal.show {
  display: flex;
}

.faq-content {
  position: relative;
  width: min(900px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px 24px 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(0,0,0,0.18);
}

.faq-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #003366;
  font-size: 30px;
  cursor: pointer;
}

.faq-modal-title {
  margin-bottom: 18px;
  padding-right: 36px;
  color: #00264d;
  font-size: 2rem;
  font-weight: 800;
}

.faq-item {
  padding: 18px;
  border: 1px solid rgba(0,51,102,0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-question {
  margin-bottom: 8px;
  color: #003366;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
}

.faq-answer {
  color: #506273;
  font-size: 0.97rem;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .focus-zigzag-row,
  .focus-zigzag-row.reverse {
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 44px;
  }

  .focus-zigzag-row.reverse {
    grid-template-columns: minmax(0, 1fr) 430px;
  }

  #skill-development {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 50px;
  }

  .focus-zigzag-image {
    max-width: 430px;
  }

  .focus-zigzag-image img {
    height: 315px;
  }
}

@media (max-width: 768px) {
  .focus-hero {
    padding: 42px 14px 30px;
  }

  .focus-hero h1 {
    font-size: clamp(1.85rem, 12vw, 2.45rem);
    line-height: 1.02;
  }

  .focus-hero-text {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .focus-zigzag-section {
    padding: 30px 12px 46px;
  }

  .focus-zigzag-container {
    gap: 42px;
  }

  .focus-zigzag-row,
  .focus-zigzag-row.reverse,
  #skill-development {
    display: grid;
    grid-template-columns: 95px 1fr;
    gap: 13px;
    align-items: start;
  }

  .focus-zigzag-row.reverse {
    grid-template-columns: 95px 1fr;
  }

  .focus-zigzag-row.reverse .focus-zigzag-image {
    order: 1;
  }

  .focus-zigzag-row.reverse .focus-zigzag-text {
    order: 2;
    justify-self: start;
  }

  .focus-zigzag-image,
  #skill-development .focus-zigzag-image {
    width: 95px;
    max-width: 95px;
    justify-self: start;
  }

  .focus-zigzag-image::before {
    display: none;
  }

  .focus-zigzag-image img,
  #skill-development .focus-zigzag-image img {
    width: 95px;
    height: 95px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  #skill-development .focus-zigzag-image img {
    object-position: 26% center;
  }

  .focus-zigzag-text {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .focus-number {
    font-size: 1.45rem;
    line-height: 1;
    margin-bottom: 4px;
  }

  .focus-zigzag-text h2 {
    margin-bottom: 7px;
    font-size: 1.04rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .focus-zigzag-text h2::after {
    width: 30px;
    height: 2px;
    margin-top: 7px;
  }

  .focus-zigzag-text p {
    font-size: 0.80rem;
    line-height: 1.48;
  }

  .highlight-box {
    margin: 8px 0 10px;
    padding: 9px 11px;
    border-left-width: 4px;
    border-radius: 12px;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .focus-zigzag-row::after {
    width: 100%;
    bottom: -21px;
  }

  .faq-content {
    width: calc(100vw - 24px);
    padding: 22px 16px 18px;
    border-radius: 18px;
  }

  .faq-modal-title {
    font-size: 1.40rem;
  }
}

@media (max-width: 390px) {
  .focus-zigzag-row,
  .focus-zigzag-row.reverse,
  #skill-development {
    grid-template-columns: 82px 1fr;
    gap: 11px;
  }

  .focus-zigzag-image,
  #skill-development .focus-zigzag-image {
    width: 82px;
    max-width: 82px;
  }

  .focus-zigzag-image img,
  #skill-development .focus-zigzag-image img {
    width: 82px;
    height: 82px;
    border-radius: 10px;
  }

  .focus-zigzag-text h2 {
    font-size: 0.96rem;
  }

  .focus-zigzag-text p {
    font-size: 0.76rem;
  }

  .highlight-box {
    font-size: 0.72rem;
    padding: 8px 10px;
  }
}
.ultra-footer{background:linear-gradient(135deg,#001f3f,#003366);color:#fff;padding:14px 20px}
.ultra-footer-inner{max-width:1200px;margin:auto}
.ultra-footer-brand{font-size:.95rem;font-weight:800;margin-bottom:10px}
.ultra-footer-nav{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:10px}
.ultra-footer-nav a{color:#fff;text-decoration:none;font-size:.8rem;font-weight:600}
.ultra-footer-contact{display:flex;flex-wrap:wrap;gap:8px 18px;font-size:.73rem;color:rgba(255,255,255,.78);margin-bottom:10px}
.ultra-footer-bottom{display:flex;justify-content:space-between;gap:10px;padding-top:8px;border-top:1px solid rgba(255,255,255,.15);font-size:.67rem;color:rgba(255,255,255,.68)}
@media(max-width:768px){.ultra-footer{padding:10px 14px}.ultra-footer-brand{font-size:.82rem}.ultra-footer-nav{gap:8px 12px}.ultra-footer-nav a{font-size:.68rem}.ultra-footer-contact{flex-direction:column;gap:3px;font-size:.63rem}.ultra-footer-bottom{flex-direction:column;align-items:flex-start;gap:2px;font-size:.6rem}}