
:root {
  --black: #050505;
  --logo-blue: #3fa7dc;
  --logo-blue-dark: #1d8fca;
  --logo-blue-deep: #075985;
  --logo-blue-soft: #eaf7ff;
  --navy: #0f172a;
  --navy2: #111827;
  --green: #10b981;
  --green2: #34d399;
  --green-dark: #047857;
  --mint: #ecfdf5;
  --gray: #334155;
  --muted: #475569;
  --line: #d7dde8;
  --bg: #f8fafc;
  --white: #ffffff;
  --yellow: #fde047;
  --red: #ef4444;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--black);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; color: var(--black); }
.wrap { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 85% 10%, rgba(52, 211, 153, 0.32), transparent 28%),
    radial-gradient(circle at 5% 90%, rgba(6, 182, 212, 0.18), transparent 26%),
    linear-gradient(135deg, #020617, #0f172a 52%, #064e3b);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--green2);
  color: #022c22;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.25);
  overflow: hidden;
}
.logo.has-custom-logo {
  width: 210px;
  height: 62px;
  max-width: 32vw;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  box-shadow: none;
  overflow: hidden;
  place-items: center;
}
.logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  will-change: transform;
  transform-origin: center;
}
.brand.has-custom-logo {
  gap: 14px;
}
.brand.has-custom-logo .brand-copy {
  display: none;
}
.logo-mark { font-size: 27px; line-height: 1; }
.brand strong { display: block; font-size: 20px; letter-spacing: -0.03em; color: white; }
.brand span { display: block; font-size: 12px; color: #e0f2fe; margin-top: -2px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: white;
  color: #020617;
  font-size: 14px;
  font-weight: 900;
}
.admin-link {
  margin-left: 8px;
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 52px 0 88px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  color: white;
  margin-bottom: 22px;
}
h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.06em;
  color: white;
}
h1 .point { color: #86efac; }
.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: white;
  font-size: 18px;
  line-height: 1.85;
}
.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 18px;
  font-weight: 950;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-size: 16px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green2); color: #022c22; box-shadow: 0 16px 36px rgba(16,185,129,0.25); }
.btn-dark { background: #020617; color: white; }
.btn-light { border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: white; }
.btn-outline { border: 1px solid var(--line); background: white; color: var(--black); }
.btn-danger { background: #fee2e2; color: #991b1b; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 560px;
}
.stat {
  padding: 18px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
}
.stat strong { display:block; font-size: 28px; color: #86efac; line-height: 1.1; }
.stat span { display:block; margin-top: 6px; font-size: 12px; color: white; }

.form-card {
  background: white;
  color: var(--black);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-title { margin: 0; font-size: 28px; letter-spacing: -0.04em; color: var(--black); }
.form-desc { margin: 9px 0 18px; color: var(--black); font-size: 15px; line-height: 1.75; }
.quick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 22px;
}
.sns-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  border-radius: 18px;
  padding: 15px 12px;
  font-weight: 950;
  font-size: 15px;
  text-align: center;
}
.kakao { background: var(--yellow); color: #111827; }
.phone { background: #020617; color: white; }
.form-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  margin: 12px 0 18px;
}
.form-divider::before, .form-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}
.field { margin-bottom: 14px; }
.field label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 950; color: var(--black); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  background: white;
  color: var(--black);
}
textarea { min-height: 96px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #64748b; }
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #f1f5f9;
  border-radius: 18px;
  padding: 14px;
  color: var(--black);
  font-size: 13px;
  line-height: 1.65;
  margin: 16px 0;
}
.agree input { width: auto; margin-top: 4px; accent-color: var(--green); }
.full { width: 100%; }
.notice {
  margin-top: 14px;
  padding: 14px;
  background: var(--mint);
  color: #064e3b;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

section { padding: 72px 0; }
.center { text-align: center; }
.eyebrow {
  color: #047857;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.05em;
  color: var(--black);
}
.lead {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--black);
  font-size: 17px;
  line-height: 1.85;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(15,23,42,.05);
  color: var(--black);
}
.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--mint);
  color: #047857;
  font-size: 24px;
  margin-bottom: 18px;
}
.card h3 { margin: 0; font-size: 20px; letter-spacing: -0.03em; color: var(--black); }
.card p { margin: 9px 0 0; color: var(--black); font-size: 14px; line-height: 1.75; }

