/* ============================================================
   JETEDCO WHAT WE DO PAGE — Styles
   ============================================================ */

/* --- Hero --- */
.wwd-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.wwd-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--sky-start) 0%, var(--sky-end) 60%, var(--white) 100%);
  z-index: 0;
}
.wwd-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 32px 80px;
  max-width: 820px;
}
.wwd-hero-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-top: 24px;
  max-width: 780px;
}

/* --- Intro --- */
.wwd-intro {
  padding: 100px 0 80px;
}
.wwd-intro-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.wwd-intro-content p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}
.wwd-intro-highlight {
  font-weight: 600;
  color: var(--black) !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
  position: relative;
  padding-top: 24px;
}
.wwd-intro-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* --- What Makes JetEdCo Different --- */
.wwd-different {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.wwd-different::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(86,145,218,0.08);
  pointer-events: none;
}
.wwd-different-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.wwd-different .hp-label--accent {
  color: var(--accent-light);
}
.wwd-different .hp-label-dot {
  background: var(--accent);
}
.wwd-section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-top: 20px;
}
.wwd-different .wwd-section-title {
  color: var(--white);
}
.wwd-different-right p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}
.wwd-different-emphasis {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 600;
}

/* --- Safety Card --- */
.wwd-safety {
  padding: 80px 0 100px;
}
.wwd-safety-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, rgba(86,145,218,0.06) 0%, rgba(204,217,245,0.15) 100%);
  border: 1px solid rgba(86,145,218,0.12);
  border-radius: 20px;
  padding: 48px 56px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wwd-safety-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(86,145,218,0.1);
}
.wwd-safety-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 16px;
}
.wwd-safety-content {
  flex: 1;
}
.wwd-safety-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.wwd-safety-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 10px;
}
.wwd-safety-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}
.wwd-safety-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}
.wwd-safety-cta:hover {
  background: var(--gray-700);
  transform: translateY(-1px);
}

/* --- Why JetEdCo --- */
.wwd-why {
  padding: 100px 0 120px;
  background: var(--gray-50);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.wwd-why-header {
  text-align: center;
  margin-bottom: 64px;
}
.wwd-why-header .hp-label-dot {
  margin: 0 auto;
}
.wwd-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.wwd-why-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wwd-why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.wwd-why-item:hover::before {
  transform: scaleY(1);
}
.wwd-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.wwd-why-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--accent);
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 24px;
}
.wwd-why-item h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 12px;
}
.wwd-why-item p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .wwd-different-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wwd-safety-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }
  .wwd-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .wwd-hero-content {
    padding: 120px 20px 60px;
  }
  .wwd-safety-card {
    padding: 32px 24px;
    gap: 24px;
  }
}
