:root {
  --navy: #1A2744;
  --navy-mid: #1e3260;
  --green: #3A7D2E;
  --green-light: #4CAF50;
  --offwhite: #F5F7FA;
  --white: #FFFFFF;
  --gray: #6B7A99;
  --light-gray: #E4E9F2;
  --text: #1A2744;
}

/**
 * LANBAR — єдиний файл стилів (десктоп + адаптив).
 * На проді перевіряй: файл має починатися з :root { — інакше перезалий повний main.css.
 */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Montserrat',sans-serif; background:var(--offwhite); color:var(--text); overflow-x:hidden; }

/* NAV */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(26,39,68,0.97); backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(58,125,46,0.2);
  padding:0 5% 0 5%; height:80px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo {
  display:flex;
  align-items:center;
  padding: 8px 0;
}
.nav-actions {
  display:flex;
  gap:12px;
}
.nav-logo img { 
  height: 64px;
  width:auto; 
}
.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a { color:rgba(255,255,255,0.7); text-decoration:none; font-size:12px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; transition:color 0.2s; }
.nav-links a:hover { color:var(--green-light); }
.nav-links li:last-child a {
  color: var(--green-light);
  border: 1px solid rgba(58,125,46,0.4);
  padding: 5px 12px;
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-links li:last-child a:hover {
  border-color: var(--green-light);
  color: white;
}
.lang-toggle { display:flex; align-items: center; gap:4px; }
.lang-btn { background:none; border:1px solid rgba(58,125,46,0.4); color:rgba(255,255,255,0.6); font-family:'Montserrat',sans-serif; font-size:11px; font-weight:700; letter-spacing:0.1em; padding:5px 10px; cursor:pointer; transition:all 0.2s; border-radius:2px; }
.lang-btn.active { background:var(--green); border-color:var(--green); color:white; }
.lang-btn:hover:not(.active) { border-color:var(--green-light); color:var(--green-light); }
.nav-toggle { display:none; flex-direction:column; justify-content:center; align-items:flex-end; gap:5px; width:60px; height:44px; padding:0; border:none; background:transparent; cursor:pointer; border-radius:2px; }
.nav-toggle:focus-visible { outline:2px solid var(--green-light); outline-offset:2px; }
.nav-toggle-bar { display:block; width:22px; height:2px; background:var(--green-light); border-radius:1px; transition:transform 0.2s, opacity 0.2s; }
.nav-backdrop { display:none; }

/* HERO — var(--navy, #1A2744): колір навіть якщо :root не підхопився (кеш/інший шлях) */
section.hero { position:relative; min-height:100vh; min-height:100dvh; display:flex; align-items:center; padding:120px 5% 80px; background:var(--navy); }
.hero-container { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.hero-content { position:relative; z-index:1; max-width:680px; }
.hero-bg { position:absolute; inset:0; z-index:1; background:radial-gradient(ellipse 60% 70% at 75% 50%, rgba(26,39,68,0.48) 0%, rgba(26,39,68,0.78) 70%); }
.hero-video-bg { position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(95deg, rgba(14, 20, 36, 0.72) 0%, rgba(26, 39, 68, 0.42) 48%, rgba(26, 39, 68, 0.22) 100%);
}
.hero-video-bg video { position:absolute; top:0; left:50%; transform:translateX(-50%); min-width:100%; height:100%; width:auto; object-fit:cover; object-position:top center; z-index:0; }
.hero-video { display:flex; align-items:center; justify-content:center; }
.hero-video video { width:100%; height:auto; max-height:500px; border-radius:8px; box-shadow:0 20px 40px rgba(0,0,0,0.1); }
.hero-grid { position:absolute; inset:0; z-index:0; background-color:transparent; background-image:linear-gradient(rgba(58,125,46,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(58,125,46,0.04) 1px,transparent 1px); background-size:60px 60px; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:10px; margin-bottom:24px; }
.hero-eyebrow span { font-size:11px; font-weight:700; letter-spacing:0.25em; text-transform:uppercase; color:#fff; }
.hero-eyebrow::before,.hero-eyebrow::after { content:''; display:block; width:30px; height:1px; background:var(--green-light); opacity:0.5; }
.hero h1 { font-size:clamp(36px,5.5vw,68px); font-weight:800; color:white; line-height:1.1; margin-bottom:20px; }
.hero h1 em { font-style:normal; color:var(--green-light); }
.hero p { font-size:16px; line-height:1.75; color:rgba(255,255,255,0.65); max-width:520px; margin-bottom:40px; }
.hero-cta { display:flex; gap:14px; flex-wrap:wrap; }
.btn-primary { display:inline-block; background:var(--green); color:white; text-decoration:none; font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; padding:15px 32px; border-radius:2px; border:none; cursor:pointer; font-family:'Montserrat',sans-serif; transition:all 0.25s; }
.btn-primary:hover { background:var(--green-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(58,125,46,0.3); }
.btn-outline { display:inline-block; background:transparent; color:white; text-decoration:none; font-size:12px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; padding:14px 32px; border-radius:2px; border:1px solid rgba(255,255,255,0.25); transition:all 0.25s; cursor:pointer; font-family:'Montserrat',sans-serif; }
.btn-outline:hover { border-color:var(--green-light); color:var(--green-light); }

/* SECTIONS — без подвійних відступів на hero */
section:not(.hero) { padding:88px 5%; }
.section-label { display:inline-flex; align-items:center; gap:10px; font-size:10px; font-weight:700; letter-spacing:0.25em; text-transform:uppercase; color:var(--green); margin-bottom:16px; }
.section-label::after { content:''; display:block; width:36px; height:1px; background:var(--green); opacity:0.4; }
.section-title { font-size:clamp(28px,3.5vw,46px); font-weight:800; color:var(--navy); line-height:1.15; margin-bottom:14px; }
.section-sub { font-size:15px; color:var(--gray); line-height:1.75; max-width:540px; margin-bottom:56px; }

/* HOW IT WORKS */
#how { background:white; }
.how-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--light-gray); border-radius:4px; overflow:hidden; }
.how-card { background:white; padding:40px 32px; position:relative; transition:background 0.3s; }
.how-card:hover { background:var(--navy); }
.how-num { font-size:48px; font-weight:800; color:rgba(26,39,68,0.05); line-height:1; margin-bottom:16px; transition:color 0.3s; }
.how-card:hover .how-num { color:rgba(255,255,255,0.05); }
.how-icon { font-size:28px; margin-bottom:16px; display:block; }
.how-title { font-size:17px; font-weight:700; color:var(--navy); margin-bottom:10px; line-height:1.3; transition:color 0.3s; }
.how-card:hover .how-title { color:white; }
.how-desc { font-size:13px; line-height:1.75; color:var(--gray); transition:color 0.3s; }
.how-card:hover .how-desc { color:rgba(255,255,255,0.6); }
.how-badge { display:inline-block; background:var(--green); color:white; font-size:9px; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; padding:4px 10px; border-radius:2px; margin-bottom:14px; }

/* WOW */
#wow { background:var(--navy); }
#wow .section-title { color:white; }
#wow .section-sub { color:var(--gray); }
.wow-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,0.06); margin-top:48px; }
.wow-card { background:var(--navy); padding:36px 24px; border-top:3px solid transparent; transition:border-color 0.3s; }
.wow-card:hover { border-color:var(--green-light); }
.wow-icon { width:44px; height:44px; border:1px solid rgba(58,125,46,0.3); border-radius:4px; display:flex; align-items:center; justify-content:center; font-size:18px; margin-bottom:18px; }
.wow-title { font-size:15px; font-weight:700; color:white; margin-bottom:8px; }
.wow-desc { font-size:12px; line-height:1.7; color:var(--gray); }
.wow-cta { text-align:center; margin-top:56px; }
.wow-cta p { font-size:22px; font-weight:800; color:white; letter-spacing:0.05em; }
.wow-cta span { color:var(--green-light); }

/* SPECIALTIES */
#specialties { background:var(--offwhite); }
.spec-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.spec-card { background:white; padding:28px 24px; border-radius:4px; border-left:3px solid transparent; transition:all 0.3s; }
.spec-card:hover { border-left-color:var(--green); transform:translateX(4px); }
.spec-icon { font-size:24px; margin-bottom:12px; display:block; }
.spec-title { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.spec-sub { font-size:12px; color:var(--gray); line-height:1.6; }
.spec-cta { text-align:center; margin-top:40px; padding:32px; background:white; border-radius:4px; border:2px dashed var(--light-gray); }
.spec-cta p { font-size:16px; font-weight:600; color:var(--navy); margin-bottom:16px; }

/* Mobile responsive for specialties section */
@media(max-width:990px){
  .spec-grid { grid-template-columns:repeat(2,1fr) !important; gap:12px; }
}
@media(max-width:600px){
  .spec-grid { grid-template-columns:1fr !important; gap:12px; }
  .spec-card { padding:20px 16px; }
  .spec-icon { font-size:20px; margin-bottom:10px; }
  .spec-title { font-size:13px; }
  .spec-sub { font-size:11px; }
  .spec-cta { padding:24px; margin-top:32px; }
  .spec-cta p { font-size:14px; margin-bottom:12px; }
}

/* CONDITIONS */
#conditions { background:white; }
.cond-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.steps-grid { display:grid; grid-template-columns:1fr 1fr; gap:0 64px; }
.step { display:flex; gap:20px; padding:20px 0; border-bottom: 1px solid var(--light-gray); }
.step:last-child { border-bottom:none; }
.step-num { width:32px; height:32px; background:var(--green); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; color:white; flex-shrink:0; }
.step h4 { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.step p { font-size:12px; color:var(--gray); line-height:1.6; }
.cond-list { list-style:none; display:flex; flex-direction:column; gap:14px; margin-bottom:32px; }

/* Mobile responsive for steps section */
@media(max-width:990px){
  .steps-grid { grid-template-columns:1fr !important; gap:0 32px; }
  .step { padding:16px 0; gap:16px; }
  .step-num { width:28px; height:28px; font-size:11px; }
  .step h4 { font-size:13px; }
  .step p { font-size:11px; }
}
.cond-list li { display:flex; align-items:flex-start; gap:12px; font-size:14px; color:#4A5568; line-height:1.6; }
.cond-list li::before { content:''; width:6px; height:6px; background:var(--green); border-radius:50%; margin-top:7px; flex-shrink:0; }
.cond-box { background:var(--offwhite); border-radius:4px; padding:32px; border-left:4px solid var(--green); }
.cond-box h3 { font-size:18px; font-weight:700; color:var(--navy); margin-bottom:12px; }
.cond-box p { font-size:14px; color:var(--gray); line-height:1.75; }

/* FOR WORKERS */
#workers { background:var(--navy); }
#workers .section-title { color:white; }
#workers .section-sub { color:var(--gray); }
.workers-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.steps-list { display:flex; flex-direction:column; gap:0; }
.step { display:flex; gap:20px; padding:20px 0; border-bottom: 1px solid var(--light-gray); }
.step:last-child { border-bottom:none; }
.step-num { width:32px; height:32px; background:var(--green); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; color:white; flex-shrink:0; margin-top:2px; }
.step-text h4 { font-size:14px; font-weight:700; color:white; margin-bottom:4px; }
.step-text p { font-size:12px; color:var(--gray); line-height:1.6; }
.workers-contact { background:rgba(255,255,255,0.04); border-radius:4px; padding:36px; border:1px solid rgba(58,125,46,0.2); }
.workers-contact h3 { font-size:20px; font-weight:700; color:white; margin-bottom:8px; }
.workers-contact p { font-size:14px; color:var(--gray); line-height:1.7; margin-bottom:28px; }
.contact-methods { display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.contact-method { display:flex; align-items:center; gap:14px; padding:14px 16px; background:rgba(255,255,255,0.04); border-radius:4px; border:1px solid rgba(255,255,255,0.06); text-decoration:none; transition:border-color 0.2s; }
.contact-method:hover { border-color:var(--green-light); }
.contact-method-icon { width:36px; height:36px; background:var(--green); border-radius:4px; display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.contact-method-label { font-size:10px; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; color:var(--gray); }
.contact-method-value { font-size:14px; font-weight:600; color:white; }


/* CONTACT */
#contact { background:var(--offwhite); }
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:72px; align-items:start; }
.contact-info h3 { font-size:26px; font-weight:700; color:var(--navy); margin-bottom:16px; }
.contact-info p { font-size:14px; line-height:1.8; color:var(--gray); margin-bottom:32px; }
.contact-item { display:flex; align-items:flex-start; gap:14px; margin-bottom:20px; }
.contact-item-icon { width:38px; height:38px; background:white; border-radius:4px; display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0; }
.contact-item-label { font-size:10px; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; color:var(--gray); margin-bottom:2px; }
.contact-item-value { font-size:14px; font-weight:600; color:var(--navy); }
.social-links { display:flex; gap:10px; margin-top:24px; }
.social-link { width:42px; height:42px; border-radius:4px; display:flex; align-items:center; justify-content:center; text-decoration:none; transition:opacity 0.2s; }
.social-link:hover { opacity:0.85; }
.contact-form { background:white; padding:44px; border-radius:4px; border:1px solid var(--light-gray); }
.form-title { font-size:20px; font-weight:700; color:var(--navy); margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:10px; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; color:var(--gray); margin-bottom:7px; }
.form-group input,.form-group select,.form-group textarea { width:100%; background:var(--offwhite); border:1px solid var(--light-gray); border-radius:2px; padding:12px 14px; font-family:'Montserrat',sans-serif; font-size:13px; color:var(--navy); outline:none; transition:border-color 0.2s; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--green); }
.form-group textarea { height:100px; resize:vertical; }
.form-note { font-size:11px; color:var(--gray); text-align:center; margin-top:10px; }
.success-msg { display:none; background:#EBF5EB; border:1px solid #A3D9A5; color:#2D6A2F; padding:14px 18px; border-radius:4px; font-size:13px; font-weight:600; margin-top:14px; text-align:center; }
/* Honeypot: приховано від користувачів, не знімати з потоку для ботів — класичний off-screen */
.contact-form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FOOTER */
footer { background:var(--navy); color:white; padding:28px 5% 28px; border-top:1px solid rgba(58,125,46,0.15); }
.footer-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; padding-bottom:28px; }
.footer-logo img { height: 110px; width: auto; }
.footer-links { display:flex; flex-wrap:wrap; gap:8px 20px; list-style:none; }
.footer-links a { color:rgba(255,255,255,0.55); text-decoration:none; font-size:12px; transition:color 0.2s; }
.footer-links a:hover { color:var(--green-light); }
.footer-copy { font-size:11px; color:var(--gray); border-top:1px solid rgba(255,255,255,0.06); padding-top:28px; text-align:center; line-height:1.8; }

/* «Три моделі» — великий navy-блок, друга сітка */
.how-hero-block {
  background: var(--navy);
  border-radius: 4px;
  padding: 52px 48px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.how-hero-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(58, 125, 46, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.how-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.how-pill {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
}

.how-pill--accent {
  background: var(--green);
  color: white;
  padding: 5px 12px;
  margin-bottom: 20px;
}

.how-pill--muted {
  background: var(--light-gray);
  color: var(--gray);
  padding: 4px 10px;
  margin-bottom: 16px;
}

.how-feature-title {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.how-feature-lead {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

.how-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.how-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  border-left: 3px solid var(--green);
  min-width: 0;
}

.how-perk__icon {
  font-size: 20px;
  flex-shrink: 0;
}

.how-perk__body {
  flex: 1;
  min-width: 0;
}

.how-perk__title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
}

.how-perk__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.how-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.how-side-card {
  background: white;
  border-radius: 4px;
  padding: 36px 32px;
  border: 1px solid var(--light-gray);
  border-top: 3px solid var(--gray);
  box-sizing: border-box;
}

.how-side-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.how-side-text {
  font-size: 13px;
  line-height: 1.75;
  color: var(--gray);
}

.how-cta-panel {
  background: var(--green);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  box-sizing: border-box;
}

.how-cta-kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.how-cta-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.how-cta-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.how-cta-btn {
  display: inline-block;
  background: white;
  color: var(--green);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all 0.25s;
}

.how-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Умови / працівники */
.cond-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.cond-box--push {
  margin-bottom: 20px;
}

.cond-list--tight {
  margin-bottom: 0;
}

.workers-steps-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}

/* Кнопки на всю ширину картки */
.btn-block {
  width: 100%;
  text-align: center;
  display: block;
  box-sizing: border-box;
}

.contact-form .btn-primary {
  width: 100%;
}

.footer-legal {
  font-size: 11px;
  opacity: 0.5;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--green);
  border: 2px solid var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--green-light);
  border-color: var(--green);
}

.scroll-to-top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-left: 2px solid white;
  border-top: 2px solid white;
}

/* ——— Адаптив (колишній mobile.css) ——— */
@media (max-width: 990px) {
  nav {
    height: 76px;
    padding: 0 4%;
  }
  
  .hero-container { grid-template-columns:1fr; gap:40px; }
  .hero-content { max-width:100%; text-align:left; }
  .hero-bg { background:radial-gradient(ellipse 60% 70% at 75% 50%, rgba(26,39,68,0.68) 0%, rgba(26,39,68,0.9) 70%); }
  .hero-video { display:none; }
  .hero-video video { width:100vw; max-width:100%; height:auto; max-height:none; }

  

  .lang-btn {
    height: 24.4px;
    padding:5px 10px;
  }

  .nav-logo img {
    height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 76px 0 0 0;
    z-index: 98;
    background: rgba(10, 15, 28, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    margin: 0;
    list-style: none;
    background: rgba(26, 39, 68, 0.99);
    border-bottom: 1px solid rgba(58, 125, 46, 0.25);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }

  body.nav-open .nav-links {
    max-height: 420px;
    opacity: 1;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 5%;
    font-size: 13px;
  }
  
  .nav-links li:last-child a {
    color: var(--green-light);
    border: 1px solid rgba(58,125,46,0.4);
    padding: 5px 12px;
    border-radius: 2px;
    display: inline-block;
    margin: 14px 5%;
  }

  body.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  section.hero {
    background: var(--navy, #1A2744);
    min-height: 100vh;
    min-height: 100dvh;
    padding: 100px 5% 56px;
  }

  .hero h1 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
    text-align: center;
  }

  section:not(.hero) {
    padding: 56px 5%;
  }

  .section-sub {
    margin-bottom: 36px;
  }

  .how-grid,
  .wow-grid,
  .cond-grid,
  .workers-grid,
  .contact-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wow-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .how-card,
  .wow-card {
    padding: 24px 18px;
  }

  .spec-card {
    padding: 22px 18px;
  }

  .cond-grid {
    gap: 32px;
  }

  .workers-grid {
    gap: 36px;
  }

  .contact-form {
    padding: 28px 20px;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .how-hero-block {
    padding: 28px 18px;
    margin-bottom: 12px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .how-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .how-hero-inner > div:first-child {
    min-width: 0;
  }

  .how-perk {
    min-width: 0;
    align-items: flex-start;
  }

  .how-perk__body {
    flex: 1;
    min-width: 0;
  }

  .how-bottom-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
    min-width: 0;
  }

  .how-side-card,
  .how-cta-panel {
    padding: 28px 22px;
    min-width: 0;
    box-sizing: border-box;
  }
}

@media (max-width: 520px) {
  .wow-grid {
    grid-template-columns: 1fr;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 16px;
  }

  .wow-cta p {
    font-size: 18px;
  }
}

/* ABOUT SECTION */
.about-bg { background:white; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.about-navy-box { background:var(--navy); border-radius:4px; padding:32px; border-left:4px solid var(--green); margin-bottom:32px; }
.about-navy-box p { font-size:14px; line-height:1.85; color:rgba(255,255,255,0.8); }
.about-navy-box .highlight { font-size:13px; color:var(--green-light); font-weight:700; margin-top:14px; }

/* Additional about section styles to match source file */
.about-navy-box p:first-child { font-size:14px; line-height:1.85; color:rgba(255,255,255,0.8); }
.about-navy-box .highlight { font-size:13px; color:var(--green-light); font-weight:700; margin-top:14px; }

/* About section inline styles from current HTML */
.about-section { background:white; }
.about-section-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.about-navy-box { background:var(--navy); border-radius:4px; padding:32px; border-left:4px solid var(--green); margin-bottom:32px; }
.about-navy-box p { font-size:14px; line-height:1.85; color:rgba(255,255,255,0.8); }
.about-navy-box .highlight { font-size:13px; color:var(--green-light); font-weight:700; margin-top:14px; }
.about-desc { font-size:15px; line-height:1.8; color:var(--gray); }
.about-cards { display:flex; flex-direction:column; gap:20px; }
.about-card { padding:24px 28px; background:var(--offwhite); border-radius:4px; border-left:3px solid var(--green); }
.about-card-label { font-size:11px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--green); margin-bottom:8px; }
.about-card-text { font-size:14px; line-height:1.75; color:var(--gray); }
.about-desc { font-size:15px; line-height:1.8; color:var(--gray); }

/* Mobile responsive for about section */
@media(max-width:990px){
  .about-section-grid { grid-template-columns:1fr; gap:32px; }
  .about-cards { gap:16px; }
  .about-card { padding:20px; }
}
.about-cards { display:flex; flex-direction:column; gap:20px; }
.about-card { padding:24px 28px; background:var(--offwhite); border-radius:4px; border-left:3px solid var(--green); }
.about-card-label { font-size:11px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--green); margin-bottom:8px; }
.about-card-text { font-size:14px; line-height:1.75; color:var(--gray); }

/* SERVICES SECTION */
.services-bg { background:white; }
.services-top { display:grid; grid-template-columns:1.4fr 1fr; gap:0; margin-bottom:2px; border-radius:4px 4px 0 0; overflow:hidden; }
.services-bottom { display:grid; grid-template-columns:1fr 1fr; gap:0; align-items:stretch; border-top:2px solid var(--light-gray); border-radius:0 0 4px 4px; overflow:hidden; }
.services-card { background:white; padding:36px 32px; }
.services-card-dark { background:var(--navy); padding:36px 32px; }
.services-card-green { background:var(--green); padding:36px 32px; display:flex; flex-direction:column; justify-content:flex-start; gap:0; }
.services-badge { display:inline-block; font-size:9px; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; padding:4px 10px; border-radius:2px; margin-bottom:14px; width:fit-content; }
.services-badge-green { background:var(--green); color:white; }
.services-badge-navy { background:var(--navy); color:white; }
.services-badge-white { background:white; color:var(--navy); border:1px solid var(--light-gray); }
.services-feature { display:flex; align-items:center; gap:14px; padding:12px 16px; background:rgba(255,255,255,0.05); border-radius:4px; border-left:3px solid var(--green); margin-bottom:8px; }
.services-feature-title { font-size:13px; font-weight:700; color:white; margin-bottom:2px; }
.services-feature-sub { font-size:11px; color:rgba(255,255,255,0.5); }
.services-check { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--navy); margin-bottom:8px; }
.services-direct { background:white; padding:36px 32px; }
.services-direct-label { display:inline-block; background:var(--navy); color:white; font-size:9px; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; padding:4px 10px; border-radius:2px; margin-bottom:14px; width:fit-content; }
.services-direct-title { font-size:20px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.services-direct-desc { font-size:13px; line-height:1.6; color:var(--gray); font-style:italic; margin-bottom:10px; }
.services-direct-text { font-size:13px; line-height:1.75; color:var(--gray); margin-bottom:16px; }
.services-checklist { margin-bottom:20px; }
.services-btn { display:inline-block; background:var(--navy); color:white; text-decoration:none; font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; padding:14px 32px; border-radius:2px; border:1px solid var(--navy); transition:all 0.25s; }
.services-btn:hover { background:transparent; color:var(--navy); border-color:var(--navy); box-shadow:0 8px 24px rgba(26,39,68,0.2); }
.services-legal-badge { display:inline-block; background:rgba(255,255,255,0.2); color:white; font-size:9px; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; padding:4px 10px; border-radius:2px; margin-bottom:14px; width:fit-content; }
.services-legal-title { font-size:20px; font-weight:800; color:white; margin-bottom:8px; line-height:1.2; }
.services-legal-desc { font-size:13px; line-height:1.6; color:rgba(255,255,255,0.8); font-style:italic; margin-bottom:10px; }
.services-legal-text { font-size:13px; line-height:1.75; color:rgba(255,255,255,0.8); margin-bottom:16px; }
.services-legal-item { display:flex; align-items:center; gap:8px; font-size:13px; color:white; margin-bottom:8px; }
.services-btn-white { display:inline-block; background:white; color:var(--green); text-decoration:none; font-size:12px; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; padding:14px 28px; border-radius:2px; transition:all 0.25s; border:2px solid white; align-self:flex-start; }
.services-btn-white:hover { background:transparent; color:white; border-color:white; }

/* Additional services section styles from reference */
.services-card-dark h3 { font-size:26px; font-weight:800; color:white; margin-bottom:12px; line-height:1.2; }
.services-card-dark p { font-size:12px; line-height:1.7; color:rgba(255,255,255,0.5); font-style:italic; margin-bottom:12px; }
.services-card-dark p:nth-of-type(2) { font-size:14px; line-height:1.8; color:rgba(255,255,255,0.7); margin-bottom:24px; }
.services-card-dark .highlight { font-size:13px; font-weight:700; color:var(--green-light); margin-bottom:20px; }
.services-card-dark .btn-primary { background:var(--green); color:white; text-decoration:none; font-size:12px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; padding:15px 32px; border-radius:2px; border:none; cursor:pointer; font-family:'Montserrat',sans-serif; transition:all 0.25s; display:inline-block; }
.services-card-dark .btn-primary:hover { background:var(--green-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(58,125,46,0.3); }

.how-card-dark { background:var(--navy); padding:36px 32px; }
.how-feature { display:flex; align-items:center; gap:14px; padding:12px 16px; background:rgba(255,255,255,0.05); border-radius:4px; border-left:3px solid var(--green); margin-bottom:8px; }
.how-feature-title { font-size:13px; font-weight:700; color:white; margin-bottom:2px; }
.how-feature-sub { font-size:11px; color:rgba(255,255,255,0.5); }

/* Mobile responsive for services section */
@media(max-width:990px){
  .services-top { grid-template-columns:1fr; gap:0; }
  .services-bottom { grid-template-columns:1fr; gap:0; }
  .services-card-dark { padding:24px 20px; }
  .how-card-dark { padding:24px 20px; }
  .how-feature { padding:10px 12px; gap:12px; margin-bottom:6px; }
  .services-card-dark h3 { font-size:22px; }
  .services-card-dark p { font-size:11px; }
  .services-card-dark p:nth-of-type(2) { font-size:13px; }
  .services-card-dark .highlight { font-size:12px; }
}

/* ---------- 404 page ---------- */
body.page-404 {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
}
.page-404-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 108px 5% 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-404-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(58,125,46,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,125,46,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.9;
}
.page-404-illustration {
  position: relative;
  z-index: 1;
  width: min(440px, 94vw);
  margin-bottom: 8px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.25));
}
.page-404-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}
.page-404-code {
  position: relative;
  z-index: 0;
  font-size: clamp(76px, 18vw, 132px);
  font-weight: 800;
  line-height: 0.85;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.05em;
  user-select: none;
  margin-bottom: -0.2em;
}
.page-404-title {
  position: relative;
  z-index: 1;
  font-size: clamp(22px, 4.2vw, 34px);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  max-width: 520px;
}
.page-404-title em {
  font-style: normal;
  color: var(--green-light);
}
.page-404-desc {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto 28px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
}
.page-404-cta {
  position: relative;
  z-index: 1;
}
body.page-404 footer {
  margin-top: 0;
}
