@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

:root {
  --navy: #082341;
  --navy-dark: #06182d;
  --ink: #082341;
  --muted: #a4a4a4;
  --line: #d8d8d8;
  --soft: #fbfbf8;
  --white: #ffffff;
  --content-max: 1260px;
  --page-pad: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  word-break: keep-all;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 95px;
  padding: 0 var(--page-pad);
  background: var(--navy);
  color: var(--white);
}

.header-inner {
  width: min(100%, var(--content-max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  width: 125px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 20px;
  font-weight: 900;
}

.site-nav a {
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 0.65;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #c8c5bb;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 0;
  color: var(--white);
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.24);
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 4px 0;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 900;
}

.contact-now {
  position: absolute;
  top: 55%;
  left: 54%;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  transform: rotate(-45deg);
}

.business,
.news-preview {
  padding: 115px var(--page-pad);
  min-height: 760px;
}

.section-inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.business-light {
  background: var(--soft);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 24px;
  font-weight: 700;
}

.business h2,
.news-preview h2 {
  margin: 0 0 50px;
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.section-head h2 {
  margin-bottom: 50px;
}

.business-more {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 52px;
  margin-top: 42px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.business-more:hover,
.more-link:hover {
  background: var(--white);
  color: var(--navy);
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.carousel-rail.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.carousel-rail::-webkit-scrollbar {
  display: none;
}

.carousel-rail img {
  flex: 0 0 31%;
  height: 330px;
  object-fit: cover;
  scroll-snap-align: start;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 62px;
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(8, 35, 65, 0.78);
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.two-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin: 75px 0 30px;
}

.two-copy h3,
.stack-copy h3 {
  margin: 0 0 5px;
  font-size: clamp(26px, 2.1vw, 38px);
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: 0;
}

.two-copy p,
.stack-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 25px);
  line-height: 1.45;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin: 70px 0;
}

.stats small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.stats strong {
  display: block;
  font-size: clamp(54px, 6vw, 96px);
  line-height: 1;
  letter-spacing: 0;
}

.stats em {
  font-size: 0.42em;
  font-style: normal;
}

.godong-note {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.8;
}

.godong-note a {
  display: inline-block;
  padding: 9px 20px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  margin: 0 4px;
}

.stack-copy {
  max-width: 1040px;
  margin: 0 0 70px;
}

.stack-copy h3:not(:first-child) {
  margin-top: 42px;
}

.video-wrap {
  width: min(100%, 1120px);
  aspect-ratio: 16 / 9;
  margin: 35px auto 0;
  background: #000;
  overflow: hidden;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.goods-carousel {
  margin-top: 90px;
}

.goods-carousel .carousel-rail img {
  flex-basis: 19.5%;
  height: 370px;
}

.digital-business {
  border-bottom: 1px solid #d5c5b6;
}

.digital-business .stack-copy {
  max-width: 1100px;
}

.news-preview h2 {
  margin: 28px 0 55px;
  font-size: 38px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card a {
  display: block;
  height: 100%;
}

.news-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.news-card h3 {
  margin: 28px 8px 16px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.news-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 73px;
  margin: 0 8px;
  color: #243b55;
  font-size: 17px;
  line-height: 1.45;
}

.news-card time {
  display: block;
  margin: 20px 8px 10px;
  color: var(--muted);
  font-size: 18px;
}

.news-card span {
  display: inline-block;
  margin-left: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  border-bottom: 1px solid var(--navy);
}

.more-link {
  display: block;
  width: max-content;
  margin: 44px auto 0;
  padding: 15px 27px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  border: 1px solid var(--navy);
}

.contact-band {
  padding: 95px 30px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.contact-band h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.3;
}

.contact-band p {
  margin: 0;
  color: #c4ced8;
  font-size: 18px;
}

.contact-band > a,
.primary-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 15px 30px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.contact-band .contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 56px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.24);
  font-size: 17px;
  text-decoration: none;
}

.contact-band > a:hover,
.primary-mail:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

.contact-band .contact-cta:hover {
  background: #eef3f8;
  border-color: #eef3f8;
}

.mail-link {
  margin-top: 18px !important;
}

.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 48px max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
  background: var(--navy-dark);
  color: #aab5c2;
  font-size: 12px;
  line-height: 1.6;
}

.site-footer img {
  width: 170px;
}

.site-footer p {
  margin: 0;
}

.site-footer small {
  text-align: right;
}

.sub-page {
  padding-top: 95px;
}

.about-hero img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
}

.about-intro {
  padding: 90px var(--page-pad);
  text-align: center;
}

.about-intro p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.9;
  font-weight: 700;
}

.about-intro h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.9;
}

.about-solutions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
  margin: 0 auto;
  padding: 100px 0;
  background: #fafafa;
}

