:root {
  --c-bg: #f6f7f9;
  --c-surface: #ffffff;
  --c-surface-alt: #eef1f4;
  --c-ink: #1b2733;
  --c-ink-soft: #3f4c5a;
  --c-muted: #67737f;
  --c-line: #e1e6ea;
  --c-line-strong: #c7d0d8;
  --c-navy: #16324f;
  --c-navy-deep: #0f2436;
  --c-accent: #2f6f6a;
  --c-accent-deep: #245450;
  --c-accent-soft: #e6efee;
  --c-notice: #7c5518;
  --c-notice-soft: #f4ecdf;
  --f-sans: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 20px;
  --sp-5: 32px;
  --sp-6: 48px;
  --sp-7: 72px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px -18px rgba(15, 36, 54, 0.35);
  --shadow-soft: 0 6px 18px -14px rgba(15, 36, 54, 0.4);
  --wrap: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--c-accent-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--f-sans);
  color: var(--c-navy-deep);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-3);
  font-weight: 800;
}

h1 {
  font-size: clamp(1.75rem, 4.4vw, 2.7rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  margin: 0 0 var(--sp-4);
  color: var(--c-ink-soft);
  max-width: 68ch;
}

p,
.value,
.footer-contact,
.reg-table td,
.fee-dl dd {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--sp-4);
  padding-right: var(--sp-4);
}

.num {
  font-family: var(--f-mono);
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.02em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-navy-deep);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  z-index: 200;
}

.skip-link:focus {
  left: var(--sp-3);
  top: var(--sp-3);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-weight: 800;
  color: var(--c-navy-deep);
  letter-spacing: -0.01em;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-accent-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-name {
  font-size: 1.06rem;
  line-height: 1.1;
}

.brand-name small {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-line-strong);
  border-radius: 9px;
  background: var(--c-surface);
  color: var(--c-navy-deep);
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: var(--sp-3);
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-line);
  box-shadow: var(--shadow);
}

.nav-menu[data-open="true"] {
  display: flex;
}

.nav-menu a {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  color: var(--c-ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--c-navy-deep);
  background: var(--c-surface-alt);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 9px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: var(--c-accent-deep);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--c-accent);
}

.btn-ghost {
  background: transparent;
  color: var(--c-navy-deep);
  border-color: var(--c-line-strong);
}

.btn-ghost:hover {
  border-color: var(--c-navy);
  background: var(--c-surface-alt);
}

.btn-light {
  background: #fff;
  color: var(--c-navy-deep);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
  display: inline-flex;
}

.hero {
  position: relative;
  min-height: clamp(460px, 66dvh, 660px);
  display: flex;
  align-items: center;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(9, 22, 34, 0.9) 0%, rgba(11, 30, 46, 0.72) 48%, rgba(11, 30, 46, 0.42) 100%), url("../../media/home-hero-buyeo-office.jpg");
  background-size: cover;
  background-position: center right;
}

.hero-inner {
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
  max-width: 640px;
}

.hero .eyebrow {
  color: #cfe3e1;
}

.hero h1 {
  color: #fff;
  margin-bottom: var(--sp-4);
}

.hero p {
  color: #dfe6ec;
  font-size: 1.06rem;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent-deep);
  margin-bottom: var(--sp-3);
}

.section {
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
}

.section-alt {
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.section-head {
  max-width: 62ch;
  margin-bottom: var(--sp-6);
}

.section-head p {
  margin-bottom: 0;
}

.lede {
  font-size: 1.08rem;
  color: var(--c-ink-soft);
}

.grid {
  display: grid;
  gap: var(--sp-4);
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow);
}

.card h3 {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.card .card-index {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  color: var(--c-accent-deep);
  border: 1px solid var(--c-accent-soft);
  background: var(--c-accent-soft);
  border-radius: 6px;
  padding: 2px 8px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card ul {
  margin: 0 0 var(--sp-4);
  padding-left: 1.1rem;
  color: var(--c-ink-soft);
}

.card ul li {
  margin-bottom: var(--sp-2);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--c-accent-deep);
  margin-top: var(--sp-2);
}

.card-span-2 {
  grid-column: auto;
}

.advantages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-line);
}

