@charset "utf-8";

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

section { width: 100%; padding-top: 120px; }

h1 { font-size: 56px; font-weight: 800; }
h2 { font-size: 32px; margin-bottom: 40px; }
p  { font-size: 24px; font-weight: 400; margin-top: 10px; margin-bottom: 40px; }

.ED1C24 { color: #ED1C24; }
.pc { display: inline; }
.mobile { display: none; }

header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img { height: 80px; }

.menu { display: flex; gap: 30px; }

.menu a {
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

.menu a:hover { color: #ED1C24; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #111;
  display: block;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.title-top,
.title-bottom { display: block; }

.dot-text span {
  position: relative;
  display: inline-block;
}

.dot-text span::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #ED1C24;
  border-radius: 50%;
}

.desc-line {
  text-align: center;
  margin: 10px 0 25px;
}

.desc-line::after {
  content: "";
  display: block;
  width: 2px;
  height: 25px;
  background: #ED1C24;
  margin: 10px auto 0;
}

.hero {
  text-align: center;
  padding-top: 180px;
  padding-bottom: 10px;
}

#typing {
  display: inline-block;
  position: relative;
}

#typing::after {
  content: "";
  width: 3px;
  height: 1em;
  background: #ff3b3b;
  margin-left: 4px;
  display: inline-block;
  animation: blink 0.8s infinite;
}

.hero p { margin: 20px 0 30px; }

.text_bg {
  position: relative;
  display: inline-block;
  color: #000;
  z-index: 0;
  padding: 0 10px;
  line-height: 1;
  animation: textWhite 1s forwards;
  animation-delay: 0.5s;
}

.text_bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.2em;
  background: #000;
  border-radius: 6px;
  z-index: -1;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  animation: bgSlide 1s ease forwards;
}

