:root {
  --ink: #132033;
  --muted: #596579;
  --blue: #2563eb;
  --blue-2: #5b87d7;
  --blue-3: #1e40af;
  --sky: #f4f7fb;
  --sky-2: #e8eef6;
  --line: #dde5ef;
  --soft: #f8fafc;
  --white: #ffffff;
  --gold: #b7791f;
  --green: #2f855a;
  --shadow: 0 12px 30px rgba(15, 23, 42, .08);
  --radius: 8px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fbfcfe;
  text-rendering: optimizeLegibility;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 820;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  letter-spacing: 0;
  color: var(--ink);
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.9vw, 28px);
  font-weight: 700;
  color: #0e2254;
  font-size: .96rem;
}

.site-nav a,
.nav-dropdown summary {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after,
.nav-dropdown summary span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after,
.nav-dropdown summary:hover span::after,
.nav-dropdown[open] summary span::after,
.nav-dropdown.active summary span::after {
  transform: scaleX(1);
}

.site-nav a.active,
.nav-dropdown.active summary {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary span {
  position: relative;
}

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.nav-dropdown[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 70;
  display: grid;
  min-width: 224px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  color: var(--blue);
  background: #f4f7fb;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  font-weight: 800;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .16);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border-color: #bac6d6;
  box-shadow: none;
}

.button.secondary:hover {
  background: #fff;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-button {
  display: none;
}

.nav-toggle:focus-visible + .nav-toggle-button {
  outline: 3px solid rgba(37, 99, 235, .22);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  padding: clamp(56px, 8vw, 88px) clamp(20px, 5vw, 64px) clamp(42px, 6vw, 70px);
  min-height: calc(100svh - var(--header-h) - 120px);
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  animation: rise .65s ease both;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: .88rem;
  font-weight: 860;
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: .08em;
}

.hero h1 {
  font-size: clamp(2.75rem, 5.2vw, 4.9rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--ink);
}

.hero-title {
  margin-top: 22px;
  max-width: 590px;
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
  line-height: 1.14;
  font-weight: 780;
  letter-spacing: 0;
  color: #0c2358;
}

.hero-lead {
  margin-top: 22px;
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  animation: floatIn .78s ease .1s both;
}

.hero-visual img {
  width: min(100%, 760px);
  margin-left: auto;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, .1));
}

.section {
  padding: clamp(58px, 7vw, 94px) clamp(20px, 5vw, 64px);
}

.section.tight {
  padding-top: clamp(40px, 5vw, 68px);
  padding-bottom: clamp(40px, 5vw, 68px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p,
.page-hero p {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.heading-mark {
  width: 54px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--blue);
}

.company-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.company-icon {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 50%;
  background: #f1f5f9;
}

.company-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.company-list {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  list-style: none;
  color: var(--ink);
}

.company-list strong {
  color: var(--blue);
}

.service-grid,
.feature-grid,
.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.service-card,
.feature-card,
.page-card,
.legal-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}

.service-card,
.page-card {
  padding: clamp(26px, 4vw, 38px);
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card {
  border-top: 3px solid var(--blue);
}

.service-card:hover,
.page-card:hover {
  transform: translateY(-2px);
  border-color: #b9c8dc;
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 58px;
  height: 58px;
  margin: 0 0 20px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: #f1f5f9;
  border: 1px solid var(--line);
}

.icon-badge svg {
  width: 32px;
  height: 32px;
}

.service-card h3,
.page-card h3,
.feature-card h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 860;
}

.service-card p,
.page-card p,
.feature-card p {
  margin-top: 12px;
  color: var(--muted);
}

.why {
  position: relative;
  overflow: hidden;
  background: #f6f9fc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why::before,
.why::after {
  display: none;
}

.why .section-inner {
  position: relative;
  z-index: 1;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
}

.feature-card .icon-badge {
  width: 54px;
  height: 54px;
  margin: 0;
}

.feature-card .icon-badge svg {
  width: 30px;
  height: 30px;
}

.feature-card p {
  margin-top: 4px;
  color: var(--ink);
  font-weight: 700;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius);
  color: white;
  background: #132033;
  box-shadow: none;
}

.cta-panel::after {
  display: none;
}

.cta-panel .cta-copy {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.12;
  font-weight: 900;
}

.cta-panel p {
  margin-top: 12px;
  max-width: 620px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.08rem;
}

.cta-panel .button {
  margin-top: 26px;
  min-width: 260px;
  color: var(--blue);
  background: white;
  border-color: white;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

.site-footer {
  padding: 34px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, .78);
  background: #0f172a;
}

.footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  color: white;
  font-size: 1.2rem;
  font-weight: 850;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 1fr 1fr;
  gap: 28px;
  padding-top: 24px;
}

.footer-grid h3 {
  margin-bottom: 10px;
  color: white;
  font-size: .96rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, .78);
}

.footer-grid a:hover {
  color: white;
}

.footer-links {
  display: grid;
  gap: 6px;
  list-style: none;
}

