/* ===== Variables ===== */
:root {
  --navy: #1e293b;
  --navy-light: #334155;
  --navy-mid: #475569;
  --gold: #06b6d4;
  --gold-light: #67e8f9;
  --gold-dark: #0891b2;
  --accent-warm: #f97316;
  --accent-warm-light: #fb923c;
  --red-accent: #ef4444;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #334155;
  --shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.06);
  --shadow-md: 0 8px 30px rgba(30, 41, 59, 0.1);
  --shadow-lg: 0 20px 60px rgba(30, 41, 59, 0.12);
  --shadow-gold: 0 8px 30px rgba(6, 182, 212, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
}
.btn--outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  width: auto;
  transition: opacity var(--transition), height var(--transition), filter var(--transition);
}
.logo__img--hero {
  display: block;
  height: 72px;
  opacity: 0.82;
  filter: brightness(1.05);
}
.logo__img--bar {
  display: none;
  height: 46px;
  opacity: 1;
}
.header.scrolled .logo__img--hero {
  display: none;
}
.header.scrolled .logo__img--bar {
  display: block;
  height: 44px;
}

.nav-desktop {
  display: flex;
  gap: 32px;
}
.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
  position: relative;
}
.header.scrolled .nav-desktop a { color: var(--gray-600); }
.nav-desktop a:hover { color: var(--gold-light); }
.header.scrolled .nav-desktop a:hover { color: var(--gold-dark); }
.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-desktop a:hover::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.2);
}
.header.scrolled .lang-switch {
  background: var(--gray-100);
  border-color: var(--gray-200);
}
.lang-switch button {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.header.scrolled .lang-switch button { color: var(--gray-400); }
.lang-switch button.active {
  background: var(--gold);
  color: var(--white);
}
.header.scrolled .lang-switch button.active {
  background: var(--gold-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.header.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 16px;
  transform: translateY(-120%);
  transition: transform var(--transition);
  z-index: 999;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--navy);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(6,182,212,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(51,65,85,0.6) 0%, transparent 50%),
    linear-gradient(160deg, #0f172a 0%, var(--navy) 50%, #0c1222 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(6,182,212,0.15);
  top: -100px;
  right: -100px;
}
.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(249,115,22,0.1);
  bottom: 10%;
  left: -80px;
  animation-delay: -4s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(6,182,212,0.15);
  border: 1px solid rgba(6,182,212,0.35);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__visual {
  position: relative;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero__card--main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero__card--main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero__card-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(6,182,212,0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__card-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}
.hero__card--float {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.hero__stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 4px;
  display: block;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Stats ===== */
.stats {
  background: var(--white);
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gray-50); }
.stat-item strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.stat-item span {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}
.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 1.0625rem;
  color: var(--gray-400);
}

/* ===== Jobs ===== */
.jobs { background: var(--gray-50); }
.jobs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.job-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6,182,212,0.35);
}
.job-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.job-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.job-card:hover .job-card__image img { transform: scale(1.08); }
.job-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.75) 0%, transparent 60%);
}
.job-card__salary {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-light) 100%);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
}
.job-card__salary small {
  display: block;
  font-weight: 500;
  font-size: 0.6875rem;
  opacity: 0.8;
}
.job-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.job-card__roles {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.job-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.job-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-400);
  flex: 1;
  margin-bottom: 20px;
}
.job-card__cta {
  font-weight: 600;
  color: var(--gold-dark);
  transition: var(--transition);
  align-self: flex-start;
}
.job-card__cta:hover { color: var(--navy); transform: translateX(4px); }

/* ===== Benefits ===== */
.benefits {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.benefits__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(6,182,212,0.12) 0%, transparent 60%);
}
.benefits .section__title { color: var(--white); }
.benefits .section__subtitle { color: rgba(255,255,255,0.6); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(6,182,212,0.45);
  transform: translateY(-4px);
}
.benefit-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.benefit-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1.0625rem;
}
.about__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}
.about__meta-item span {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.about__meta-item strong {
  font-size: 1rem;
  color: var(--navy);
}
.about__meta-item--wide { grid-column: 1 / -1; }

.about__visual { position: relative; }
.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about__card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--gray-100);
}
.about__logo { width: 64px; height: 64px; object-fit: contain; }
.about__card p {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.125rem;
}
.legal { padding: 60px 0; background: var(--gray-50); }
.legal__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.legal__box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
}
.legal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.legal__item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.legal__item p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ===== Contact ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.social-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.social-btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.social-btn--whatsapp:hover { background: #1fb855; transform: translateX(4px); }
.social-btn--telegram {
  background: #229ED9;
  color: var(--white);
  border-color: #229ED9;
}
.social-btn--telegram:hover { background: #1a8bc4; transform: translateX(4px); }
.social-btn--facebook {
  background: #1877F2;
  color: var(--white);
  border-color: #1877F2;
}
.social-btn--facebook:hover { background: #1464d8; transform: translateX(4px); }
.social-btn--email {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.social-btn--email:hover { background: var(--navy-light); transform: translateX(4px); }

.contact__addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.contact__addresses strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.contact__addresses p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact__form {
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}
.contact__form-note {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  padding: 48px 0;
  color: rgba(255,255,255,0.6);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.footer__logo {
  height: 80px;
  width: auto;
  border-radius: var(--radius);
}
.footer__info p { margin-bottom: 4px; }
.footer__info strong { color: var(--white); }
.footer__legal { font-size: 0.8125rem; opacity: 0.6; }
.footer__copy { font-size: 0.875rem; }

/* ===== Floating Telegram ===== */
.float-telegram {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #229ED9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34, 158, 217, 0.4);
  z-index: 900;
  transition: var(--transition);
  animation: pulseTelegram 2s ease infinite;
}
.float-telegram svg { width: 32px; height: 32px; color: white; }
.float-telegram:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(34, 158, 217, 0.5);
}
@keyframes pulseTelegram {
  0%, 100% { box-shadow: 0 4px 20px rgba(34, 158, 217, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(34, 158, 217, 0.7); }
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { max-width: 500px; margin: 0 auto; }
  .jobs__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .legal__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--gray-100); }
}

@media (max-width: 768px) {
  .nav-desktop, .header__actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .jobs__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--gray-100); }
  .stat-item:last-child { border-bottom: none; }
  .legal__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact__addresses { grid-template-columns: 1fr; }
  .about__meta { grid-template-columns: 1fr; }
  .hero__card--float { right: 0; top: -10px; }
  .about__card { left: 0; bottom: -16px; }
}
