/* ============================================================
   VELAR OCEAN — style.css
   Aesthetic: Light minimalist · Sofia Sans Extra Condensed + Lato · Navy/Gold
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --navy:       #0B1829;
  --navy-2:     #142035;
  --navy-3:     #1D2F4A;
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --gold-pale:  #F5ECD5;
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --paper:      #F2EFE8;
  --ink:        #2A3548;
  --ink-mid:    #556070;
  --ink-light:  #8A96A8;
  --rule:       rgba(10, 24, 41, 0.10);
  --rule-gold:  rgba(201, 168, 76, 0.25);
  --tr:         0.24s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     4px;

  /* type scale */
  --display:    clamp(3.6rem, 8vw, 7rem);
  --h2:         clamp(2rem, 4vw, 3.2rem);
  --h3:         clamp(1.4rem, 2.5vw, 1.9rem);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Lang toggle ────────────────────────────────────────────── */
html[lang="ua"] .lang-en { display: none !important; }
html[lang="en"] .lang-ua { display: none !important; }

/* ── Bebas display ──────────────────────────────────────────── */
.display, h1, h2, h3, .bebas {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-weight: 400; /* <-- ИЗМЕНИ ЭТО */
  letter-spacing: 0.03em;
  line-height: 0.95;
}

/* ── Horizontal rule ────────────────────────────────────────── */
.rule-gold {
  display: block;
  width: 48px; height: 2px;
  background: var(--gold);
  border: none;
  flex-shrink: 0;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--tr);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(10,24,41,0.08);
}

.header-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.08em;
  color: var(--navy);
  text-decoration: none;
  display: flex; align-items: baseline; gap: 2px;
}
.logo em {
  font-style: normal;
  color: var(--gold);
}

/* Desktop nav */
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mid); text-decoration: none;
  transition: color var(--tr);
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  font-family: 'Sofia Sans Extra Condensed', sans-serif !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.12em !important;
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  transition: background var(--tr), color var(--tr) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* Lang buttons */
.lang-wrap {
  display: flex; align-items: center; gap: 6px;
  padding-left: 24px;
  border-left: 1px solid var(--rule);
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-light);
  transition: color var(--tr); padding: 2px;
}
.lang-btn.active { color: var(--gold); }

/* Mobile burger */
.burger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy);
  transition: all var(--tr);
}

/* --- ДОБАВИТЬ ЭТО ДЛЯ АНИМАЦИИ КРЕСТИКА --- */
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute; /* Заменили fixed на absolute */
  top: 72px; left: 0; right: 0; 
  height: calc(100vh - 72px); /* Заменили bottom: 0 на формулу высоты экрана */
  background: var(--white);
  padding: 32px 40px;
  border-top: 1px solid var(--rule);
  z-index: 199;
  flex-direction: column; gap: 0;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 2.2rem; letter-spacing: 0.04em;
  color: var(--navy); text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  transition: color var(--tr);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .m-cta {
  margin-top: 24px;
  background: var(--navy);
  color: var(--white) !important;
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: none;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding-top: 22px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column;
}

/* Thin gold vertical line — editorial detail */
.hero::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% + 280px);
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-light) 20%, var(--gold-light) 80%, transparent);
  opacity: 0.4;
  pointer-events: none;
}

.hero-body {
  flex: 1;
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.hero-left {
  padding: 80px 80px 80px 0;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--rule);
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow .rule-gold { width: 32px; }
.hero-eyebrow span {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-size: var(--display);
  color: var(--navy);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-lead {
  font-size: 1.05rem; color: var(--ink-mid);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 1rem; letter-spacing: 0.1em;
  text-decoration: none; border: none; cursor: pointer;
  padding: 14px 28px; border-radius: var(--radius);
  transition: all var(--tr);
}
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover {
  background: var(--gold); color: var(--navy);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy); color: var(--white);
}

/* Hero right — image fill */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 1s ease;
}
.hero-right:hover img { transform: scale(1.03); }

/* Gold overlay strip */
.hero-right::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

