:root {
  --navy-950: #07111f;
  --navy-900: #0f172a;
  --navy-800: #172554;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #0078d4;
  --sky-100: #eaf4ff;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --surface: #f8fafc;
  --white: #ffffff;
  --teal: #14b8a6;
  --green: #10b981;
  --orange: #f97316;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --border: 1px solid rgba(148, 163, 184, 0.28);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-900);
  background: var(--white);
  font-family: "Pretendard", "Segoe UI", "Noto Sans KR", Arial, sans-serif;
  line-height: 1.65;
  word-break: keep-all;
}

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

button {
  font: inherit;
}

.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;
}

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

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 44px 0 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.96);
  box-shadow: 0 14px 40px rgba(7, 17, 31, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-500), var(--teal));
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--blue-600);
  border-radius: 8px;
}

.nav-cta.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  border-radius: 8px;
}

.menu-line,
.menu-line::before,
.menu-line::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.menu-line::before {
  transform: translateY(-7px);
}

.menu-line::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 124px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(20, 184, 166, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy-950), #0b2342 55%, #0f2d56);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9dd8ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.hero-actions,
.remote-card,
.footer-grid,
.panel-topline {
  display: flex;
  align-items: center;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.secure-note {
  margin: 0;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.55;
}

.hero-secure-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.button-large {
  min-height: 56px;
  padding: 0 24px;
  font-size: 17px;
}

.button.primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.button.primary:hover,
.button.primary:focus {
  background: var(--blue-700);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.hero-stats dt {
  margin-bottom: 4px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.hero-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.panel-topline {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.panel-topline strong {
  color: var(--white);
}

.orbit-card {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 58%),
    rgba(7, 17, 31, 0.34);
}

.partner-desk {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.82), rgba(15, 45, 86, 0.72)),
    radial-gradient(circle at 90% 20%, rgba(20, 184, 166, 0.24), transparent 34%);
  border: 1px solid rgba(157, 216, 255, 0.18);
  border-radius: var(--radius);
}

.desk-header,
.desk-main,
.desk-checks,
.desk-score {
  display: flex;
  align-items: center;
}

.desk-header {
  justify-content: space-between;
  gap: 12px;
}

.desk-pill,
.desk-status {
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  border-radius: 8px;
}

.desk-pill {
  color: #bde6ff;
  background: rgba(37, 99, 235, 0.18);
}

.desk-status {
  color: #bdf8df;
  background: rgba(16, 185, 129, 0.15);
}

.desk-main {
  justify-content: space-between;
  gap: 22px;
  min-height: 172px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.desk-label {
  display: block;
  margin-bottom: 12px;
  color: #9dd8ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.desk-main strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.25;
}

.desk-main p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.desk-score {
  flex: 0 0 auto;
  width: 112px;
  height: 112px;
  justify-content: center;
  gap: 0;
  padding: 11px;
  background: conic-gradient(from 170deg, var(--blue-600), var(--teal), rgba(255, 255, 255, 0.14), var(--blue-600));
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.desk-score span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin: -2px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  background: rgba(7, 17, 31, 0.78);
  border-radius: 50%;
}

.desk-checks {
  flex-wrap: wrap;
  gap: 8px;
}

.desk-checks span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
}

.orbit-card::before,
.orbit-card::after {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(157, 216, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.orbit-card::after {
  width: 150px;
  height: 150px;
}

.orbit-core {
  position: relative;
  z-index: 1;
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  padding: 22px;
  text-align: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.88), rgba(20, 184, 166, 0.82));
  border-radius: 50%;
}

.orbit-core strong,
.orbit-core span {
  display: block;
}

.orbit-core span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.4;
}

.orbit-dot {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  background: var(--teal);
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
}

.dot-1 {
  top: 58px;
  right: 106px;
}

.dot-2 {
  bottom: 68px;
  left: 94px;
  background: var(--blue-500);
}

.dot-3 {
  right: 84px;
  bottom: 88px;
  background: var(--green);
}

.panel-list {
  display: grid;
  gap: 12px;
}

.panel-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.panel-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.status-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--blue-500);
  border-radius: 50%;
}

.status-dot.teal {
  background: var(--teal);
}

.status-dot.green {
  background: var(--green);
}