/* =========================
   HERO BANNER SLIDER
========================= */
.hero-banner{
  position: relative;
  width: 100%;
  background: #fff;
  padding-top: 120px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-visual{
  position: relative;
  width: 100%;
  height: clamp(520px, calc(100vh - 260px), 680px);
  overflow: hidden;
  background: #111;
}

.hero-slider{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.hero-slide{
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
  transition: transform 4.5s ease;
}

.hero-slide.active img{
  transform: scale(1);
}

.hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.38);
  color: #fff;
  font-size: 48px;
  line-height: 52px;
  font-weight: 200;
  cursor: pointer;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  transition: 0.3s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow:hover{
  background: rgba(237,28,36,0.95);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow-left{ left: 32px; }
.hero-arrow-right{ right: 32px; }

.hero-dots{
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 30;
}

.hero-dot{
  width: 38px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-dot.active{
  width: 54px;
  background: #ED1C24;
}

.hero-storage-bottom{
  position: relative;
  z-index: 15;
  width: 100%;
  background: #ED1C24;
  margin-top: 0;
  padding: 28px 0;
}

.hero-storage-inner{
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-storage-tags{
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-storage-tags span{
  position: relative;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
}

.hero-storage-tags span:not(:last-child)::after{
  content: "|";
  margin-left: 12px;
  color: rgba(255,255,255,0.7);
}

.hero-storage-tel{
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.scroll{
  position: relative;
  z-index: 15;
  width: max-content;
  transform: none;
  margin: 18px auto 0;
  color: #666;
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.8;
  cursor: pointer;
}

.scroll::after{
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background: #999;
  margin: 10px auto 0;
  animation: scrollDown 1.5s infinite;
}


/**/
.news-wrap {
  width: 100%;
  padding: 50px 0;
  background: #f7f7f7;
}

/* 제목 */
#typing-line.single-line{
  text-align:center;
  font-size:48px;
  font-weight:700;
  line-height:1.4;
  color:#111;
  margin-bottom:40px;
}

#typing-line.single-line .highlight{
  color:#ED1C24;
}

.dot-char{
  position:relative;
  display:inline-block;

}

/* 🔴 글자 위 점 */
.dot-char::before{
  content:"";
  position:absolute;
  top:-10px;            /* 높이 조절 */
  left:50%;
  transform:translateX(-50%);
  width:6px;
  height:6px;
  background:#ED1C24;
  border-radius:50%;
}

#typing-line{
  letter-spacing:0;   /* 글자 간격 초기화 */
}


/* 카드 2열 */
.news {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.news-left,
.news-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-left{
  gap:20px;
}

.news-right{
  gap:20px;
}

/* 왼쪽 3개 카드 */
.news-left .news-card{
  flex:1;
  margin-bottom:0;
}

/* 오른쪽 2개 카드 */
.news-right .news-card{
  flex:1;
  margin-bottom:0;
  min-height:160px;
}

.news-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 24px;
  color: #111;
}

.news-card.red{
  position: relative;
  overflow: hidden;
  background: rgba(237, 28, 36, 0.9);
  display:flex;
  align-items:center;
  justify-content:center;
}

.news-card.red .card-text{
  position: relative;
  z-index:2;
  color:#fff;
  font-size:30px;
  transition:0.4s;
}

.news-card.red img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.15;
  transition:0.4s ease;
}

.news-card.red:hover img{
  opacity:1;
}

.news-card.red:hover .card-text{
  transform:scale(1.05);
}

.news-card.empty {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.news-card.empty img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
  transition: all 0.4s ease;
}

.news-card.empty:hover img {
  filter: brightness(100%);
  transform: scale(1.05);
}

/**/

.services-content {
  text-align: center;
  margin-bottom: 40px;
}

.services-content .title-top,
.services-content .title-bottom {
  font-size: 48px;
  font-weight: 700;
}

.services-content .title-bottom { margin-top: 5px; }
.services-content p { font-size: 24px; margin-top: 10px; }

.service-top {
  display: flex;
  align-items: stretch;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.main-card {
  flex: 0 0 220px;
  background: #e60023;
  color: #fff;
  padding: 30px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.badge,
.circle {
  width: 70px;
  height: 70px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.main-card h3 {
  font-size: 28px;
  line-height: 1.4;
}

.main-card .line {
  width: 40px;
  height: 2px;
  background: #fff;
  margin: 15px 0;
}

.main-card p {
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
}

.category {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category span { display: block; }
.category span::after { content: ""; }

.gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  min-height: 420px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery img:hover { transform: scale(1.05); }

.hero-type {
  position: relative;
  height: 550px;
  background: url('main.jpg') no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.hero-type .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-type .hero-content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  margin-top: -100px;
}

.type-header { max-width: 100%; margin: 0 auto; }

.top-sub {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing:-0.5px;
}

.top-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 40px;
    color: #fff;
}

.top-title span {
  display: inline-block;

  white-space: nowrap;
  margin-top: 5px;
}

.type-header .premium {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.type-area {
  background: #f3f4f6;
  padding-top: 100px;
 
}

.type-wrap {
  width: 100%;
  margin: 0;
  position: relative;
  top: -200px;
  z-index: 5;
}

.type-box {
  display: flex;
  background: #fff;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.type-left {
  flex: 0 0 220px;
  padding: 30px 20px;
  color: #fff;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.type-left.red { background: #ef1c23; }

.type-left h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.type-left .line {
  width: 52px;
  margin: 10px 0 4px;
  height: 2px;
  background: #fff;
  margin: 15px 0;
}

.type-left p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: 1.7;
}

.type-right {
  flex: 1;
  padding: 20px;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.img-grid img {	
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.img-grid img:hover { transform: scale(1.05); }

.type-btn-wrap{
  text-align:center;
  margin:60px 0 40px;
}

.type-btn{
  display:inline-block;
  padding:16px 40px;
  background:#000;
  color:#fff;
  border-radius:999px;
  font-size:18px;
  font-weight:700;
  transition:0.3s;
}

.type-btn:hover{
  background:#ED1C24;
  transform:translateY(-3px);
}

.type-grid-image{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
  margin-top:50px;
  align-items:start;
}

.type-card-item{ text-align:center; }

.type-card-item h4{
  font-size:24px;
  font-weight:700;
  color:#111;
  margin-bottom:8px;
}

.type-card-item p{
  font-size:18px;
  color:#666;
  margin-top:0;
  margin-bottom:20px;
}

.type-card-thumb{
  overflow:hidden;
  border-radius:18px;
}

.type-card-thumb img{
  width:100%;
  height:350px;
  object-fit:cover;
  display:block;
  transition:transform 0.4s ease, filter 0.4s ease;
}

.type-card-item:hover .type-card-thumb img{
  transform:scale(1.05);
  filter:brightness(0.96);
}

.btn-wrap { width: 100%; text-align: center;    margin: 80px 0;}

.quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 56px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 500px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.quote-btn:hover {
  background: #e60023;
  transform: translateY(-3px) scale(1.05);
}

.quote-btn:active { transform: scale(0.98); }

.icon {
  font-size: 22px;
  animation: floatIcon 2.5s infinite ease-in-out;
}

.text span {
  display: inline-block;
  color: #fff;
  animation: letterGlow 2.5s infinite ease-in-out;
}

.text span:nth-child(1) { animation-delay: 0s; }
.text span:nth-child(2) { animation-delay: 0.1s; }
.text span:nth-child(3) { animation-delay: 0.2s; }
.text span:nth-child(4) { animation-delay: 0.3s; }
.text span:nth-child(5) { animation-delay: 0.4s; }
.text span:nth-child(6) { animation-delay: 0.5s; }
.text span:nth-child(7) { animation-delay: 0.6s; }

.feature-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
	
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.feature-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
}

.feature-item .icon img {
  display: block;
  margin: 0 auto;
}

.feature-item p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
  margin-bottom: 0;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-section { padding: 80px 20px; }

.process-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 50px;
}

.process-header > p { font-weight: 500; }
.desc-p { margin-bottom: 0; }
.brand { font-weight: 600; }

.process-header .title-top.dot-text {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.process-header .title-top.dot-text span {
  font-size: inherit;
  font-weight: inherit;
}

.title-bottom {
  display: block;
  font-size: 48px;
  font-weight: 700;
  margin-top: 5px;
}

.process-list {
  display: flex;
  gap: 20px;
  width: 100%;
}

.process-item {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-num {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
}

.process-num span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ED1C24;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-title-text {
  font-size: 22px;
  font-weight: 600;
}

.point-section { padding-top: 0; }

.point-wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.point-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.point-text,
.point-img { flex: 1; }

.point-img img {
  width: 100%;
  border-radius: 12px;
	  transition: transform 0.4s ease, filter 0.4s ease;
}
.point-img img:hover { transform: scale(1.05); }

.point-num {
  color: #ED1C24;
  font-weight: 700;
  font-size: 14px;
}

.point-text h3 {
  font-size: 28px;
  margin: 10px 0;
}

.point-text p {
  color: #777;
  line-height: 1.6;
}

#portfolio { padding-bottom: 120px; }

.portfolio-desc {
  text-align: center;
  margin: 30px 0 60px;
}

.portfolio-desc h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-desc p {
  font-size: 24px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

.portfolio-wrap {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.portfolio-left,
.portfolio-right { flex: 1; }

.portfolio-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-right img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.portfolio-right:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.branch{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px;
  margin-bottom:20px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}


.branch-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}

.branch-info h3 {   margin:0 0 6px; font-size: 22px; }

.branch-info p {
  margin:0;
  line-height:1.5;
  word-break:keep-all;
  font-size: 16px;
  color: #555;
}

.call-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 16px;
  background: #ED1C24;
  color: #fff;
  border-radius: 40px;
  white-space: nowrap;
  transition: 0.3s ease;
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.25);
}

.call-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.25);
}

.footer {
  background: #111;
  color: #aaa;
  padding: 60px 20px 30px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo img {
  width: 50px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin: 0 auto;
  padding-bottom: 20px;	
	
}

.footer-info p {
  margin: 6px 0;
  line-height: 1.6;
  font-size: 20px;
}

.footer-desc {
  font-size: 16px;
  color: #777;
  margin-top: 10px;
}

.footer-copy {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 16px;
  color: #555;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

@keyframes bgSlide {
  to { transform: translateY(-50%) scaleX(1); }
}

@keyframes textWhite {
  to { color: #fff; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(15px); }
}

@keyframes letterGlow {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }
  50% {
    opacity: 0.4;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
  }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (max-width: 1024px) {
  h1 { font-size: 42px; }

  .hero-banner .hero-content h2,
  .top-title,
  .services-content .title-top,
  .services-content .title-bottom,
  .process-header .title-top.dot-text,
  .title-bottom {
    font-size: 36px;
  }

  .hero-arrow{
    display:none !important;
  }

  .service-top {
    flex-direction: column;
  }

  .main-card {
    width: 100%;
    flex: none;
    text-align: center;
    border-radius: 0;
  }

  .main-card .badge,
  .main-card .line,
  .type-left .line {
    margin-left: auto;
    margin-right: auto;
  }

  .main-card h3 br {
    display: none;
  }

  .category {
    display: block;
    white-space: nowrap;
  }

  .category span {
    display: inline;
  }

  .category span::after {
    content: "|";
    display: inline-block;
    margin: 0 20px;
  }

  .category span:last-child::after {
    content: "";
  }

  .hero-banner {
    height: 620px;
  }

  .hero-storage-top {
    transform: translateY(-20px);
  }

  .hero-storage-icon img {
    width: 180px;
  }

  .hero-storage-sub {
    font-size: 16px;
  }

  .hero-storage-title {
    font-size: 52px;
    letter-spacing: -2px;
  }

  .hero-storage-desc {
    font-size: 20px;
  }

  .hero-storage-tags span {
    font-size: 24px;
  }

  .hero-storage-tel {
    font-size: 52px;
  }

  .hero-storage-bottom {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .hero-type .hero-content {
    padding: 0 20px;
  }

  .type-box {
    flex-direction: column;
  }

  .type-left {
    width: 100%;
    flex: none;
    text-align: center;
    align-items: center;
  }

  .type-left .circle {
    margin: 0 auto 10px;
  }

  .type-left h3 br {
    display: none;
  }

  .type-right {
    width: 100%;
    padding: 20px;
  }

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

  .type-grid-image {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .news-wrap {
    padding: 60px 0;
  }

   #typing-line.single-line{
    font-size:38px;
    margin-bottom:30px;
  }

  .news{
    flex-direction:column;
    gap:16px;
  }

  .news-left,
  .news-right{
    width:100%;
    display:flex;
    flex-direction:column;
  }

  .news-left .news-card,
  .news-right .news-card{
    flex:none;
    min-height:auto;
  }

  .news-card.red,
  .news-card.empty{
    height:260px;
  }

  #typing-line {
    text-align: center;
    font-size: 38px;
    line-height: 1.4;
  }

  #typing-line br {
    display: none;
  }

  #typing-line .line {
    display: inline;
  }

  .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .feature-item {
    padding: 50px 15px;
  }

    .main-card{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
  }

  .main-card .badge,
  .main-card .line{
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .main-card h3,
  .main-card .service-label{
    text-align:center !important;
  }

  .main-card .category{
    width:100% !important;

    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;

    gap:0 14px !important;
    margin-top:28px !important;
  }

  .main-card .category span{
    display:flex !important;
    align-items:center;
    justify-content:center;

    height:48px;
    font-size:18px !important;
    font-weight:800;

    border-bottom:1px solid rgba(255,255,255,0.18) !important;
  }

  .main-card .category span::after{
    display:none !important;
    content:none !important;
  }
  
}

@media (max-width: 900px) {
  .portfolio-wrap { flex-direction: column; }

  .portfolio-left,
  .portfolio-right {
    flex: unset;
    width: 100%;
  }

  .portfolio-right { margin-top: 30px; }

  
  	
}

@media (max-width: 768px) {
  section { padding-top: 80px; }

  .nav { padding: 12px 0; }
  .logo img { height: 50px; }

  .menu-toggle { display: flex; }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }

  .menu.active { display: flex; }

  .menu a {
    display: block;
    padding: 14px 20px;
  }

  h1 { font-size: 32px; }



  .gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
	
  .hero-banner { height: 440px; }

  .hero-storage-top{
    transform:translateY(-10px);
  }

  .hero-storage-icon{
    margin-bottom:18px;
  }

  .hero-storage-icon img{
    width:120px;
  }

  .hero-storage-sub{
    font-size:14px;
    margin-bottom:10px;
  }

  .hero-storage-title{
    font-size:36px;
    line-height:1.15;
    letter-spacing:-1px;
  }

  .hero-storage-desc{
    font-size:16px;
    margin-top:14px;
    line-height:1.4;
  }

  .hero-storage-bottom{
    padding:10px 10px;
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .hero-storage-tags{
    justify-content:center;
    gap:10px;
  }

  .hero-storage-tags span{
    font-size:18px;
  }

  .hero-storage-tags span:not(:last-child)::after{
    right:-8px;
  }

  .hero-storage-tel{
    margin-left:0;
    font-size:36px;
  }

  .scroll{
    bottom:-70px;
    font-size:12px;
  }
	
	/**/
  .hero-type { height: 420px; }
  .type-wrap { top: -100px; }
	
	.hero-type .hero-content {    margin-top: -50px;}	

  .type-box { flex-direction: column; }

  .type-left {
    flex: none;
    width: 100%;
  }

  .img-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .img-grid img{
    width:100%;
    height:auto;
    aspect-ratio:4/3;
    object-fit:cover;
  }

  .type-grid-image{
    grid-template-columns:1fr;
    gap:20px;
  }

  .type-card-thumb img { height:320px; }

  .type-btn{
    font-size:16px;
    padding:14px 28px;
  }

  .type-btn-wrap{ margin:40px 0 30px; }

  .pc { display: none; }
  .mobile { display: inline; }

  .btn-wrap{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    z-index: 9999;
  }

  .quote-btn{
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;

    padding: 18px 0;
    border-radius: 0;
  }

  body{
    padding-bottom: 80px;
  }


  .services-content .title-top,
  .services-content .title-bottom,
  .process-header .title-top.dot-text {
    font-size: 38px;
  }

  .process-header .title-bottom { font-size: 32px; }
  .top-title { font-size: 38px; }

  .point-item,
  .point-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .point-text,
  .point-img { width: 100%; }

  .point-text h3 { font-size: 22px; }

  .point-text p {
    font-size: 14px;
    margin-bottom: 0;
  }

  .process-header .line-bottom2 span::before,
  .process-header .line-bottom2::before,
  .process-header .line-bottom2 span::after,
  .process-header .line-bottom2::after {
    display: none !important;
    content: none !important;
  }

  .line-bottom2 { padding-bottom: 10px; }

  .process-item {
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
  }

  .process-list { flex-direction: column; }

  .process-num {
    flex-direction: column;
    gap: 6px;
  }

  .process-num span {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .process-title-text {
    text-align: center;
    line-height: 1.5;
    word-break: keep-all;
  }

  .branch {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .call-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-info p { font-size: 16px; }
}

@media (max-width: 600px) {
  p,
  .services-content p,
  .process-title-text,
  .process-num {
    font-size: 18px;
  }

  h1 { font-size: 36px; }

  .hero-top,
  .hero-bottom,
  .title-top,
  .title-bottom {
    display: block;
  }
  

  .hero-bottom,
  .title-bottom { margin-top: 5px;  }
  


  .hero-storage-icon img{
    width:90px;
  }

  .hero-storage-title{
    font-size:30px;
  }

  .hero-storage-desc{
    font-size:14px;
  }

  .hero-storage-tags span{
    font-size:16px;
  }

  .hero-storage-tel{
    font-size:26px;
  }
	

  .portfolio-desc h3 { font-size: 38px; }

  .portfolio-desc p { font-size: 20px; }

	
	
/*  .feature-list { grid-template-columns: 1fr; }*/
}


/* =========================
   HERO SLIDER RESPONSIVE FIX
========================= */
@media (max-width: 1024px){
  .hero-banner{
    height: auto !important;
    min-height: auto !important;
    padding-top: 74px;
  }

  .hero-visual{
    height: 60vh;
    min-height: 430px;
  }

  .hero-storage-tags span{
    font-size: 22px;
  }

  .hero-storage-tel{
    font-size: 40px;
  }
}

@media (max-width: 768px){
  .hero-banner{
    height: auto !important;
    min-height: auto !important;
    padding-top: 74px;
  }

  .hero-visual{
    height: 58vh;
    min-height: 360px;
  }

  .hero-slide img{
    object-position: center center;
  }

  .hero-arrow{
    width: 42px;
    height: 42px;
    font-size: 36px;
    line-height: 38px;
    padding-bottom: 4px;
  }

  .hero-arrow-left{ left: 14px; }
  .hero-arrow-right{ right: 14px; }

  .hero-dots{
    bottom: 20px;
    gap: 8px;
  }

  .hero-dot{
    width: 26px;
    height: 4px;
  }

  .hero-dot.active{
    width: 38px;
  }

  .hero-storage-bottom{
    padding: 14px 10px;
  }

  .hero-storage-inner{
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .hero-storage-tags{
    justify-content: center;
    gap: 8px;
  }

  .hero-storage-tags span{
    font-size: 16px;
  }

  .hero-storage-tags span:not(:last-child)::after{
    margin-left: 8px;
  }

  .hero-storage-tel{
    font-size: 30px;
  }

  .scroll{
    bottom: auto !important;
    margin-top: 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px){
  .hero-visual{
    height: 52vh;
    min-height: 310px;
  }

  .hero-storage-tags span{
    font-size: 14px;
  }

  .hero-storage-tel{
    font-size: 26px;
  }
}


/* =========================
   PREMIUM UPGRADE
========================= */
.hero-visual::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:5;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.08) 72%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.08) 60%, rgba(0,0,0,0.26) 100%);
  pointer-events:none;
}

.hero-copy{
  position:absolute;
  left:clamp(32px, 8vw, 150px);
  top:50%;
  transform:translateY(-50%);
  z-index:12;
  max-width:680px;
  color:#fff;
  text-align:left;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:800;
  letter-spacing:0.16em;
  color:#ED1C24;
  margin-bottom:18px;
}

.eyebrow::before{
  content:"";
  width:36px;
  height:2px;
  background:#ED1C24;
  display:inline-block;
}

.hero-copy h1{
  font-size:clamp(44px, 5.4vw, 82px);
  line-height:1.05;
  letter-spacing:-0.06em;
  font-weight:900;
  margin:0 0 24px;
  text-shadow:0 18px 38px rgba(0,0,0,0.22);
}

.hero-copy p{
  font-size:clamp(17px, 1.45vw, 22px);
  line-height:1.7;
  font-weight:500;
  margin:0 0 34px;
  color:rgba(255,255,255,0.88);
}

.hero-copy-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-main-btn,
.hero-sub-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 28px;
  border-radius:999px;
  font-size:16px;
  font-weight:500;
  transition:0.3s ease;
}

.hero-main-btn{
  background:#ED1C24;
  color:#fff;
  box-shadow:0 16px 38px rgba(237,28,36,0.32);
}

.hero-sub-btn{
  background:rgba(255,255,255,0.14);
  color:#fff;
  border:1px solid rgba(255,255,255,0.35);
  backdrop-filter:blur(10px);
}

.hero-main-btn:hover,
.hero-sub-btn:hover{
  transform:translateY(-3px);
}

.hero-storage-bottom{
  background:linear-gradient(90deg, #ED1C24 0%, #d8121a 100%);
}



.news-wrap{
  position:relative;
  background:
    radial-gradient(circle at 15% 10%, rgba(237,28,36,0.08), transparent 28%),
    linear-gradient(180deg, #f7f7f7 0%, #fff 100%);
  padding:90px 0;
}

.news{
  gap:24px;
}

.premium-news-card{
  position:relative;
  overflow:hidden;
  padding:34px 34px 30px;
  border:1px solid rgba(0,0,0,0.06);
}

.premium-news-card::after{
  content:"";
  position:absolute;
  right:-60px;
  bottom:-60px;
  width:160px;
  height:160px;
  border-radius:50%;
  background:rgba(237,28,36,0.06);
  transition:0.35s ease;
}

.premium-news-card:hover::after{
  transform:scale(1.35);
  background:rgba(237,28,36,0.12);
}

.news-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#ED1C24;
  color:#fff;
  font-size:15px;
  font-weight:900;
  margin-bottom:18px;
}

.premium-news-card h3{
  font-size:25px;
  line-height:1.35;
  margin-bottom:12px;
  letter-spacing:-0.04em;
}

.premium-news-card p{
  font-size:17px;
  line-height:1.7;
  color:#666;
  margin:0;
  word-break:keep-all;
}

.news-card.red{
  background:linear-gradient(135deg, rgba(237,28,36,0.96), rgba(177,0,8,0.92));
  min-height:230px;
}

.news-card.red .card-text{
  font-size:34px;
  font-weight:800;
  letter-spacing:-0.04em;
}

.service-area{
  padding-top:140px;
}

.services-content{
  position:relative;
}

.service-top{

  box-shadow:0 26px 80px rgba(0,0,0,0.10);
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
}

.main-card{
  flex:0 0 290px;
  background:
    linear-gradient(160deg, #ED1C24 0%, #bb0d14 100%);
  padding:42px 30px;
  border-radius:0;
}

.service-label{
  display:block;
  font-size:12px;
  letter-spacing:0.12em;
  font-weight:900;
  color:rgba(255,255,255,0.72);
}

.main-card h3{
  font-size:31px;
  letter-spacing:-0.06em;
}

.main-card-desc{
  font-size:17px !important;
  line-height:1.65 !important;
  color:rgba(255,255,255,0.82);
  margin:0 !important;
}

.category{
  margin-top:auto;
}

.category span{
  padding:7px 0;
  border-bottom:1px solid rgba(255,255,255,0.18);
  font-size:18px;
  font-weight:500;
}

.gallery{
  gap:18px;
  padding:24px;
  background:#fafafa;
}

.gallery img{
  border-radius:20px;
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.storage-cta{
  padding:120px 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.82), rgba(0,0,0,0.68)),
    url('main.jpg') center/cover no-repeat;
  color:#fff;
}

.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:48px;
}

.cta-copy h2{
  font-size:clamp(38px, 4vw, 62px);
  line-height:1.18;
  letter-spacing:-0.06em;
  margin:0 0 22px;
}

.cta-copy p{
  font-size:20px;
  line-height:1.75;
  color:rgba(255,255,255,0.78);
  margin:0;
  max-width:680px;
}

.cta-card{
  flex:0 0 360px;
  padding:36px;
  border-radius:28px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.22);
  backdrop-filter:blur(14px);
  box-shadow:0 30px 80px rgba(0,0,0,0.28);
}

.cta-card span{
  display:block;
  font-size:16px;
  color:rgba(255,255,255,0.72);
  margin-bottom:8px;
}

.cta-card strong{
  display:block;
  font-size:48px;
  line-height:1;
  margin-bottom:24px;
  color:#fff;
}

.cta-card a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:56px;
  border-radius:999px;
  background:#ED1C24;
  color:#fff;
  font-size:18px;
  font-weight:700;
  transition:0.3s ease;
}

.cta-card a:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 42px rgba(237,28,36,0.35);
}

@media (max-width:1024px){
  .hero-copy{
    left:5vw;
    max-width:580px;
  }

  .hero-storage-inner::after{
    display:none;
  }
  
	
	
  .cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-card{
    flex:none;
    width:100%;
    max-width:420px;
  }
}

@media (max-width:768px){
  .hero-copy{
    left:22px;
    right:22px;
    max-width:none;
  }

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

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

  .hero-main-btn,
  .hero-sub-btn{
    min-height:46px;
    padding:0 20px;
    font-size:14px;
  }

  .news-wrap{
    padding:70px 0;
  }

  .premium-news-card{
    padding:28px 24px;
  }

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

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

  .main-card{
    flex:none;
    width:100%;
    padding:34px 24px;
  }

  .service-top{
    border-radius:22px;
  }

  .gallery{
    padding:16px;
  }

  .storage-cta{
    padding:82px 0;
  }

  .cta-copy h2{
    font-size:36px;
  }

  .cta-copy p{
    font-size:17px;
  }

  .cta-card{
    padding:28px;
    border-radius:22px;
  }

  .cta-card strong{
    font-size:38px;
  }
}

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

  .hero-copy p br{
    display:none;
  }

  .hero-copy-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-main-btn,
  .hero-sub-btn{
    width:100%;
  }
}

/* ===== 메인 이미지 문구 중앙정렬 / 폰트 축소 수정본 ===== */
.hero-visual::after{
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.22) 46%, rgba(0,0,0,0.38) 100%);
}

