/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Astra child theme for customizations.
Author: Bizactive
Author URI: http://localhost/bizactive/
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* Child theme base styles */
.custom-product-info {
  margin-bottom: 20px;
}

.custom-product-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wcfm_catalog_enquiry {
  display: none !important;
}

:root {
  --primary: #1A1A1A;
  --primary-light: #2A2A2A;
  --red: #D32F2F;
  --red-dark: #B71C1C;
  --red-soft: rgba(211, 47, 47, 0.08);
  --yellow: #FFC107;
  --yellow-dark: #FFA000;
  --yellow-soft: rgba(255, 193, 7, 0.12);
  --text: #1A1A1A;
  --text-muted: #666666;
  --bg: #FFFFFF;
  --bg-alt: #FAF7F2;
  --bg-section: #F5F2EC;
  --surface: #FFFFFF;
  --border: #EEEEEE;
  --border-strong: #E0E0E0;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 32px 64px rgba(0, 0, 0, 0.12);
}

/* ============== Buttons ============== */
.btn-primary {
  background: var(--red);
  color: white;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 28px rgba(211, 47, 47, 0.35);
}

.btn-primary .arrow {
  transition: transform 0.2s;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-ghost {
  text-decoration: none !important;
  color: var(--text);
  padding: 18px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--text);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--text);
  color: white;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--text);
  padding: 18px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 193, 7, 0.45);
}

/* ============== Sections ============== */
section {
  padding: 120px 0;
}

section .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--red-soft) !important;
  color: var(--red) !important;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title .red {
  color: var(--red);
}

.section-title .yellow {
  color: var(--yellow-dark);
}

.section-desc {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ============== Page Hero (sub pages) ============== */
.page-hero {
  padding: 140px 0 100px;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.page-hero-info {
  position: relative;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--red-soft);
  border: 1px solid rgba(211, 47, 47, 0.2);
  color: var(--red);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.page-hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.page-hero h1 {
  font-size: 60px;h
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero h1 .red {
  color: var(--red);
}

.page-hero h1 .yellow {
  color: var(--yellow-dark);
}

.page-hero-info>p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 28px;
}

.page-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.5;
}

.page-hero-visual {
  position: relative;
}

/* Visual: Mini Gallery (Space page) */
.ph-mini-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 460px;
}

.ph-mini-gallery .gi {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.ph-mini-gallery .gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-mini-gallery .gi:nth-child(1) {
  grid-row: span 2;
}

/* Visual: Pricing Card */
.ph-pricing-card {
  background: var(--text);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.ph-pricing-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.ph-pricing-card .badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  position: relative;
}

.ph-pricing-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}

.ph-pricing-card .desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 28px;
  position: relative;
}

.ph-pricing-card .big-price {
  font-size: 56px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 4px;
  position: relative;
}

.ph-pricing-card .big-price em {
  font-size: 24px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 8px;
  font-weight: 600;
}

.ph-pricing-card .price-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-bottom: 32px;
  position: relative;
}

.ph-pricing-card .checks {
  list-style: none;
  position: relative;
}

.ph-pricing-card .checks li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ph-pricing-card .checks li:last-child {
  border: none;
}

.ph-pricing-card .checks li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 800;
}

/* Visual: Location Card */
.ph-location-card {
  background: var(--text);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.ph-location-map {
  background: linear-gradient(135deg, #2A2A2A 0%, #0F0F0F 100%);
  height: 220px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-location-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.ph-location-map .pin {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.5);
  position: relative;
  z-index: 1;
}

.ph-location-map .pin::after {
  content: '';
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ph-location-map .pulse {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: pulseRing 2s infinite;
}

.ph-location-card .row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}

.ph-location-card .row:last-child {
  border: none;
}

.ph-location-card .row .ic {
  width: 40px;
  height: 40px;
  background: rgba(255, 193, 7, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.ph-location-card .row strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.ph-location-card .row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* Visual: Contact Card */
.ph-contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.ph-contact-card .head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.ph-contact-card .head .ic {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ph-contact-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.ph-contact-card .head span {
  color: var(--text-muted);
  font-size: 13px;
}

.ph-contact-card .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.ph-contact-card .stat {
  background: var(--bg-alt);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}

.ph-contact-card .stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.ph-contact-card .stat span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.ph-contact-card .channels {
  list-style: none;
}

.ph-contact-card .channels li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ph-contact-card .channels li:last-child {
  border: none;
}

.ph-contact-card .channels .ic-sm {
  width: 32px;
  height: 32px;
  background: var(--red-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.ast-plain-container.ast-no-sidebar #primary {
  margin-bottom: 0 !important;
}

/* ============== Footer ============== */
footer {
  background: #0A0A0A;
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer .logo-main .active {
  color: white;
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  margin-top: 16px;
}

.footer-col h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  padding: 6px 0;
  font-size: 14px;
}

.footer-col a {
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--yellow);
}

.company-info b {
  margin: 0 2px 0 1em;
}

.company-info b:first-child {
  margin-left: 0;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

/* ============== Animations ============== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ============== HOME — Hero ============== */
.hero {
  padding: 128px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--red-soft);
  border: 1px solid rgba(211, 47, 47, 0.2);
  color: var(--red);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 76px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -2.5px;
}

.hero h1 .word {
  display: inline-block;
  opacity: 0;
  animation: fadeUp 0.7s forwards;
}

.hero h1 .word:nth-child(1) {
  animation-delay: 0.2s;
}

.hero h1 .word:nth-child(2) {
  animation-delay: 0.3s;
}

.hero h1 .word:nth-child(3) {
  animation-delay: 0.4s;
}

.hero h1 .word:nth-child(4) {
  animation-delay: 0.5s;
}

.hero h1 .red {
  color: var(--red);
}

.hero h1 .star {
  color: var(--yellow);
  font-size: 60px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s forwards;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.7s 0.9s forwards;
}

.hero-stat strong {
  display: block;
  font-size: 32px;
}

.hero-stat span.count {
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat strong em {
  color: var(--red);
  font-style: normal;
}

.hero-stat span {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-video-wrap {
  position: relative;
  opacity: 0;
  animation: fadeIn 1s 0.5s forwards;
}

.hero-video-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--text);
  box-shadow: var(--shadow-lg);
}

.hero-video-card iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 177.78%;
  max-width: 180% !important;
  height: 100%;
  transform: translateX(-50%);
  border: 0;
  max-width: none;
}

@media (max-width: 900px) {
  .hero-video-card {
    aspect-ratio: 16 / 9;
  }

  .hero-video-card iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none !important;
    transform: none;
  }
}

.hero-video-poster {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=900&h=1100&fit=crop&q=80') center/cover;
  z-index: 1;
}

.hero-video-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 88px;
  height: 88px;
  background: var(--red);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(211, 47, 47, 0.5);
  transition: transform 0.25s;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}

.play-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: pulseRing 2s infinite;
}

.video-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  color: white;
}