.advantage {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-line);
}

.advantage h3 {
  margin-bottom: var(--sp-2);
  font-size: 1.15rem;
}

.advantage p {
  margin-bottom: 0;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--c-accent-soft);
  color: var(--c-accent-deep);
  display: grid;
  place-items: center;
}

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg {
  width: 26px;
  height: 26px;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.timeline {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-4);
}

.timeline li {
  position: relative;
  counter-increment: step;
  padding: var(--sp-4) var(--sp-4) var(--sp-4) 68px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: var(--sp-4);
  top: var(--sp-4);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--c-navy);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.timeline h3 {
  font-size: 1.05rem;
  margin-bottom: var(--sp-1);
}

.timeline p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.faq {
  display: grid;
  gap: var(--sp-3);
  max-width: 860px;
}

details.qa {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 0 var(--sp-4);
}

details.qa summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-4) 0;
  font-weight: 700;
  color: var(--c-navy-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

details.qa summary::-webkit-details-marker {
  display: none;
}

details.qa summary .chev {
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

details.qa[open] summary .chev {
  transform: rotate(180deg);
}

details.qa .qa-body {
  padding-bottom: var(--sp-4);
}

details.qa .qa-body p:last-child {
  margin-bottom: 0;
}

.disclosure {
  border-left: 3px solid var(--c-accent);
  background: var(--c-accent-soft);
  padding: var(--sp-4);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--c-ink-soft);
}

.disclosure.notice {
  border-left-color: var(--c-notice);
  background: var(--c-notice-soft);
}

.disclosure p:last-child {
  margin-bottom: 0;
}

.fineprint {
  font-size: 0.85rem;
  color: var(--c-muted);
}

.principle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}

.principle-list li {
  position: relative;
  padding: var(--sp-4);
  padding-left: 44px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-ink-soft);
}

.principle-list li::before {
  content: "";
  position: absolute;
  left: var(--sp-4);
  top: 1.55em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--c-accent);
}

.cta-band {
  background: linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 60%, var(--c-accent-deep) 130%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: #d9e2e8;
  max-width: 56ch;
}

.cta-band .hero-actions {
  margin-top: var(--sp-4);
}

.reg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.reg-table th,
.reg-table td {
  text-align: left;
  padding: var(--sp-3) var(--sp-3);
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
}

.reg-table th {
  width: 42%;
  color: var(--c-muted);
  font-weight: 600;
}

.fee-dl {
  margin: 0;
  border-top: 1px solid var(--c-line);
}

.fee-dl > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-1);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-line);
}

.fee-dl dt {
  font-weight: 700;
  color: var(--c-navy-deep);
}

.fee-dl dd {
  margin: 0;
  color: var(--c-ink-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.team-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}

.team-card .role {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-accent-deep);
}

.team-card h3 {
  margin: var(--sp-2) 0;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-accent-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: var(--sp-3);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.info-list {
  list-style: none;
  margin: 0 0 var(--sp-4);
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}

.info-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--sp-3);
  align-items: start;
}

.info-list .icon-badge {
  width: 40px;
  height: 40px;
}

.info-list .label {
  font-size: 0.8rem;
  color: var(--c-muted);
  display: block;
}

.info-list .value {
  color: var(--c-ink);
  font-weight: 600;
}

.form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--c-navy-deep);
}

.field input,
.field textarea {
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--c-ink);
  background: var(--c-bg);
  border: 1px solid var(--c-line-strong);
  border-radius: 9px;
  padding: 12px 14px;
  width: 100%;
}

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

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--c-accent);
  outline-offset: 1px;
  border-color: var(--c-accent);
}

.field .help {
  font-size: 0.82rem;
  color: var(--c-muted);
}

.field .error-text {
  font-size: 0.82rem;
  color: #a12d2d;
  display: none;
}

.field.invalid .error-text {
  display: block;
}