.hero-copy{
  left:50% !important;
  top:50% !important;
  right:auto !important;
  transform:translate(-50%, -50%) !important;
  width:min(92%, 820px);
  max-width:820px;
  text-align:center !important;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.eyebrow{
  justify-content:center;
  margin-bottom:16px;
}

.eyebrow::before{
  display:none;
}

.hero-copy h1{
  font-size:clamp(36px, 4.5vw, 66px) !important;
  line-height:1.12;
  letter-spacing:-0.055em;
  margin-bottom:22px;
  font-weight: 700;
}

.hero-copy p{
  font-size:clamp(16px, 1.2vw, 19px) !important;
  line-height:1.75;
  margin-bottom:30px;
}

.hero-copy-actions{
  justify-content:center;
  align-items:center;
}

@media (max-width:768px){
  .hero-copy{
    left:50% !important;
    right:auto !important;
    top:50% !important;
    transform:translate(-50%, -50%) !important;
    width:calc(100% - 36px);
  }

  .hero-copy h1{
    font-size:34px !important;
  }

  .hero-copy p{
    font-size:15px !important;
  }
}

@media (max-width:480px){
  .hero-copy h1{
    font-size:30px !important;
  }

  .hero-copy-actions{
    width:100%;
    align-items:center;
  }
}


/* =========================================================
   CIRCLE GAP FINAL FIX
   기준: '보관이사' 빨간 박스 동그라미 아래 빈공간
   A타입도 동일한 높이에서 제목 시작
========================================================= */

/* 두 빨간 박스 내부 구조 통일 */
.main-card,

}


