@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Regular.woff2') format('woff2'),
       url('assets/fonts/Inter-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-SemiBold.woff2') format('woff2'),
       url('assets/fonts/Inter-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Bold.woff2') format('woff2'),
       url('assets/fonts/Inter-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PT Sans Narrow';
  src: url('assets/fonts/PTSansNarrow-Bold.woff2') format('woff2'),
       url('assets/fonts/PTSansNarrow-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #04121d;
  --bg-darker: #020b13;
  --bg-soft: #edf2f4;
  --text-main: #0a1822;
  --text-soft: #55636f;
  --line: #d5dee3;
  --accent: #09c1aa;
  --accent-strong: #05b29c;
  --white: #ffffff;
  --card-shadow: 0 22px 60px rgba(4, 18, 29, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text-main);
  background: var(--bg-soft);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  background: linear-gradient(180deg, #04111b 0%, #03101a 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
}
.header-logo {
  width: min(345px, 78vw);
  object-fit: contain;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(9,193,170,0.18), transparent 28%),
    linear-gradient(135deg, #03101a 0%, #051826 56%, #03111b 100%);
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  min-height: 670px;
  padding: 56px 0 72px;
}
.hero-copy {
  max-width: 590px;
  color: var(--white);
}
.eyebrow,
.section-tag {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.hero-copy h1 {
  margin: 0;
  font-family: 'PT Sans Narrow', 'Arial Narrow', Arial, sans-serif;
  line-height: 0.9;
  text-transform: uppercase;
}
.hero-copy .line-1,
.hero-copy .line-2 {
  display: block;
  font-size: clamp(72px, 10vw, 112px);
}
.hero-copy .line-1 { color: var(--white); }
.hero-copy .line-2 { color: var(--accent); }
.hero-description {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: 22px;
  color: rgba(255,255,255,0.95);
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.role-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(9,193,170,0.34);
  backdrop-filter: blur(6px);
}
.role-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(9,193,170,0.09);
  color: var(--accent);
  font-size: 25px;
  border: 1px solid rgba(9,193,170,0.42);
}
.role-card h2 {
  margin: 2px 0 4px;
  font-size: 22px;
  line-height: 1.22;
  color: var(--white);
}
.role-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}
.hero-visual { display: flex; justify-content: flex-end; }
.visual-frame {
  width: min(560px, 100%);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 70px rgba(0,0,0,0.34);
  background: #08131d;
}
.hero-image {
  width: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 63% center;
}

.application-section { padding: 78px 0 86px; }
.application-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 30px;
  align-items: stretch;
}
.card {
  background: var(--white);
  border: 1px solid rgba(9,23,35,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 40px;
}
.info-panel h2,
.form-panel h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.08;
}
.lead {
  margin: 18px 0 0;
  font-size: 18px;
  color: var(--text-soft);
}
.advantages-list {
  margin-top: 32px;
  display: grid;
  gap: 24px;
}
.advantage-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.number-badge {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #048f7d;
  background: #e2f9f4;
  border: 1px solid #d0efe8;
  font-weight: 700;
}
.advantage-item h3 {
  margin: 2px 0 4px;
  font-size: 22px;
  line-height: 1.24;
}
.advantage-item p {
  margin: 0;
  color: var(--text-soft);
}

.form-panel { display: flex; flex-direction: column; }
.form-panel h2 { margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.field-group label {
  font-size: 15px;
  font-weight: 700;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 16px 18px;
  color: var(--text-main);
  background: #fbfcfd;
  border: 1px solid #cfd8de;
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: #8b96a0; }
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 5px rgba(9,193,170,0.12);
  background: var(--white);
}
.field-group textarea {
  resize: vertical;
  min-height: 170px;
}
.submit-button {
  width: 100%;
  margin-top: 10px;
  padding: 18px 20px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(90deg, #049a88 0%, #10c6b0 100%);
  box-shadow: 0 16px 30px rgba(9,193,170,0.18);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
}
.submit-button:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}
.submit-button:disabled {
  opacity: .75;
  cursor: wait;
  transform: none;
}
.privacy-text {
  margin: 14px 0 0;
  font-size: 13px;
  color: #6b7782;
  text-align: center;
}
.form-status {
  min-height: 24px;
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.form-status.success { color: #047363; }
.form-status.error { color: #b73131; }
.local-notice {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff8e8;
  color: #946200;
  text-align: center;
  font-size: 13px;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  background: linear-gradient(180deg, #04121e 0%, #020c15 100%);
  color: rgba(255,255,255,0.92);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
}
.footer-inner p {
  margin: 0;
  font-size: 15px;
}
.footer-map {
  width: 100%;
  height: 260px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1100px) {
  .hero-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 30px;
    min-height: auto;
    padding-top: 44px;
  }
  .hero-copy,
  .hero-visual {
    max-width: 760px;
  }
  .hero-visual {
    justify-content: flex-start;
  }
  .hero-image { min-height: 500px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1240px); }
  .header-inner {
    min-height: 88px;
    padding: 14px 0;
  }
  .header-logo { width: min(280px, 78vw); }
  .hero-grid { padding: 34px 0 46px; }
  .hero-description { font-size: 18px; }
  .roles-grid,
  .form-row { grid-template-columns: 1fr; }
  .visual-frame { border-radius: 22px; }
  .hero-image {
    min-height: 390px;
    object-position: center top;
  }
  .application-section { padding: 46px 0 56px; }
  .card {
    padding: 26px 18px;
    border-radius: 20px;
  }
  .info-panel h2,
  .form-panel h2 { font-size: 31px; }
  .advantage-item h3 { font-size: 19px; }
  .footer-inner {
    min-height: auto;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 22px 0;
  }
}