.about-solutions span:first-child {
  display: block;
  color: var(--muted);
  font-size: 30px;
  font-weight: 700;
}

.about-solutions h2 {
  margin: 24px 0;
  font-size: 48px;
  line-height: 1.25;
}

.about-solutions p {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
}

.about-solutions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-solutions li {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.about-solutions strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 25px;
}

.about-solutions li span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.page-title {
  padding: 110px var(--page-pad) 70px;
  text-align: center;
}

.page-title > * {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.page-title h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.08;
}

.page-title p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.75;
  font-weight: 700;
}

.news-list {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
  margin: 0 auto;
  padding: 0 0 115px;
}

.news-list article {
  border-top: 1px solid var(--line);
}

.news-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 38px;
  padding: 34px 0;
  align-items: center;
}

.news-list img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.news-list h2 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.3;
}

.news-list p {
  max-width: 860px;
  margin: 0 0 18px;
  color: #243b55;
  font-size: 18px;
  line-height: 1.6;
}

.news-list time {
  color: var(--muted);
  font-size: 18px;
}

.news-list span {
  display: inline-block;
  margin-left: 16px;
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.contact-page {
  min-height: calc(100vh - 255px);
}

.contact-page .page-title {
  background: var(--navy);
  color: var(--white);
}

.contact-page .section-kicker,
.contact-page .page-title p {
  color: #c4ced8;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
  margin: 0 auto;
  padding: 80px 0 105px;
}

.consult-form {
  width: min(calc(100% - (var(--page-pad) * 2)), 900px);
  margin: 0 auto;
  padding: 78px 0 105px;
}

.consult-form form {
  display: grid;
  gap: 18px;
}

.consult-form label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.consult-form input,
.consult-form textarea,
.consult-form select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 15px 16px;
  color: #243b55;
  font: inherit;
}

.consult-form textarea {
  min-height: 170px;
  resize: vertical;
}

.consult-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.consult-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.consult-actions a.secondary {
  background: var(--white);
  color: var(--navy);
}

.consult-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.contact-info div {
  border-top: 2px solid var(--navy);
  padding-top: 24px;
}

.contact-info h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.contact-info p,
.contact-info a {
  margin: 0;
  color: #243b55;
  font-size: 18px;
  line-height: 1.55;
}

.detail-hero {
  padding: 100px var(--page-pad) 50px;
}

.detail-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: 1.15;
  font-weight: 900;
}

.detail-hero p:not(.section-kicker) {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.55;
  font-weight: 700;
}

.detail-gallery {
  padding: 30px var(--page-pad) 80px;
}

.detail-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.detail-image-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.detail-content {
  padding: 20px var(--page-pad) 100px;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.detail-columns h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.28;
}

.detail-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 25px;
  font-weight: 800;
}

.process-list strong {
  color: var(--navy);
}

.start-band {
  padding: 100px var(--page-pad) 130px;
  background: var(--white);
}

.start-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.start-band h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
  font-weight: 900;
}

.start-band p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 32px;
  font-weight: 900;
}

.start-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 54px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 15px 26px;
  font-weight: 800;
}

.light-header {
  background: var(--white);
  color: var(--navy);
}

.light-header .site-logo img {
  width: 0;
  opacity: 0;
}

.contact-us-live {
  background: var(--white);
}

.live-detail-page {
  background: var(--white);
}

.live-detail-page .section-inner {
  max-width: 1200px;
}

.live-visual-hero {
  position: relative;
  padding: 0 var(--page-pad);
  background: var(--white);
}

.live-visual-hero img {
  width: min(100%, 1200px);
  max-height: 660px;
  margin: 0 auto;
  object-fit: contain;
}

.goods-hero img {
  max-height: 780px;
}

.hero-title-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  text-align: center;
}

.hero-title-overlay strong,
.hero-title-overlay span {
  display: block;
  font-size: 26px;
  line-height: 1.65;
  font-weight: 900;
}

.hero-title-overlay strong {
  color: var(--navy);
}

.hero-title-overlay span {
  color: #fffffb;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.28);
}

.goods-overlay {
  align-items: start;
  padding-top: 28%;
}

.live-clone-section {
  padding: 90px var(--page-pad);
}

.brand-intro {
  padding-top: 70px;
  text-align: left;
}

.brand-intro h1,
.goods-intro h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 4.2vw, 68px);
  line-height: 1.15;
  font-weight: 900;
}

.clone-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 900;
}

.clone-lead,
.clone-note {
  max-width: 880px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.55;
  font-weight: 800;
}

.clone-note {
  color: var(--navy);
  font-size: 18px;
}

.live-full-image {
  padding: 20px var(--page-pad) 85px;
}

