:root {
  --blue: #0072c2;
  --blue-dark: #005a99;
  --blue-deep: #003d66;
  --gold: #ffc000;
  --gold-soft: #ffe08a;
  --ink: #0b1f33;
  --ink-soft: #334155;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-alt: #f3f8fc;
  --line: rgba(0, 114, 194, 0.14);
  --shadow: 0 18px 50px rgba(0, 61, 102, 0.12);
  --radius: 18px;
  --max: 1180px;
  --header-h: 120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 114, 194, 0.08);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffb300);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(255, 192, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 192, 0, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid rgba(0, 114, 194, 0.25);
}

.btn-outline:hover {
  background: rgba(0, 114, 194, 0.06);
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.header.scrolled { box-shadow: 0 10px 30px rgba(0, 61, 102, 0.08); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  height: 104px;
  width: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.94rem;
}

.nav a:hover,
.nav a.active {
  color: var(--blue);
  background: rgba(0, 114, 194, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(0, 114, 194, 0.08);
  border: 1px solid var(--line);
}

.lang-btn {
  min-width: 2.1rem;
  padding: 0.35rem 0.55rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: var(--blue);
  color: #fff;
}

.lang-btn:hover:not(.active) {
  background: rgba(0, 114, 194, 0.12);
  color: var(--blue);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(0, 114, 194, 0.08);
  color: var(--blue);
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  display: grid;
  gap: 0.35rem;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 999;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.mobile-nav a:hover { background: rgba(0, 114, 194, 0.08); color: var(--blue); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 192, 0, 0.18), transparent 28%),
    linear-gradient(135deg, #031526 0%, var(--blue-deep) 45%, var(--blue) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("hero-office.jpg") center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero-text-block {
  grid-column: 1;
  grid-row: 1;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.hero-copy-bottom {
  grid-column: 1;
  grid-row: 2;
}

.hero-copy h1,
.hero-text-block h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 1rem 0 1.25rem;
}

.hero-copy h1 span,
.hero-text-block h1 span { color: var(--gold); }

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.hero-pillars span {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 192, 0, 0.14);
  border: 1px solid rgba(255, 192, 0, 0.35);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-text-block p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  max-width: 38rem;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 28rem;
}

.stat {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}

.stat strong span { color: var(--gold); }

.stat small {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.hero-card {
  position: relative;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.72rem;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-slider {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  min-height: 0;
}

.hero-slides {
  position: relative;
  flex: 1;
  min-height: 280px;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 61, 102, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider-btn:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

.hero-slider-btn.prev { left: 0.75rem; }
.hero-slider-btn.next { right: 0.75rem; }

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
  transform: translateX(-50%);
}

.hero-slider-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider-dots button.active {
  background: var(--gold);
  transform: scale(1.25);
}

.hero-badge {
  z-index: 4;
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), #ffb300);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.hero-badge small {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.75;
}

.separator {
  width: min(70%, 520px);
  height: 1mm;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--blue), var(--gold), var(--blue), transparent);
  border-radius: 999px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr minmax(260px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.about-features {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.about-features .feature-grid {
  grid-template-columns: 1fr;
  margin-top: 0;
  gap: 0.85rem;
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-main h2 {
  margin-bottom: 0.25rem;
}

.about-main .about-media {
  margin-top: 0.75rem;
}

.about-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 21, 38, 0.92) 0%, rgba(3, 21, 38, 0.55) 38%, transparent 62%);
  pointer-events: none;
}

.about-media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: 72% center;
  display: block;
}

.about-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 52%;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  color: #fff;
  pointer-events: none;
}

.about-overlay-brand {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.65rem;
}

.about-overlay-title {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.about-overlay-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.about-chip {
  z-index: 3;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.about-chip strong {
  display: block;
  font-size: 1.8rem;
  color: var(--blue);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 114, 194, 0.1);
  color: var(--blue);
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1;
}

.feature h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.92rem;
}

.surface-alt { background: var(--surface-alt); }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.cards-3 .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cards-3 .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cards-3 .card-body p {
  flex: 1;
}

.cards-3 .tags {
  margin-top: auto;
  padding-top: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 61, 102, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-media img { transform: scale(1.05); }

.card-body { padding: 1.4rem; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-top: -3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 114, 194, 0.25);
}

.card-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  width: 100%;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 61, 102, 0.05);
}

.service-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.service-top .card-icon {
  margin: 0;
  width: 48px;
  height: 48px;
  font-size: 0;
}

.service-top .card-icon svg {
  width: 24px;
  height: 24px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-card li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

.service-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.partners {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.partner {
  padding: 1.2rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.partner strong {
  display: block;
  margin: 0.75rem 0 0.25rem;
}

.partner span {
  color: var(--muted);
  font-size: 0.86rem;
}

.references {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reference .card-media { height: 180px; }

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 114, 194, 0.92);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.75rem 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  background: #071726;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer a:hover { color: var(--gold); }

.footer li { margin-bottom: 0.55rem; }

.footer-brand img {
  height: 54px;
  margin-bottom: 1rem;
}

.footer-bottom {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
}

.legal-page {
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
  background: var(--surface-alt);
  min-height: 70vh;
}

.legal-content {
  max-width: 820px;
}

.legal-back {
  margin-bottom: 1.5rem;
}

.legal-back a {
  color: var(--blue);
  font-weight: 600;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.legal-lead {
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.legal-block h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--blue-deep);
}

.legal-block h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.65rem;
  color: var(--ink);
}

.legal-block p {
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .cards-3,
  .references,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-text-block,
  .hero-visual,
  .hero-copy-bottom {
    grid-column: 1;
  }

  .hero-text-block { grid-row: 1; }
  .hero-visual { grid-row: 2; }
  .hero-copy-bottom { grid-row: 3; }

  .hero-slides {
    aspect-ratio: 16/10;
    min-height: 260px;
    height: auto;
  }

  .about-features {
    position: static;
  }

  .about-features .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento,
  .partners {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-desktop { display: none !important; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .stats { grid-template-columns: 1fr; }
  .partners { grid-template-columns: 1fr; }
  .header-actions .btn { display: none; }

  .lang-switch {
    margin-right: 0.25rem;
  }

  .hero-slider-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }

  .hero-slider-btn.prev { left: 0.5rem; }
  .hero-slider-btn.next { right: 0.5rem; }

  .hero-slide-label {
    top: 0.65rem;
    right: 0.65rem;
    font-size: 0.7rem;
  }

  .hero-badge {
    left: 0.5rem;
    bottom: 3.25rem;
    padding: 0.75rem 0.95rem;
  }

  .about-features .feature-grid {
    grid-template-columns: 1fr;
  }

  .about-media::before {
    background: linear-gradient(180deg, rgba(3, 21, 38, 0.9) 0%, rgba(3, 21, 38, 0.45) 45%, transparent 70%);
  }

  .about-overlay {
    max-width: 100%;
    justify-content: flex-end;
    padding-bottom: 4.5rem;
  }

  .about-overlay-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 761px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}