.video-caption strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.video-caption span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.floating-card {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-card-1 {
  top: 32px;
  left: -40px;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.floating-card-2 {
  bottom: 64px;
  right: -30px;
  animation: float 4s 2s ease-in-out infinite;
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.floating-icon.red {
  background: var(--red-soft);
}

.floating-icon.yellow {
  background: var(--yellow-soft);
}

.floating-card strong {
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.floating-card span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============== USP cards ============== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.usp-card {
  background: var(--surface);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.usp-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  color: white;
}

.usp-card h3 {
  font-size: 19px !important;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.usp-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ============== Plans ============== */
.plan-section {
  background: var(--bg-alt);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  background: var(--surface);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.plan-card.featured {
  background: var(--text);
  color: white;
  border-color: var(--yellow);
  box-shadow: var(--shadow-lg);
  margin-top: -20px;
}

.plan-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--text);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.plan-name h3 {
  font-size: 23px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.plan-card.featured .plan-name h3 {
  color: var(--yellow);
}

.plan-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1.6px;
}

.plan-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -1.2px;
}

.plan-card.featured .plan-price {
  color: white;
}

.plan-price span {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
  padding-left: 5px;
}

.plan-card.featured .plan-price span {
  color: rgba(255, 255, 255, 0.7);
}

.plan-period {
  color: #d4494a;
  font-weight: 600;
  ;
  font-size: 14px;
  margin-bottom: 2px;
}

.plan-card.featured .plan-period {
  color: #ff0002;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
  padding: 0 !important;
}

.plan-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-card.featured .plan-features li {
  border-color: rgba(255, 255, 255, 0.1);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 800;
  font-size: 16px;
}

.plan-card.featured .plan-features li::before {
  color: var(--yellow);
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--text);
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  text-decoration: none !important;
}

.plan-cta:hover {
  background: var(--red);
  color: #fff;
}

.plan-card.featured .plan-cta {
  background: var(--yellow);
  color: var(--text);
}

.plan-card.featured .plan-cta:hover {
  background: var(--yellow-dark);
}

/* ============== 입주업종 통계 ============== */
.ba-industry-stats {
  background: #f5f5f5;
  padding: 88px 0 96px;
}

.ba-industry-stats__eyebrow {
  margin: 0 auto 16px;
  max-width: 640px;
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  color: #5a5a5a;
  font-weight: 500;
}

.ba-industry-stats__title {
  margin: 0 auto 20px;
  text-align: center;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  line-height: 1.3;
}

.ba-industry-stats__rule {
  width: 100%;
  max-width: 720px;
  height: 1px;
  margin: 0 auto 8px;
  background: linear-gradient(90deg, transparent, #d0d0d0 12%, #d0d0d0 88%, transparent);
}

.ba-industry-stats__chart-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0px 0 36px;
  padding-bottom: 8px;
  max-width: 100%;
  overscroll-behavior-x: contain;
  touch-action: pan-x pinch-zoom;
}

.ba-industry-stats__chart-scroll::-webkit-scrollbar {
  height: 6px;
}

.ba-industry-stats__chart-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.ba-industry-stats__chart {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(6px, 1.5vw, 14px);
  min-width: min(100%, 1080px);
  margin: 0 auto;
  padding-top: 8px;
  box-sizing: border-box;
}

.ba-industry-barcol {
  flex: 1 1 0;
  min-width: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ba-industry-track {
  width: 100%;
  max-width: 38px;
  margin: 0 auto;
  height: min(400px, 58vh);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  background: #e6e6e6;
  border-radius: 999px;
  padding: 10px 0px 0;
  box-sizing: border-box;
}

.ba-industry-bar {
  position: relative;
  width: 100%;
  height: 0;
  min-height: 0;
  border-radius: 14px 14px 5px 5px;
  box-shadow: 5px 8px 14px rgba(0, 0, 0, 0.16);
  align-self: flex-end;
  transition: height 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, var(--ba-bar-i, 0)) * 0.055s);
}

.ba-industry-stats.is-inview .ba-industry-bar,
.ba-industry-stats__chart-scroll.is-inview .ba-industry-bar,
[data-ba-industry-chart].is-inview .ba-industry-bar {
  height: var(--h, var(--ba-bar-h));
  will-change: height;
}

.ba-industry-bar::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.14);
  opacity: 0;
  transition: opacity 0.35s ease;
  transition-delay: calc(0.65s + var(--i, var(--ba-bar-i, 0)) * 0.055s);
}

.ba-industry-stats.is-inview .ba-industry-bar::after,
.ba-industry-stats__chart-scroll.is-inview .ba-industry-bar::after,
[data-ba-industry-chart].is-inview .ba-industry-bar::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .ba-industry-bar {
    transition: none !important;
    height: var(--h, var(--ba-bar-h)) !important;
    will-change: auto !important;
  }

  .ba-industry-bar::after {
    opacity: 1 !important;
    transition: none !important;
  }
}

@media (scripting: none) {

  .ba-industry-stats .ba-industry-bar,
  .ba-industry-stats__chart-scroll .ba-industry-bar,
  [data-ba-industry-chart] .ba-industry-bar {
    height: var(--h, var(--ba-bar-h));
  }

  .ba-industry-stats .ba-industry-bar::after,
  .ba-industry-stats__chart-scroll .ba-industry-bar::after,
  [data-ba-industry-chart] .ba-industry-bar::after {
    opacity: 1;
  }
}