.live-full-image img {
  width: 100%;
  margin: 0 auto;
}

.clone-heading {
  margin-bottom: 48px;
}

.clone-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 3.6vw, 56px);
  line-height: 1.18;
  font-weight: 900;
}

.clone-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 26px;
  line-height: 1.4;
  font-weight: 900;
}

.feature-image-grid,
.goods-product-grid,
.core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.feature-image-grid article,
.goods-product-grid article,
.why-grid article,
.core-grid article {
  min-width: 0;
}

.feature-image-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: contain;
  background: #f7f7f7;
}

.feature-image-grid h3,
.goods-product-grid h3,
.why-grid h3,
.core-grid h3 {
  margin: 22px 0 8px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.3;
  font-weight: 900;
}

.feature-image-grid p,
.goods-product-grid p,
.why-grid p,
.core-grid p,
.showcase-grid p,
.process-block p,
.wide-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  font-weight: 800;
}

.brand-showcase {
  padding: 40px var(--page-pad) 70px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 62px;
  align-items: center;
  padding: 55px 0;
}

.showcase-grid.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.showcase-grid.reverse img {
  order: 2;
}

.showcase-grid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.showcase-grid h2,
.wide-copy h2,
.process-block h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.28;
  font-weight: 900;
}

.clone-process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 800;
}

.clone-process-list strong {
  color: var(--navy);
}

.goods-intro {
  text-align: center;
}

.goods-intro p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 30px;
  line-height: 1.55;
  font-weight: 900;
}

.products-section {
  padding-top: 75px;
}

.goods-product-grid article {
  text-align: center;
}

.goods-product-grid img {
  width: 115px;
  height: 115px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.goods-lineup-image {
  width: min(100%, 980px);
  margin: 70px auto 0;
}

.goods-value {
  background: #fbfbf8;
}

.wide-copy {
  text-align: center;
}

.for-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 46px;
}

.for-grid article,
.why-grid article,
.core-grid article {
  border-top: 2px solid var(--navy);
  padding-top: 24px;
}

.goods-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 70px;
}

.goods-photo-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.process-section {
  padding-bottom: 45px;
}

.process-block {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
  gap: 50px;
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid #ececec;
}

.process-block.reverse {
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.35fr);
}

.process-block.reverse div {
  order: 2;
}

.process-block img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  object-fit: contain;
}

.process-block.compact {
  grid-template-columns: 1fr;
}

.clone-start-band {
  min-height: 310px;
}

.site-nav a.is-active {
  color: var(--muted);
}

.contacts-heading {
  padding: 70px var(--page-pad) 30px;
}

.contacts-heading .section-inner {
  max-width: 1164px;
}

.contacts-heading h1 {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.contacts-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 34px;
  line-height: 1.35;
  font-weight: 900;
}

.live-form-section {
  padding: 22px var(--page-pad) 105px;
}

.live-contact-form {
  width: min(100%, 1164px);
  margin: 0 auto;
}

.line-field {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
}

.line-field span {
  display: block;
  margin-bottom: 12px;
}

.line-field b,
.agreement-block b {
  color: #f05a5a;
}

.line-field input,
.line-field textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--navy);
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  outline: 0;
}

.line-field input {
  height: 34px;
}

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

.line-field .phone-fields {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-fields input {
  width: 66px;
  flex: 0 0 66px;
  text-align: center;
}

.phone-fields i {
  color: var(--navy);
  font-style: normal;
  font-weight: 800;
}

.agreement-block {
  margin: 18px 0 24px;
}

.agreement-block h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.4;
}

.policy-box {
  height: 160px;
  overflow-y: auto;
  border: 1px solid var(--navy);
  padding: 12px 10px;
  color: var(--navy);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
  white-space: pre-line;
}

.policy-box.small {
  height: 116px;
}

.check-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.check-line input {
  width: 22px;
  height: 22px;
  margin: 0;
}

