*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
}
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: saturate(1.5) blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 10;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav a {
  color: #0f172a;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 500;
}
.logo {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero {
  background: linear-gradient(160deg, #eef2ff 0%, #fff 60%);  padding: 96px 0 72px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.hero p {
  font-size: clamp(16px, 2.4vw, 20px);
  color: #334155;
  margin: 0 0 28px;
}
.cta {
  display: inline-block;
  padding: 12px 20px;
  background: #4f46e5;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(79,70,229,0.25);
}
.features {
  padding: 64px 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px;
  background: #fff;
}
.about, .contact, .apply {
  padding: 64px 0;
  background: #f8fafc;
}
.site-footer {
  border-top: 1px solid #e2e8f0;
  padding: 24px 0;
  color: #475569;
  font-size: 14px;
  text-align: center;
}
 
#contact .contact-form {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}
.contact-form input, .contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
}
.contact-form button {
  padding: 12px 16px;
  border: 0;
  border-radius: 10px;
  background: #0ea5e9;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.apply-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.apply-btn {
  padding: 12px 16px;
  border: 0;
  border-radius: 10px;
  background: #a8a29e;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.apply-btn[disabled] {
  opacity: 0.8;
  cursor: not-allowed;
}
.apply-notice {
  color: #475569;
  font-weight: 600;
}

.pdf-section {
  padding: 64px 0;
}
.pdf-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0 16px;
}
.open-btn {
  padding: 12px 16px;
  background: #1f2937;
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.pdf-frame {
  width: 100%;
  height: min(80vh, 900px);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.journey {
  padding: 64px 0;
  background: #fff;
}
.journey-figure {
  margin: 12px auto 0;
  width: min(1200px, 96%);
}
.journey-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(2,6,23,0.08);
}
.journey-figure figcaption {
  text-align: center;
  color: #475569;
  font-size: 14px;
  margin-top: 8px;
}