.ba-industry-bar--trade {
  background: linear-gradient(180deg, #7ec8f4 0%, #5eb3ea 100%);
}

.ba-industry-bar--it {
  background: linear-gradient(180deg, #f48fb1 0%, #ec407a 100%);
}

.ba-industry-bar--side {
  background: linear-gradient(180deg, #ffb74d 0%, #fb8c00 100%);
}

.ba-industry-bar--free {
  background: linear-gradient(180deg, #90a4ae 0%, #607d8b 100%);
}

.ba-industry-bar--semi {
  background: linear-gradient(180deg, #ff8a65 0%, #f4511e 100%);
}

.ba-industry-bar--svc {
  background: linear-gradient(180deg, #ce93d8 0%, #ab47bc 100%);
}

.ba-industry-bar--edu {
  background: linear-gradient(180deg, #78909c 0%, #455a64 100%);
}

.ba-industry-bar--cloth {
  background: linear-gradient(180deg, #d1c4e9 0%, #b39ddb 100%);
}

.ba-industry-bar--phone {
  background: linear-gradient(180deg, #9575cd 0%, #7e57c2 100%);
}

.ba-industry-bar--build {
  background: linear-gradient(180deg, #4db6ac 0%, #00897b 100%);
}

.ba-industry-bar--mall {
  background: linear-gradient(180deg, #f8bbd9 0%, #f06292 100%);
}

.ba-industry-label {
  font-size: 12px;
  line-height: 1.35;
  color: #444;
  text-align: center;
  font-weight: 500;
  word-break: keep-all;
  transition: color 0.45s ease, font-weight 0.45s ease;
}

/* === Hover interactions (after initial reveal) === */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {

  /* Expand transitions so hover-affected properties animate.
     Keep the original height transition + stagger delay intact. */
  .ba-industry-stats.is-inview .ba-industry-bar,
  .ba-industry-stats__chart-scroll.is-inview .ba-industry-bar,
  [data-ba-industry-chart].is-inview .ba-industry-bar {
    transition:
      height 1.15s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--i, var(--ba-bar-i, 0)) * 0.055s),
      transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.5s ease-out,
      box-shadow 0.5s ease-out;
  }

  /* Bar lifts, brightens, deeper shadow */
  .ba-industry-stats.is-inview .ba-industry-barcol:hover .ba-industry-bar,
  .ba-industry-stats__chart-scroll.is-inview .ba-industry-barcol:hover .ba-industry-bar,
  [data-ba-industry-chart].is-inview .ba-industry-barcol:hover .ba-industry-bar {
    transform: translateY(-5px);
    filter: brightness(1.06) saturate(1.06);
    box-shadow: 5px 11px 20px rgba(0, 0, 0, 0.2);
  }

  /* White dot grows */
  .ba-industry-stats.is-inview .ba-industry-barcol:hover .ba-industry-bar::after,
  .ba-industry-stats__chart-scroll.is-inview .ba-industry-barcol:hover .ba-industry-bar::after,
  [data-ba-industry-chart].is-inview .ba-industry-barcol:hover .ba-industry-bar::after {
    transform: translateX(-50%) scale(1.25);
    box-shadow: 2px 4px 9px rgba(0, 0, 0, 0.2);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 0.5s ease-out,
      opacity 0.5s ease-out;
  }

  /* Label emphasizes */
  .ba-industry-stats.is-inview .ba-industry-barcol:hover .ba-industry-label,
  .ba-industry-stats__chart-scroll.is-inview .ba-industry-barcol:hover .ba-industry-label,
  [data-ba-industry-chart].is-inview .ba-industry-barcol:hover .ba-industry-label {
    color: #111;
    font-weight: 700;
  }

  /* Make the whole column a hover target with a pointer hint */
  .ba-industry-barcol {
    cursor: pointer;
  }
}

.ba-industry-banner {
  margin: 0 auto 36px;
  max-width: 920px;
  text-align: center;
  background: #f06292;
  color: #fff;
  font-size: clamp(14px, 2.2vw, 17px);
  font-weight: 700;
  line-height: 1.55;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(240, 98, 146, 0.35);
}

.ba-industry-points {
  list-style: none;
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.ba-industry-points li {
  position: relative;
  padding-left: 40px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.ba-industry-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff8a65 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/13px no-repeat;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .ba-industry-stats {
    overflow-x: hidden;
  }

  /* vw 브레이크아웃 제거: 스크롤바·리플로우 시 calc(50% - 50vw)가 흔들리지 않도록 */
  .ba-industry-stats__chart-scroll {
    margin-top: 0px;
    margin-bottom: 28px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 10px;
    scroll-padding-inline: 12px;
    scroll-snap-type: x proximity;
    box-sizing: border-box;
  }

  /* 짧을 땐 가로를 꽉 채우고, 11개 등 넘치면 max-content로 스크롤 */
  .ba-industry-stats__chart {
    justify-content: space-between;
    gap: clamp(4px, 1.5vw, 10px);
    width: max(100%, max-content);
    min-width: max(100%, max-content);
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .ba-industry-barcol {
    flex: 1 1 0;
    min-width: 22px;
    max-width: none;
    scroll-snap-align: start;
  }

  .ba-industry-track {
    height: min(280px, 48vh);
    min-height: 200px;
    max-width: 100%;
  }

  .ba-industry-label {
    font-size: 11px;
    line-height: 1.3;
    max-width: 5em;
    min-height: 30px;
  }
}

@media (max-width: 575px) {
  .ba-industry-stats {
    padding: 56px 0 72px;
  }

  .ba-industry-stats__chart-scroll {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
    scroll-padding-inline: max(12px, env(safe-area-inset-left, 0px));
  }

  .ba-industry-stats__chart {
    gap: clamp(4px, 1.2vw, 8px);
  }

  .ba-industry-barcol {
    gap: 8px;
  }

  .ba-industry-track {
    height: min(240px, 42vh);
    min-height: 180px;
    max-width: 100%;
    padding-top: 8px;
  }

  .ba-industry-banner {
    padding: 14px 20px;
    border-radius: 20px;
    font-weight: 400;
    line-height: 1.3em;
  }
}

@media (max-width: 420px) {
  .ba-industry-label {
    font-size: 2vw;
    line-height: 1.3;
    width: 100%;
  }
}

/* ============== Gallery ============== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-alt);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 2;
}

.gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

/* ============== Testimonials ============== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.stars {
  color: var(--yellow);
  margin-bottom: 18px;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-card>p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.author-info strong {
  display: block;
  font-size: 14px;
}

.author-info span {
  color: var(--text-muted);
  font-size: 12px;
}

/* ============== CTA Banner ============== */
.cta-banner {
  background: var(--text);
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.25) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1.6px;
  position: relative;
  line-height: 1.15;
}

.cta-banner h2 .yellow {
  color: var(--yellow);
}

.cta-banner>.container>p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-size: 19px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-buttons .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-ghost:hover {
  background: white;
  color: var(--text);
}

/* ============== FAQ ============== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: var(--red);
}

.faq-question {
  padding: 24px 28px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 28px;
  color: var(--red);
  transition: transform 0.3s;
  font-weight: 300;
  line-height: 1;
}

.faq-item.open {
  border-color: var(--red);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.open .faq-answer {
  padding: 0 28px 24px;
  max-height: 240px;
}

/* ============== SPACE PAGE ============== */
.space-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}

.space-detail.reverse {
  direction: rtl;
}

.space-detail.reverse>* {
  direction: ltr;
}

.space-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.space-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-detail-info .section-tag {
  margin-bottom: 16px;
}

.space-detail-info h3 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.space-detail-info>p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.space-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.space-features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.space-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 800;
}

/* ============== PRICING — Compare Table ============== */
.compare-table-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.compare-table th {
  background: var(--bg-alt);
  font-weight: 700;
  font-size: 14px;
}

.compare-table th.featured {
  background: var(--text);
  color: white;
  position: relative;
}

.compare-table th.featured::after {
  content: '인기';
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--yellow);
  color: var(--text);
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

.compare-table td.featured {
  background: rgba(0, 0, 0, 0.02);
  font-weight: 600;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .check {
  color: var(--red);
  font-weight: 800;
}

.compare-table .dash {
  color: var(--text-muted);
  opacity: 0.5;
}

/* ============== LOCATION ============== */
.location-section {
  background: var(--text);
  color: white;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location-info h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.4px;
  line-height: 1.2;
}

.location-info>p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-size: 17px;
  max-width: 460px;
}

.location-list {
  list-style: none;
}

.location-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 16px;
  align-items: center;
}

.location-list .icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.location-list strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 15px;
}

.location-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.map-placeholder {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  height: 480px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 16px 40px rgba(211, 47, 47, 0.5);
  position: relative;
  z-index: 1;
}

.map-pin-dot {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-pulse {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: pulseRing 2s infinite;
}

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

.transport-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.2s;
}

.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.transport-icon {
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.transport-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.transport-card ul {
  list-style: none;
}

.transport-card ul li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 14px;
}

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

.nearby-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
}

.nearby-item:hover {
  border-color: var(--yellow);
}

.nearby-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.nearby-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.nearby-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-card {
  background: var(--text);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact-info-card>p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 32px;
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 14px;
}

.contact-info-list li:last-child {
  border-bottom: none;
}

.contact-info-list .icon {
  width: 40px;
  height: 40px;
  background: rgba(211, 47, 47, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-info-list strong {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-info-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* footer: 센터별 주소 — dt / dd 한 줄 */
.footer_top dl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 1em;
  row-gap: 0;
  margin: 0;
}

.footer_top dt {
  flex-shrink: 0;
  margin: 0;
  color: #fff;
}

.footer_top a {
  color: #fff !important;
}

.footer_top dd {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  color: #ccc;
}

.footer_top dd a {
  display: inline-block;
  white-space: nowrap;
}

.foot-sns {
  display: inline-block;
  width: 74px;
  position: absolute;
  right: 0;
  top: 0;
}

.footer_top .company-info {
  padding-bottom: 10px;
}

/* ============== Responsive ============== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 56px;
  }

  .hero-grid {
    gap: 40px;
  }

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

@media (max-width: 900px) {
  section .container {
    padding: 0 20px;
  }

  .hero-buttons a {
    flex: 1;
    padding: 12px 5px !important;
    display: flex;
    justify-content: center;
  }

  .menu,
  .nav-cta {
    display: none;
  }

  .hero {
    padding: 60px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-video-wrap {
    order: -1;
  }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -1.5px;
  }

  .hero h1 .star {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 40px;
  }

  .hero-stats {
    gap: 28px;
  }

  .hero-stat strong {
    font-size: 24px;
  }

  .floating-card-1 {
    left: 3vw;
  }

  .floating-card-2 {
    right: 3vw;
  }

  .section-title,
  .location-info h2 {
    font-size: 32px;
  }

  .cta-banner h2 {
    font-size: 32px;
  }

  section {
    padding: 72px 0;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

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

  .plan-grid,
  .testimonial-grid,
  .transport-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-child(2) {
    grid-column: span 2;
  }

  .location-grid,
  .footer-grid,
  .contact-grid,
  .space-detail,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ph-mini-gallery {
    height: 320px;
  }

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

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    position: static;
  }

  .compare-table {
    font-size: 13px;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .foot-sns {
    display: block;
    width: 42px;
    position: relative;
    right: auto;
    top: 0;
  }
}

@media (max-width: 767px) {
  .plan-card.featured {
    margin-top: 0;
  }

  .footer_top dl {
    margin-top: 14px;
    margin-bottom: 14px;
  }
}

@media (max-width: 575px) {
  .hero-stats {
    justify-content: space-around;
    gap: 10px;
  }

  .hero-stat strong {
    font-size: 4vw;
  }

  .hero-stat span.count {
    font-size: 7.2vw;
  }

  .hero-stat span {
    font-size: 4vw;
  }

  .floating-card-1 {
    top: -40px;
  }

  .floating-card-2 {
    bottom: -20px;
    right: -3vw;
  }
}

/* ====================================================================
   a3 — 비즈액티브 비상주 서비스 (pre-footer marketing)
   클래스 기반 — 인라인 스타일 없음
==================================================================== */
.a3 {
  position: relative;
  background-color: #1a1f26;
  background-image:
    linear-gradient(rgba(12, 16, 24, 0.78), rgba(12, 16, 24, 0.88)),
    url('assets/img/a3-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 90px 20px 100px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.a3 * {
  box-sizing: border-box;
}

.a3 .contentArea {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.a3 .a3-anchor {
  position: absolute;
  top: -80px;
  left: 0;
}

/* === 상단 타이틀 그룹 === */
.a3 .a3-head {
  margin: 0 auto 32px;
  max-width: 720px;
}

.a3 .a3-eyebrow {
  display: block;
  margin: 0 auto 16px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.2px;
  text-align: center;
}

.a3 .a3-title {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  padding: 0 0 18px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  text-align: center;
}

.a3 .a3-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}

.a3 .a3-title .ba-key {
  color: #f4a83b;
  font-weight: 700;
}

/* === CTA 그룹 (파란 캡슐 + 골드 강조) === */
.a3 .a3-cta {
  margin: 36px auto 40px;
  max-width: 720px;
}

.a3 .a3-question {
  display: inline-block;
  padding: 14px 30px;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 400;
  color: #fff;
  background: #195ca3;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(25, 92, 163, 0.35);
  letter-spacing: -0.2px;
}

.a3 .t2 {
  display: block;
  margin: 26px auto 0;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.45;
  color: #f4c542;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

/* === 체크리스트 === */
.a3 .a3-checklist {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
}

.a3 .card-container4 {
  display: flex;
  justify-content: center;
  margin: 0 0 12px;
}

.a3 .card4 {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 28px;
  background: rgba(60, 65, 75, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
  transition:
    background 0.45s ease-out,
    border-color 0.45s ease-out,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease-out;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .a3 .card4:hover {
    background: rgba(90, 100, 115, 0.7);
    border-color: rgba(244, 168, 59, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  }
}

.a3 .card4 img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 0;
}

.a3 .jb-b {
  display: none;
}

.a3 .jb-c {
  display: inline-block;
}

@media (hover: hover) {
  .a3 .card4:hover .jb-b {
    display: inline-block;
  }

  .a3 .card4:hover .jb-c {
    display: none;
  }
}

.a3 .jb-3d {
  font-size: clamp(14px, 1.55vw, 16px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

/* === 하단 마무리 === */
.a3 .a3-bottom-text {
  display: block;
  margin: 56px auto 0;
  max-width: 720px;
  padding: 22px 28px 0;
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 600;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: -0.2px;
}

/* === Fade-in (wow.fadeInUp fallback) === */
.a3 .fadeInUp {
  animation: a3FadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes a3FadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .a3 {
    padding: 60px 16px 70px;
  }

  .a3 .a3-head {
    margin-bottom: 24px;
  }

  .a3 .a3-cta {
    margin: 28px auto 32px;
  }

  .a3 .a3-question {
    padding: 12px 22px;
  }

  .a3 .card4 {
    padding: 14px 20px;
    gap: 12px;
  }

  .a3 .jb-3d {
    font-size: 13px;
  }

  .a3 .a3-bottom-text {
    margin-top: 40px;
    padding: 18px 16px 0;
  }
}

/* ====================================================================
   ba-features — Top intro card grid (Why Bizactive · 8 cards)
==================================================================== */
.ba-features {
  background: #f6e3b3;
  padding: 80px 20px 90px;
}

.ba-features__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ba-features__eyebrow {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}

.ba-features__title {
  text-align: center;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 800;
  color: #222;
  margin: 0;
  letter-spacing: -0.5px;
}

.ba-features__title strong {
  color: #f4a83b;
  font-weight: 800;
}

.ba-features__rule {
  width: 64px;
  height: 2px;
  background: #c9b888;
  margin: 18px auto 26px;
  border: 0;
}

.ba-features__sub {
  text-align: center;
  font-size: clamp(16px, 2vw, 19px);
  color: #2b2b2b;
  line-height: 1.65;
  margin: 0 0 56px;
  font-weight: 600;
}

.ba-features__sub small {
  display: block;
  margin-top: 6px;
  font-size: 0.85em;
  color: #6b6b6b;
  font-weight: 500;
}

.ba-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ba-features__card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 18px 28px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease-out;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .ba-features__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .ba-features__card:hover .ba-features__icon {
    transform: scale(1.05);
  }
}

.ba-features__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: #1f3a8a;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-features__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ba-features__heading {
  font-size: 15px;
  font-weight: 700;
  color: #1f1f1f;
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}

.ba-features__text {
  font-size: 12.5px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  word-break: keep-all;
}

@media (max-width: 960px) {
  .ba-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-features {
    padding: 64px 20px 72px;
  }
}

@media (max-width: 520px) {
  .ba-features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ba-features__sub {
    margin-bottom: 40px;
  }
}

/* ====================================================================
   페이지 본문 영역의 기본 패딩 제거 (메인 제외)
   — page-hero가 entry-content 위에 풀폭으로 출력되면서
     Astra의 site-content / entry-content 상단 패딩이 흰 띠로 보이는 문제 해결
==================================================================== */
body.page:not(.home) .site-content,
body.page:not(.home) .site-content>.ast-container,
body.page:not(.home) .ast-container .site-primary,
body.page:not(.home) .ast-container>.site-main,
body.page:not(.home) .entry-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

body.page:not(.home) .entry-content>p:first-child:empty,
body.page:not(.home) .entry-content>*:first-child {
  margin-top: 0;
}

body.page:not(.home) .entry-content>*:last-child {
  margin-bottom: 0;
}

/* ====================================================================
   ba-page-hero — 모든 페이지 상단 공통 Hero (배경 이미지 + 타이틀)
==================================================================== */
.ba-page-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  padding: 110px 20px 120px;
  background-color: #1a1f26;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.ba-page-hero * {
  box-sizing: border-box;
}

.ba-page-hero__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.ba-page-hero__eyebrow {
  margin: 0 auto 20px;
  max-width: 400px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.2px;
  word-break: keep-all;
  line-height: 1.55;
}

.ba-page-hero__title {
  margin: 0 0 20px;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: #fff;
}

.ba-page-hero__subtitle {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  word-break: keep-all;
}

@media (max-width: 640px) {
  .ba-page-hero {
    padding: 70px 16px 76px;
  }

  .ba-page-hero__eyebrow {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .ba-page-hero__title {
    margin-bottom: 14px;
  }
}

/* ====================================================================
   ba-intro — 비즈액티브 소개 페이지 본문
==================================================================== */
.ba-intro {
  padding: 0;
  background: #fff;
  color: #1f1f1f;
}

.ba-intro * {
  box-sizing: border-box;
}

.ba-intro__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 20px 0;
}

/* --- Split section (사진 + 텍스트 2-col, alternating zigzag) --- */
.ba-intro__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 70px 20px;
}

.ba-intro__split+.ba-intro__split {
  padding-top: 0;
}

.ba-intro__split:last-of-type {
  padding-bottom: 80px;
}

.ba-intro__split>* {
  min-width: 0;
}

/* 기본: 사진(좌) + 텍스트(우) */
.ba-intro__split-media {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #f0f0f0;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.ba-intro__split-text {
  grid-column: 2;
  grid-row: 1;
}

.ba-intro__split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .ba-intro__split-media:hover img {
    transform: scale(1.04);
  }
}

/* media-right 변형: 텍스트(좌) + 사진(우) */
.ba-intro__split--media-right .ba-intro__split-text {
  grid-column: 1;
  grid-row: 1;
}

.ba-intro__split--media-right .ba-intro__split-media {
  grid-column: 2;
  grid-row: 1;
}

.ba-intro__split-eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  padding: 7px 18px;
  font-size: 11.5px;
  font-weight: 800;
  color: #c1722f;
  background: #fbeede;
  border-radius: 999px;
  letter-spacing: 1.4px;
}

.ba-intro__split-title {
  margin: 0 0 24px;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.6px;
  color: #1a1a1a;
}

.ba-intro__split-title .ba-key {
  color: #f4a83b;
}

.ba-intro__split-body {
  margin: 0 0 26px;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.85;
  color: #555;
  word-break: keep-all;
}

.ba-intro__split-bullets {
  list-style: none;
  margin: 0;
  padding: 0 !important;
}

.ba-intro__split-bullets li {
  position: relative;
  padding: 11px 0 11px 24px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  word-break: keep-all;
}

.ba-intro__split-bullets li:last-child {
  border-bottom: 0;
}

.ba-intro__split-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 8px;
  background: #f4a83b;
  border-radius: 50%;
}

.ba-intro__split-bullets li strong {
  color: #1a1a1a;
  font-weight: 700;
  margin-right: 4px;
}

/* --- a2 영역 — 상주 오피스 소개 8개 카드 (#FAF7F2 + 상하 #EBEBEB 보더) --- */
.ba-intro__values {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px 20px 90px;
  background-color: #FAF7F2;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  text-align: center;
}

.ba-intro__values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ba-intro__values-eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  color: #777;
  letter-spacing: 0.2px;
  word-break: keep-all;
}

.ba-intro__values-title {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}

.ba-intro__values-title .ba-key {
  color: #f4a83b;
  font-weight: 800;
}

.ba-intro__values-rule {
  width: 64px;
  height: 2px;
  margin: 22px auto 26px;
  background: #d4c594;
  border: 0;
}

.ba-intro__values-sub {
  margin: 0 auto 60px;
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.65;
  color: #333;
  font-weight: 600;
  word-break: keep-all;
}

.ba-intro__values-sub small {
  display: block;
  margin-top: 6px;
  font-size: 0.82em;
  color: #666;
  font-weight: 500;
}

.ba-intro__values-grid {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ba-intro__value {
  padding: 36px 28px 30px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.55s ease-out,
    border-color 0.55s ease-out;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .ba-intro__value:hover {
    transform: translateY(-4px);
    border-color: #e2d5b8;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  }

  .ba-intro__value:hover .ba-intro__value-icon {
    transform: scale(1.08);
  }
}

.ba-intro__value-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 44px;
  height: 36px;
  margin: 0 0 20px;
  color: #f4a83b;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-intro__value-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ba-intro__value-heading {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

.ba-intro__value-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #555;
  word-break: keep-all;
}

/* --- Company info --- */
.ba-intro__company {
  margin: 0 auto 60px;
  padding: 30px 32px;
  max-width: 640px;
  background: #fafafa;
  border-radius: 12px;
}

.ba-intro__company h3 {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 700;
  color: #888;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ba-intro__company-list {
  margin: 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px 24px;
}

.ba-intro__company-list dt {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #888;
}

.ba-intro__company-list dd {
  margin: 0;
  font-size: 14.5px;
  color: #1f1f1f;
}

.ba-intro__company-list dd a {
  color: #1f3a8a;
  text-decoration: none;
}

.ba-intro__company-list dd a:hover {
  text-decoration: underline;
}

/* --- CTA --- */
.ba-intro__cta {
  text-align: center;
}

.ba-intro__cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: #f4a83b;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(244, 168, 59, 0.32);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease-out,
    background 0.35s ease;
}

.ba-intro__cta-btn:hover {
  background: #e89a2a;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(244, 168, 59, 0.42);
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .ba-intro__values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ba-intro__split {
    gap: 40px;
    padding: 50px 20px;
  }
}

@media (max-width: 768px) {
  .ba-intro__split {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 20px;
  }

  .ba-intro__split+.ba-intro__split {
    padding-top: 0;
  }

  /* 모바일에선 항상 사진이 먼저(위), 텍스트가 다음(아래) */
  .ba-intro__split-media,
  .ba-intro__split--media-right .ba-intro__split-media {
    grid-column: 1;
    grid-row: 1;
  }

  .ba-intro__split-text,
  .ba-intro__split--media-right .ba-intro__split-text {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  .ba-intro {
    padding: 0;
  }

  .ba-intro__split {
    padding: 48px 16px;
  }

  .ba-intro__values {
    padding: 60px 16px 70px;
  }

  .ba-intro__values-sub {
    margin-bottom: 44px;
  }

  .ba-intro__value {
    padding: 28px 22px 24px;
  }

  .ba-intro__company {
    padding: 24px 20px;
    margin: 56px auto 48px;
  }

  .ba-intro__company-list {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .ba-intro__company-list dt {
    margin-top: 8px;
  }
}

@media (max-width: 420px) {
  .ba-intro__values-grid {
    grid-template-columns: 1fr;
  }

  .ba-intro__values {
    text-align: left !important;
  }

  .ba-intro__values-rule {
    margin-left: 0;
  }

  .ba-intro__values-eyebrow {
    max-width: 250px;
  }
}

/* ====================================================================
   a4 / ba-portfolio — 둘러보기 페이지 (CPT: portfolio + 카테고리 필터)
==================================================================== */
#a4.ba-portfolio {
  background: #fff;
  padding: 80px 20px 100px;
  color: #1f1f1f;
}

.ba-portfolio * {
  box-sizing: border-box;
}

.ba-portfolio__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.ba-portfolio__head {
  text-align: center;
  margin-bottom: 40px;
}

.ba-portfolio__eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  color: #777;
  letter-spacing: 0.2px;
  word-break: keep-all;
}

.ba-portfolio__title {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}

.ba-portfolio__title .ba-key {
  color: #f4a83b;
}

/* Category filter */
.ba-portfolio__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 48px;
  padding: 0;
}

.ba-portfolio__filter-btn {
  appearance: none;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.2px;
}

.ba-portfolio__filter-btn:hover {
  color: #ffffff;
  background: #f4a83b;
  border-color: #f4a83b;
}

.ba-portfolio__filter-btn.is-active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

/* Grid */
.ba-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ba-portfolio__card {
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-portfolio__card.is-hidden {
  display: none;
}

.ba-portfolio__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ba-portfolio__card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.5s ease-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-portfolio__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-portfolio__card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #aaa;
  background: #f3f3f3;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .ba-portfolio__card:hover .ba-portfolio__card-media {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }

  .ba-portfolio__card:hover .ba-portfolio__card-media img {
    transform: scale(1.05);
  }

  .ba-portfolio__card:hover .ba-portfolio__card-title {
    color: #f4a83b;
  }
}

.ba-portfolio__card-body {
  padding: 16px 4px 0;
}

.ba-portfolio__card-cat,
.ba-portfolio__card-body,
.ba-lightbox__cat {
  display: none !important;
}

.ba-portfolio__card-title {
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  word-break: keep-all;
  transition: color 0.3s ease;
}

.ba-portfolio__card-link,
.ba-portfolio__card-link:hover,
.ba-portfolio__card-link:focus,
.ba-portfolio__card-link:active {
  text-decoration: none !important;
  box-shadow: none;
}

.ba-portfolio__empty {
  text-align: center;
  padding: 80px 20px;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  background: #faf7f2;
  border: 1px dashed #ddd;
  border-radius: 12px;
}

.ba-portfolio__empty small {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #999;
}

/* Pagination */
.ba-portfolio__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 56px;
}

.ba-portfolio__pagination:empty {
  display: none;
}

.ba-portfolio__page-btn {
  appearance: none;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.ba-portfolio__page-btn:hover:not(:disabled):not(.is-active) {
  background: #f4a83b;
  border-color: #f4a83b;
  color: #fff;
}

.ba-portfolio__page-btn.is-active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
  cursor: default;
}

.ba-portfolio__page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ba-portfolio__page-ellipsis {
  padding: 0 6px;
  color: #999;
  font-weight: 600;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
  .ba-portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .ba-portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 560px) {
  #a4.ba-portfolio {
    padding: 56px 16px 72px;
  }

  .ba-portfolio__filter {
    margin-bottom: 32px;
  }

  .ba-portfolio__filter-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  .ba-portfolio__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ba-portfolio__pagination {
    margin-top: 40px;
  }

  .ba-portfolio__page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* ====================================================================
   ba-lightbox — 포트폴리오 이미지 라이트박스
==================================================================== */
.ba-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.93);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  padding: 60px 20px;
}

