/* Header */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e5e5;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  border-radius: 0.5rem;
  object-fit: contain;
  background-color: transparent; /* remove if actual logo has bg */
}

.logo-tagline {
  font-size: 1.0rem;
  color: #666666;
  display: none;
  margin-left: 2.5rem; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  position: relative;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  color: #666666;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #067df4;
}

.nav-link.active {
  color: #067df4;
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background-color: #067df4;
}

/* Push content below fixed header */
.page-wrapper {
  padding-top: 4.5rem;
}

/* Mobile nav (simple: always show links, just stack) */
.nav-toggle {
  display: none; /* no JS, so hide button and keep links visible */
}

@media (min-width: 640px) {
  .logo-tagline {
    display: inline-block;
  }
}

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
}

body {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrapper {
  min-height: 100vh;
}

/* Containers */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-white {
  background-color: #ffffff;
}

.section-grey {
  background-color: #f5f5f5;
}

.section-cta {
  background: linear-gradient(135deg, #067df4, #0558b8);
  color: #ffffff;
  overflow: hidden;
}

.section-hero-narrow {
  padding: 4.5rem 0 4rem;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, #067df4, #0558b8, #067df4);
  color: #ffffff;
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  padding: 6rem 0 7rem;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.hero-highlight {
  color: #e6f3ff;
}

.hero-subtitle {
  max-width: 32rem;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5rem;
  background: linear-gradient(to top, #ffffff, transparent);
}

/* Background pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMtOS45NDEgMC0xOCA4LjA1OS0xOCAxOHM4LjA1OSAxOCAxOCAxOCAxOC04LjA1OSAxOC0xOC04LjA1OS0xOC0xOC0xOHoiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLW9wYWNpdHk9Ii4wNSIvPjwvZz48L3N2Zz4=");
  pointer-events: none;
}

/* Pills / badges */
.hero-badge,
.pill,
.pill-blue,
.pill-translucent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.3rem 1.2rem;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.pill-blue {
  border: none;
  background-color: #e6f3ff;
  color: #067df4;
}

.pill-translucent {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.12);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease,
              box-shadow 0.15s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: #067df4;
  color: #ffffff;
  border-color: #067df4;
}

.btn-primary:hover {
  background-color: #0558b8;
}

.btn-light {
  background-color: #ffffff;
  color: #067df4;
  border-color: #ffffff;
}

.btn-light:hover {
  background-color: #e6f3ff;
  transform: translateY(-1px);
}

.btn-outline-light {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.btn-arrow {
  margin-left: 0.4rem;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Typography */
h1, h2, h3, h4, h5 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.section-header h2 {
  font-size: 1.8rem;
}

.section-subtitle {
  max-width: 32rem;
  margin: 0.3rem auto 0;
  color: #666666;
  font-size: 1.05rem;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.9);
}

.text-muted {
  color: #666666;
}

.text-muted-light {
  color: rgba(255, 255, 255, 0.9);
}

.text-small {
  font-size: 0.85rem;
  color: #666666;
}

.strong {
  font-weight: 600;
}

/* Layout helpers */
.center {
  text-align: center;
}

.narrow {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

.align-center {
  align-items: center;
}

.order-1-lg {
  order: 1;
}

.order-2-lg {
  order: 2;
}

/* Cards */
.card {
  border-radius: 1rem;
  background-color: #ffffff;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.card-light-blue {
  background-color: #e6f3ff;
  border-color: rgba(6, 125, 244, 0.2);
}

.card-blue {
  background: linear-gradient(135deg, #067df4, #0558b8);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.card-blue .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.card-blue .value {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.card-blue .card-note {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.card-grey {
  background-color: #f5f5f5;
  border-color: #e0e0e0;
}

.card-white {
  background-color: #ffffff;
}

.card-gradient-blue {
  background: linear-gradient(135deg, #067df4, #0558b8);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.card-gradient-blue-alt {
  background: linear-gradient(135deg, #0558b8, #067df4);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.card-translucent {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.card-translucent-soft {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Icon boxes */
.icon-box {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 0.9rem;
  background-color: #e6f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-text {
  font-size: 1.4rem;
}

.icon-text-small {
  font-size: 0.75rem;
  font-weight: 600;
}

.icon-text-large {
  font-size: 1.5rem;
}

/* Service cards */
.service-card {
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.service-card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  border-color: #067df4;
  transform: translateY(-3px);
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-icon-circle {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background-color: #067df4;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.feature-icon-square {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  background-color: #e6f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card {
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.step-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.step-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background-color: #067df4;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

/* Durations */
.duration-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.duration-item {
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.duration-item.highlight {
  background-color: rgba(255, 255, 255, 0.25);
}

.duration-item .label {
  margin: 0;
}

.duration-item .value {
  margin: 0.15rem 0 0;
}

/* Lists */
.bullet-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.bullet-list li {
  margin-bottom: 0.4rem;
}

/* Timeline (Career Pilot) */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.timeline-item {
  position: relative;
}

.timeline-connector {
  display: none;
}

.stage-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.stage-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.gradient-blue {
  background: linear-gradient(135deg, #067df4, #0558b8);
}

.gradient-blue-alt {
  background: linear-gradient(135deg, #0558b8, #067df4);
}

.stage-number-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background-color: #e6f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #067df4;
  font-weight: 700;
}

/* Checklist */
.checklist {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 1.1rem;
}

.checklist-item::before {
  content: "✔";
  font-size: 0.8rem;
  position: absolute;
  left: 0.05rem;
  top: 0.1rem;
}

/* Add-on badge */
.addon-badge {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background-color: #067df4;
  color: #ffffff;
}

/* Emojis */
.emoji-large {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

/* Utility */
.gradient-blue .icon-text-large,
.gradient-blue-alt .icon-text-large {
  color: #ffffff;
}

/* Responsive */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .order-1-lg {
    order: 0;
  }

  .order-2-lg {
    order: 0;
  }

  .timeline {
    gap: 4rem;
  }

  .timeline-item {
    padding-bottom: 3.5rem;
  }

  .timeline-item:last-child {
    padding-bottom: 0;
  }

  .timeline-connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 2px;
    height: 3rem;
    background: linear-gradient(to bottom, #067df4, transparent);
    display: block;
  }

  .reverse-lg {
    direction: rtl;
  }

  .reverse-lg > * {
    direction: ltr;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero-inner {
    padding-top: 5rem;
    padding-bottom: 5.5rem;
  }
}

/* Footer */
.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  margin-top: 3rem;
}

.footer-inner {
  padding: 3rem 0 2rem;
  display: grid;
  gap: 2rem;
}

.footer-col {
  font-size: 0.9rem;
}

.footer-brand {
  max-width: 26rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-logo {
  height: 2.2rem;
  width: auto;
  border-radius: 0.4rem;
  object-fit: contain;
  background-color: transparent;
}

.footer-text {
  color: #999999;
  margin: 0 0 1rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.6rem;
  background-color: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid transparent;
  font-size: 1rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.footer-social-btn:hover {
  background-color: #067df4;
  border-color: #067df4;
  transform: translateY(-2px);
}

.footer-heading {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-link {
  color: #999999;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #067df4;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-bottom-text {
  margin: 0;
  color: #999999;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
  }
}
