/* ============================================================
   home.css — 스캔모어 홈페이지 스타일시트
   ============================================================ */


/* ── 5. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 5vw 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.7) saturate(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 26, 60, 0.88) 0%,
    rgba(27, 95, 232, 0.72) 55%,
    rgba(0, 180, 216, 0.5) 100%
  );
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono), serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #4CF0C0;
  border-radius: 50%;
  animation: blink 1.8s infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 strong {
  color: #4CF0C0;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* Buttons */
.btn-white {
  padding: 14px 30px;
  background: #fff;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  padding: 14px 30px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero status card */
.hero-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.7s 0.35s ease both;
}

.card-label {
  font-size: 0.72rem;
  font-family: var(--mono), serif;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.stat-box {
  background: var(--surface);
  padding: 1.1rem 1rem;
  text-align: center;
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.stat-num sub {
  font-size: 1rem;
  color: var(--orange);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-3);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.scan-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scan-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.scan-bar {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-shrink: 0;
}

.scan-bar i {
  display: block;
  height: 22px;
  background: var(--blue);
  border-radius: 1px;
}

.scan-name {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
}

.scan-ok {
  font-size: 0.68rem;
  padding: 2px 9px;
  background: #E6FFF4;
  color: #00A85A;
  border-radius: 100px;
  font-family: var(--mono), serif;
  white-space: nowrap;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  animation: fadeUp 1s 0.9s ease both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 1.8s infinite;
}

/* ── 6. TRUSTED BRANDS ─────────────────────────────────────── */
.trusted {
  background: var(--surface);
  padding: 2.5rem 5vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trusted-label {
  font-size: 0.78rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.trusted-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.trusted-logos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.trusted-logo {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-3);
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: #fff;
}

/* ── 7. SECTION COMMON ─────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono), serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

/* ── 8. PRODUCTS ───────────────────────────────────────────── */
.products {
  padding: 100px 5vw;
  background: var(--white);
}

.products-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Category filter tabs */
.cat-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cat-tab {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font), serif;
}

.cat-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.cat-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Product card grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(27, 95, 232, 0.13);
}

/* Product photo */
.prod-photo {
  width: 100%;
  height: 200px;
  background: var(--surface);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.prod-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.product-card:hover .prod-photo img {
  transform: scale(1.04);
}

.prod-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(15, 28, 53, 0.18) 100%);
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono), serif;
}

.prod-badge.new { background: var(--orange); }
.prod-badge.hot { background: #E91E63; }

/* Product card body */
.prod-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-3);
  font-family: var(--mono), serif;
  margin-bottom: 0.35rem;
}

.prod-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.prod-desc {
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
}

/* Spec pills */
.prod-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
}

.spec-pill {
  font-size: 0.7rem;
  padding: 3px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-2);
  font-family: var(--mono), serif;
}

/* Product card footer */
.prod-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
}

.prod-inquiry {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.prod-inquiry:hover {
  gap: 9px;
}

.prod-category {
  font-size: 0.68rem;
  color: var(--text-3);
  font-family: var(--mono), serif;
}

/* ── 9. ABOUT ──────────────────────────────────────────────── */
.about {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-img {
  position: relative;
  min-height: 580px;
  background-size: cover;
  background-position: center;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--surface) 100%);
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(27, 95, 232, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-badge strong {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--blue);
  display: block;
  line-height: 1;
}

.about-badge span {
  font-size: 0.75rem;
  color: var(--text-3);
}

.about-content {
  background: var(--surface);
  padding: 6rem 5vw 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.about-item {
  display: flex;
  gap: 1rem;
}

.about-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--mono), serif;
  margin-top: 2px;
}

.about-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.about-item p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── 10. INDUSTRIES ────────────────────────────────────────── */
.industries {
  position: relative;
  padding: 100px 5vw;
  overflow: hidden;
}

.industries-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.22) saturate(0.6);
}

.industries-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 95, 232, 0.90) 0%, rgba(0, 180, 216, 0.82) 100%);
}

.industries-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.industries-inner .section-eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.industries-inner .section-title {
  color: #fff;
}

.industries-inner .section-sub {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.industry-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
  backdrop-filter: blur(8px);
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.ind-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.industry-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.industry-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ── 11. CTA ───────────────────────────────────────────────── */
.cta-section {
  padding: 100px 5vw;
  background: var(--white);
}

.cta-box {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--blue) 0%, #0E47CC 60%, #0A3BAA 100%);
  border-radius: 28px;
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text .section-eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
  line-height: 1.2;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.cta-item:hover {
  background: rgba(255, 255, 255, 0.18);
}

.cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cta-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.cta-item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ── 12. FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--text);
  padding: 3rem 5vw 2rem;
}

.footer-inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 auto 1.5rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
}

.footer-logo-text span {
  color: var(--orange);
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
  line-height: 1.8;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── 13. SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ── 14. ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── 15. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-card           { display: none; }
  .about               { grid-template-columns: 1fr; }
  .about-img           { min-height: 280px; }
  .about-img-overlay   { background: linear-gradient(to bottom, transparent 60%, var(--surface) 100%); }
  .industry-grid       { grid-template-columns: 1fr 1fr; }
  .cta-box             { grid-template-columns: 1fr; padding: 3rem 2rem; }
  .footer-inner        { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links           { display: none; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .cat-tabs     { gap: 0.4rem; }
  .cat-tab      { font-size: 0.78rem; padding: 7px 14px; }
}
