:root {
  --brand-primary: #0b3478;
  --brand-primary-hover: #082b63;
  --brand-primary-bg: #edf4ff;
  --brand-secondary: #2477d4;
  --accent: #f2c94c;
  --accent-soft: #fff7d8;
  --surface-page: #f6f8fb;
  --surface-card: #ffffff;
  --surface-muted: #eef2f7;
  --text-strong: #101828;
  --text-default: #344054;
  --text-muted: #667085;
  --text-inverse: #ffffff;
  --border-default: #d8dee9;
  --border-strong: #98a2b3;
  --danger: #c2410c;
  --success: #147a55;
  --shadow-sm: 0 6px 18px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 18px 48px rgba(16, 24, 40, 0.14);
  --radius: 8px;
  --font-sans: Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-default);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(36, 119, 212, 0.35);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--brand-primary);
  color: var(--text-inverse);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(216, 222, 233, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.brand img {
  width: 126px;
  height: auto;
}

.brand span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: var(--radius);
  color: var(--text-default);
  font-size: 15px;
  font-weight: 800;
  padding: 12px 14px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--surface-card);
  color: var(--text-strong);
}

.menu-button span {
  position: relative;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-button span::before,
.menu-button span::after {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

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

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand-primary);
  color: var(--text-inverse);
}

.button-primary:hover {
  background: var(--brand-primary-hover);
}

.button-secondary {
  border-color: var(--border-default);
  background: var(--surface-card);
  color: var(--brand-primary);
}

.button-secondary:hover {
  border-color: var(--brand-secondary);
  background: var(--brand-primary-bg);
}

.button-ghost {
  border-color: var(--border-default);
  background: transparent;
  color: var(--text-strong);
}

.button-large {
  min-height: 52px;
  padding: 14px 20px;
}

.text-link {
  color: var(--brand-primary);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.main {
  overflow-x: hidden;
  overflow-y: visible;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border-bottom: 1px solid var(--border-default);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: center;
  padding: 76px 0 44px;
}

.hero-copy h1 {
  max-width: 640px;
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--text-default);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin-top: 28px;
}

.trust-item {
  min-height: 78px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--surface-card);
  padding: 13px 14px;
}

.trust-item strong {
  display: block;
  color: var(--brand-primary);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.25;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.price-panel {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-default);
  background: #fbfcff;
  padding: 16px 18px;
}

.panel-header strong {
  color: var(--text-strong);
  font-size: 16px;
}

.panel-header span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
}

.price-mini-table,
.service-table {
  width: 100%;
  border-collapse: collapse;
}

.price-mini-table th,
.price-mini-table td,
.service-table th,
.service-table td {
  border-bottom: 1px solid var(--border-default);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
}

.price-mini-table th,
.service-table th {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 900;
}

.price-mini-table td {
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 800;
}

.price-mini-table .price,
.service-table .price {
  color: var(--brand-primary);
  font-weight: 950;
  white-space: nowrap;
}

.notice-line {
  border: 1px solid #bdd7ff;
  border-radius: var(--radius);
  background: #f4f8ff;
  margin: 0 0 44px;
  padding: 14px 16px;
  color: var(--text-default);
  font-size: 14px;
}

.notice-line strong {
  display: inline-flex;
  margin-right: 10px;
  border-radius: 4px;
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
  padding: 3px 8px;
  font-size: 12px;
}

.hero-grid-compact {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  padding: 58px 0 42px;
}

.quick-search {
  display: flex;
  max-width: 720px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.quick-search span,
.quick-search a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.quick-search span {
  color: var(--text-muted);
}

.quick-search a {
  border: 1px solid var(--border-default);
  background: var(--surface-card);
  color: var(--brand-primary);
  padding: 7px 10px;
}

.launcher-panel {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.launcher-panel > strong {
  display: block;
  color: var(--text-strong);
  font-size: 20px;
  font-weight: 950;
}

.launcher-panel ol {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.launcher-panel li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.launcher-panel li span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 950;
}

.launcher-panel p {
  margin: 0;
  color: var(--text-default);
  font-size: 14px;
  font-weight: 750;
}

.section-tight {
  padding: 52px 0;
}

.section {
  padding: 72px 0;
}

.section-white {
  background: #ffffff;
}

.section-muted {
  background: var(--surface-page);
}

.section-blue {
  background: #0a2f69;
  color: var(--text-inverse);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 660px;
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.2;
}

.section-head p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--text-muted);
}