/* Hero bottom stats bar */
.hero-stats {
  background: var(--navy);
  padding: 0 40px;
}
.hero-stats-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex;
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-col {
  flex: 1; padding: 28px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 18px;
}
.stat-col:last-child { border-right: none; }
.stat-num-big {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 2.6rem; letter-spacing: 0.04em;
  color: var(--gold); line-height: 1;
  flex-shrink: 0;
}
.stat-desc {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* Certs bar */
.certs-bar {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 16px 40px;
}
.certs-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.certs-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-light);
  flex-shrink: 0;
}
.cert-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.cert-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── SECTION BASE ───────────────────────────────────────────── */
.section {
   padding: 60px 40px;
  max-width: 1320px; margin: 0 auto;
}
.section-full {
  padding: 60px 0;
  background: var(--off-white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section-full .section { padding-top: 0; padding-bottom: 0; }

.section-header {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 40px;
}
.section-num {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.14em;
  color: var(--gold); line-height: 1;
  padding-top: 4px; flex-shrink: 0;
}
.section-title-group { flex: 1; }
.section-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 8px;
}
.section-h2 {
  font-size: var(--h2);
  color: var(--navy);
  text-transform: uppercase;
  line-height: 0.95;
}
.section-lead {
  font-size: 1rem; color: var(--ink-mid);
  line-height: 1.75;
  max-width: 560px; margin-top: 16px;
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; display: block;
  filter: grayscale(10%);
}
/* Gold bottom rule on image */
.about-img-wrap::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--gold);
}
.about-badge {
  position: absolute; top: 24px; right: -20px;
  background: var(--navy); color: var(--white);
  padding: 20px 24px;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  text-align: center;
}
.about-badge b {
  display: block;
  font-size: 2.8rem; letter-spacing: 0.04em;
  color: var(--gold); line-height: 1;
}
.about-badge small {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.about-text p {
  font-size: 1rem; color: var(--ink-mid);
  line-height: 1.8; margin-bottom: 20px;
}
.about-text p strong { color: var(--navy); }

.checklist {
  list-style: none; margin: 32px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.93rem; color: var(--ink);
  font-weight: 400; line-height: 1.5;
}
.check-gold {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 2px; color: var(--gold);
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.service-item {
  background: var(--white);
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--tr);
  display: flex;
  flex-direction: column;
}
.service-item:hover { background: var(--off-white); }
.service-item:hover img { transform: scale(1.04); }

.service-item::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.service-item:hover::before { height: 100%; }

.service-num {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 3.5rem; letter-spacing: 0.04em;
  color: var(--paper); line-height: 1;
  margin-bottom: 20px;
  display: block;
  transition: color var(--tr);
}
.service-item:hover .service-num { color: var(--gold-pale); }

.service-title {
  font-size: var(--h3);
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-body {
  font-size: 0.93rem; color: var(--ink-mid);
  line-height: 1.75;
}
.service-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-top: auto; 
  padding-top: 24px;
}
.service-list li {
  font-size: 0.88rem; color: var(--ink-mid);
  display: flex; gap: 10px; align-items: flex-start;
}
.service-list li::before {
  content: '—';
  color: var(--gold); flex-shrink: 0; font-weight: 700;
}

/* ── VACANCIES ──────────────────────────────────────────────── */
.vacancies-list {
  display: flex; flex-direction: column; gap: 2px;
  border: 1px solid var(--rule);
}

.vac-row {
  display: grid;
  /* Убрали одну колонку, перераспределили ширину */
  grid-template-columns: 1.2fr 180px 160px 180px;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  transition: background var(--tr);
  align-items: center;
  text-decoration: none; color: inherit;
}
.vac-row:last-child { border-bottom: none; }
.vac-row:hover { background: var(--off-white); }
.vac-row:hover .vac-apply { color: var(--gold); }

.vac-header {
  grid-template-columns: 1.2fr 180px 160px 180px;
  background: var(--navy) !important;
  cursor: default;
}
.vac-header:hover { background: var(--navy) !important; }

.vac-cell {
  padding: 20px 28px;
  border-right: 1px solid var(--rule);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.01em;
}
.vac-cell:last-child { border-right: none; }

/* Header cells */
.vac-header .vac-cell {
  border-right-color: rgba(255,255,255,0.06);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); /* Сделали текст в шапке белым */
  padding: 14px 28px;
}