.ba-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease;
}

.ba-lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 100%;
  cursor: zoom-out;
}

.ba-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 220px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  background: #111;
  cursor: default;
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ba-lightbox.is-open .ba-lightbox__img {
  transform: scale(1);
}

.ba-lightbox__caption {
  margin-top: 18px;
  text-align: center;
  color: #fff;
  cursor: default;
}

.ba-lightbox__cat {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #f4a83b;
  background: rgba(244, 168, 59, 0.15);
  border: 1px solid rgba(244, 168, 59, 0.4);
  border-radius: 999px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.ba-lightbox__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.ba-lightbox__counter {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

.ba-lightbox__close,
.ba-lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.ba-lightbox__close {
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.ba-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;

  font-weight: 300;
  line-height: 1;
}

.ba-lightbox__nav--prev {
  left: 24px;
}

.ba-lightbox__nav--next {
  right: 24px;
}

.ba-lightbox__close:hover,
.ba-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.ba-lightbox__nav:hover {
  transform: translateY(-50%) scale(1.06);
}

@media (max-width: 640px) {
  .ba-lightbox {
    padding: 50px 12px;
  }

  .ba-lightbox__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .ba-lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .ba-lightbox__nav--prev {
    left: 10px;
  }

  .ba-lightbox__nav--next {
    right: 10px;
  }
}

/* ====================================================================
   계약서 상품 페이지 — WC 기본 영역 숨김 + 풀폭
==================================================================== */
body.is-contract-product .woocommerce-product-gallery,
body.is-contract-product .woocommerce-product-rating,
body.is-contract-product .price,
body.is-contract-product .product_meta,
body.is-contract-product .woocommerce-tabs,
body.is-contract-product .related,
body.is-contract-product .upsells,
body.is-contract-product .breadcrumb,
body.is-contract-product .woocommerce-breadcrumb {
  display: none !important;
}

body.is-contract-product .product>.summary,
body.is-contract-product .product .entry-summary,
body.is-contract-product .product .summary {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
}

body.is-contract-product .site-main {
  padding: 0 !important;
}

body.is-contract-product .product {
  margin: 0 !important;
  padding: 0 !important;
}

/* ====================================================================
   ba-contract — 계약서 페이지 (premium minimal redesign)
   톤: 흰 + 검정 + 골드 액센트 + 옅은 베이지
==================================================================== */
.ba-contract {
  background: #fff;
  padding: 70px 24px 100px;
  color: #1a1a1a;
}

.ba-contract * {
  box-sizing: border-box;
}

.ba-contract__inner {
  max-width: 980px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.2px;
}

/* Hero — 큰 타이틀 + 골드 underline + 차분한 sub */
.ba-contract__hero {
  text-align: center;
  margin: 0 auto 60px;
  padding-bottom: 36px;
  position: relative;
}

.ba-contract__hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: #444
}

.ba-contract__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #f4a83b;
  line-height: 1.25;
}

