:root {
  --blue: #38bdf8;
  --blue-strong: #0f4c81;
  --sky: #eff8ff;
  --navy: #102a43;
  --muted: #5f7083;
  --grey: #f5f7fa;
  --line: #d9e5ee;
  --green: #16a34a;
  --amber: #f59e0b;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 42, 67, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-strong); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow { width: min(840px, calc(100% - 32px)); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 12px;
  z-index: 20;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--blue-strong);
  color: var(--white);
  font-weight: 800;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: -2px;
}
.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
}
.site-nav {
  display: none;
  position: absolute;
  left: 16px;
  right: 16px;
  top: 72px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 12px;
  border-radius: var(--radius);
}
.site-nav.is-open { display: block; }
.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.site-nav a {
  display: block;
  padding: 10px;
  color: var(--navy);
  border-radius: 6px;
  font-weight: 650;
  font-size: 14px;
}
.site-nav a:hover { background: var(--sky); text-decoration: none; }
.nav-actions {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.nav-cta { color: var(--blue-strong) !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--blue-strong); color: var(--white); }
.btn-primary:hover { background: #0b3e6c; }
.btn-soft { background: var(--sky); color: var(--blue-strong); border-color: #bde9fb; }
.btn-ghost { background: var(--white); color: var(--blue-strong); border-color: var(--line); }

.hero {
  background: linear-gradient(180deg, var(--sky), var(--white));
  padding: 42px 0 26px;
}
.hero-grid {
  display: grid;
  gap: 26px;
  align-items: center;
}
.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.04;
  margin: 8px 0 16px;
  letter-spacing: 0;
}
.hero-copy p,
.lead {
  color: #31475d;
  font-size: 1.08rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-strong);
  font-weight: 850;
  font-size: 0.78rem;
  margin: 0 0 8px;
}
.hero-actions,
.inline-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.trust-row span,
.tag {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.82rem;
  color: var(--muted);
}
.hero-visual {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero {
  background: linear-gradient(180deg, var(--sky), var(--white));
  padding: 54px 0 34px;
  border-bottom: 1px solid var(--line);
}
.section { padding: 56px 0; }
.soft-band { background: var(--grey); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head {
  width: min(760px, 100%);
  margin-bottom: 24px;
}
.section-head h2,
.split h2,
.benefit-grid h2,
.process-grid h2,
.content-main h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: 0;
}
.card-grid {
  display: grid;
  gap: 16px;
}
.card,
.category-panel,
.proof-panel,
.notice-panel,
.sticky-panel,
.tool-shell,
.result-box,
.ethical-note,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card,
.category-panel,
.proof-panel,
.notice-panel,
.sticky-panel,
.tool-shell,
.result-box,
.ethical-note {
  padding: 20px;
}
.card h2,
.card h3,
.category-panel h2,
.category-panel h3 {
  margin: 0 0 10px;
  line-height: 1.22;
}
.field-card p,
.card p { color: var(--muted); }
.mini-list,
.check-list,
.link-list {
  padding-left: 18px;
}
.pill-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill-list li {
  background: var(--sky);
  border: 1px solid #bde9fb;
  color: var(--blue-strong);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.number-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}
.number-list li {
  counter-increment: item;
  margin: 9px 0;
}
.number-list li::before {
  content: counter(item);
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: var(--blue-strong);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  font-weight: 750;
}
.split,
.related-grid,
.benefit-grid,
.process-grid,
.content-grid {
  display: grid;
  gap: 22px;
}
.proof-panel ul { margin: 0; padding-left: 20px; }
.tool-category-grid {
  display: grid;
  gap: 16px;
}
.category-panel ul { margin: 0; padding-left: 18px; }
.category-panel li { margin: 8px 0; }
.section-note { margin-top: 18px; font-weight: 800; }
.benefit-grid article,
.step {
  border-top: 3px solid var(--blue);
  padding-top: 14px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 8px;
  padding: 16px;
}
.step span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-weight: 850;
}
.content-main {
  min-width: 0;
}
.content-main p,
.rich-text {
  color: #30475e;
}
.inline-section {
  margin: 0 0 28px;
}
.content-side {
  min-width: 0;
}
.sticky-panel {
  display: grid;
  gap: 10px;
}
.ethical-note {
  border-left: 4px solid var(--amber);
  background: #fffbeb;
}
.tool-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.form-grid {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 750;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  color: var(--navy);
  background: var(--white);
}
textarea { resize: vertical; }
.result-box { margin-top: 18px; }
.result-ok { border-left: 4px solid var(--green); }
.result-warn { border-left: 4px solid var(--amber); }
.faq-list {
  display: grid;
  gap: 10px;
}
details { padding: 16px 18px; }
summary {
  cursor: pointer;
  font-weight: 850;
}
details p { color: var(--muted); }
.cta-band {
  background: var(--navy);
  color: var(--white);
}
.cta-band p { color: #d9e5ee; }
.button-stack {
  display: grid;
  gap: 10px;
  align-content: start;
}
.site-footer {
  background: #071b2f;
  color: #d9e5ee;
  padding: 44px 0 20px;
}
.footer-grid {
  display: grid;
  gap: 18px;
}
.site-footer a { color: #dff6ff; }
.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 10px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
}
.footer-brand { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.16);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 0.9rem;
}