.vac-position {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.vac-title {
  font-family: 'Lato', sans-serif; /* Меняем на основной шрифт без засечек */
  font-weight: 900; /* Делаем максимально жирным, чтобы выделялось */
  font-size: 1.15rem; /* Lato шире, чем Bebas, поэтому размер чуть меньше */
  letter-spacing: 0.02em; 
  color: var(--navy);
  /* text-transform: uppercase; <-- Удали слеши по бокам этой строки, если хочешь, чтобы буквы были ТОЛЬКО ЗАГЛАВНЫМИ */
}
.vac-info {
  font-size: 0.88rem; color: var(--ink-mid); font-weight: 400;
}

.vac-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.62rem !important; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 2px;
}
.badge-hot { background: var(--gold-pale); color: #7A5C00; }
.badge-new { background: #EAF2FF; color: #1A4F99; }
.badge-open { background: var(--off-white); color: var(--ink-mid); }

.vac-salary { color: var(--navy); }

.vac-apply {
  font-family: 'Lato', sans-serif; /* Меняем на основной шрифт */
  font-weight: 700; /* Делаем жирным */
  font-size: 0.95rem; 
  letter-spacing: 0.02em;
  color: var(--navy); /* Сделал зарплату цветом navy, чтобы она лучше читалась */
  display: flex; align-items: center; justify-content: flex-end; gap: 6px;
  transition: color var(--tr);
}

/* ── Мобильная таблица превращается в Карточки ── */
@media (max-width: 900px) {
  .vacancies-scroll-wrap { overflow-x: visible; }
  .vacancies-list { 
    min-width: 100%; 
    border: none; 
    background: transparent; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
  }
  .vac-header { display: none !important; } /* Прячем шапку таблицы на телефонах */
  
  .vac-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; /* Было 12px */
    padding: 16px; /* Было 24px */
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    background: var(--white);
  }
  .vac-cell { padding: 0; border: none; }
  
  /* Должность и плашка занимают всю ширину сверху */
  .vac-cell:nth-child(1) {
    grid-column: span 2;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 16px;
    margin-bottom: 4px;
    justify-content: space-between; 
    display: flex; 
    align-items: center;
  }
  /* Зарплата занимает всю ширину снизу */
  .vac-cell:nth-child(4) { 
    grid-column: span 2; 
    justify-content: flex-end; 
    margin-top: 8px; 
  }
}

/* ── APPLY FORM ─────────────────────────────────────────────── */
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border: 1px solid var(--rule);
}

.apply-left {
  background: var(--navy);
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.apply-intro-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: block;
}
.apply-intro-h {
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}
.apply-intro-p {
  font-size: 0.93rem; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-bottom: 40px;
}

.trust-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 16px;
}
.trust-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 6px;
}

.apply-right {
  background: var(--white);
  padding: 64px 56px;
}

.form-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mid);
}
.form-input {
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem; color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--tr), background var(--tr);
  width: 100%;
}
.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
}
textarea.form-input { resize: vertical; min-height: 90px; }

/* Drop zone */
#drop-zone {
  border: 1.5px dashed var(--rule);
  border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  cursor: pointer; background: var(--off-white);
  transition: all var(--tr);
}
#drop-zone:hover, #drop-zone.dz-on {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.btn-submit {
  width: 100%; margin-top: 8px;
  font-size: 1.1rem; padding: 16px 28px;
  justify-content: center;
  background: var(--navy); color: var(--white);
}
.btn-submit:hover { background: var(--gold); color: var(--navy); }

/* ── REQUEST CREW ───────────────────────────────────────────── */
.request-section {
  background: var(--navy);
  padding: 30px 40px;
}
.request-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px;
  align-items: start;
}
.request-left .section-tag { color: var(--gold-light); }
.request-left .section-h2 { color: var(--white); }
.request-left .section-lead { color: rgba(255,255,255,0.4); }

.req-form { display: flex; flex-direction: column; gap: 14px; }
.req-form .form-label { color: rgba(255,255,255,0.35); }
.req-form .form-input {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}
.req-form .form-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.req-form .form-input::placeholder { color: rgba(255,255,255,0.2); }

.btn-gold {
  background: var(--gold); color: var(--navy);
  width: 100%; justify-content: center;
  font-size: 1.05rem; padding: 15px 28px;
}
.btn-gold:hover { background: var(--gold-light); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--rule);
}

.footer-top {
  max-width: 1320px; margin: 0 auto;
  padding: 72px 40px 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  border-bottom: 1px solid var(--rule);
}