/* FLOATING ESTIMATE BUTTON */
.floating-estimate-btn{
  position:fixed;
  left:20px;
  bottom:20px;
  z-index:9999;
  width:140px;
  transition:transform .35s ease;
}

.floating-estimate-btn img{
  width:100%;
  display:block;
}

.floating-estimate-btn:hover{
  transform:translateY(-6px) scale(1.03);
}

@media (max-width:768px){
  .floating-estimate-btn{
    width:110px;
    left:14px;
    bottom:90px;
  }
}




@media (max-width:768px){
  .floating-estimate-btn{
    display:none;
  }

  .btn-wrap{
    display:none !important;
  }

  .mobile-bottom-quote{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:10000;
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
    height:56px;
    box-shadow:0 -8px 24px rgba(0,0,0,.16);
  }

  .mobile-quote-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:56px;
    color:#fff;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
    letter-spacing:-.03em;
  }

  .mobile-quote-btn.quick{
    background:#ed1c24;
  }

  .mobile-quote-btn.kakao{
    background:#1e2938;
  }

  body{
    padding-bottom:70px;
  }
}

/* =========================================================
   MOBILE FIX : service category text overflow
   - 기존 구조 유지
   - 모바일에서 '해외물류'가 잘리지 않도록 2줄 정렬
========================================================= */
@media (max-width: 768px){
  .main-card .category{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 18px !important;
    width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    margin-top: 0 !important;
  }

  .main-card .category span{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    width: 100% !important;
    padding: 10px 0 !important;
    font-size: clamp(18px, 5.2vw, 25px) !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    border-bottom: 1px solid rgba(255,255,255,0.18) !important;
  }

  .main-card .category span::after{
    content: "" !important;
    display: none !important;
    margin: 0 !important;
  }
}

@media (max-width: 390px){
  .main-card .category{
    gap: 10px 14px !important;
  }
  .main-card .category span{
    font-size: 17px !important;
  }
}

/* =========================================================
   MOBILE TUNING : category hierarchy
   - 카테고리 폰트가 제목보다 커 보이지 않도록 축소
   - 제목 > 카테고리 위계 유지
========================================================= */
@media (max-width: 768px){
  .main-card .category{
    gap: 8px 14px !important;
    margin-top: 6px !important;
  }

  .main-card .category span{
    font-size: clamp(15px, 4.1vw, 18px) !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em !important;
    padding: 7px 0 9px !important;
  }
}

@media (max-width: 390px){
  .main-card .category span{
    font-size: 15px !important;
  }
}


/* =========================================================
   FINAL FIX : MOBILE CTA BACK TO SINGLE KAKAO BUTTON
   - 모바일 하단 2분할 버튼 제거
   - 기존 검정 카카오 무료견적상담 1개 버튼으로 복구
========================================================= */
.mobile-bottom-quote{
  display:none !important;
}