@media (min-width: 760px) {
  .card-grid,
  .tool-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .field-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .split,
  .related-grid,
  .benefit-grid,
  .process-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .span-2 { grid-column: 1 / -1; }
}

@media (min-width: 1080px) {
  .menu-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0;
    align-items: center;
    gap: 12px;
    background: transparent;
  }
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    max-width: 760px;
  }
  .site-nav a {
    padding: 8px 7px;
    font-size: 12px;
  }
  .nav-actions {
    display: flex;
    margin-top: 0;
    gap: 6px;
  }
  .nav-actions .btn {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  }
  .hero { padding: 72px 0 40px; }
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .tool-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .split,
  .related-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  }
  .benefit-grid,
  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .content-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
  .sticky-panel {
    position: sticky;
    top: 96px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }
}

/* Premium refinement layer */
.header-inner {
  min-height: 70px;
}
.mobile-order-btn {
  margin-left: auto;
  min-height: 38px;
  padding: 8px 11px;
  font-size: 0.82rem;
}
.mobile-only {
  display: list-item;
}
.services-menu {
  position: relative;
}
.services-menu summary {
  list-style: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 800;
}
.services-menu summary::-webkit-details-marker {
  display: none;
}
.services-menu summary::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}
.services-menu[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}
.mega-menu {
  display: grid;
  gap: 12px;
  padding: 12px 0 4px;
}
.mega-menu-intro {
  background: var(--sky);
  border: 1px solid #c7ebfb;
  border-radius: 8px;
  padding: 14px;
}
.mega-menu-intro p {
  margin: 5px 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}
.mega-group {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.mega-group h2 {
  margin: 0 0 4px;
  color: var(--blue-strong);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mega-group ul {
  display: grid;
  gap: 1px;
}
.hero {
  padding: 46px 0 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.16), transparent 32%),
    linear-gradient(180deg, #eff8ff 0%, #ffffff 82%);
}
.hero-copy {
  max-width: 720px;
}
.hero-copy h1 {
  max-width: 820px;
}
.hero-copy p {
  max-width: 660px;
}
.hero-visual {
  align-self: stretch;
  box-shadow: 0 24px 70px rgba(15, 76, 129, 0.16);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.trust-row span {
  border-color: #cfe8f5;
  background: rgba(255, 255, 255, 0.86);
  color: #25445f;
  font-weight: 750;
}
.section-head p {
  color: var(--muted);
}
.card,
.category-panel,
.proof-panel,
.notice-panel,
.sticky-panel,
.tool-shell {
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.06);
}
.field-card,
.service-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
}
.field-card:hover,
.service-card:hover,
.category-panel:hover {
  border-color: #bde9fb;
  box-shadow: 0 18px 46px rgba(15, 76, 129, 0.12);
}
.card-marker {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--sky);
  color: var(--blue-strong);
  font-weight: 900;
  border: 1px solid #bde9fb;
}
.service-card-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}
.service-card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #eef9ff;
  color: #0f4c81;
  border: 1px solid #bde9fb;
}
.service-card-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid #d6e9f4;
  border-radius: 999px;
  background: #f7fbfe;
  color: #25445f;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 10px;
}
.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.topic-chips li {
  padding: 5px 8px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}
.text-link {
  font-weight: 850;
}
.human-section .proof-panel {
  background: #ffffff;
  border-left: 4px solid var(--green);
}
.benefits-section {
  background: #ffffff;
}
.benefit-list {
  display: grid;
  gap: 12px;
}
.benefit-list article {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}
.benefit-list span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  flex: 0 0 auto;
}
.benefit-list h3 {
  margin: 0;
  font-size: 1rem;
}
.process-grid .step {
  box-shadow: 0 10px 28px rgba(16, 42, 67, 0.06);
}
.footer-grid {
  align-items: start;
}
.footer-about {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 4px 6px 4px 0;
}
.footer-about p {
  color: #c8ddeb;
  margin: 0;
  max-width: 34rem;
}
.footer-order {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 8px;
  background: #38bdf8;
  color: #071b2f !important;
  font-weight: 900;
}
.footer-group {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 10px;
}
.footer-group summary {
  cursor: pointer;
  color: #ffffff;
  font-weight: 850;
  list-style: none;
  margin-bottom: 9px;
}
.footer-group summary::-webkit-details-marker {
  display: none;
}
.footer-group summary::after {
  content: "+";
  float: right;
  color: #8bdcfb;
}
.footer-group[open] summary::after {
  content: "-";
}
.footer-card {
  background: #ffffff;
  border: 1px solid #d9e5ee;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  padding: 18px;
  min-height: 100%;
}
.footer-card summary {
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 12px;
  padding: 0;
}
.footer-card summary::after {
  color: var(--blue-strong);
}
.footer-card a,
.site-footer .footer-card a {
  color: #0f4c81;
  font-weight: 740;
}
.footer-card a:hover,
.site-footer .footer-card a:hover {
  color: #102a43;
  text-decoration: underline;
}
.footer-card ul {
  gap: 8px;
}
.footer-card li {
  line-height: 1.35;
}
.footer-card li + li {
  padding-top: 7px;
  border-top: 1px solid #edf3f7;
}
.site-footer .footer-card {
  background: #ffffff;
  color: #102a43 !important;
}
.site-footer .footer-card summary,
.site-footer .footer-card li,
.site-footer .footer-card a,
.site-footer .footer-card a:visited {
  color: #102a43 !important;
  opacity: 1;
}
.site-footer .footer-card summary {
  font-weight: 900;
}
.site-footer .footer-card summary::after,
.site-footer .footer-card a:hover,
.site-footer .footer-card a:focus {
  color: #0f4c81 !important;
}