.footer-brand { padding-right: 32px; border-right: 1px solid var(--rule); }
.footer-logo {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.08em;
  color: var(--navy); text-decoration: none;
  display: inline-block; margin-bottom: 18px;
}
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-desc {
  font-size: 0.88rem; color: var(--ink-light);
  line-height: 1.75; margin-bottom: 24px;
}
.socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  color: var(--ink-mid); text-decoration: none;
  transition: all var(--tr);
}
.social-icon:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.footer-col-title {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 20px; display: block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem; color: var(--ink-mid);
  text-decoration: none; transition: color var(--tr);
}
.footer-col a:hover { color: var(--navy); }
.footer-contact-val {
  font-size: 0.88rem; color: var(--ink-mid); line-height: 1.65;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-contact-val a {
  color: var(--gold); text-decoration: none;
  transition: color var(--tr);
}
.footer-contact-val a:hover { color: var(--navy); }

.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem; color: var(--ink-light); letter-spacing: 0.04em;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-left { padding: 60px 60px 60px 0; }
  .about-grid { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { border-right: none; padding-right: 0; }
}

@media (max-width: 900px) {
	
section[style*="padding: 30px 0"] {
    padding: 15px 0 !important;
  }
  :root { --display: 3rem; --h2: 2rem; }

  .header-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero-body {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .hero-left {
    padding: 32px 16px;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .hero::before { display: none; }
  .hero-right { height: 300px; }
  .hero-right img { position: relative; width: 100%; height: 300px; }

  .hero-stats-inner { flex-direction: column; }
  .stat-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-col:last-child { border-bottom: none; }

  .certs-bar { padding: 14px 20px; }

  .section { padding: 32px 16px; }
  .request-section { padding: 32px 16px; }

  .about-grid { 
    grid-template-columns: 1fr; /* Переносит текст под фото */
    gap: 32px; 
  }
  .about-badge { right: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .service-item { padding: 24px 16px; }

  .apply-grid { grid-template-columns: 1fr; }
  .apply-left { padding: 48px 24px; }
  .apply-right { padding: 48px 24px; }

  .request-inner { grid-template-columns: 1fr; gap: 40px; }
	.form-panel { padding: 32px 16px; }
  .form-grid-2 { gap: 12px; }

  .apply-left, .apply-right { padding: 32px 16px; }
  .section-header { margin-bottom: 24px; }
  .section-num { display: none; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; padding: 32px 16px 24px; }
  .footer-bottom { padding: 16px; }

  .form-grid-2 { grid-template-columns: 1fr; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-1 { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.05s both; }
.animate-2 { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.18s both; }
.animate-3 { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.31s both; }
.animate-4 { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.44s both; }

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 40px var(--off-white) inset !important;
}

/* ── Golden Star Marine logo overrides ──────────────────────── */
.logo {
  align-items: center;
  gap: 10px;
  font-size: inherit;
  letter-spacing: inherit;
}

.footer-logo {
  align-items: center;
}

/* ── Секция Форм (Request/Apply) ────────────────────────────── */
.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 8px; /* Скругляем края карточки */
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10, 24, 41, 0.08); /* Мягкая тень */
}
.form-panel {
  padding: 64px 56px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.form-panel-dark {
  background: var(--navy);
}
.form-panel-light {
  background: var(--white);
}

/* Растягиваем формы к нижнему краю */
.form-stretcher {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1; 
  margin-top: 16px;
}

/* Логика выравнивания нижних полей и кнопок */
.field-stretch {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.textarea-stretch {
  flex: 1;
  resize: none;
  min-height: 120px;
}
.dropzone-stretch {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}
.btn-align-bottom {
  margin-top: auto; /* Прижимаем кнопки жестко к низу */
}

/* Цвета полей в темной теме */
.form-panel-dark .form-label {
  color: rgba(255,255,255,0.85);
}

/* Мобильная адаптация */
@media (max-width: 900px) {
  .forms-grid {
    grid-template-columns: 1fr;
  }
  .form-panel {
    padding: 48px 24px;
  }
  .form-panel-light {
    border-top: 1px solid var(--rule);
  }
  /* На мобильных фиксируем высоту, чтобы не было гигантских пустот */
  .textarea-stretch, .dropzone-stretch {
    flex: none;
  }
}