:root {
  color-scheme: light;
  --ink: #14191f;
  --muted: #5e6874;
  --line: #d9dee5;
  --panel: #ffffff;
  --paper: #f6f8fb;
  --teal: #0f766e;
  --teal-dark: #134e4a;
  --amber: #b86b16;
  --red: #a33a32;
  --shadow: 0 22px 70px rgba(22, 29, 36, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 222, 229, 0.8);
  background: rgba(246, 248, 251, 0.9);
  backdrop-filter: blur(14px);
}

.brand,
.site-header nav,
.hero-actions,
.hero-facts,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.site-header nav {
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header nav a:hover {
  color: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 144px);
  padding: clamp(28px, 4vw, 52px) clamp(20px, 4vw, 56px) 22px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.button.primary {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-facts {
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.hero-facts div {
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-facts dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section,
.product-band,
.contact {
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 56px);
}

.section {
  max-width: 1180px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.intro > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 720px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-grid article:nth-child(2) {
  border-top-color: var(--amber);
}

.service-grid article:nth-child(3) {
  border-top-color: var(--red);
}

.card-number {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--teal);
  font-weight: 900;
}

.service-grid p,
.product-band p,
.product-points,
.product-card p,
.timeline span,
.contact p {
  color: var(--muted);
}

.product-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  max-width: none;
  background: #182126;
  color: #ffffff;
}

.product-band > div,
.product-points {
  width: min(100%, 620px);
}

.product-band > div {
  justify-self: end;
}

.product-band p,
.product-points {
  color: #d5dde3;
}

.product-points {
  display: grid;
  gap: 12px;
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.product-points strong {
  color: #ffffff;
}

.product-points span {
  color: #d5dde3;
}

.product-price-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.product-price-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.product-price-list.dark article {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.product-price-list span {
  color: var(--teal-dark);
  font-weight: 900;
  text-align: right;
}

.product-price-list.dark span {
  color: #ffffff;
}

.product-price-list del,
.auth-note del {
  color: var(--muted);
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.product-price-list strong,
.auth-note strong {
  color: var(--teal-dark);
  font-weight: 1000;
}

.product-price-list.dark strong {
  color: #ffffff;
}

.product-price-list small,
.auth-note small {
  color: var(--muted);
  font-weight: 900;
}

.products {
  border-top: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.product-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.product-card.featured {
  border-top: 4px solid var(--teal);
}

.product-card:nth-child(2) {
  border-top: 4px solid var(--amber);
}

.product-card:nth-child(3) {
  border-top: 4px solid var(--red);
}

.product-status {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.feature-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 800;
}

.feature-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 170px;
  padding: 24px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #ffffff;
}

.timeline li:nth-child(2) {
  border-left-color: var(--amber);
}

.timeline li:nth-child(3) {
  border-left-color: var(--red);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 24px;
  max-width: 1180px;
  border-top: 1px solid var(--line);
  align-items: center;
}

.contact > div {
  max-width: 720px;
}

.contact-email {
  display: inline-block;
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
}

.contact-open {
  justify-self: end;
  min-width: 180px;
}

.contact-dialog {
  width: min(880px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-dialog::backdrop {
  background: rgba(20, 25, 31, 0.62);
}

.dialog-close-form {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  height: 0;
}

.dialog-close {
  width: 42px;
  height: 42px;
  margin: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.dialog-heading {
  padding: 30px 30px 0;
}

.dialog-heading h2 {
  margin-bottom: 10px;
}

.dialog-heading p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.contact-dialog .contact-form {
  margin-top: 20px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.contact-form input {
  min-height: 46px;
  padding: 0 13px;
}

.contact-form select {
  min-height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 96px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 118, 110, 0.16);
}

.checkbox-field {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--teal-dark);
}

.product-select-field {
  display: grid;
  gap: 8px;
}

.tax-invoice-fields {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfc;
}

.fixed-product {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfc;
}

.fixed-product span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.dialog-actions {
  display: flex;
  gap: 10px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.auth-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.12), transparent 34%),
    var(--paper);
}

.auth-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 5vw, 56px);
}

.auth-panel {
  width: min(100%, 520px);
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.auth-brand {
  margin-bottom: 30px;
}

.auth-panel h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.auth-copy,
.auth-note {
  color: var(--muted);
}

.auth-form {
  display: grid;
  gap: 16px;
  margin: 26px 0 16px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.auth-form input,
.auth-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.auth-form input:focus,
.auth-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 118, 110, 0.16);
}

.auth-note {
  min-height: 48px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f1f5f7;
  font-size: 0.94rem;
}

.auth-link {
  color: var(--teal-dark);
  font-weight: 900;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-page {
  min-height: 100vh;
  background: var(--paper);
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 0 clamp(18px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 251, 0.94);
  backdrop-filter: blur(14px);
}

.admin-topbar nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-topbar nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.admin-topbar nav a:hover,
.admin-topbar nav a[aria-current="page"] {
  background: #ffffff;
  color: var(--teal-dark);
}

.admin-shell {
  display: grid;
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px) clamp(18px, 3vw, 40px) 64px;
}

.admin-hero,
.panel-heading,
.inline-search,
.issued-key {
  display: flex;
  align-items: center;
}

.admin-hero {
  justify-content: space-between;
  gap: 20px;
}

.admin-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.admin-hero p {
  margin-bottom: 0;
  color: var(--muted);
}

.admin-status {
  min-height: 26px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-grid article,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.metric-grid article {
  padding: 20px;
}

.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.admin-grid {
  display: grid;
  gap: 14px;
}

.admin-grid.two {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.admin-panel {
  padding: 22px;
}

.admin-panel.subtle {
  align-content: start;
  background: #f9fbfc;
}

.admin-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.admin-panel p {
  color: var(--muted);
}

.panel-heading {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.panel-heading h2 {
  margin: 0;
}

.inline-search {
  gap: 8px;
}

.inline-search input {
  min-width: min(42vw, 320px);
}

.admin-form {
  display: grid;
  gap: 13px;
}

.admin-form.compact {
  align-content: start;
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.inline-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.admin-form input,
.admin-form select,
.inline-search input {
  min-height: 42px;
  padding: 0 12px;
}

.admin-form textarea {
  min-height: 84px;
  padding: 10px 12px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.inline-search input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 118, 110, 0.16);
}

.issued-key {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  border: 1px dashed var(--teal);
  border-radius: 8px;
  background: #f3fbf9;
}

.issued-key span {
  color: var(--muted);
  font-weight: 900;
}

.issued-key strong {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 1.08rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px 10px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-table td {
  font-size: 0.93rem;
}

.admin-table code {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-weight: 900;
}

.admin-table small {
  color: var(--muted);
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover,
.clickable-row:focus {
  background: #f3fbf9;
  outline: none;
}

.customer-detail {
  display: grid;
  gap: 14px;
}

.product-admin-table {
  min-width: 1080px;
}

.table-input {
  width: 100%;
  min-height: 36px;
  margin-top: 6px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.table-input.narrow {
  max-width: 96px;
}

.table-input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 118, 110, 0.16);
}

.table-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  color: var(--muted);
  font-weight: 900;
}

.table-action {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--teal-dark);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.button.danger {
  border-color: #c7473d;
  color: #a33a32;
}

.logo-lab {
  min-height: 100vh;
  padding: clamp(28px, 5vw, 64px);
}

.logo-lab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 32px;
  max-width: 1120px;
}

.logo-lab-header p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.logo-grid article > img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.logo-grid h2 {
  margin: 8px 0 0;
  font-size: 1.15rem;
}

.logo-grid p {
  margin: 0;
  color: var(--muted);
}

.logo-grid .wide {
  grid-column: span 2;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 128px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
}

.logo-lockup img {
  width: 68px;
  height: 68px;
}

.dark-preview {
  background: #182126;
  color: #ffffff;
}

.dark-preview p {
  color: #d5dde3;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .product-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .product-grid,
  .timeline,
  .logo-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-topbar {
    grid-template-columns: 1fr;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .admin-topbar nav {
    overflow-x: auto;
  }

  .admin-grid.two {
    grid-template-columns: 1fr;
  }

  .product-band > div,
  .product-points {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .site-header nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 16px;
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
  }

  .lead {
    margin-bottom: 20px;
  }

  .hero-actions {
    gap: 8px;
    margin-bottom: 0;
  }

  .hero-facts {
    display: none;
  }

  .hero-media img {
    max-height: 150px;
    object-position: center;
  }

  .service-grid,
  .product-grid,
  .timeline,
  .logo-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .admin-hero,
  .panel-heading,
  .inline-search {
    align-items: stretch;
    flex-direction: column;
  }

  .inline-search input {
    min-width: 0;
  }

  .logo-lab-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-grid .wide {
    grid-column: span 1;
  }

  .contact,
  .site-footer {
    align-items: flex-start;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-open {
    justify-self: stretch;
  }

  .dialog-heading {
    padding: 26px 20px 0;
  }

  .contact-dialog .contact-form {
    padding: 20px;
  }

  .form-row,
  .dialog-actions {
    grid-template-columns: 1fr;
  }

  .dialog-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