@media (max-width: 759px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .brand small {
    display: none;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.05rem;
  }
  .hero-copy p,
  .lead {
    font-size: 1rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .section {
    padding: 42px 0;
  }
  .card,
  .category-panel,
  .proof-panel,
  .notice-panel,
  .sticky-panel,
  .tool-shell,
  .result-box,
  .ethical-note {
    padding: 18px;
  }
  .site-footer {
    padding-top: 34px;
  }
  .footer-grid {
    gap: 14px;
  }
  .footer-about {
    padding: 0 0 8px;
  }
  .footer-card {
    padding: 16px;
  }
  .footer-card summary {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .footer-card[open] summary {
    margin-bottom: 12px;
  }
  .footer-group:not([open]) ul {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-header .brand {
    gap: 0;
    flex: 0 0 auto;
  }
  .site-header .brand strong,
  .site-header .brand small {
    display: none;
  }
  .mobile-order-btn {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 0.78rem;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }
}

@media (min-width: 760px) {
  .benefit-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .mobile-order-btn,
  .mobile-only {
    display: none;
  }
  .site-header {
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.05);
  }
  .header-inner {
    min-height: 78px;
  }
  .site-nav {
    flex: 1;
    justify-content: flex-end;
  }
  .site-nav ul {
    max-width: none;
    gap: 4px;
  }
  .site-nav a,
  .services-menu summary {
    padding: 9px 10px;
    font-size: 0.88rem;
  }
  .services-menu {
    position: static;
  }
  .mega-menu {
    position: absolute;
    top: calc(100% - 6px);
    left: 50%;
    width: min(1040px, calc(100vw - 40px));
    transform: translateX(-50%);
    grid-template-columns: 1.05fr repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(16, 42, 67, 0.16);
    z-index: 20;
  }
  .mega-group {
    border-top: 0;
    padding-top: 0;
  }
  .mega-group ul {
    display: grid;
  }
  .mega-group a {
    padding: 5px 0;
    font-size: 0.86rem;
  }
  .nav-actions .btn {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.86rem;
  }
  .hero {
    padding: 86px 0 56px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.88fr);
    gap: 48px;
  }
  .hero-visual {
    min-height: 460px;
  }
  .field-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1.25fr repeat(4, minmax(160px, 1fr));
    gap: 16px;
  }
  .footer-group {
    border-top: 0;
    padding-top: 0;
  }
  .footer-group summary {
    pointer-events: none;
  }
  .footer-group summary::after {
    content: "";
  }
  .footer-card {
    padding: 20px 18px;
  }
}

/* Premium compact footer */
.site-footer {
  background: #061a2d;
  color: #c8ddeb;
  padding: 34px 0 16px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.site-footer .footer-about {
  gap: 12px;
  padding: 0;
}
.site-footer .footer-about p {
  color: #c8ddeb;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 27rem;
}
.site-footer .footer-brand {
  color: #ffffff;
}
.site-footer .footer-order {
  width: fit-content;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 8px;
  background: #38bdf8;
  color: #061a2d !important;
  font-size: 0.92rem;
  font-weight: 900;
}
.site-footer .footer-group {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}
.site-footer .footer-group h2 {
  color: #f5fbff;
  font-size: 0.9rem;
  margin: 0 0 10px;
}
.site-footer .footer-group ul {
  display: grid !important;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-group a,
.site-footer .footer-group a:visited {
  color: #b9d0e3;
  font-size: 0.94rem;
  line-height: 1.35;
  text-decoration: none;
}
.site-footer .footer-group a:hover,
.site-footer .footer-group a:focus {
  color: #8bdcfb;
  text-decoration: underline;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #9fb6c8;
  font-size: 0.84rem;
  margin-top: 24px;
  padding-top: 14px;
}
.site-footer .footer-bottom p {
  margin: 0;
}

@media (min-width: 860px) {
  .site-footer .footer-grid {
    grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 1fr));
    gap: 34px;
  }
  .site-footer .footer-group {
    border-top: 0;
    padding-top: 2px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding-top: 28px;
  }
  .site-footer .footer-order {
    width: 100%;
  }
  .site-footer .footer-grid {
    gap: 18px;
  }
  .site-footer .footer-group {
    padding-top: 12px;
  }
  .site-footer .footer-group ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 8px;
  }
  .site-footer .footer-group a {
    display: inline-block;
  }
  .site-footer .footer-bottom {
    margin-top: 20px;
  }
}
