:root {
  color-scheme: light;
  --graphite: #111827;
  --graphite-2: #263241;
  --muted: #657282;
  --paper: #f6f8f4;
  --white: #ffffff;
  --lime: #c9f233;
  --lime-2: #ecff9a;
  --coral: #ff6b5f;
  --coral-2: #ffe5e0;
  --sky: #dff5ff;
  --line: rgba(17, 24, 39, 0.12);
  --soft-line: rgba(17, 24, 39, 0.08);
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.14);
  --max: 1180px;
  --header-h: 78px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
dialog:focus-visible {
  outline: 3px solid rgba(255, 107, 95, 0.92);
  outline-offset: 4px;
}

.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: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  min-height: var(--header-h);
  padding: 13px 18px;
  color: var(--graphite);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--soft-line);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 42;
  display: inline-flex;
  width: 148px;
}

.brand img {
  width: 148px;
  height: auto;
}

.menu-toggle {
  position: relative;
  z-index: 42;
  display: inline-grid;
  justify-self: end;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: var(--graphite);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-open .menu-toggle span[aria-hidden="true"]:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle span[aria-hidden="true"]:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span[aria-hidden="true"]:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-actions {
  display: none;
}

.ghost-link {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--graphite-2);
  cursor: pointer;
  font-weight: 680;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 12px 16px;
  font-size: 0.92rem;
}

.button-lime {
  background: var(--lime);
  color: #10160f;
  box-shadow: 0 16px 36px rgba(137, 185, 0, 0.22);
}

.button-coral {
  background: var(--coral);
  color: #1f1110;
  box-shadow: 0 16px 36px rgba(255, 107, 95, 0.24);
}

.button-white {
  border-color: rgba(17, 24, 39, 0.15);
  background: rgba(255, 255, 255, 0.9);
  color: var(--graphite);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.button-dark {
  background: var(--graphite);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.18);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 22px);
}

.section-shell {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: #476000;
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 700px;
}

.section-heading-wide {
  max-width: 860px;
}

.section-heading h2,
.flow-copy h2,
.economy-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--graphite);
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.flow-copy p,
.economy-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #f4f7f0;
}

.hero-media,
.hero-media img,
.hero-tint {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-tint {
  background:
    linear-gradient(90deg, rgba(246, 248, 244, 0.99) 0%, rgba(246, 248, 244, 0.94) 35%, rgba(246, 248, 244, 0.34) 72%),
    linear-gradient(0deg, rgba(246, 248, 244, 0.96) 0%, rgba(246, 248, 244, 0) 36%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 100svh;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 104px 0 74px;
}

.hero-copy {
  max-width: 680px;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--graphite);
  font-size: 2.95rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--graphite-2);
  font-size: 1.15rem;
}

.hero-actions,
.inline-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 640px;
  gap: 8px;
  padding: 0;
  margin: 44px 0 0;
  list-style: none;
}

.hero-metrics li {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--graphite);
  font-size: 1.28rem;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}

.start-band {
  padding: 72px 0;
  background: var(--white);
  border-bottom: 1px solid var(--soft-line);
}

.start-grid {
  display: grid;
  gap: 28px;
}

.start-actions p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.flow-section {
  padding: 82px 0;
  background: var(--graphite);
  color: var(--white);
}

.flow-layout {
  display: grid;
  gap: 38px;
}

.flow-copy {
  max-width: 580px;
}

.flow-copy h2 {
  color: var(--white);
}

.flow-copy .eyebrow {
  color: var(--lime);
}

.flow-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.flow-columns {
  display: grid;
  gap: 18px;
}

.flow-column {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.flow-column h3,
.benefit-card h3,
.ai-points h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.step-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.8);
}

.step-list span {
  color: var(--lime);
  font-size: 0.84rem;
  font-weight: 850;
}

.flow-visual {
  margin: 0;
}

.flow-visual img,
.resume-visual img,
.match-visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.flow-visual img {
  aspect-ratio: 1805 / 871;
  object-fit: cover;
}

.benefits-section {
  padding: 82px 0;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--white) 54%, var(--paper) 100%);
}

.benefits-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.benefit-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
}

.benefit-card-dark {
  background: var(--graphite);
  color: var(--white);
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  margin: 0 0 18px;
  border-radius: 8px;
  background: var(--lime-2);
  color: #283400;
  font-size: 0.82rem;
  font-weight: 850;
}

.benefit-card:nth-child(2) .card-kicker {
  background: var(--coral-2);
}

.benefit-card-dark .card-kicker {
  background: var(--coral);
  color: #1a100f;
}

.benefit-card p:not(.card-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
}

.benefit-card-dark p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.ai-section {
  padding: 82px 0;
  background: var(--white);
}

.ai-layout {
  display: grid;
  gap: 34px;
}

