:root {
  --green-950: #0b1f19;
  --green-900: #12372a;
  --green-800: #1f4a39;
  --green-700: #28634a;
  --green-100: #eaf3ee;
  --blue-700: #1f5b76;
  --gold-500: #c69b45;
  --sand-100: #f6f0e4;
  --sand-50: #fbf8f1;
  --slate-900: #16211d;
  --slate-700: #44534d;
  --slate-500: #6b7772;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 31, 25, 0.18);
  --radius: 24px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Aptos, Calibri, "Segoe UI", Arial, sans-serif;
  color: var(--slate-900);
  background: var(--sand-50);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--green-700); }
img { max-width: 100%; height: auto; }

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--green-900);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 241, 0.86);
  border-bottom: 1px solid rgba(31, 74, 57, 0.12);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), var(--blue-700));
  font-weight: 800;
}
.brand strong { display: block; font-size: 1rem; line-height: 1; }
.brand em { display: block; font-size: 0.82rem; color: var(--slate-500); font-style: normal; }
.site-nav { display: flex; align-items: center; gap: 24px; font-size: 0.95rem; font-weight: 650; }
.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(31, 74, 57, 0.22);
  border-radius: 999px;
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(198, 155, 69, 0.35), transparent 28%),
    radial-gradient(circle at 20% 15%, rgba(31, 91, 118, 0.55), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 42%;
  height: 360px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 42px);
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 54px;
  align-items: center;
  padding: 100px 0 92px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 6vw, 5.35rem); letter-spacing: -0.06em; max-width: 920px; }
h2 { font-size: clamp(2rem, 3vw, 3.15rem); letter-spacing: -0.04em; }
h3 { font-size: 1.22rem; }
.lead { font-size: 1.18rem; color: rgba(255,255,255,0.83); max-width: 820px; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { color: var(--green-950); background: var(--gold-500); box-shadow: 0 14px 28px rgba(198, 155, 69, 0.24); }
.btn.secondary { color: var(--white); border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.08); }
.hero-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.stat { padding: 18px; border-radius: 18px; background: rgba(255,255,255,0.10); }
.stat strong { display: block; font-size: 1.55rem; color: var(--white); }
.stat span { display: block; color: rgba(255,255,255,0.74); font-size: 0.92rem; }

.section { padding: 82px 0; }
.intro { background: var(--white); }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.split p:last-child { margin: 0; color: var(--slate-700); font-size: 1.08rem; }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading h2 { margin-bottom: 0; }
.cards { display: grid; gap: 18px; }
.cards.five { grid-template-columns: repeat(5, 1fr); }
.cards.six { grid-template-columns: repeat(3, 1fr); }
.card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(31, 74, 57, 0.11);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11, 31, 25, 0.06);
}
.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 50%;
  font-weight: 850;
}
.card h3 { margin-bottom: 12px; }
.card p { margin: 0; color: var(--slate-700); font-size: 0.95rem; }

.difference { color: var(--white); background: var(--green-900); }
.difference-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: start; }
.difference p { color: rgba(255,255,255,0.76); }
.feature-list { display: grid; gap: 14px; }
.feature {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
}
.feature h3 { margin-bottom: 8px; }
.feature p { margin: 0; }

.work { background: var(--sand-100); }
.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.timeline-item {
  padding: 26px;
  border-radius: 22px;
  background: var(--white);
  border-left: 5px solid var(--green-700);
}
.timeline-item span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-weight: 850;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.timeline-item p { margin: 12px 0 0; color: var(--slate-700); }

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: stretch; }
.profile-panel, .credentials {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 74, 57, 0.13);
}
.profile-panel { background: var(--sand-50); }
.profile-panel p, .credentials li { color: var(--slate-700); }
.doc-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.doc-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
  font-size: 0.9rem;
}
.credentials { background: linear-gradient(135deg, var(--green-100), var(--sand-50)); }
.credentials ul { margin: 18px 0 0; padding-left: 20px; }
.credentials li + li { margin-top: 10px; }

.contact { color: var(--white); background: linear-gradient(135deg, var(--green-950), var(--green-800)); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact p { color: rgba(255,255,255,0.78); }
.contact-methods { display: grid; gap: 10px; margin-top: 24px; }
.contact-methods a { color: var(--white); font-weight: 750; }
.contact-logo {
  display: inline-flex;
  margin-top: 30px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}
.contact-logo img {
  width: min(220px, 54vw);
  height: auto;
  display: block;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
}
label { display: grid; gap: 6px; font-weight: 750; color: rgba(255,255,255,0.92); }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  color: var(--slate-900);
  padding: 13px 14px;
  font: inherit;
}
textarea { resize: vertical; }
.form-note { margin: 0; font-size: 0.86rem; }

.site-footer { padding: 34px 0; color: rgba(255,255,255,0.78); background: var(--green-950); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-grid p { margin: 4px 0 0; }

@media (max-width: 1080px) {
  .cards.five, .cards.six { grid-template-columns: repeat(2, 1fr); }
  .card { min-height: auto; }
}
@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 8px;
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; background: var(--green-900); }
  .site-nav {
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .hero-grid, .split, .difference-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 78px 0 70px; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max-width)); }
  .section { padding: 62px 0; }
  .cards.five, .cards.six { grid-template-columns: 1fr; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