.ba-contract__lead {
  margin: 0;
  font-weight: 500;
  line-height: 1.7;
  font-size: 17px !important;
    max-width: 600px !important;
    margin: 0 auto;
    color: #333;
}
.ba-contract__product-info{
  display:none;
}
/* Section title — 좌측 골드 바 */
.ba-contract__h3 {
  position: relative;
  margin: 48px 0 14px;
  padding-left: 14px;
  font-size: 14.5px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  text-transform: none;
}

.ba-contract__h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: #f4a83b;
  border-radius: 3px;
}

/* Scroll box (개인정보·약관) — 얇은 보더 + 라운드 */
.ba-contract__scroll-box {
  border: 1px solid #ececec;
  background: #fafafa;
  border-radius: 10px;
  padding: 18px 24px;
  height: 200px;
  overflow-y: auto;
  font-size: 13px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 14px;
  scrollbar-width: thin;
}

.ba-contract__scroll-box::-webkit-scrollbar {
  width: 6px;
}

.ba-contract__scroll-box::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.ba-contract__scroll-box p {
  margin: 0 0 14px;
}

.ba-contract__scroll-box p:last-child {
  margin-bottom: 0;
}

.ba-contract__scroll-box strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* 테이블 공통 — 얇은 보더 + 라운드 + 베이지 헤더 */
.ba-contract__info,
.ba-contract__price,
.ba-contract__company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 18px 0 24px;
  font-size: 14px;
  border: 1px solid #ececec;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.ba-contract__info th,