.resume-visual,
.match-visual {
  margin: 0;
}

.resume-visual img {
  aspect-ratio: 1536 / 1024;
  object-fit: cover;
}

.match-visual img {
  aspect-ratio: 1717 / 916;
  object-fit: cover;
}

.ai-points {
  display: grid;
  gap: 12px;
}

.ai-points article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-line);
}

.ai-points span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--graphite);
  font-weight: 900;
}

.ai-points article:nth-child(2) span {
  background: var(--coral-2);
}

.ai-points p {
  grid-column: 2;
  margin: -6px 0 0;
  color: var(--muted);
}

.economy-section {
  padding: 82px 0;
  background: var(--paper);
}

.economy-layout {
  display: grid;
  gap: 30px;
}

.economy-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.economy-list div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.05);
}

.economy-list dt {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 740;
}

.economy-list dd {
  margin: 0;
  color: var(--graphite);
  font-size: 1.08rem;
  font-weight: 830;
}

.faq-section {
  padding: 82px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  gap: 32px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 18px;
  cursor: pointer;
  color: var(--graphite);
  font-weight: 820;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  margin-left: 16px;
  color: #516900;
  content: "+";
  font-size: 1.35rem;
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-section {
  padding: 82px 0 106px;
  background:
    linear-gradient(135deg, rgba(201, 242, 51, 0.26) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(315deg, rgba(255, 107, 95, 0.2) 0%, rgba(255, 255, 255, 0) 34%),
    var(--graphite);
  color: var(--white);
}

.contact-layout {
  display: grid;
  gap: 34px;
}

.contact-copy {
  max-width: 700px;
}

.contact-copy .eyebrow {
  color: var(--lime);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin: 28px 0 0;
  font-style: normal;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 760;
}

.whatsapp-link {
  gap: 10px;
  justify-content: flex-start;
}

.whatsapp-link img {
  width: 24px;
  height: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 760;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--graphite);
  resize: vertical;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-field textarea {
  min-height: 132px;
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 95, 0.22);
}

.field-error {
  min-height: 20px;
  color: #ffd7d1;
  font-size: 0.86rem;
  font-weight: 720;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--lime-2);
  font-weight: 780;
}