@media (max-width:768px){
  .floating-estimate-btn{
    display:none !important;
  }

  .mobile-bottom-quote{
    display:none !important;
  }

  .btn-wrap{
    position:fixed !important;
    left:0 !important;
    bottom:0 !important;
    width:100% !important;
    margin:0 !important;
    display:block !important;
    z-index:10000 !important;
    text-align:center !important;
  }

  .quote-btn{
    display:flex !important;
    width:100% !important;
    max-width:100% !important;
    height:64px !important;
    padding:0 !important;
    border-radius:0 !important;
    background:#000 !important;
    color:#fff !important;
    align-items:center !important;
    justify-content:center !important;
    gap:10px !important;
    box-shadow:0 -8px 24px rgba(0,0,0,.18) !important;
  }

  .quote-btn .icon img{
    width:32px !important;
    height:auto !important;
  }

  .quote-btn .text{
    display:inline-flex !important;
    align-items:center !important;
    font-size:30px !important;
    font-weight:900 !important;
    letter-spacing:-.06em !important;
    line-height:1 !important;
  }

  body{
    padding-bottom:74px !important;
  }
}


/* ===== 간략 타입 카드 ===== */

.type-grid-image{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:40px;
}

.type-card-item{
  background:#fff;
  border-radius:18px;
  padding:28px 20px;
  text-align:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
  transition:0.3s ease;
  border:1px solid rgba(0,0,0,0.04);
}

.type-card-item:hover{
  transform:translateY(-4px);
}

.type-card-item h4{
  font-size:22px;
  font-weight:700;
  margin-bottom:8px;
  color:#111;
}

.type-card-item p{
  margin:0;
  font-size:16px;
  color:#666;
}

.type-card-thumb{
  display:none !important;
}

@media (max-width:768px){

  .type-grid-image{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .type-card-item{
    padding:22px 14px;
  }

  .type-card-item h4{
    font-size:18px;
  }

  .type-card-item p{
    font-size:14px;
  }

}


/* =========================================================
   STORAGE FINAL POLISH 2026
   - 구조 유지 / 시각 완성도 보강
   - 여백, 타이포, 카드 깊이, 모바일 안정화
========================================================= */
:root{
  --brand-red:#ED1C24;
  --brand-red-dark:#c90f17;
  --ink:#111317;
  --muted:#626973;
  --line:rgba(17,19,23,.08);
  --soft:#f5f6f8;
  --shadow-sm:0 12px 30px rgba(15,23,42,.07);
  --shadow-md:0 24px 70px rgba(15,23,42,.12);
  --radius-lg:28px;
}

body{
  color:var(--ink);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  word-break:keep-all;
}

.container{ max-width:1240px; }

header{
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:0 8px 28px rgba(15,23,42,.045);
}

.nav{ padding:14px 0; }
.logo img{ height:68px; }
.menu a{
  position:relative;
  padding:10px 2px;
  font-size:17px;
  font-weight:700;
  letter-spacing:-.04em;
}
.menu a::after{
  content:"";
  position:absolute;
  left:0; bottom:3px;
  width:100%; height:2px;
  background:var(--brand-red);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .28s ease;
}
.menu a:hover::after{ transform:scaleX(1); transform-origin:left; }

.hero-banner{ padding-top:96px; }
.hero-visual{
  width:min(100%, 1920px);
  height:clamp(560px, calc(100vh - 210px), 760px);
  margin:0 auto;
}
.hero-visual::after{
  background:
    radial-gradient(circle at 22% 50%, rgba(0,0,0,.54), transparent 35%),
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.36) 42%, rgba(0,0,0,.08) 76%),
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.06) 58%, rgba(0,0,0,.28) 100%);
}
.hero-copy{ left:clamp(28px, 7vw, 132px); }
.hero-copy h1{
  max-width:820px;
  letter-spacing:-.075em;
}
.hero-copy p{ max-width:560px; }
.hero-main-btn,
.hero-sub-btn{ min-height:56px; padding:0 32px; }
.hero-sub-btn:hover{ background:rgba(255,255,255,.22); }
.hero-dots{ bottom:34px; }
.hero-storage-bottom{ padding:22px 0; }
.hero-storage-inner{
  max-width:1240px;
  padding:0 2px;
}
.hero-storage-tags span{ font-size:24px; letter-spacing:-.04em; }
.hero-storage-tel{ font-size:42px; letter-spacing:-.04em; }
.scroll{ margin:16px auto 0; }

.news-wrap{ padding:110px 0 120px; }
#typing-line.single-line{
  font-size:clamp(34px, 4vw, 54px);
  letter-spacing:-.065em;
  margin-bottom:52px;
}
.news{ gap:28px; }
.premium-news-card{
  min-height:190px;
  border-radius:20px;
  box-shadow:var(--shadow-sm);
}
.premium-news-card h3{ font-size:27px; }
.premium-news-card p{ font-size:18px; }
.news-card.red,
.news-card.empty{ border-radius:24px; box-shadow:var(--shadow-sm); }
.news-card.red .card-text{ text-align:center; line-height:1.2; }

.service-area{ padding-top:130px; }
.services-content{ margin-bottom:54px; }
.services-content .title-top,
.services-content .title-bottom{
  font-size:clamp(34px, 4vw, 54px);
  letter-spacing:-.065em;
  line-height:1.15;
}
.services-content p{ font-size:21px; color:var(--muted); }
.service-top{

  overflow:hidden;
  box-shadow:var(--shadow-md);
}
.main-card{
  flex-basis:315px;
  padding:46px 34px;
  min-height:480px;
}
.badge,.circle{
  width:78px; height:78px;
  box-shadow:0 12px 24px rgba(0,0,0,.16);
}
.main-card h3{ font-size:34px; line-height:1.25; }
.main-card .line{ width:52px; margin:10px 0 4px; }
.category span{ font-size:18px; letter-spacing:-.045em; }
.gallery{ min-height:480px; gap:18px; padding:26px; }
.gallery img{ min-height:210px; }

.hero-type{
  margin-top:130px;
  height:560px;
  background-attachment:fixed;
}
.hero-type .hero-overlay{
  background:linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.34));
}
.top-sub{ font-size:21px; opacity:.88; }
.top-title{
  font-size:clamp(36px, 4.1vw, 56px);
  letter-spacing:-.065em;
}
.type-header .premium{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.36);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(10px);
}
.type-area{ padding-top:105px; background: #f3f4f6;}
.type-box{

  box-shadow:var(--shadow-md);
}
.type-left{ flex-basis:315px; padding:46px 34px; }
.type-left h3{ font-size:30px; letter-spacing:-.055em; }
.type-left p{ font-size:18px; }
.type-right{ padding:26px; }
.img-grid{ gap:18px; }
.img-grid img{ border-radius:22px; min-height:210px; }
.type-btn-wrap{ margin:48px 0 34px; }
.type-grid-image{ gap:20px; margin-top:34px; }
.type-card-item{
  border-radius:22px;
  padding:30px 20px;
  box-shadow:var(--shadow-sm);
}
.type-card-item:hover{ box-shadow:0 18px 42px rgba(237,28,36,.12); border-color:rgba(237,28,36,.18); }

.quote-btn{ box-shadow:0 18px 42px rgba(0,0,0,.22); }
.feature-section{ margin:110px auto 120px; }
.feature-list{ gap:22px; }
.feature-item{
  border-radius:24px;
  min-height:190px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow-sm);
}
.feature-item:hover{ border-color:rgba(237,28,36,.18); box-shadow:0 20px 48px rgba(237,28,36,.10); }

.storage-cta{
  padding:130px 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,.86), rgba(0,0,0,.66)),
    url('main.jpg') center/cover no-repeat;
}
.cta-copy h2{ letter-spacing:-.075em; }
.cta-card{ border-radius:32px; }

