:root {
  --ink: #17201b;
  --muted-ink: #59635d;
  --line: #dde4dd;
  --surface: #ffffff;
  --soft: #f5f7f1;
  --field: #f9faf7;
  --green: #1f6b4c;
  --green-dark: #114331;
  --yellow: #f4b43f;
  --yellow-dark: #c97915;
  --steel: #51616a;
  --shadow: 0 18px 50px rgba(23, 32, 27, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  line-height: 1.6;
  background: var(--surface);
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(221, 228, 221, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #1d1a0b;
  font-weight: 900;
  background: linear-gradient(135deg, var(--yellow), #ffd873);
}

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

.brand strong {
  font-size: 19px;
  letter-spacing: 0;
}

.brand em {
  color: var(--muted-ink);
  font-size: 12px;
  font-style: normal;
}

.primary-nav {
  display: flex;
  gap: 28px;
  color: #39453f;
  font-size: 15px;
  font-weight: 700;
}

.primary-nav a {
  padding: 26px 0;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  max-height: 860px;
  overflow: hidden;
  background: #111;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 25, 18, 0.86) 0%, rgba(9, 25, 18, 0.62) 44%, rgba(9, 25, 18, 0.16) 100%),
    linear-gradient(0deg, rgba(9, 25, 18, 0.5) 0%, rgba(9, 25, 18, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(720px, calc(100% - 40px));
  min-height: calc(100vh - 112px);
  max-height: 860px;
  margin-left: clamp(24px, 7vw, 96px);
  padding: 48px 0 86px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
}

.btn-primary {
  color: #171400;
  background: var(--yellow);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 42px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  width: min(300px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(17, 67, 49, 0.8);
  backdrop-filter: blur(10px);
}

.hero-panel strong {
  font-size: 18px;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.82);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-strip div {
  min-height: 118px;
  padding: 28px 32px;
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  font-size: 18px;
}

.quick-strip span {
  margin-top: 6px;
  color: var(--muted-ink);
}

.quick-strip a {
  color: var(--green);
  font-weight: 900;
}

.section,
.split-section,
.cta-band,
.site-footer {
  padding-inline: clamp(24px, 6vw, 86px);
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) 1fr;
  gap: 28px 64px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading.compact {
  display: block;
}

.section-heading h2,
.split-copy h2,
.cta-band h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
  word-break: keep-all;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.cta-band p,
.contact-copy p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 17px;
}

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

.service-card,
.process-row article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card {
  min-height: 280px;
  padding: 28px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  border-radius: 6px;
  color: var(--green-dark);
  font-weight: 900;
  background: #eaf3de;
}

.service-card h3,
.process-row h3 {
  margin: 24px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.service-card p,
.process-row p {
  margin: 0;
  color: var(--muted-ink);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--green-dark);
}

.split-copy h2,
.split-copy p {
  color: #fff;
}

.split-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.check-list span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  flex: 0 0 auto;
}

.muted {
  background: var(--soft);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.process-row article {
  min-height: 230px;
  padding: 26px;
}

.process-row span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: var(--green);
}

.truck-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.truck-table > div {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.truck-table > div:last-child {
  border-bottom: 0;
}

.truck-table span {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.truck-table span:last-child {
  border-right: 0;
}

.table-head {
  color: #fff;
  font-weight: 900;
  background: var(--green-dark);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 58px;
  padding-bottom: 58px;
  color: #fff;
  background: #273036;
}

.cta-band p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: 56px;
  background: #fff;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted-ink);
  font-weight: 800;
}

.contact-list dd {
  margin: 0;
  font-weight: 900;
}

.contact-list a {
  color: var(--green);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #35423a;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8d1;
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--field);
}

.contact-form textarea {
  resize: vertical;
}

.privacy-check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted-ink);
  font-size: 14px;
  font-weight: 700;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 38px;
  padding-bottom: 38px;
  border-top: 1px solid var(--line);
  color: #fff;
  background: #111815;
}

.site-footer strong {
  font-size: 20px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.mobile-action-bar {
  position: fixed;
  z-index: 30;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(17, 24, 21, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.26);
}

.mobile-action-bar a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 6px;
  color: #151300;
  font-weight: 900;
  background: var(--yellow);
}

.mobile-action-bar a:first-child {
  color: #fff;
  background: var(--green);
}

.renewal-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 30, 22, 0.9) 0%, rgba(11, 30, 22, 0.68) 48%, rgba(11, 30, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 30, 22, 0.48) 0%, rgba(11, 30, 22, 0) 48%);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
}

.quick-form-card {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 72px);
  bottom: 46px;
  width: min(340px, calc(100% - 40px));
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(17, 67, 49, 0.88);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.quick-form-card strong,
.quick-form-card a,
.quick-form-card small {
  display: block;
}

.quick-form-card strong {
  font-size: 20px;
}

.quick-form-card p {
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

.quick-form-card a {
  padding: 14px 16px;
  border-radius: 8px;
  color: #171400;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  background: var(--yellow);
}

.quick-form-card small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

.case-section,
.process-section {
  padding: 92px clamp(20px, 6vw, 80px);
}

.case-section {
  color: #fff;
  background: #18231f;
}

.case-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.case-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.case-list article {
  min-height: 190px;
  padding: 28px;
  background: #22302b;
}

.case-list b,
.case-list span {
  display: block;
}

.case-list b {
  font-size: 20px;
  line-height: 1.35;
}

.case-list span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.area-grid span {
  min-height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 900;
  background: #fff;
}

.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: var(--field);
}

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 24px;
  }

  .primary-nav {
    gap: 18px;
  }

  .quick-strip,
  .service-grid,
  .process-row,
  .case-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .quick-form-card {
    right: 24px;
  }

  .renewal-grid,
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand em,
  .primary-nav,
  .header-call {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: 720px;
    margin: 0;
    padding: 48px 20px 270px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.16;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .btn-secondary {
    display: none;
  }

  .hero-panel,
  .quick-form-card {
    right: 20px;
    bottom: 88px;
    left: 20px;
    width: auto;
  }

  .quick-strip,
  .service-grid,
  .process-row,
  .case-list,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .case-section,
  .process-section {
    padding: 72px 20px;
  }

  .case-list article {
    min-height: 150px;
  }

  .quick-strip div {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .truck-table,
  .truck-table > div,
  .truck-table span {
    display: block;
  }

  .truck-table > div {
    min-height: auto;
    padding: 18px 0;
  }

  .truck-table span {
    border-right: 0;
    padding: 6px 18px;
  }

  .table-head {
    display: none !important;
  }

  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    padding: 22px;
  }

  .mobile-action-bar {
    display: grid;
  }

  body {
    padding-bottom: 78px;
  }
}