.example { background: white; }
.example-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: center;
}
.dark-panel {
  background: #020617;
  color: white;
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.dark-panel h2 { color: white; }
.dark-panel .pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green2);
  color: #022c22;
  font-weight: 950;
  font-size: 13px;
  margin-bottom: 18px;
}
.check-list { margin-top: 26px; display: grid; gap: 12px; }
.check {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
}
.check b { display:block; color:white; }
.check span { display:block; color:white; font-size: 13px; margin-top: 3px; }
.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ba {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  color: var(--black);
}
.ba .before { color: var(--black); font-weight: 950; font-size: 14px; }
.ba .old { margin: 4px 0 16px; color: #334155; text-decoration: line-through; font-size: 25px; font-weight: 950; }
.ba .after { color: #047857; font-weight: 950; font-size: 14px; }
.ba .new { margin: 4px 0 12px; color: #0f172a; font-size: 25px; font-weight: 950; line-height: 1.2; }
.ba p { margin: 0; color: var(--black); font-size: 14px; }

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 30px;
}
.review-head p { max-width: 440px; margin: 0; color: var(--black); font-size: 14px; line-height: 1.75; }
.review-card .tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: #047857;
  font-size: 12px;
  font-weight: 950;
}
.review-card blockquote {
  margin: 18px 0 16px;
  color: var(--black);
  font-size: 14px;
  line-height: 1.85;
}
.review-card strong { display:block; color: var(--black); }

.bottom-cta {
  background: #020617;
  color: white;
  padding: 64px 0;
}
.cta-box {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  border-radius: 32px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.cta-box p { color: #86efac; font-weight: 950; margin: 0 0 10px; }
.cta-box h2 { color:white; }

footer {
  background: white;
  padding: 38px 0;
  color: var(--black);
  font-size: 13px;
  line-height: 1.8;
}
footer strong { color: #0f172a; display:block; margin-bottom: 8px; }
.footer-row {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
}
.footer-row a { font-weight:950; color:var(--logo-blue-dark); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(120px);
  background: #020617;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 900;
  transition: transform .25s ease;
  z-index: 50;
  text-align: center;
  width: min(92%, 560px);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* Admin */
.admin-body { background:#f8fafc; }
.admin-header {
  background:#020617;
  color:white;
  padding: 28px 0;
}
.admin-header .wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.admin-header h1 {
  font-size: 32px;
  letter-spacing:-.05em;
}
.admin-header p { color:white; margin:8px 0 0; }
.admin-nav {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.admin-nav button, .admin-nav a {
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.1);
  color:white;
  padding:11px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:900;
}
.admin-nav button.active {
  background:#34d399;
  color:#022c22;
}
.admin-main { padding:36px 0 72px; }
.admin-section { display:none; }
.admin-section.active { display:block; }
.admin-grid {
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:20px;
}
.admin-card {
  background:white;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:0 12px 32px rgba(15,23,42,.06);
}
.admin-card h2 { font-size:28px; }
.help {
  color:var(--black);
  margin: 8px 0 22px;
  font-size:15px;
}
.dropzone {
  min-height:230px;
  border:2px dashed #94a3b8;
  border-radius:28px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:24px;
  background:#f8fafc;
  transition:.18s ease;
}
.dropzone.dragover {
  border-color:#10b981;
  background:var(--logo-blue-soft);
}
.dropzone strong { display:block; font-size:19px; margin-bottom:8px; }
.dropzone span { display:block; font-size:14px; color:var(--black); margin-bottom:14px; }
.preview-logo {
  width:160px;
  height:160px;
  border:1px solid var(--line);
  border-radius:30px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:#f8fafc;
  margin-bottom:18px;
}
.preview-logo img { width:100%; height:100%; object-fit:contain; }
.preview-logo .placeholder { font-size:52px; color:var(--logo-blue-dark); }
.setting-row {
  padding:18px;
  border:1px solid var(--line);
  border-radius:20px;
  margin-top:14px;
}
.setting-row b { display:block; color:var(--black); margin-bottom:5px; }
.setting-row p { margin:0; color:var(--black); font-size:14px; }
.table-tools {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin:20px 0;
  flex-wrap:wrap;
}
.searchbox {
  max-width:360px;
}
.db-summary {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-bottom:18px;
}
.db-summary div {
  background:white;
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
}
.db-summary b { display:block; font-size:24px; color:var(--logo-blue-dark); }
.db-summary span { font-size:13px; font-weight:900; color:var(--black); }
.table-wrap {
  overflow:auto;
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
}
table {
  width:100%;
  border-collapse:collapse;
  min-width:1000px;
}
th, td {
  padding:13px 12px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
  font-size:14px;
  color:var(--black);
}
th {
  background:#f1f5f9;
  font-weight:950;
  white-space:nowrap;
}
tr:hover td { background:#f8fafc; }
td.memo { max-width:260px; white-space:pre-wrap; }
.empty {
  text-align:center;
  padding:48px 20px;
  color:var(--black);
  font-weight:900;
}

@media (max-width: 900px) {
  .hero-grid, .example-grid, .admin-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .review-head, .cta-box, .footer-row, .admin-header .wrap { display: block; }
  .cta-box .btn { margin-top: 24px; }
  .admin-nav { margin-top:16px; }
  .nav-cta { display: none; }
}
@media (max-width: 560px) {
  .wrap { width: min(100% - 26px, 1120px); }
  .hero-grid { padding: 28px 0 56px; gap: 28px; }
  .buttons, .quick-row { grid-template-columns: 1fr; flex-direction: column; }
  .btn { width: 100%; }
  .stats, .two, .cards, .before-after, .db-summary { grid-template-columns: 1fr; }
  section { padding: 54px 0; }
  .form-card, .dark-panel, .cta-box, .admin-card { border-radius: 26px; padding: 22px; }
}


/* V3: Logo crop controls */
.logo-crop-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  align-items: start;
}
.crop-stage {
  position: relative;
  width: 340px;
  height: 190px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(45deg, #e2e8f0 25%, transparent 25%),
    linear-gradient(-45deg, #e2e8f0 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e2e8f0 75%),
    linear-gradient(-45deg, transparent 75%, #e2e8f0 75%);
  background-size: 22px 22px;
  background-position: 0 0, 0 11px, 11px -11px, -11px 0px;
  border: 2px solid #cbd5e1;
  cursor: grab;
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.45);
}
.crop-stage:active { cursor: grabbing; }
.crop-stage::after {
  content:"";
  position:absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px dashed rgba(15,23,42,.35);
  pointer-events:none;
}
.crop-stage img {
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  object-fit: contain;
  transform-origin:center;
  user-select:none;
  pointer-events:none;
  padding: 12px;
}
.crop-placeholder {
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-size:66px;
  color:var(--logo-blue-dark);
  font-weight:950;
}
.crop-controls { display:grid; gap:14px; }
.range-row label { display:flex; justify-content:space-between; gap:8px; font-size:13px; font-weight:950; color:#050505; margin-bottom:6px; }
.range-row input { padding: 0; accent-color: var(--logo-blue); }
.file-note {
  margin-top: 12px;
  border-radius: 18px;
  background:#f1f5f9;
  padding: 14px;
  color:#050505;
  font-size:13px;
  line-height:1.7;
}

/* V3: Hexagon brand design */
.hex-brand-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(63,167,220,.15), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(63,167,220,.12), transparent 30%),
    #f8fafc;
}
.hex-bg-piece {
  position:absolute;
  width:180px;
  height:156px;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
  border-radius: 20px;
  opacity:.16;
  background:var(--logo-blue);
  transform: rotate(-14deg) skew(-3deg, 2deg);
}
.hex-bg-piece.one { left:-50px; top:60px; }
.hex-bg-piece.two { right:-36px; bottom:56px; width:230px; height:198px; background:#85d7f5; transform: rotate(21deg) skew(4deg, -2deg); }
.hex-brand-grid {
  position: relative;
  display:grid;
  grid-template-columns: .92fr 1.08fr;
  gap:36px;
  align-items:center;
}
.hex-emblem-wrap {
  position:relative;
  min-height:440px;
  display:grid;
  place-items:center;
}
.hex-emblem {
  position:relative;
  width:min(360px, 90vw);
  height:312px;
  clip-path: polygon(24% 2%, 77% 8%, 99% 51%, 73% 96%, 21% 91%, 1% 46%);
  background:linear-gradient(135deg, #075985, #1d8fca 48%, #7dd3fc);
  color:white;
  display:grid;
  place-items:center;
  text-align:center;
  padding:50px;
  box-shadow:0 35px 80px rgba(29,143,202,.30);
  transform: rotate(-5deg);
}
.hex-emblem::before {
  content:"";
  position:absolute;
  inset:18px;
  clip-path: polygon(24% 2%, 77% 8%, 99% 51%, 73% 96%, 21% 91%, 1% 46%);
  border:2px solid rgba(255,255,255,.32);
}
.hex-emblem strong { display:block; font-size:42px; letter-spacing:-.06em; line-height:1.05; }
.hex-emblem span { display:block; margin-top:14px; font-size:15px; font-weight:900; color:#eaf7ff; }
.hex-chip {
  position:absolute;
  display:grid;
  place-items:center;
  width:112px;
  height:98px;
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  background:white;
  border:1px solid #d7dde8;
  color:#050505;
  text-align:center;
  font-weight:950;
  font-size:13px;
  box-shadow:0 18px 38px rgba(15,23,42,.12);
}
.hex-chip small { display:block; color:var(--logo-blue-dark); font-size:18px; line-height:1; margin-bottom:4px; }
.hex-chip.c1 { left:4%; top:8%; transform: rotate(9deg); }
.hex-chip.c2 { right:0; top:18%; transform: rotate(-11deg); }
.hex-chip.c3 { right:7%; bottom:6%; transform: rotate(8deg); }
.hex-chip.c4 { left:0; bottom:14%; transform: rotate(-8deg); }
.hex-copy-card {
  background:white;
  border:1px solid #d7dde8;
  border-radius:34px;
  padding:34px;
  box-shadow:0 20px 54px rgba(15,23,42,.08);
}
.hex-points {
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:24px;
}
.hex-point {
  position:relative;
  padding:18px 18px 18px 58px;
  border:1px solid #d7dde8;
  border-radius:22px;
  background:#f8fafc;
  color:#050505;
}
.hex-point::before {
  content:"";
  position:absolute;
  left:16px;
  top:18px;
  width:28px;
  height:25px;
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  background:var(--logo-blue);
  transform: rotate(-12deg);
}
.hex-point b { display:block; font-size:15px; }
.hex-point span { display:block; margin-top:3px; font-size:13px; color:#050505; line-height:1.55; }

/* V3: Hex example redesign */
.hex-example { position:relative; overflow:hidden; }
.hex-example::before {
  content:"";
  position:absolute;
  width:260px;
  height:225px;
  right:8%;
  top:-80px;
  clip-path:polygon(25% 3%,75% 3%,100% 50%,75% 97%,25% 97%,0 50%);
  background:rgba(63,167,220,.12);
  transform:rotate(18deg) skew(4deg,-2deg);
}
.dark-panel.hex-panel { position:relative; overflow:hidden; }
.dark-panel.hex-panel::after {
  content:"";
  position:absolute;
  right:-45px;
  bottom:-35px;
  width:190px;
  height:165px;
  clip-path:polygon(25% 3%,75% 3%,100% 50%,75% 97%,25% 97%,0 50%);
  border:28px solid rgba(63,167,220,.18);
  transform:rotate(-18deg);
}
.ba.hex-ba {
  position:relative;
  overflow:hidden;
  border-radius:28px;
}
.ba.hex-ba::before {
  content:"";
  position:absolute;
  right:-28px;
  top:-32px;
  width:94px;
  height:82px;
  clip-path:polygon(25% 4%,75% 4%,100% 50%,75% 96%,25% 96%,0 50%);
  background:rgba(63,167,220,.18);
  transform:rotate(16deg);
}

/* V3: Homepage review images */
.review-grid-v3 {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:32px;
}
.review-card-v3 {
  background:white;
  border:1px solid #d7dde8;
  border-radius:30px;
  padding:20px;
  color:#050505;
  box-shadow:0 14px 34px rgba(15,23,42,.07);
}
.review-shot {
  height:210px;
  border-radius:22px;
  overflow:hidden;
  background:#f1f5f9;
  border:1px solid #e2e8f0;
  margin-bottom:16px;
}
.review-shot img { width:100%; height:100%; object-fit:cover; display:block; }
.review-card-v3 .tag { display:inline-flex; padding:5px 11px; border-radius:999px; background:var(--logo-blue-soft); color:var(--logo-blue-dark); font-size:12px; font-weight:950; }
.review-card-v3 blockquote { margin:14px 0 12px; font-size:14px; line-height:1.85; color:#050505; }
.review-card-v3 strong { display:block; color:#050505; }
.review-card-v3 .capture-label { margin-top:9px; color:var(--logo-blue-dark); font-size:12px; font-weight:950; }

/* V3: Review admin */
.review-admin-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:20px; }
.review-form-preview {
  border:1px solid #d7dde8;
  border-radius:24px;
  min-height:220px;
  background:#f8fafc;
  display:grid;
  place-items:center;
  overflow:hidden;
  text-align:center;
  color:#050505;
  padding:16px;
}
.review-form-preview img { width:100%; max-height:320px; object-fit:contain; display:block; }
.review-list-admin { display:grid; gap:12px; margin-top:18px; }
.review-admin-item {
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:14px;
  align-items:center;
  padding:14px;
  border:1px solid #d7dde8;
  border-radius:22px;
  background:#fff;
}
.review-admin-thumb { width:120px; height:86px; border-radius:16px; overflow:hidden; background:#f1f5f9; display:grid; place-items:center; font-size:12px; font-weight:950; color:#475569; }
.review-admin-thumb img { width:100%; height:100%; object-fit:cover; }
.review-admin-item b { display:block; color:#050505; }
.review-admin-item p { margin:4px 0 0; font-size:13px; color:#050505; line-height:1.55; }
.review-admin-actions { display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.mini-btn { border:0; border-radius:999px; padding:9px 12px; font-size:12px; font-weight:950; cursor:pointer; }
.mini-edit { background:var(--logo-blue-soft); color:#065f46; }
.mini-delete { background:#fee2e2; color:#991b1b; }
.admin-nav .review-tab-dot::after { content:""; display:inline-block; width:7px; height:7px; border-radius:50%; background:#34d399; margin-left:7px; vertical-align:middle; }

@media (max-width:900px){
  .logo-crop-layout, .hex-brand-grid, .review-admin-grid { grid-template-columns:1fr; }
  .hex-emblem-wrap { min-height:390px; }
  .review-grid-v3 { grid-template-columns:1fr 1fr; }
  .review-admin-item { grid-template-columns:92px 1fr; }
  .review-admin-actions { grid-column:1 / -1; justify-content:flex-start; }
}
@media (max-width:560px){
  .hex-points, .review-grid-v3 { grid-template-columns:1fr; }
  .hex-chip { display:none; }
  .hex-emblem { width:300px; height:260px; padding:38px; }
  .hex-emblem strong { font-size:34px; }
  .crop-stage { width:210px; height:210px; }
}


/* V4: custom non-blocking modal message */
.app-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, .34);
  padding: 24px;
  animation: modalFade .16s ease;
}
.app-modal {
  width: min(420px, 100%);
  background: white;
  border: 1px solid #d7dde8;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(2, 6, 23, .28);
  padding: 26px;
  text-align: center;
  color: #050505;
}
.app-modal strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}
.app-modal p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #050505;
}
.app-modal button {
  margin-top: 18px;
  border: 0;
  border-radius: 16px;
  background: var(--logo-blue);
  color: white;
  font-weight: 950;
  padding: 12px 18px;
  cursor: pointer;
}
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* V4: Customer DB two-line layout */
.customer-main-row td {
  white-space: nowrap;
}
.customer-name {
  white-space: nowrap;
  min-width: 92px;
}
.customer-phone {
  white-space: nowrap;
  min-width: 125px;
}
.customer-category {
  white-space: normal;
  min-width: 170px;
  max-width: 240px;
}
.customer-memo-row td {
  background: #fbfdff;
  border-bottom: 2px solid #d7dde8;
}
.memo-line {
  white-space: normal;
  line-height: 1.7;
  color: #050505;
  padding-top: 0 !important;
}
.memo-label {
  display: inline-flex;
  margin-right: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--logo-blue-soft);
  color: var(--logo-blue-deep);
  font-weight: 950;
  font-size: 12px;
}
.admin-card .table-wrap table {
  min-width: 980px;
}

@media (max-width: 560px) {
  .logo.has-custom-logo {
    width: 168px;
    height: 50px;
    max-width: 55vw;
  }
  .logo-crop-layout {
    grid-template-columns: 1fr;
  }
  .crop-stage {
    width: 100%;
    max-width: 340px;
    height: 190px;
  }
}


/* V5: category manager */
.category-fields {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.category-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.category-row input {
  font-weight: 800;
}
.category-remove {
  border: 0;
  border-radius: 14px;
  background: #fee2e2;
  color: #991b1b;
  font-weight: 950;
  padding: 12px 14px;
  cursor: pointer;
}
.category-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.category-pill {
  display: inline-flex;
  border-radius: 999px;
  background: var(--logo-blue-soft);
  color: var(--logo-blue-deep);
  font-weight: 950;
  padding: 7px 12px;
  font-size: 13px;
}

/* V5: tighter DB columns after premium removal */
.customer-category {
  min-width: 210px;
  max-width: 320px;
}
.admin-card .table-wrap table {
  min-width: 860px;
}
.customer-main-row td {
  white-space: nowrap;
}
.customer-main-row .customer-category {
  white-space: normal;
}
.logo.has-custom-logo img {
  object-position: center;
}


/* V6: header blog menu and safer logo sizing */
.nav-blog {
  margin-left: 8px;
  background: rgba(255,255,255,.12);
  color: white;
  border: 1px solid rgba(255,255,255,.22);
}
.hero .brand .logo.has-custom-logo {
  flex: 0 0 178px !important;
  width: 178px !important;
  height: 54px !important;
  max-width: 178px !important;
  min-width: 178px !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: none !important;
}
.hero .brand .logo.has-custom-logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}
.form-card .form-desc {
  color: #050505 !important;
  font-weight: 700;
}

/* V6: review more card and all reviews page */
.review-grid-v3.review-preview-grid {
  grid-template-columns: repeat(3, 1fr);
}
.review-more-card {
  min-height: 230px;
  border: 2px dashed #b7dff3;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff, var(--logo-blue-soft));
  color: #050505;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}
.review-more-card .plus {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--logo-blue);
  color: white;
  font-size: 36px;
  font-weight: 950;
  margin-bottom: 10px;
}
.review-more-card b {
  display: block;
  font-size: 24px;
}
.review-more-card p {
  margin: 8px 0 0;
  font-weight: 800;
  color: #050505;
}
.reviews-page-hero {
  background: linear-gradient(135deg, #020617, #0f172a 56%, #075985);
  color: white;
  padding: 26px 0 74px;
}
.reviews-page-hero h1 {
  margin-top: 48px;
  max-width: 760px;
}
.reviews-page-hero p {
  color: white;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.85;
}
.review-count-badge {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 950;
  margin-top: 24px;
}
.all-reviews-section {
  padding: 64px 0 86px;
}

/* V6: phone modal */
.phone-consult-modal .phone-modal-number {
  margin: 18px 0 10px;
  padding: 18px;
  border-radius: 18px;
  background: var(--logo-blue-soft);
  color: var(--logo-blue-deep);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: .02em;
}
.phone-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}
.phone-modal-actions button {
  margin-top: 0;
}
.phone-modal-actions [data-close-modal] {
  background: #0f172a;
}

/* V6: responsive admin layout improvement */
@media (max-width: 1240px) {
  .admin-grid,
  .logo-crop-layout {
    grid-template-columns: 1fr !important;
  }
  .crop-stage {
    width: min(100%, 520px);
    height: 220px;
  }
  .crop-controls {
    max-width: 640px;
  }
}
@media (max-width: 900px) {
  .review-grid-v3.review-preview-grid,
  .review-grid-v3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav {
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 640px) {
  .hero .brand .logo.has-custom-logo {
    flex-basis: 150px !important;
    width: 150px !important;
    height: 46px !important;
    min-width: 150px !important;
    max-width: 150px !important;
  }
  .nav > div {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav-blog,
  .admin-link {
    padding: 10px 12px;
    font-size: 12px;
  }
  .review-grid-v3.review-preview-grid,
  .review-grid-v3 {
    grid-template-columns: 1fr;
  }
  .phone-consult-modal .phone-modal-number {
    font-size: 24px;
  }
}


/* V7: footer legal text and privacy links */
.footer-legal {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  color: #8a8f98;
  font-size: 8pt;
  line-height: 1.65;
  max-width: 1120px;
}
.footer-legal p {
  margin: 3px 0;
  color: #8a8f98;
  font-size: 8pt;
  line-height: 1.65;
}
.footer-legal strong {
  color: #6b7280;
  font-size: 8pt;
  margin-bottom: 3px;
}
.privacy-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #1d8fca;
  font: inherit;
  font-weight: 950;
  text-decoration: underline;
  cursor: pointer;
}
.inline-policy-link {
  font-size: 13px;
  vertical-align: baseline;
}

/* V7: policy modal */
.policy-modal {
  width: min(760px, calc(100vw - 28px));
  max-height: min(82vh, 780px);
  text-align: left;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.policy-close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #050505;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.policy-scroll {
  max-height: calc(min(82vh, 780px) - 74px);
  overflow: auto;
  padding: 34px 34px 18px;
}
.policy-scroll h2 {
  font-size: 26px;
  letter-spacing: -0.04em;
  margin: 0 48px 18px 0;
}
.policy-scroll h3 {
  font-size: 17px;
  margin: 22px 0 8px;
  color: #050505;
}
.policy-scroll p,
.policy-scroll li,
.policy-scroll td,
.policy-scroll th {
  font-size: 14px;
  line-height: 1.75;
  color: #050505;
}
.policy-scroll ul {
  padding-left: 20px;
  margin: 8px 0;
}
.policy-actions {
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 14px 18px;
  text-align: center;
}
.policy-actions button {
  border: 0;
  border-radius: 14px;
  background: var(--logo-blue);
  color: white;
  font-weight: 950;
  padding: 12px 20px;
  cursor: pointer;
}
.policy-table {
  min-width: 0;
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}
.policy-table th,
.policy-table td {
  border: 1px solid #d7dde8;
  padding: 10px;
  vertical-align: top;
}

/* V7: force logo editor into vertical layout at every size */
.logo-crop-layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  align-items: start !important;
}
.crop-stage {
  width: min(100%, 560px) !important;
  height: 220px !important;
}
.crop-controls {
  width: min(100%, 560px) !important;
  max-width: 560px !important;
}
.dropzone {
  width: min(100%, 560px);
}
.logo-upload-side {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
}


/* V8: policy modal close button alignment and bottom spacing */
.policy-close {
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  font-size: 30px !important;
  font-weight: 500 !important;
}
.policy-actions {
  padding: 18px 18px 26px !important;
}
.policy-actions button {
  margin: 0 0 4px !important;
}

/* V8: footer should show only legal disclaimer */
.footer-legal-only {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}
footer .wrap {
  width: min(1120px, calc(100% - 36px));
}
footer {
  padding: 30px 0 !important;
}

/* V8: floating hexagon scroll-to-top button */
.scroll-top-hex {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 52px;
  border: 0;
  background: var(--logo-blue);
  color: white;
  cursor: pointer;
  z-index: 80;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  box-shadow: 0 14px 34px rgba(29, 143, 202, .34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) rotate(-4deg);
  transition: opacity .22s ease, transform .22s ease, background .18s ease;
}
.scroll-top-hex.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) rotate(-4deg);
}
.scroll-top-hex:hover {
  background: var(--logo-blue-dark);
  transform: translateY(-3px) rotate(0deg);
}
.scroll-top-hex span {
  display: block;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .scroll-top-hex {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 47px;
  }
}


/* V9: always-on magnetic floating hex scroll-top button */
.scroll-top-hex {
  position: fixed !important;
  right: 26px !important;
  bottom: 26px !important;
  width: 62px !important;
  height: 56px !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--logo-blue), var(--logo-blue-dark)) !important;
  color: white !important;
  cursor: pointer !important;
  z-index: 9999 !important;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
  box-shadow: 0 16px 36px rgba(29, 143, 202, .36) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) rotate(-5deg) !important;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease !important;
}
.scroll-top-hex.show {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) rotate(-5deg) !important;
}
.scroll-top-hex:hover {
  transform: translateY(-4px) rotate(0deg) scale(1.04) !important;
  box-shadow: 0 20px 42px rgba(29, 143, 202, .44) !important;
  filter: brightness(1.04);
}
.scroll-top-hex span {
  display: block !important;
  font-size: 30px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  transform: translateY(-2px) !important;
}
@media (max-width: 640px) {
  .scroll-top-hex {
    right: 16px !important;
    bottom: 16px !important;
    width: 54px !important;
    height: 49px !important;
  }
  .scroll-top-hex span {
    font-size: 27px !important;
  }
}


/* V10: gift section below main screen */
.gift-section {
  padding: 74px 0 34px;
  background: linear-gradient(180deg, rgba(234,247,255,.72), rgba(255,255,255,0));
}
.gift-head {
  text-align: center;
  margin-bottom: 28px;
}
.gift-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--logo-blue-soft);
  color: var(--logo-blue-deep);
  font-weight: 950;
  margin-bottom: 14px;
}
.gift-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.05em;
}
.gift-head p {
  margin: 12px auto 0;
  max-width: 720px;
  color: #374151;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 700;
}
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.gift-card {
  background: white;
  border: 1px solid #d7dde8;
  border-radius: 28px;
  padding: 18px 18px 22px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .05);
  text-align: center;
}
.gift-image-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e5edf5;
  display: grid;
  place-items: center;
}
.gift-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gift-card strong {
  display: block;
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: #050505;
}
@media (max-width: 900px) {
  .gift-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .gift-section {
    padding: 58px 0 24px;
  }
  .gift-grid {
    grid-template-columns: 1fr;
  }
  .gift-head p {
    font-size: 15px;
  }
  .gift-card strong {
    font-size: 18px;
  }
}


/* V11: gift section image fit */
.gift-image-wrap {
  padding: 12px;
}
.gift-image-wrap img {
  object-fit: contain;
  background: white;
}


/* V12: shrink gift photos to roughly quarter visual size */
.gift-image-wrap {
  height: 220px !important;
  aspect-ratio: auto !important;
  padding: 18px !important;
}
.gift-image-wrap img {
  width: 50% !important;
  height: 50% !important;
  max-width: 50% !important;
  max-height: 50% !important;
  object-fit: contain !important;
  margin: auto !important;
}
@media (max-width: 900px) {
  .gift-image-wrap {
    height: 200px !important;
  }
}
@media (max-width: 640px) {
  .gift-image-wrap {
    height: 180px !important;
  }
}


/* V13: shrink gift card frames together with images */
.gift-grid {
  grid-template-columns: repeat(3, minmax(180px, 240px)) !important;
  justify-content: center !important;
  align-items: start !important;
  gap: 18px !important;
}
.gift-card {
  width: 100% !important;
  padding: 14px 14px 18px !important;
  border-radius: 24px !important;
}
.gift-image-wrap {
  width: 150px !important;
  height: 150px !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 auto !important;
  padding: 10px !important;
  border-radius: 18px !important;
  background: #ffffff !important;
}
.gift-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* Starbucks image: fill the frame so the outside frame color does not show */
.gift-image-wrap.gift-image-full {
  padding: 0 !important;
  background: #d9efec !important;
}
.gift-image-wrap.gift-image-full img {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

.gift-card strong {
  font-size: 17px !important;
  margin-top: 12px !important;
}

@media (max-width: 900px) {
  .gift-grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr)) !important;
  }
  .gift-image-wrap {
    width: 130px !important;
    height: 130px !important;
  }
}
@media (max-width: 640px) {
  .gift-grid {
    grid-template-columns: 1fr !important;
  }
  .gift-card {
    max-width: 260px !important;
    margin: 0 auto !important;
  }
  .gift-image-wrap {
    width: 140px !important;
    height: 140px !important;
  }
}


/* V15: footer admin link */
.footer-admin-sep {
  color: #9ca3af;
  margin: 0 4px;
}
.footer-admin-link {
  color: #6b7280 !important;
  font-weight: 800 !important;
}


/* SERVER MODE: PHP/MariaDB operational version */
.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #020617, #0f172a 56%, #075985);
  padding: 24px;
}
.login-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 30px 90px rgba(2,6,23,.34);
}
.login-card h1 {
  color: #050505;
  font-size: 32px;
  letter-spacing: -.05em;
  margin: 0 0 8px;
}
.login-card p {
  color: #334155;
  margin: 0 0 20px;
}
.error-box {
  background: #fee2e2;
  color: #991b1b;
  border-radius: 16px;
  padding: 12px 14px;
  margin: 14px 0;
  font-weight: 800;
}
.success-box {
  background: #e0f2fe;
  color: #075985;
  border-radius: 16px;
  padding: 12px 14px;
  margin: 14px 0;
  font-weight: 800;
}
.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.admin-form-grid .field.full-span {
  grid-column: 1 / -1;
}
.admin-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.current-logo-preview {
  width: 240px;
  height: 80px;
  border: 1px solid #d7dde8;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8fafc;
  margin: 12px 0 18px;
}
.current-logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.admin-review-thumb {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid #d7dde8;
  background: #f8fafc;
}
.admin-small-form {
  display: inline;
}
.server-note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
}
.footer-admin-sep {
  color: #9ca3af;
  margin: 0 4px;
}
.footer-admin-link {
  color: #6b7280 !important;
  font-weight: 800 !important;
}
@media (max-width: 760px) {
  .admin-form-grid {
    grid-template-columns: 1fr;
  }
}