.process-section{ padding:120px 20px 90px; background:#fff; }
.process-header{ margin-bottom:60px; }
.process-header .title-top.dot-text,
.title-bottom{
  font-size:clamp(32px, 4vw, 52px);
  letter-spacing:-.065em;
}
.process-header .desc-p,
.process-header .brand-line{ font-size:22px; color:var(--muted); margin-bottom:4px; }
.process-list{ gap:22px; }
.process-item{
  border-radius:24px;
  padding:30px;
  min-height:150px;
  box-shadow:var(--shadow-sm);
  transition:.35s ease;
}
.process-item:hover{ transform:translateY(-6px); box-shadow:0 22px 52px rgba(15,23,42,.11); border-color:rgba(237,28,36,.16); }
.process-title-text{ font-size:23px; letter-spacing:-.045em; }

.point-section{ padding:40px 0 120px; }
.point-wrap{ gap:56px; }
.point-item{
  gap:56px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:32px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.point-item:nth-child(even){ flex-direction:row-reverse; }
.point-text h3{ font-size:34px; letter-spacing:-.055em; }
.point-text p{ font-size:20px; color:var(--muted); margin-bottom:0; }
.point-img{ overflow:hidden; border-radius:24px; }
.point-img img{ border-radius:24px; }

#portfolio{ padding-top:120px; padding-bottom:130px;}
.portfolio-desc{ margin:0 0 62px; }
.portfolio-desc h3{ font-size:clamp(34px,4vw,54px); letter-spacing:-.065em; }
.portfolio-desc p{ font-size:21px; color:var(--muted); }
.portfolio-wrap{ gap:32px; align-items:flex-start; }
.portfolio-left{ display:grid; gap:14px; }
.branch{
  margin-bottom:0;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow-sm);
  transition:.3s ease;
}
.branch:hover{ transform:translateX(4px); border-color:rgba(237,28,36,.18); box-shadow:0 18px 44px rgba(15,23,42,.10); }
.branch-info h3{ letter-spacing:-.04em; }
.portfolio-right{
  position:sticky;
  top:120px;
  padding:18px;
  border-radius:28px;
  background:#fff;

}
.portfolio-right img{ border-radius:22px; }
.footer{ padding:68px 20px 34px; }
.footer-info p{ font-size:17px; color:#b8b8b8; }
.footer-desc{ font-size:14px!important; color:#777!important; }

.reveal-ready{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .72s ease, transform .72s cubic-bezier(.22,.61,.36,1), box-shadow .32s ease, border-color .32s ease;
}
.reveal-ready.is-visible{ opacity:1; transform:translateY(0); }

@media (hover:none){
  .news-card{ transform:none!important; }
  .hero-type{ background-attachment:scroll; }
}

@media (max-width:1024px){
  .logo img{ height:58px; }
  .hero-banner{ padding-top:74px; }
  .hero-visual{ height:58vh; min-height:450px; }
  .hero-copy h1{ font-size:clamp(40px, 7vw, 62px); }
  .hero-storage-inner{ flex-wrap:wrap; justify-content:center; gap:10px 22px; }
  .hero-storage-tel{ font-size:36px; }
  .main-card,.type-left{ min-height:auto; }
  .gallery,.img-grid{ min-height:auto; }
  .gallery img,.img-grid img{ min-height:190px; }
  .process-list{ flex-direction:column; }
  .portfolio-right{ position:relative; top:auto; }
  .point-item,.point-item:nth-child(even){ flex-direction:column; }
}

@media (max-width:768px){
  body{ letter-spacing:-.03em; }
  section{ padding-top:76px; }
  .nav{ padding:10px 0; }
  .logo img{ height:46px; }
  .menu a{ font-size:16px; }
  .hero-banner{ padding-top:66px; }
  .hero-visual{ height:56vh; min-height:390px; }
  .hero-copy{ left:22px; right:22px; top:52%; }
  .eyebrow{ font-size:11px; margin-bottom:12px; }
  .eyebrow::before{ width:26px; }
  .hero-copy h1{ font-size:40px; line-height:1.08; margin-bottom:18px; }
  .hero-copy p{ font-size:16px; line-height:1.62; margin-bottom:24px; }
  .hero-main-btn,.hero-sub-btn{ min-height:48px; padding:0 22px; font-size:14px; }
  .hero-dots{ bottom:18px; }
  .hero-storage-bottom{ padding:13px 10px; }
  .hero-storage-tags span{ font-size:15px; }
  .hero-storage-tel{ font-size:28px; }
  .scroll{ display:none; }

  .news-wrap{ padding:74px 0; }
  #typing-line.single-line{ font-size:32px; line-height:1.22; margin-bottom:34px; }
  .news{ gap:16px; }
  .premium-news-card{ min-height:auto; padding:26px 24px; }
  .premium-news-card h3{ font-size:23px; }
  .premium-news-card p{ font-size:16px; }
  .news-card.red,.news-card.empty{ height:220px; }

  .service-area{ padding-top:84px; }
  .services-content{ margin-bottom:34px; }
  .services-content .title-top,.services-content .title-bottom{ font-size:33px; }
  .services-content p{ font-size:17px; }
  .service-top,.type-box{ border-radius:24px; }
  
  .main-card h3{ font-size:30px; }
  .gallery{ padding:16px; gap:12px; }
  .gallery img{ border-radius:18px; min-height:auto; }

  .hero-type{ height:380px; margin-top:82px; }
  .hero-type .hero-content{ margin-top:-34px; }
  .top-sub{ font-size:16px; margin-bottom:8px; }
  .top-title{ font-size:32px; margin-bottom:24px; }
  .top-title span{ white-space:normal; }
  .type-area{ padding-top:82px; }
  .type-wrap{ top:-92px; }
  .type-left{ padding:32px 24px; }
  .type-left h3{ font-size:28px; }
  .type-right{ padding:16px; }
  .img-grid img{ border-radius:18px; }
  .type-grid-image{ grid-template-columns:repeat(2,1fr)!important; margin-top:28px; }
  .type-card-item{ border-radius:18px; padding:22px 12px; }

  .feature-section{ margin:70px auto 80px; padding:0; }
  .feature-list{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .feature-item{ min-height:150px; padding:22px 12px; border-radius:18px; }
  .feature-item p{ font-size:15px; line-height:1.45; }

  .storage-cta{ padding:82px 0; }
  .cta-inner{ gap:28px; }
  .cta-copy h2{ font-size:34px; }
  .cta-copy p{ font-size:16px; }
  .cta-card{ width:100%; padding:26px; border-radius:24px; }
  .cta-card strong{ font-size:36px; }

  .process-section{ padding:76px 20px 60px; }
  .process-header{ margin-bottom:34px; }
  .process-header .title-top.dot-text,.process-header .title-bottom{ font-size:31px; }
  .process-header .desc-p,.process-header .brand-line{ font-size:17px; }
  .process-item{ padding:24px 18px; min-height:auto; }
  .point-section{ padding:28px 0 82px; }
  .point-wrap{ gap:24px; }
  .point-item{ padding:22px; gap:20px; border-radius:24px; }
  .point-text h3{ font-size:25px; }
  .point-text p{ font-size:16px; }

  #portfolio{ padding-top:76px; padding-bottom:82px; }
  .portfolio-desc{ margin-bottom:34px; }
  .portfolio-desc h3{ font-size:31px; }
  .portfolio-desc p{ font-size:16px; }
  .portfolio-wrap{ gap:20px; }
  .branch{ padding:18px; border-radius:18px; }
  .branch-info h3{ font-size:20px; }
  .branch-info p{ font-size:15px; }
  .portfolio-right{ padding:12px; border-radius:22px; }
  .footer-info p{ font-size:14px; }
}

@media (max-width:480px){
  .hero-visual{ height:52vh; min-height:340px; }
  .hero-copy h1{ font-size:34px; }
  .hero-copy p br{ display:none; }
  .hero-copy-actions{ gap:8px; }
  .hero-main-btn,.hero-sub-btn{ flex:1 1 auto; padding:0 14px; }
  #typing-line.single-line{ font-size:29px; }
  .services-content .title-top,.services-content .title-bottom{ font-size:29px; }
  .main-card h3{ font-size:27px; }
  .type-grid-image{ gap:10px!important; }
  .quote-btn .text{ font-size:24px!important; }
}


/* =========================
   MOBILE CENTER FIX ONLY
========================= */
@media (max-width:768px){

  .main-card{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
  }

  .main-card .badge,
  .main-card .line{
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .main-card h3,
  .main-card .service-label{
    text-align:center !important;
  }

  .main-card .category{
    width:100% !important;

    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;

    gap:0 14px !important;
    margin-top:28px !important;
  }

  .main-card .category span{
    display:flex !important;
    align-items:center;
    justify-content:center;

    height:48px;
    font-size:18px !important;
    font-weight:800;

    border-bottom:1px solid rgba(255,255,255,0.18) !important;
  }

  .main-card .category span::after{
    display:none !important;
    content:none !important;
  }

}





/* =========================
   FLOATING BUTTON POSITION FIX
   오른쪽 하단 고정
========================= */
.floating-estimate-btn{
  position:fixed !important;
  left:auto !important;
  right:20px !important;
  bottom:20px !important;

  z-index:100000 !important;

  display:block !important;
  line-height:0 !important;

  transform:none !important;
  transition:transform 0.3s ease !important;
}

.floating-estimate-btn img{
  width:180px !important;
  height:auto !important;
  display:block !important;
  filter:drop-shadow(0 12px 24px rgba(0,0,0,0.18)) !important;
  transition:transform 0.3s ease !important;
}

.floating-estimate-btn:hover{
  transform:translateY(-6px) !important;
}

.floating-estimate-btn:hover img{
  transform:scale(1.04) !important;
}

/* 모바일에서는 숨김 */
@media (max-width:768px){
  .floating-estimate-btn{
    display:none !important;
  }
}


/* =========================
   POINT SECTION TABLET FIX
   1024~769: PC처럼 [텍스트] [이미지] 가로 배치
   768 이하: 기존 모바일처럼 세로 배치 유지
========================= */
@media (min-width:769px) and (max-width:1024px){
  .point-item,
  .point-item:nth-child(even){
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:40px !important;
  }

  .point-text,
  .point-img{
    flex:1 1 0 !important;
    width:auto !important;
  }

  .point-text{
    max-width:none !important;
  }

  .point-img img{
    width:100% !important;
    height:auto !important;
    object-fit:cover !important;
  }
}


/* =========================
   CTA TABLET LAYOUT FIX
   1024~769 : 가로 배치 유지
========================= */
@media (min-width:769px) and (max-width:1024px){

  .cta-inner{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:40px !important;
  }

  .cta-copy{
    flex:1 1 0 !important;
    width:auto !important;
  }

  .cta-card{
    flex:0 0 360px !important;
    width:360px !important;
    max-width:360px !important;
  }

  .cta-copy h2{

    line-height:1.12 !important;
  }

  .cta-copy p{
    font-size:20px !important;
  }
}



/* =========================
   CTA MOBILE CENTER FIX
========================= */
@media (max-width:768px){

  .cta-inner{
    align-items:center !important;
    text-align:center !important;
  }

  .cta-copy{
    width:100% !important;
    text-align:center !important;
  }

  .cta-copy h2{
    text-align:center !important;
  }

  .cta-copy p{
    text-align:center !important;
    margin:0 auto !important;
  }

  .cta-card{
    width:100% !important;
    max-width:420px !important;

    margin:0 auto !important;
    text-align:center !important;
  }
}


/* =========================
   PROCESS LIST TABLET FIX
   1024~769 : 1 2 3 가로배치
========================= */
@media (min-width:769px) and (max-width:1024px){

  .process-list{
    display:flex !important;
    flex-direction:row !important;
    gap:20px !important;
  }

  .process-item{
    flex:1 1 0 !important;
    width:auto !important;

    min-height:180px !important;

    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
  }

  .process-title-text{
    line-height:1.3 !important;
    word-break:keep-all !important;
  }
}


/* =========================
   PORTFOLIO TABLET FIX
   1024~769 : 지점 2열 + 지도 하단
========================= */
@media (min-width:769px) and (max-width:1024px){

  .portfolio-wrap{
    display:flex !important;
    flex-direction:column !important;
    gap:40px !important;
  }

  .portfolio-left{
    width:100% !important;

    display:grid !important;
    grid-template-columns:repeat(2, 1fr) !important;

    gap:18px !important;
  }

  .branch{
    margin-bottom:0 !important;
    min-height:150px !important;
  }

  .portfolio-right{
    width:100% !important;
    margin-top:0 !important;
  }

  .portfolio-right img{
    display:block !important;
    width:100% !important;
    max-width:760px !important;
    margin:0 auto !important;
  }
}


/* =========================
   FINAL VIDEO SECTION
========================= */
.video-section{
  width:100%;
  padding:80px 0 120px;
  background:#fff;
}

.video-wrap{
  position:relative;
  width:92%;
  max-width:1240px;
  margin:0 auto;
  overflow:hidden;
  border-radius:28px;
  box-shadow:0 24px 60px rgba(0,0,0,0.12);
  background:#000;
}

.video-wrap iframe{
  width:100%;
  aspect-ratio:16/9;
  border:0;
  display:block;
}

.video-sound-overlay{
  position:absolute;
  left:24px;
  bottom:24px;
  z-index:10;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 18px;
  border:0;
  border-radius:999px;
  background:rgba(0,0,0,0.58);
  color:#fff;
  font-size:14px;
  font-weight:600;
  letter-spacing:-0.02em;
  cursor:pointer;
  backdrop-filter:blur(10px);
  transition:0.3s ease;
}

.video-sound-overlay:hover{
  background:rgba(237,28,36,0.92);
  transform:translateY(-2px);
}

.video-sound-overlay.hide{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

@media (max-width:1024px){
  .video-section{
    padding:50px 0 80px;
  }

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

  .video-sound-overlay{
    left:16px;
    bottom:16px;
    font-size:12px;
    padding:10px 14px;
  }
}

/* =========================
   FINAL MAP + INQUIRY SECTION
========================= */
#portfolio{
  max-width:1240px !important;
  margin:0 auto !important;
  padding-bottom:120px !important;
}

#portfolio .portfolio-desc{
  text-align:center !important;
  margin:30px 0 60px !important;
}

#portfolio .portfolio-wrap{
  display:grid !important;
  grid-template-columns:0.82fr 1.18fr !important;
  gap:36px !important;
  align-items:stretch !important;
}

#portfolio .portfolio-left{
  display:flex !important;
  width:100% !important;
}

#portfolio .inquiry-card{
  width:100% !important;
  height:100% !important;
  padding:48px 42px !important;
  border-radius:30px !important;
  background:#fff !important;
  border:1px solid rgba(0,0,0,0.06) !important;
  box-shadow:0 24px 60px rgba(0,0,0,0.10) !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
}

#portfolio .inquiry-kicker{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  color:#ED1C24 !important;
  font-size:16px !important;
  font-weight:800 !important;
  letter-spacing:-0.02em !important;
  margin-bottom:16px !important;
}