.submit-link {
  display: block;
  width: 122px;
  margin: 32px auto 0;
  padding: 13px 0;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.contact-clean-header .site-logo img {
  opacity: 0;
}

.contact-clean-page {
  min-height: calc(100vh - 210px);
}

@media (max-width: 900px) {
  :root {
    --page-pad: 22px;
  }

  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .header-inner {
    max-width: none;
  }

  .site-logo img {
    width: 105px;
  }

  .menu-toggle {
    display: grid;
    gap: 7px;
    border: 0;
    padding: 10px 2px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
  }

  .light-header .menu-toggle span {
    background: var(--navy);
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: var(--navy);
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    height: 760px;
    min-height: 0;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-copy {
    padding: 90px 18px 0;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .contact-now {
    top: 62%;
    left: 62%;
    width: 68px;
    height: 68px;
    font-size: 10px;
  }

  .business,
  .news-preview {
    min-height: 0;
    padding: 85px 22px;
  }

  .section-head {
    display: block;
  }

  .business-more {
    width: max-content;
    height: 46px;
    min-width: 100px;
    margin: -10px 0 34px;
    font-size: 14px;
  }

  .section-kicker {
    font-size: 15px;
  }

  .business h2,
  .news-preview h2 {
    margin-bottom: 35px;
    font-size: 35px;
  }

  .carousel-rail img {
    flex-basis: 84%;
    height: 290px;
  }

  .two-copy {
    grid-template-columns: 1fr;
    gap: 34px;
    margin: 50px 0;
  }

  .two-copy h3,
  .stack-copy h3 {
    font-size: 25px;
  }

  .two-copy p,
  .stack-copy p {
    font-size: 16px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
    margin: 50px 0;
  }

  .stats strong {
    font-size: 50px;
  }

  .godong-note {
    margin: 0;
    font-size: 15px;
  }

  .video-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .goods-carousel {
    margin-top: 50px;
  }

  .goods-carousel .carousel-rail img {
    flex-basis: 68%;
    height: 320px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .news-card img {
    height: 250px;
  }

  .contact-band h2 {
    font-size: 27px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer small {
    text-align: left;
  }

  .sub-page {
    padding-top: 70px;
  }

  .about-intro {
    padding: 60px 20px;
  }

  .about-intro p {
    font-size: 16px;
  }

  .about-intro h1 {
    font-size: 20px;
  }

  .about-solutions {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 65px 0;
  }

  .about-solutions h2 {
    font-size: 34px;
  }

  .about-solutions strong {
    font-size: 21px;
  }

  .page-title {
    padding: 82px 22px 58px;
  }

  .page-title p:last-child {
    font-size: 17px;
  }

  .news-list {
    padding: 0 22px 85px;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-list img {
    height: 230px;
  }

  .news-list h2 {
    font-size: 22px;
  }

  .news-list p {
    font-size: 16px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    padding: 62px 0 82px;
  }

  .consult-form {
    padding: 62px 0 82px;
  }

  .contacts-heading {
    padding: 52px 22px 22px;
  }

  .contacts-heading h1 {
    font-size: 40px;
  }

  .contacts-heading p {
    font-size: 25px;
  }

  .live-form-section {
    padding: 18px 22px 82px;
  }

  .phone-fields {
    gap: 9px;
  }

  .phone-fields input {
    width: 58px;
    flex-basis: 58px;
  }

  .policy-box {
    font-size: 14px;
  }

  .detail-hero {
    padding: 72px 22px 36px;
  }

  .detail-hero p:not(.section-kicker) {
    font-size: 17px;
  }

  .detail-gallery {
    padding: 20px 22px 58px;
  }

  .detail-image-grid {
    grid-template-columns: 1fr;
  }

  .detail-image-grid img {
    height: 260px;
  }

  .detail-content {
    padding: 10px 22px 70px;
  }

  .detail-columns {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .detail-columns p {
    font-size: 17px;
  }

  .process-list {
    margin-top: 58px;
    font-size: 20px;
  }

  .start-band {
    padding: 72px 22px 90px;
  }

  .start-band .section-inner {
    display: block;
  }

  .start-band p {
    font-size: 25px;
  }

  .start-band a {
    margin-top: 32px;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 36px;
  }

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

  .business h2,
  .news-preview h2 {
    font-size: 32px;
  }

  .news-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .live-visual-hero {
    padding: 0;
  }

  .live-visual-hero img,
  .goods-hero img {
    width: 100%;
    max-height: none;
  }

  .live-clone-section {
    padding: 64px 22px;
  }

  .brand-intro h1,
  .goods-intro h1,
  .clone-heading h2 {
    font-size: 36px;
  }

  .clone-lead,
  .clone-note,
  .clone-heading p,
  .goods-intro p {
    font-size: 19px;
  }

  .feature-image-grid,
  .goods-product-grid,
  .core-grid,
  .for-grid,
  .why-grid,
  .goods-photo-grid,
  .showcase-grid,
  .showcase-grid.reverse,
  .process-block,
  .process-block.reverse {
    grid-template-columns: 1fr;
  }

  .showcase-grid,
  .showcase-grid.reverse,
  .process-block,
  .process-block.reverse {
    gap: 28px;
  }

  .showcase-grid.reverse img,
  .process-block.reverse div {
    order: initial;
  }

  .feature-image-grid img {
    aspect-ratio: 1.35 / 1;
  }

  .goods-photo-grid img {
    height: 310px;
  }

  .process-block img {
    max-width: 170px;
  }

  .clone-start-band {
    min-height: 0;
  }
}