.quick {
  background: linear-gradient(to bottom, var(--surface), var(--white));
}

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

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.section-heading p:not(.eyebrow) {
  color: var(--slate-600);
  font-size: 18px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-card,
.service-card,
.support-list article,
.process-list li {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.quick-card {
  display: grid;
  min-height: 168px;
  align-content: start;
  padding: 22px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-card:hover,
.quick-card:focus {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: var(--shadow);
}

.quick-card.accent {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--blue-700));
}

.quick-card.primary-quick {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-color: rgba(37, 99, 235, 0.4);
}

.quick-number,
.service-index {
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
}

.quick-card.accent .quick-number,
.quick-card.primary-quick .quick-number,
.quick-card.primary-quick small,
.quick-card.accent small {
  color: rgba(255, 255, 255, 0.76);
}

.quick-card strong {
  margin: 18px 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.quick-card small {
  color: var(--slate-600);
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.priority-services .service-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, rgba(20, 184, 166, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy-900), var(--blue-700));
  border-color: rgba(37, 99, 235, 0.45);
}

.service-card {
  min-height: 236px;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.service-card.security {
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(20, 184, 166, 0.06)),
    var(--white);
}

.service-card.featured .service-index,
.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card h3 {
  margin-top: 20px;
}

.service-card p,
.support-list p,
.process-list p,
.contact-copy p,
.remote-card p,
.site-footer p {
  color: var(--slate-600);
}

.message {
  background: var(--white);
}

.message-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(20, 184, 166, 0.05)),
    var(--surface);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(15, 23, 42, 0.08);
}

.message-card h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 44px);
}

.message-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.message-copy p {
  margin-bottom: 0;
  color: var(--slate-700);
  font-size: 18px;
}

.support {
  background: var(--surface);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
}

.support-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--blue-600);
  font-weight: 900;
  background: var(--sky-100);
  border-radius: 8px;
}

.support-list p {
  margin-bottom: 0;
}

.process {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 214px;
  padding: 24px;
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 900;
  background: var(--navy-900);
  border-radius: 50%;
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.remote {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(20, 184, 166, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.remote-card {
  justify-content: space-between;
  gap: 32px;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.remote-card p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.78);
}

.remote-action {
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
  justify-items: end;
}

.remote-button {
  min-height: 60px;
  padding: 0 26px;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.28);
}

.remote-button span {
  margin-left: 10px;
  font-size: 20px;
  line-height: 1;
}

.remote-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.contact {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-info p {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.32);
}

.contact-info strong {
  color: var(--navy-900);
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-card {
  border: var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(20, 184, 166, 0.05)),
    var(--white);
}

.contact-card-label {
  width: fit-content;
  padding: 7px 10px;
  color: var(--blue-700);
  background: var(--sky-100);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.contact-card h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--slate-600);
}

.contact-topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 4px 0;
  list-style: none;
}

.contact-topic-list li {
  padding: 11px 12px;
  color: var(--slate-600);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 8px;
  font-size: 14px;
}

.contact-button {
  width: fit-content;
}

.contact-note {
  min-height: 24px;
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.footer-grid {
  justify-content: space-between;
  gap: 28px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-keywords {
  max-width: 460px;
  text-align: right;
}

.mobile-fixed-cta {
  display: none;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-panel {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 70px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .site-header {
    min-height: 68px;
    padding: 0 14px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(7, 17, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .mobile-fixed-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    background: rgba(7, 17, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(7, 17, 31, 0.28);
    backdrop-filter: blur(16px);
  }

  .mobile-fixed-cta a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    background: var(--blue-600);
    border-radius: 8px;
  }

  .mobile-fixed-cta a:last-child {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 98px;
  }

  h1 {
    margin-bottom: 28px;
    line-height: 1.16;
  }

  .hero-text {
    max-width: 34rem;
    margin-bottom: 38px;
    font-size: 18px;
    line-height: 1.82;
  }

  .hero-stats {
    display: none;
  }

  .hero-stats,
  .quick-grid,
  .service-grid,
  .process-list,
  .contact-topic-list {
    grid-template-columns: 1fr;
  }

  .message-card {
    padding: 28px;
  }

  .hero-panel {
    display: none;
  }

  .orbit-card {
    min-height: 240px;
  }

  .remote-card,
  .footer-grid {
    display: grid;
  }

  .remote-action {
    justify-items: stretch;
  }

  .remote-button {
    width: 100%;
  }

  .remote-action p {
    text-align: center;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-info p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-keywords {
    text-align: left;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 36px;
  }

  .button {
    width: 100%;
  }

  .brand small {
    display: none;
  }
}