#portfolio .inquiry-kicker::before{
  content:"" !important;
  width:34px !important;
  height:2px !important;
  background:#ED1C24 !important;
  flex-shrink:0 !important;
}

#portfolio .inquiry-card h3{
  font-size:42px !important;
  line-height:1.15 !important;
  margin:0 0 18px !important;
  letter-spacing:-0.06em !important;
  color:#111 !important;
}

#portfolio .inquiry-desc{
  font-size:18px !important;
  line-height:1.7 !important;
  color:#666 !important;
  margin:0 !important;
}

#portfolio .inquiry-benefit{
  margin-top:26px !important;
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
}

#portfolio .benefit-item{
  display:flex !important;
  align-items:center !important;
  min-height:46px !important;
  padding:0 16px !important;
  border-radius:14px !important;
  background:#fafafa !important;
  border:1px solid #eee !important;
  font-size:15px !important;
  font-weight:600 !important;
  color:#222 !important;
}

#portfolio .privacy-guide{
  margin:20px 0 0 !important;
  font-size:14px !important;
  line-height:1.5 !important;
  color:#777 !important;
  white-space:nowrap !important;
}

#portfolio .inquiry-direct-btn{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:100% !important;
  min-height:62px !important;
  border-radius:999px !important;
  margin-top:28px !important;
  background:#ED1C24 !important;
  color:#fff !important;
  font-size:19px !important;
  font-weight:800 !important;
  letter-spacing:-0.03em !important;
  transition:0.35s ease !important;
  box-shadow:0 18px 40px rgba(237,28,36,0.28) !important;
}

#portfolio .inquiry-direct-btn:hover{
  transform:translateY(-3px) !important;
  box-shadow:0 24px 50px rgba(237,28,36,0.36) !important;
}

#portfolio .portfolio-right{
  width:100% !important;
  overflow:hidden !important;
  border-radius:24px !important;
  display:flex !important;
  align-items:stretch !important;
  justify-content:center !important;
  min-height:auto !important;
}

#portfolio .portfolio-right img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  border-radius:24px !important;
  transition:transform 0.45s ease, filter 0.45s ease !important;
}

#portfolio .portfolio-right:hover img{
  transform:scale(1.05) !important;
  filter:brightness(1.03) !important;
}

/* 1024 이하: [지도] -> [문의] */
@media (max-width:1024px){
  #portfolio{
    width:100% !important;
    max-width:none !important;
    padding-left:0 !important;
    padding-right:0 !important;
  }

  #portfolio .portfolio-desc{
    width:92% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  #portfolio .portfolio-wrap{
    display:flex !important;
    flex-direction:column !important;
    gap:40px !important;
    width:100% !important;
  }

  #portfolio .portfolio-right{
    order:1 !important;
    width:92% !important;
    margin:0 auto !important;
    align-items:center !important;
  }

  #portfolio .portfolio-left{
    order:2 !important;
    width:92% !important;
    margin:0 auto !important;
  }

  #portfolio .portfolio-right img{
    width:100% !important;
    height:auto !important;
    object-fit:contain !important;
  }

  #portfolio .inquiry-card{
    height:auto !important;
    padding:40px 30px !important;
  }
}