.site-footer {
  padding: 24px 0 108px;
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner .ghost-link {
  color: var(--white);
}

.mobile-actions {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 35;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-actions .button {
  min-height: 46px;
  padding: 12px 10px;
}

.action-dialog {
  width: min(100% - 28px, 540px);
  padding: 28px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  box-shadow: 0 28px 90px rgba(17, 24, 39, 0.3);
}

.action-dialog::backdrop {
  background: rgba(17, 24, 39, 0.48);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--graphite);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.action-dialog h2 {
  margin: 0;
  padding-right: 42px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.action-dialog p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.dialog-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .section-shell {
    width: min(100% - 64px, var(--max));
  }

  .site-header {
    padding: 13px 28px;
  }

  .brand {
    width: 158px;
  }

  .brand img {
    width: 158px;
  }

  .hero-inner {
    width: min(100% - 64px, var(--max));
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .start-grid,
  .economy-layout,
  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    align-items: start;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ai-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ai-points article {
    grid-template-columns: 48px minmax(0, 1fr);
    border-bottom: 0;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field-wide,
  .form-submit,
  .form-status {
    grid-column: 1 / -1;
  }

  .mobile-actions {
    display: none;
  }

  .site-footer {
    padding-bottom: 24px;
  }
}

@media (min-width: 1040px) {
  .site-header {
    padding-inline: 42px;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .section-heading h2,
  .flow-copy h2,
  .economy-copy h2,
  .contact-copy h2 {
    font-size: 3rem;
  }

  .flow-layout {
    grid-template-columns: minmax(0, 0.56fr) minmax(0, 1fr);
    align-items: start;
  }

  .flow-columns {
    grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .ai-layout {
    grid-template-columns: minmax(0, 0.74fr) minmax(360px, 0.58fr);
    align-items: start;
  }

  .ai-layout .section-heading {
    grid-column: 1 / 2;
  }

  .resume-visual {
    grid-column: 1 / 2;
  }

  .ai-points {
    grid-column: 1 / 2;
  }

  .match-visual {
    grid-column: 2;
    grid-row: 1 / span 3;
    position: sticky;
    top: 108px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
    align-items: start;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.42rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .inline-actions,
  .contact-actions {
    display: grid;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .flow-copy h2,
  .economy-copy h2,
  .contact-copy h2 {
    font-size: 1.75rem;
  }

  .benefit-card {
    min-height: 0;
  }

  .contact-form {
    padding: 18px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .button:hover {
    transform: none;
  }
}

/* Jobgram shared navigation/footer v2 */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--graphite);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  border: 0;
  background: rgba(17, 24, 39, 0.32);
  cursor: pointer;
  opacity: 0;
  transition: opacity 220ms ease;
}

.menu-backdrop[hidden],
.site-nav[hidden] {
  display: none !important;
}

.site-header {
  grid-template-columns: auto auto;
}

.site-header.is-open {
  background: var(--white);
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 41;
  display: grid;
  align-content: start;
  justify-items: stretch;
  width: min(100vw, 430px);
  height: 100dvh;
  min-height: 100dvh;
  max-height: none;
  gap: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding:
    calc(var(--header-h) + 18px)
    max(24px, calc(20px + env(safe-area-inset-right)))
    calc(34px + env(safe-area-inset-bottom))
    max(24px, calc(20px + env(safe-area-inset-left)));
  background: var(--white);
  box-shadow: -28px 0 70px rgba(17, 24, 39, 0.18);
  font-size: 1rem;
  font-weight: 760;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(104%, 0, 0);
  transform-origin: right center;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
  visibility: hidden;
  will-change: transform, opacity;
}

.site-header.is-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  visibility: visible;
}

body.menu-open .menu-backdrop {
  opacity: 1;
}

@supports not (height: 100dvh) {
  .site-nav {
    height: 100vh;
    min-height: 100vh;
  }
}

.nav-group,
.nav-quick {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--soft-line);
}

.nav-group-title {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--graphite);
  font-size: 1.28rem;
  font-weight: 860;
  line-height: 1.1;
}

.nav-submenu {
  display: grid;
  gap: 6px;
}

.site-nav .nav-submenu a,
.site-nav .nav-quick a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  color: var(--graphite-2);
  font-size: 1rem;
  font-weight: 720;
}

.site-nav a:hover {
  color: #4f6900;
}

.site-nav a:focus-visible {
  outline: 0;
  color: #4f6900;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav-quick {
  border-bottom: 0;
}

@media (min-width: 720px) and (max-width: 1279px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .header-actions {
    display: none;
  }
}

@media (min-width: 1280px) {
  .menu-backdrop,
  .menu-toggle {
    display: none !important;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-nav {
    position: static;
    inset: auto;
    z-index: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    gap: clamp(12px, 1.1vw, 18px);
    overflow: visible;
    padding: 0 24px;
    background: transparent;
    box-shadow: none;
    font-size: 0.9rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    visibility: visible;
  }

  .nav-group {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
  }

  .nav-group-title,
  .nav-quick a {
    min-height: 44px;
    padding: 10px 2px;
    color: var(--graphite-2);
    font-size: 0.92rem;
    font-weight: 760;
    line-height: 1.18;
    text-decoration-line: none;
    text-underline-offset: 6px;
    white-space: nowrap;
  }

  .nav-group-title::after {
    content: none;
  }

  .nav-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 50;
    min-width: 230px;
    padding: 10px;
    border: 1px solid var(--soft-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 54px rgba(17, 24, 39, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
    visibility: hidden;
  }

  .nav-group:hover .nav-submenu,
  .nav-group:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav .nav-submenu a {
    min-height: 40px;
    padding: 9px 2px;
    color: var(--graphite-2);
    font-size: 0.9rem;
    font-weight: 720;
    line-height: 1.2;
    text-decoration-line: none;
    text-underline-offset: 6px;
  }

  .site-nav .nav-submenu a:hover,
  .nav-group-title:hover,
  .nav-quick a:hover {
    color: #4f6900;
  }

  .site-nav .nav-submenu a:focus-visible,
  .nav-group-title:focus-visible,
  .nav-quick a:focus-visible {
    outline: 0;
    color: #4f6900;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
  }

  .nav-quick {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1vw, 18px);
    padding: 0;
    border: 0;
  }
}

.global-footer {
  padding: 76px 0 28px;
  background: var(--graphite);
  color: var(--white);
}

.footer-shell {
  display: grid;
  gap: 34px;
}

.footer-brand-block {
  max-width: 520px;
}

.footer-brand-block .eyebrow {
  color: var(--lime);
}

.footer-brand-block h2 {
  margin: 0;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
}

.footer-brand-block p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-contacts {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-style: normal;
}

.footer-contacts a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-weight: 760;
}

.footer-nav {
  display: grid;
  gap: 26px;
}

.footer-column {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.25;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-contacts a:hover,
.footer-contacts a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
}

.global-footer .whatsapp-link {
  gap: 10px;
  justify-content: flex-start;
}

.global-footer .whatsapp-link img {
  width: 24px;
  height: 24px;
}

@media (min-width: 720px) {
  .footer-shell {
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
    align-items: start;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .footer-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .footer-brand-block h2 {
    font-size: 2rem;
  }

  .global-footer {
    padding-bottom: 98px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-backdrop,
  .site-nav,
  .skip-link,
  .nav-submenu {
    transition: none !important;
  }
}