.ba-contract__price th,
.ba-contract__company th {
  background: #faf7f2;
  color: #1a1a1a;
  text-align: center;
  padding: 14px 12px;
  font-weight: 700;
  letter-spacing: -0.2px;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  font-size: 13.5px;
}

.ba-contract__info td,
.ba-contract__price td,
.ba-contract__company td {
  padding: 14px 16px;
  text-align: center;
  color: #333;
  border-right: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
}

.ba-contract__info tr:last-child th,
.ba-contract__info tr:last-child td,
.ba-contract__price tbody tr:last-child th,
.ba-contract__price tbody tr:last-child td,
.ba-contract__company tr:last-child th,
.ba-contract__company tr:last-child td {
  border-bottom: 0;
}

.ba-contract__info th:last-child,
.ba-contract__info td:last-child,
.ba-contract__price th:last-child,
.ba-contract__price td:last-child,
.ba-contract__company th:last-child,
.ba-contract__company td:last-child {
  border-right: 0;
}

.ba-contract__info-cell-narrow {
  width: 110px;
  text-align: right !important;
  background: #faf7f2 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

/* 가격 테이블 — 모던, 숫자 우측 정렬 */
.ba-contract__price thead th {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ba-contract__price td {
  font-size: 14.5px;
}

.ba-contract__price .ba-contract__num {
  text-align: right;
  padding-right: 22px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.ba-contract__price .ba-contract__note {
  /* font-size: 12.5px; */
  /* color: #888; */
  font-weight: 600;
}

.ba-contract__price-total td {
  font-weight: 800;
  background: #faf7f2;
  color: #1a1a1a;
  font-size: 15.5px;
}

.ba-contract__price-total .ba-contract__num {
  color: #f4a83b;
}

/* 번호 단락 — 깔끔한 hanging indent */
.ba-contract__num-line {
  margin: 14px 0;
  padding-left: 28px;
  text-indent: -28px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #333;
  word-break: keep-all;
}

.ba-contract__num-line strong {
  display: inline-block;
  width: 22px;
  text-indent: 0;
  color: #f4a83b;
  font-weight: 800;
  margin-right: 6px;
}

/* 회사 정보 테이블 */
.ba-contract__company {
  margin-top: 36px;
}

.ba-contract__company td {
  text-align: left;
  padding-left: 18px;
  font-size: 13.5px;
}

.ba-contract__company td[colspan] {
  text-align: center;
  font-weight: 600;
  background: #fafafa;
}

/* 폼 영역 — 카드 형태 */
.ba-contract__form-wrap {
  margin: 36px 0 12px;
  padding: 32px 36px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.ba-contract__form-wrap .wpcf7 {
  margin: 0;
}

.ba-contract__form-wrap label {
  display: block;
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 13.5px;
  color: #1a1a1a;
  letter-spacing: -0.2px;
}

.ba-contract__form-wrap input[type="text"],
.ba-contract__form-wrap input[type="email"],
.ba-contract__form-wrap input[type="tel"] {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 8px;
  background: #fafafa;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ba-contract__form-wrap input[type="text"]:focus,
.ba-contract__form-wrap input[type="email"]:focus,
.ba-contract__form-wrap input[type="tel"]:focus {
  border-color: #1a1a1a;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 168, 59, 0.18);
}

.ba-contract__form-wrap .wpcf7-submit {
  display: block;
  width: 100%;
  margin: 22px 0 0;
  padding: 18px 0;
  background: #1a1a1a;
  border: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  letter-spacing: -0.2px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.ba-contract__form-wrap .wpcf7-submit:hover {
  background: #f4a83b;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(244, 168, 59, 0.35);
}

.ba-contract__form-warning {
  margin: 20px 0 0;
  color: #c0392b;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.ba-contract__form-notice {
  margin: 0;
  padding: 18px 22px;
  background: #fffaf0;
  border-left: 3px solid #f4a83b;
  color: #8a6d3b;
  font-size: 13.5px;
  border-radius: 8px;
  line-height: 1.6;
}

.ba-contract__form-notice code {
  background: rgba(0, 0, 0, 0.06);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12.5px;
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
  .ba-contract {
    padding: 48px 16px 70px;
  }

  .ba-contract__inner {
    font-size: 14px;
  }

  .ba-contract__hero {
    margin-bottom: 40px;
    padding-bottom: 24px;
  }

  .ba-contract__title {
    font-size: 24px;
  }

  .ba-contract__info,
  .ba-contract__price,
  .ba-contract__company {
    font-size: 12.5px;
  }

  .ba-contract__info th,
  .ba-contract__price th,
  .ba-contract__company th,
  .ba-contract__info td,
  .ba-contract__price td,
  .ba-contract__company td {
    padding: 10px 8px;
  }

  .ba-contract__price .ba-contract__num {
    padding-right: 10px;
  }

  .ba-contract__form-wrap {
    padding: 22px 18px;
  }

  .ba-contract__num-line {
    padding-left: 22px;
    text-indent: -22px;
    font-size: 13.5px;
  }
}

/* ============================================
   WC add-to-cart 영역 — 계약서 상품 페이지 상단
   결제 액션 박스도 고급스럽게
============================================ */
body.is-contract-product .product .cart {
  margin: 0 0 40px;
  padding: 24px 28px;
  background: #faf7f2;
  border-radius: 14px;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

body.is-contract-product .product .cart .quantity {
  margin: 0;
}

body.is-contract-product .product .cart .quantity input {
  height: 46px;
  width: 80px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

body.is-contract-product .product .cart .single_add_to_cart_button {
  height: 46px;
  padding: 0 32px;
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 999px;
  border: 0;
  letter-spacing: -0.2px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

body.is-contract-product .product .cart .single_add_to_cart_button:hover {
  background: #f4a83b;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(244, 168, 59, 0.35);
}

body.is-contract-product .entry-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 6px;
  color: #1a1a1a;
}

body.is-contract-product .woocommerce-product-details__short-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.65;
}

/* ====================================================================
   KBoard sbs-board 스킨 — 목록의 추천수 숨김
==================================================================== */
.kboard-list-vote,
.kboard-vote,
.contents-separator.kboard-vote,
.contents-item.kboard-vote {
  display: none !important;
}

/* ====================================================================
   ba-floating-banner — 우측 sticky 프로모션 배너 (전 페이지)
==================================================================== */
.ba-floating-banner {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 180px;
  max-width: 18vw;
  animation: baBannerSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.ba-floating-banner.is-hidden {
  display: none;
}

.ba-floating-banner__link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease-out;
}

.ba-floating-banner__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.ba-floating-banner__link img {
  display: block;
  width: 100%;
  height: auto;
}

.ba-floating-banner__close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  width: 30px;
  height: 30px;
  padding: 0;
  background: #1a1a1a;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  display: flex;

  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.ba-floating-banner__close:hover {
  background: #f4a83b;

}

@keyframes baBannerSlideIn {
  from {
    opacity: 0;
    transform: translate(40px, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

/* 화면 좁으면 숨김 (콘텐츠 영역과 겹침 방지) */
@media (max-width: 1280px) {
  .ba-floating-banner {
    display: none;
  }
}
/*  상주 서비스 시작 */
.ba-intro__values-eyebrow,
.ba-resident__lead{
  font-size: 26px !important; 
  line-height:1.35 !important;
  max-width: 600px;
  text-align: center;
  margin:0 auto !important;
  word-break: keep-all;
  overflow-wrap: break-word;
}



/*  상주 서비스 끝 */
.ba-industry-stats__eyebrow,
.section-desc,
.hero-desc{
  font-size: 38px;
  line-height:1.35;
  max-width: 800px;
  margin:0 auto;
}
.ba-intro__value-heading{
  font-size:26px;
}
.ba-intro__value-text {
  font-size: 22px;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .ba-industry-stats__eyebrow,
  .section-desc,
  .hero-desc{
    font-size: 30px;
    line-height:1.35;
  }

  .ba-intro__values-eyebrow,
  .ba-resident__lead{
    font-size: 28px !important; 
    line-height:1.35 !important;
  }
  
}
@media (max-width: 480px) {

  .ba-industry-stats__eyebrow,
  .section-desc,
  .hero-desc{
    font-size: 28px;
    line-height:1.35;
  }
  .ba-intro__values-eyebrow,
  .ba-resident__lead{
    font-size: 22px !important; 
    line-height:1.35 !important;
  }
  
}

/* ============================================================
   [수동 수정 영역] 요금카드 — 가장 작은 글자 크기 (상주·비상주 공통)
   ------------------------------------------------------------
   .ba-pricing__* 카드 안의 작은 텍스트
   (임대료 / 월임대료 / (VAT별도) / 할인 / 기준가 / 보증금 / 창측·내측 / Tel)를
   최소 22px 로 키움.  ← 아래 22px 값만 바꾸면 일괄 조정됩니다.
   * 상주(.ba-resident) + 비상주(.ba-pricing) 카드 둘 다 적용됩니다.
   * 특정 글자만 빼려면 해당 셀렉터 줄을 지우세요.
   ============================================================ */
.ba-portfolio__title,
.ba-resident__title{
    font-size:30px !important;
}
.ba-pricing__region,
.ba-pricing__card .ba-pricing__title{
    font-size:26px !important;
    margin-bottom:15px !important;
}
.ba-pricing__btype,
.ba-pricing__subtitle,
.ba-resident__sub,
.ba-portfolio__filter-btn,
.ba-portfolio__eyebrow,
.ba-hero__badge,
.ba-tabs .ba-tabs__btn,
.ba-pricing__btn,
.ba-pricing__monthly strong,
.ba-pricing__rent,
.ba-pricing__discount,
.ba-pricing__base,
.ba-pricing__deposit,
.ba-pricing__monthly,
.ba-pricing__monthly span,
.ba-pricing__title small,
.ba-res-tel {
	font-size: 22px !important;
	line-height: 1.4 !important;
}
.ba-loc-tab,
.ba-res-tab,
.ba-portfolio__filter-btn {
  font-size: 22px !important;
	line-height: 1.4 !important;
  font-weight: 500 !important;
}
.ba-pricing__monthly span {
  display: block;
}

/* ============================================================
   [수동 수정 영역] 오시는길 페이지 — 안내정보(.ba-loc-info) 글자 크기
   ------------------------------------------------------------
   최소 22px (Tel/사업자번호/이메일/약도/버튼) ~ 최대 32px (주소).
   ← 아래 32px / 22px 두 값만 바꾸면 조정됩니다.
   ============================================================ */
.ba-loc-info .ba-loc-addr {
	font-size: 32px !important;   /* 최대 (주소) */
	line-height: 1.4 !important;
}
.ba-page-hero__eyebrow,
.ba-loc-info .ba-loc-meta li,
.ba-loc-info .ba-loc-meta b,
.ba-loc-info .ba-loc-meta span,
.ba-loc-info .ba-loc-route,
.ba-loc-info .ba-loc-route b,
.ba-loc-info .ba-loc-btns .ba-loc-btn {
	font-size: 22px !important;   /* 최소 */
	line-height: 1.5 !important;
}
/* 라벨 폭 — 22px 에서 '사업자등록번호' 잘림 방지 */
.ba-loc-info .ba-loc-meta b {
	width: 170px !important;
	flex: none !important;
}

@media (max-width: 480px) {
  .ba-loc-btns,
.ba-loc-meta li{
  flex-direction: column;
}
}

/* ============================================================
   [수동 수정 영역] 비즈액티브 소개 페이지 — 최소 폰트 22px
   ------------------------------------------------------------
   .ba-intro 안의 22px 미만 텍스트(소제목/본문/불릿/회사정보/버튼)를
   최소 22px 로 올림.  ← 22px 값만 바꾸면 일괄 조정.
   * 이미 키운 항목(values-eyebrow·value-heading·value-text)은 제외.
   ============================================================ */
.ba-intro__split-eyebrow,
.ba-intro__split-body,
.ba-intro__split-bullets li,
.ba-intro__values-sub,
.ba-intro__values-sub small,
.ba-intro__company h3,
.ba-intro__company-list dt,
.ba-intro__company-list dd,
.ba-intro__cta-btn {
	font-size: 22px !important;
	line-height: 1.55 !important;
}