@media (max-width:600px){
  #portfolio .inquiry-card{
    padding:32px 22px !important;
    border-radius:22px !important;
  }

  #portfolio .inquiry-card h3{
    font-size:34px !important;
  }

  #portfolio .inquiry-desc{
    font-size:16px !important;
  }

  #portfolio .benefit-item{
    min-height:44px !important;
    font-size:14px !important;
  }

  #portfolio .privacy-guide{
    white-space:normal !important;
    font-size:13px !important;
  }

  #portfolio .inquiry-direct-btn{
    min-height:58px !important;
    font-size:18px !important;
  }
}


/* =========================
   PRIVACY CHECKBOX
========================= */
.privacy-check{
  display:flex !important;
  align-items:flex-start !important;
  gap:10px !important;

  margin-top:20px !important;

  font-size:14px !important;
  line-height:1.5 !important;
  color:#777 !important;
}

.privacy-check input{
  margin-top:2px !important;
  accent-color:#ED1C24 !important;
}

.inquiry-direct-btn.disabled{
  opacity:0.45 !important;
  pointer-events:none !important;
  filter:grayscale(1) !important;
}

/* =========================================================
   MOBILE ONLY : IMAGE GALLERY 2-COLUMN FIX
   - PC 레이아웃 영향 없음
   - 보관이사 .gallery / A타입 .img-grid 모바일에서 2열 정렬
   - 기존 하단 CSS보다 우선 적용되도록 파일 맨 아래 배치
========================================================= */
@media (max-width: 768px){

  /* 보관이사 이미지 영역 */
  .service-top .gallery{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:12px !important;
    padding:16px !important;
    width:100% !important;
    min-height:0 !important;
  }

  .service-top .gallery img{
    width:100% !important;
    height:180px !important;
    min-height:0 !important;
    aspect-ratio:auto !important;
    object-fit:cover !important;
    border-radius:18px !important;
    display:block !important;
  }

  /* 첫 번째 이미지만 대표컷으로 크게 */
  .service-top .gallery img:first-child{
    grid-column:1 / -1 !important;
    height:260px !important;
  }


  /* A타입 이미지 영역 */
  .type-right .img-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:12px !important;
    width:100% !important;
  }

  .type-right .img-grid img{
    width:100% !important;
    height:180px !important;
    min-height:0 !important;
    aspect-ratio:auto !important;
    object-fit:cover !important;
    border-radius:18px !important;
    display:block !important;
  }

  .type-right .img-grid img:first-child{
    grid-column:1 / -1 !important;
    height:260px !important;
  }

}

@media (max-width: 480px){

  .service-top .gallery img,
  .type-right .img-grid img{
    height:150px !important;
  }

  .service-top .gallery img:first-child,
  .type-right .img-grid img:first-child{
    height:220px !important;
  }

}

/* =========================================================
   FINAL MOBILE GALLERY FIX
   - 모바일에서 대표 이미지 크게 보이는 방식 제거
   - 모든 이미지를 동일한 크기의 2열 그리드로 정렬
   - PC 레이아웃 영향 없음
========================================================= */
@media (max-width: 768px){

  .service-top .gallery,
  .type-right .img-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:12px !important;
    width:100% !important;
    padding:16px !important;
    min-height:0 !important;
  }

  .service-top .gallery img,
  .service-top .gallery img:first-child,
  .type-right .img-grid img,
  .type-right .img-grid img:first-child{
    grid-column:auto !important;
    width:100% !important;
    height:180px !important;
    min-height:0 !important;
    aspect-ratio:auto !important;
    object-fit:cover !important;
    border-radius:18px !important;
    display:block !important;
  }

}

@media (max-width: 480px){

  .service-top .gallery,
  .type-right .img-grid{
    gap:12px !important;
    padding:16px !important;
  }

  .service-top .gallery img,
  .service-top .gallery img:first-child,
  .type-right .img-grid img,
  .type-right .img-grid img:first-child{
    height:170px !important;
  }

}

/* =========================================================
   MOBILE GALLERY RATIO FIX
   - PC처럼 가로가 긴 비율로 정리
   - 이미지 세로 과하게 길어지는 현상 방지
   - PC 레이아웃 영향 없음
========================================================= */
@media (max-width: 768px){

  .service-top .gallery,
  .type-right .img-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:12px !important;
    width:100% !important;
    padding:16px !important;
    min-height:0 !important;
  }

  .service-top .gallery img,
  .service-top .gallery img:first-child,
  .type-right .img-grid img,
  .type-right .img-grid img:first-child{
    grid-column:auto !important;
    width:100% !important;
    height:auto !important;
    aspect-ratio:16 / 10 !important;
    min-height:0 !important;
    object-fit:cover !important;
    border-radius:18px !important;
    display:block !important;
  }

}

@media (max-width: 480px){

  .service-top .gallery,
  .type-right .img-grid{
    gap:10px !important;
    padding:14px !important;
  }

  .service-top .gallery img,
  .service-top .gallery img:first-child,
  .type-right .img-grid img,
  .type-right .img-grid img:first-child{
    height:auto !important;
    aspect-ratio:16 / 10 !important;
  }

}

/* =========================================================
   REAL FINAL MOBILE GALLERY FIX
   - 모바일에서만 적용
   - 2열 유지
   - PC/태블릿처럼 세로가 더 긴 이미지 카드 비율
   - 기존 height:180px / aspect-ratio:auto 강제값 덮어쓰기
========================================================= */
@media (max-width: 768px){

  .service-top .gallery,
  .type-right .img-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:12px !important;
    width:100% !important;
    padding:16px !important;
    min-height:0 !important;
    align-items:stretch !important;
  }

  .service-top .gallery img,
  .service-top .gallery img:first-child,
  .type-right .img-grid img,
  .type-right .img-grid img:first-child{
    grid-column:auto !important;
    width:100% !important;

    /* 핵심: auto 말고 실제 높이값으로 강제해야 이미지가 세로형으로 보임 */
    height:clamp(210px, 46vw, 280px) !important;
    min-height:210px !important;
    max-height:280px !important;

    aspect-ratio:auto !important;
    object-fit:cover !important;
    object-position:center center !important;
    border-radius:18px !important;
    display:block !important;
  }

}

/* 480px 이하 모바일에서는 너무 길어지지 않게 살짝 조정 */
@media (max-width: 480px){

  .service-top .gallery,
  .type-right .img-grid{
    gap:10px !important;
    padding:14px !important;
  }

  .service-top .gallery img,
  .service-top .gallery img:first-child,
  .type-right .img-grid img,
  .type-right .img-grid img:first-child{
    height:clamp(190px, 43vw, 240px) !important;
    min-height:190px !important;
    max-height:240px !important;
  }

}

/* 390px 이하 초소형 화면 */
@media (max-width: 390px){

  .service-top .gallery img,
  .service-top .gallery img:first-child,
  .type-right .img-grid img,
  .type-right .img-grid img:first-child{
    height:185px !important;
    min-height:185px !important;
    max-height:185px !important;
  }

}

/* =========================
   HEADER YOUTUBE LINK ADD
   - 기존 헤더 구조 유지
   - PC: 메뉴 중앙 / 유튜브 로고 우측 배치
   - Mobile: 햄버거 메뉴 안에 유튜브 노출
========================= */
.nav{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  column-gap:32px;
}

.menu{
  justify-self:center;
  align-items:center;
}

.youtube-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:0;
  transition:opacity .25s ease, transform .25s ease;
}

.youtube-link img{
  display:block;
  width:118px;
  height:auto;
}

.youtube-link:hover{
  opacity:.78;
  transform:translateY(-1px);
}

.youtube-link::after{
  display:none !important;
  content:none !important;
}

.youtube-link-mobile{
  display:none;
}

@media (max-width:768px){
  .nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .youtube-link-pc{
    display:none;
  }

  .youtube-link-mobile{
    display:flex;
    padding:14px 20px !important;
    justify-content:flex-start;
  }

  .youtube-link-mobile img{
    width:112px;
  }
}