.section-blue .section-head h2,
.section-blue .section-head p {
  color: var(--text-inverse);
}

.service-table-wrap {
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--surface-card);
  overflow: hidden;
}

.service-row-title {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.service-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #bdd7ff;
  border-radius: var(--radius);
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
  font-weight: 950;
}

.service-row-title strong {
  display: block;
  color: var(--text-strong);
  font-weight: 950;
}

.service-row-title span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 14px;
}

.service-table .period {
  color: var(--text-strong);
  font-weight: 900;
  white-space: nowrap;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  display: inline-flex;
  border: 1px solid var(--border-default);
  border-radius: 6px;
  background: #fbfcff;
  color: var(--text-default);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.category-grid,
.case-grid,
.package-grid,
.proof-grid,
.faq-grid,
.launcher-grid,
.route-grid,
.landing-grid,
.landing-strip,
.problem-layout,
.prepare-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.landing-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

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

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

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

.category-card,
.case-card,
.package-card,
.proof-card,
.faq-card,
.scope-card,
.service-card,
.launcher-card,
.route-card,
.landing-card {
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--surface-card);
}

.category-card,
.case-card,
.proof-card,
.faq-card,
.scope-card,
.service-card,
.launcher-card,
.route-card,
.landing-card {
  padding: 20px;
}

.category-card:hover,
.service-card:hover,
.case-card:hover,
.launcher-card:hover,
.route-card:hover,
.landing-card:hover {
  border-color: #a9c8f8;
  box-shadow: var(--shadow-sm);
}

.category-card strong,
.case-card strong,
.proof-card strong,
.faq-card strong,
.scope-card strong,
.service-card strong,
.launcher-card strong,
.route-card strong,
.landing-card strong {
  display: block;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.35;
}

.category-card p,
.case-card p,
.proof-card p,
.faq-card p,
.scope-card p,
.service-card p,
.launcher-card p,
.route-card p,
.landing-card p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.category-meta,
.case-meta,
.launcher-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 950;
}

.launcher-card {
  min-height: 188px;
}

.launcher-card-game {
  border-color: #e2c84b;
  background: #fffbea;
}

.launcher-code,
.landing-card > span,
.route-card > span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 6px;
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
}

.landing-card {
  min-height: 210px;
}

.route-card {
  min-height: 150px;
}

.route-card > span {
  margin: 14px 0 0;
}

.contact-route {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

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

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

.process-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--surface-card);
  padding: 16px;
}

.process-step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
  font-weight: 950;
}

.process-step strong {
  display: block;
  color: var(--text-strong);
  font-weight: 950;
}

.process-step p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.timeline-note {
  border: 1px solid #bfe3d2;
  border-radius: var(--radius);
  background: #f0fbf5;
  color: #145c3e;
  padding: 18px;
  font-size: 15px;
  font-weight: 800;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 28px;
  align-items: start;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--surface-card);
  padding: 26px;
}

.form-info h2,
.form-info h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.25;
}

.form-info p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-list a,
.contact-list span {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: #fbfcff;
  padding: 10px 12px;
  color: var(--text-strong);
  font-weight: 850;
}

.order-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.check-field {
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 900;
}

.required {
  color: var(--danger);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text-strong);
  padding: 11px 12px;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(36, 119, 212, 0.16);
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-field input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.form-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.form-status {
  display: none;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 850;
}

.form-status[data-state="success"] {
  display: block;
  background: #eaf8f1;
  color: var(--success);
}

.form-status[data-state="error"] {
  display: block;
  background: #fff2ea;
  color: var(--danger);
}

.page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border-bottom: 1px solid var(--border-default);
  padding: 64px 0 38px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand-primary);
  font-weight: 850;
}

.page-hero h1 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.12;
}

.page-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--text-default);
  font-size: 18px;
}