.footer-bottom {
  margin-top: 24px;
  color: rgba(255, 255, 255, .58);
  font-size: .92rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 9vw, 112px) clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  max-width: 820px;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.content-block {
  display: grid;
  gap: 22px;
}

.content-block h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.content-block p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #dff8ef;
}

.side-panel {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}

.side-panel h2 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.side-panel dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.side-panel dt {
  color: var(--blue);
  font-weight: 820;
}

.side-panel dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:first-child {
  padding-top: 0;
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail .icon-badge {
  width: 82px;
  height: 82px;
  margin: 0;
}

.step-grid {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  counter-increment: steps;
  padding: 24px;
  border-left: 4px solid var(--blue);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: none;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 900;
  font-size: 1.35rem;
}

.step h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.step p {
  margin-top: 8px;
  color: var(--muted);
}

.product-list {
  display: grid;
  gap: 28px;
}

.product-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: clamp(22px, 4vw, 40px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #f1f5f9;
  border: 1px solid var(--line);
  color: var(--blue);
  font-weight: 900;
  font-size: 1.25rem;
}

.product-copy {
  max-width: 840px;
}

.product-meta {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: .86rem;
  font-weight: 840;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.product-copy > p:not(.product-meta) {
  margin-top: 14px;
  color: var(--muted);
}

.product-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
}

.product-details div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-details dt {
  color: var(--ink);
  font-weight: 830;
}

.product-details dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.product-link {
  margin-top: 26px;
}

.contact-text {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(8px, 2vw, 18px) 0;
}

.contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.contact-text .company-list {
  margin-top: 20px;
  gap: 14px;
  font-size: 1.08rem;
}

.legal-wrap {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.legal-section {
  padding: clamp(24px, 4vw, 34px);
}

.legal-section h2 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section p {
  margin-top: 12px;
}

.legal-section ul {
  margin-top: 12px;
  padding-left: 20px;
}

.legal-section li + li {
  margin-top: 8px;
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff8e8;
  color: #61430a;
}

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-visual img {
    width: min(92vw, 680px);
    margin: 0 auto;
  }

  .company-panel,
  .cta-panel,
  .page-layout {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

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

@media (max-width: 1120px) {
  :root {
    --header-h: 72px;
  }

  .site-header {
    min-height: var(--header-h);
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand span {
    max-width: 230px;
    line-height: 1.1;
  }

  .nav-toggle-button {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
  }

  .nav-toggle-button span,
  .nav-toggle-button span::before,
  .nav-toggle-button span::after {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .nav-toggle-button span {
    position: relative;
  }

  .nav-toggle-button span::before,
  .nav-toggle-button span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-button span::before {
    top: -7px;
  }

  .nav-toggle-button span::after {
    top: 7px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle:checked ~ .site-nav {
    order: 4;
    display: grid;
    width: 100%;
    gap: 6px;
    padding-top: 12px;
  }

  .nav-toggle:checked ~ .site-nav a,
  .nav-toggle:checked ~ .site-nav summary {
    padding: 10px 0;
  }

  .nav-toggle:checked ~ .header-cta {
    order: 5;
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 72px;
  }

  .site-header {
    min-height: var(--header-h);
    flex-wrap: wrap;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand span {
    max-width: 230px;
    line-height: 1.1;
  }

  .nav-toggle-button {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
  }

  .nav-toggle-button span,
  .nav-toggle-button span::before,
  .nav-toggle-button span::after {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .nav-toggle-button span {
    position: relative;
  }

  .nav-toggle-button span::before,
  .nav-toggle-button span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-button span::before {
    top: -7px;
  }

  .nav-toggle-button span::after {
    top: 7px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle:checked ~ .site-nav {
    order: 4;
    display: grid;
    width: 100%;
    gap: 6px;
    padding-top: 12px;
  }

  .nav-toggle:checked ~ .site-nav a,
  .nav-toggle:checked ~ .site-nav summary {
    padding: 10px 0;
  }

  .nav-toggle:checked ~ .header-cta {
    order: 5;
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
  }

  .service-grid,
  .feature-grid,
  .page-card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero,
  .section,
  .page-hero {
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 100%;
    margin-top: 20px;
    opacity: 1;
  }

  .hero-visual img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 16vw, 3.6rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .company-panel {
    padding: 24px 18px;
  }

  .company-icon {
    width: 118px;
    height: 118px;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-details {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 28px 20px;
  }

  .cta-panel .button {
    min-width: 0;
  }
}

@media (max-width: 1120px) {
  .nav-toggle:checked ~ .site-nav .nav-dropdown {
    width: 100%;
  }

  .nav-toggle:checked ~ .site-nav .nav-dropdown summary {
    justify-content: flex-start;
  }

  .nav-toggle:checked ~ .site-nav .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin: 2px 0 8px 12px;
    padding: 4px 0 4px 14px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-toggle:checked ~ .site-nav .nav-dropdown-menu a {
    padding: 8px 0;
  }

  .nav-toggle:checked ~ .site-nav .nav-dropdown-menu a:hover {
    background: transparent;
  }
}