.field.invalid input,
.field.invalid textarea {
  border-color: #a12d2d;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: var(--sp-3);
  align-items: start;
  margin-bottom: var(--sp-4);
  font-size: 0.9rem;
  color: var(--c-ink-soft);
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.map-wrap {
  margin-top: var(--sp-5);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-frame {
  position: relative;
  width: 100%;
  height: 300px;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--sp-3) var(--sp-4);
  font-weight: 600;
  border-top: 1px solid var(--c-line);
  background: var(--c-surface);
}

.legal-body {
  max-width: 820px;
}

.legal-body h2 {
  margin-top: var(--sp-6);
}

.legal-body h3 {
  margin-top: var(--sp-5);
}

.legal-body ul,
.legal-body ol {
  color: var(--c-ink-soft);
  padding-left: 1.2rem;
}

.legal-body li {
  margin-bottom: var(--sp-2);
}

.page-hero {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-line);
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
}

.page-hero .eyebrow {
  margin-bottom: var(--sp-2);
}

.page-hero p {
  margin-bottom: 0;
  max-width: 60ch;
}

.crumbs {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-bottom: var(--sp-3);
}

.crumbs > * + *::before {
  content: "/";
  margin: 0 var(--sp-2);
  color: var(--c-line-strong);
}

.crumbs a {
  color: var(--c-muted);
}

.updated {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  color: var(--c-muted);
  margin-bottom: var(--sp-5);
}

.site-footer {
  background: var(--c-navy-deep);
  color: #c4d0da;
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-5);
  margin-top: var(--sp-7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

.site-footer .footer-h {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-4);
}

.footer-contact .fc-label {
  color: #8ea0ad;
  min-width: 3.2em;
  display: inline-block;
}

.site-footer a {
  color: #c4d0da;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--sp-2);
}

.footer-contact {
  display: grid;
  gap: var(--sp-3);
  font-size: 0.95rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: #fff;
  font-weight: 800;
  margin-bottom: var(--sp-3);
}

.footer-note {
  font-size: 0.86rem;
  color: #93a3b0;
  max-width: 46ch;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #93a3b0;
}

.footer-bottom .manage-cookie {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #c4d0da;
  padding: 6px 12px;
  border-radius: 7px;
  cursor: pointer;
  font-family: var(--f-sans);
  font-size: 0.84rem;
  display: inline-block;
  text-decoration: none;
}

.footer-bottom .manage-cookie:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: #fff;
  border-top: 1px solid var(--c-line-strong);
  box-shadow: 0 -10px 30px -18px rgba(15, 36, 54, 0.4);
  padding: var(--sp-4);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-bar.is-open {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: var(--sp-4);
  align-items: center;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--c-ink-soft);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.cookie-actions .btn {
  flex: 1 1 auto;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  background: rgba(11, 24, 36, 0.55);
}

.modal.is-open {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}

.modal-card .icon-badge {
  margin: 0 auto var(--sp-4);
  width: 52px;
  height: 52px;
}

.modal-card p {
  margin-left: auto;
  margin-right: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .nav-menu a {
    padding: 12px var(--sp-3);
    border-radius: 8px;
  }
  .nav-cta {
    margin-top: 6px;
  }
  .nav-cta a {
    width: 100%;
    text-align: center;
  }
  .hero-actions .btn,
  .cta-band .hero-actions .btn {
    width: 100%;
  }
  .reg-table th,
  .reg-table td {
    display: block;
    width: 100%;
  }
  .reg-table th {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .reg-table td {
    padding-top: var(--sp-1);
  }
}

@media (min-width: 768px) {
  body {
    font-size: 17px;
  }
  .wrap {
    padding-left: var(--sp-5);
    padding-right: var(--sp-5);
  }
  .nav-toggle {
    display: none;
  }
  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: var(--sp-2);
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-span-2 {
    grid-column: span 2;
  }
  .advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--sp-6);
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
  .fee-dl > div {
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--sp-4);
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .cookie-inner {
    grid-template-columns: 1fr auto;
  }
  .cookie-actions .btn {
    flex: 0 0 auto;
  }
  .map-frame {
    height: 420px;
  }
  .timeline {
    gap: var(--sp-3);
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    max-width: 620px;
  }
  .advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--sp-7);
  }
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none;
  }
}