.summary-box {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.summary-box dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.summary-box div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border-default);
  padding-bottom: 10px;
}

.summary-box div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.summary-box dt {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 900;
}

.summary-box dd {
  margin: 0;
  color: var(--text-strong);
  font-weight: 950;
  text-align: right;
}

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

.scope-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.scope-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: var(--text-default);
  font-size: 14px;
}

.scope-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-secondary);
  content: "";
}

.package-card {
  overflow: hidden;
}

.package-card header {
  border-bottom: 1px solid var(--border-default);
  background: #fbfcff;
  padding: 18px;
}

.package-card header strong {
  display: block;
  color: var(--text-strong);
  font-size: 19px;
  font-weight: 950;
}

.package-card header span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
}

.package-price {
  margin-top: 12px;
  color: var(--brand-primary);
  font-size: 25px;
  font-weight: 950;
}

.package-card ul {
  margin: 0;
  padding: 18px 20px 20px 36px;
  color: var(--text-default);
}

.package-card li + li {
  margin-top: 8px;
}

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

.site-footer {
  background: #06295e;
  color: rgba(255, 255, 255, 0.86);
  padding: 42px 0 calc(96px + env(safe-area-inset-bottom));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  gap: 26px;
}

.footer-grid strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
}

.footer-grid p,
.footer-grid address {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 14px;
}

.footer-grid a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.sticky-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  display: grid;
  gap: 8px;
}

.sticky-contact a {
  display: flex;
  min-width: 118px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 950;
}

.sticky-kakao {
  background: #fee500;
  color: #111111;
}

.sticky-mail {
  background: var(--brand-primary);
  color: var(--text-inverse);
}

.sticky-contact img {
  height: 28px;
  width: auto;
}

.policy-body {
  max-width: 860px;
}

.policy-body h2 {
  margin: 42px 0 10px;
  color: var(--text-strong);
  font-size: 24px;
}

.policy-body p,
.policy-body li {
  color: var(--text-default);
}

@media (max-width: 1080px) {
  .category-grid,
  .case-grid,
  .proof-grid,
  .launcher-grid,
  .route-grid,
  .landing-grid,
  .landing-strip,
  .problem-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .work-board,
  .form-shell,
  .page-hero-grid,
  .contact-route {
    grid-template-columns: 1fr;
  }

  .summary-box {
    max-width: 520px;
  }
}

@media (max-width: 860px) {
  .header-inner,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 116px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 14px;
    left: 14px;
    display: none;
    border: 1px solid var(--border-default);
    border-radius: var(--radius);
    background: var(--surface-card);
    box-shadow: var(--shadow-md);
    padding: 10px;
  }

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

  .site-nav a {
    padding: 14px;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid {
    padding: 52px 0 34px;
  }

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

  .section {
    padding: 54px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .button {
    margin-top: 18px;
  }

  .service-table,
  .service-table tbody,
  .service-table tr,
  .service-table td {
    display: block;
    width: 100%;
  }

  .service-table thead {
    display: none;
  }

  .service-table tr {
    border-bottom: 1px solid var(--border-default);
    padding: 16px;
  }

  .service-table td {
    border: 0;
    padding: 8px 0;
  }

  .service-table td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 900;
    content: attr(data-label);
  }

  .package-grid,
  .faq-grid,
  .scope-grid,
  .related-grid,
  .prepare-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-copy h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions,
  .section-head .button,
  .button-large,
  .order-form .button {
    width: 100%;
  }

  .hero-actions .button,
  .section-head .button,
  .button-large,
  .order-form .button {
    justify-content: center;
  }

  .trust-strip,
  .category-grid,
  .case-grid,
  .proof-grid,
  .launcher-grid,
  .route-grid,
  .landing-grid,
  .landing-strip,
  .problem-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-mini-table th,
  .price-mini-table td {
    padding: 12px 10px;
    font-size: 12px;
  }

  .form-shell {
    padding: 18px;
  }

  .sticky-contact {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .sticky-contact a {
    min-height: 56px;
    border-radius: 0;
  }

  .site-footer {
    padding-bottom: calc(132px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
