:root {
  --primary: #94292b;
  --primary-dark: #6e1c1e;
  --primary-light: #bc3b3e;
  --accent-gold: #c29547;
  --accent-gold-light: #fbf5ec;
  --accent-green: #2d6a4f;
  --accent-green-light: #e8f5e9;
  --accent-orange: #e65100;
  --bg-warm: #FBF7EE;
  --bg-paper: #FBF7EE;
  --bg-card: #ffffff;
  --bg-dark: #1e1e1e;
  --text-main: #2B1E15;
  --text-sub: #5A4A3E;
  --text-muted: #7A6A5D;
  --border-light: #EADFCE;
  --border-strong: #d5cbba;
  --highlight-yellow: #fff394;
  --highlight-green: #d2f8d2;
  --font-serif: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --font-sans: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.12);
}

html {
  font-size: 18.5px;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 768px) {
  html {
    font-size: 19px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: #FBF7EE;
  color: var(--text-main);
  line-height: 1.8;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

/* Header & Controls Bar */
.control-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 24, 23, 0.97);
  backdrop-filter: blur(14px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 24px;
}

.control-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-badge h1 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
}

.brand-badge span {
  font-size: 0.72rem;
  background: var(--primary);
  color: #fff;
  padding: 2px 9px;
  border-radius: 4px;
  font-weight: 700;
}

.nav-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 4px;
  gap: 4px;
  overflow-x: auto;
}

.nav-tab-btn {
  background: transparent;
  border: none;
  color: #d1cdc7;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.nav-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(148, 41, 43, 0.45);
}

.view-options {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-view-mode {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f1ede7;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-view-mode.active, .btn-view-mode:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

/* Detail Page Canvas */
.page-wrapper {
  display: flex;
  justify-content: center;
  padding: 24px 16px 80px 16px;
  min-height: 100vh;
}

.detail-viewport {
  width: 100%;
  max-width: 860px; /* SmartStore Standard Width */
  background: var(--bg-warm);
  box-shadow: var(--shadow-lg);
  border-radius: 0px;
  overflow: hidden;
  transition: max-width 0.3s ease;
  position: relative;
}

.detail-viewport.wide-mode {
  max-width: 1100px;
}

.detail-viewport.mobile-mode {
  max-width: 440px;
  border: 12px solid #232221;
  border-radius: 42px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.38);
  margin-top: 10px;
}

/* Customer Service / Phone Banner */
.cs-phone-banner {
  background: linear-gradient(90deg, #b73e23, #e65100);
  color: #ffffff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cs-phone-banner .cs-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cs-phone-banner .cs-number {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Point Badge */
.point-circle-badge {
  width: 44px;
  height: 44px;
  background: #e65100;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(230, 81, 0, 0.3);
}

/* Sections */
.detail-section {
  padding: 58px 36px;
  position: relative;
  background-color: var(--bg-warm);
}

.detail-section.dark {
  background-color: #1a1816;
  color: #f6efe6;
}

.detail-section.light-gray {
  background-color: var(--bg-warm);
}

.detail-section.highlight-bg {
  background-color: var(--accent-gold-light);
  border-top: 1px solid #ebdccb;
  border-bottom: 1px solid #ebdccb;
}

.detail-section.urgency-bg {
  background-color: #212529;
  color: #ffffff;
}

/* Section Typography */
.section-tag {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.dark .section-tag {
  color: var(--accent-gold);
}

.section-title {
  font-family: var(--font-sans);
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.dark .section-title, .urgency-bg .section-title {
  color: #fffaf2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-sub);
  margin-bottom: 32px;
  line-height: 1.85;
}

.dark .section-subtitle, .urgency-bg .section-subtitle {
  color: #c9c0b5;
}

/* Image Containers */
.img-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #eee;
}

.img-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.img-container:hover img {
  transform: scale(1.015);
}

.img-caption {
  padding: 12px 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid var(--border-light);
}

/* Comparison Table (일반 배추 vs 강원도 고랭지 유명수 배추) */
.comparison-container {
  margin: 30px 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th {
  padding: 18px 14px;
  font-size: 1.12rem;
  font-weight: 800;
}

.comparison-table th.col-feature {
  width: 25%;
  background: #f7f5f0;
  color: #555;
}

.comparison-table th.col-normal {
  width: 35%;
  background: #ece7de;
  color: #777;
}

.comparison-table th.col-yumyeongsu {
  width: 40%;
  background: #94292b;
  color: #ffffff;
}

.comparison-table td {
  padding: 18px 14px;
  border-top: 1px solid #eee;
  font-size: 1.08rem;
  line-height: 1.6;
  vertical-align: middle;
}

.comparison-table td.col-feature {
  background: #faf8f5;
  font-weight: 700;
  color: #444;
}

.comparison-table td.col-normal {
  background: #fff;
  color: #888;
}

.comparison-table td.col-yumyeongsu {
  background: #fffcf8;
  color: var(--primary);
  font-weight: 700;
  border-left: 2px solid #94292b;
  border-right: 2px solid #94292b;
}

.comparison-table tr:last-child td.col-yumyeongsu {
  border-bottom: 2px solid #94292b;
}

/* Water Quality Certificate 3-Grid */
.water-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.water-cert-card {
  background: #fff;
  border: 1px solid #d0e4e4;
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
}

.water-cert-badge {
  display: inline-block;
  background: #2b7a78;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.water-cert-card h5 {
  font-size: 1.18rem;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.water-cert-card p {
  font-size: 1.02rem;
  color: #2b7a78;
  font-weight: 700;
}

/* Packaging & Delivery Card */
.packaging-box {
  background: #ffffff;
  border: 2px solid #2b7a78;
  border-radius: 12px;
  padding: 28px 22px;
  margin: 28px 0;
}

.packaging-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  text-align: center;
}

.pkg-step {
  background: #f4faf9;
  border-radius: 8px;
  padding: 16px 12px;
}

.pkg-step h6 {
  color: #2b7a78;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.pkg-step p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #555;
}

/* Official Website Bridge Card */
.homepage-bridge-card {
  background: #ffffff;
  border: 2px solid var(--accent-gold);
  border-radius: 14px;
  padding: 26px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.homepage-bridge-info h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.homepage-bridge-info p {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.6;
}

.homepage-bridge-btn {
  background: #2b2725;
  color: #e5a951;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #444;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.homepage-bridge-btn:hover {
  background: #000;
  color: #fff;
  border-color: #e5a951;
}

/* Urgency Badges & Banners */
.urgency-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.urgency-badge-box {
  padding: 26px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
}

.urgency-badge-box.red {
  background: linear-gradient(135deg, #781c1e, #a82e31);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(120, 28, 30, 0.35);
}

.urgency-badge-box.green {
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(27, 67, 50, 0.35);
}

.urgency-badge-box .badge-title {
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  opacity: 0.95;
  margin-bottom: 8px;
}

.urgency-badge-box .badge-main {
  font-size: 1.65rem;
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.35;
}

/* 6차 산업 인증 구조 카드 */
.six-industry-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
  text-align: center;
}

.six-step-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.six-badge {
  display: inline-block;
  background: #222;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.six-step-card:nth-child(1) .six-badge { background: var(--accent-green); }
.six-step-card:nth-child(2) .six-badge { background: var(--primary); }
.six-step-card:nth-child(3) .six-badge { background: #3b5998; }

.six-step-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.six-step-card p {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.65;
}

.six-industry-card {
  background: #fff;
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  padding: 28px 22px;
  margin: 24px 0;
  text-align: center;
}

.industry-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.flow-node {
  background: var(--bg-warm);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 14px 18px;
  min-width: 140px;
}

.flow-node h5 {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.flow-node p {
  font-weight: 700;
  font-size: 1.15rem;
}

.flow-arrow {
  font-size: 1.35rem;
  color: var(--accent-gold);
  font-weight: bold;
}

.industry-cert-seal {
  display: inline-block;
  background: var(--accent-gold);
  color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.process-step {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
}

.step-num {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 1.02rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* Ripening Guide */
.ripening-step-container, .ripening-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.ripening-box, .ripening-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.2s ease;
}

.ripening-box:hover, .ripening-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ripening-step-badge, .ripening-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 12px;
  background: #ece7de;
  color: #444;
  margin-bottom: 12px;
}

.ripening-box.featured .ripening-step-badge, .ripening-card.active-state .ripening-tag {
  background: var(--primary);
  color: #ffffff;
}

.ripening-box h5, .ripening-card h5 {
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.ripening-box p, .ripening-card p {
  font-size: 1.08rem;
  color: var(--text-sub);
  line-height: 1.65;
}

/* Review Visualizer & Cards */
.review-chart-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #222;
}

.chart-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

.chart-header span {
  font-size: 0.98rem;
  color: var(--text-muted);
}

.chart-bar-item {
  margin-bottom: 16px;
}

.chart-bar-item:last-child {
  margin-bottom: 0;
}

.bar-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.bar-track {
  width: 100%;
  height: 14px;
  background: #eeeae4;
  border-radius: 7px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #b33939, var(--primary));
  border-radius: 7px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card.top-review {
  border-left: 4px solid var(--primary);
  background: #fffdfa;
}

.review-stars {
  color: #ffaa00;
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-tag {
  font-size: 0.88rem;
  background: #eee;
  padding: 4px 10px;
  border-radius: 6px;
  color: #555;
  font-weight: 700;
  margin-left: auto;
}

.review-text {
  font-size: 1.12rem;
  line-height: 1.85;
  color: #333;
  margin-bottom: 16px;
}

mark.hl {
  background-color: var(--highlight-yellow);
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: 700;
  color: #1a1a1a;
}

mark.hl-green {
  background-color: var(--highlight-green);
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: 700;
  color: #0b3d1f;
}

.review-author {
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px dashed #eee;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
}

/* Price Reasons */
.price-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.price-reason-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: var(--shadow-sm);
}

.reason-num {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.price-reason-box h5 {
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.price-reason-box p {
  font-size: 1.08rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* Pricing Cards */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px 22px;
  position: relative;
  text-align: center;
  transition: all 0.2s ease;
}

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

.price-card.featured {
  border: 2.5px solid var(--primary);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 14px;
  letter-spacing: 0.5px;
}

.price-card .weight {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.price-card .target {
  font-size: 1.08rem;
  color: var(--text-sub);
  margin-bottom: 18px;
  min-height: 42px;
  line-height: 1.6;
}

.price-card .amount {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--primary);
}

.price-card .amount span {
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
}

/* Notice Box */
.notice-box {
  background: #fdfbf7;
  border-left: 4px solid var(--accent-gold);
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

.notice-box strong {
  color: #222;
}

/* Call To Action Buttons */
.cta-box {
  background: #fff;
  border: 2px solid #222;
  border-radius: 14px;
  padding: 34px 24px;
  text-align: center;
  margin: 30px 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  background: #03c75a; /* Naver Green */
  color: #fff;
  padding: 20px 28px;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(3, 199, 90, 0.35);
  transition: all 0.2s ease;
  margin-top: 16px;
}

.cta-btn:hover {
  background: #02b150;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 199, 90, 0.45);
}

.cta-btn.burgundy {
  background: var(--primary);
  box-shadow: 0 4px 14px rgba(148, 41, 43, 0.35);
}

.cta-btn.burgundy:hover {
  background: var(--primary-dark);
}

.hero-core-phrase {
  display: block;
  font-size: 1.62rem;
  font-weight: 900;
  color: #2B1E15;
  margin: 14px auto;
  line-height: 1.55;
  letter-spacing: -0.5px;
  word-break: keep-all;
}

/* Hero Brand Logo & Badge Side-by-Side */
.hero-brand-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 26px auto;
  max-width: 100%;
}

.hero-brand-logo {
  width: 104px;
  height: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 18px rgba(106, 7, 15, 0.18));
}

.hero-brand-badge {
  background: #B93A2C;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: 30px;
  letter-spacing: -0.3px;
  box-shadow: 0 4px 14px rgba(185, 58, 44, 0.28);
  text-align: center;
  line-height: 1.45;
  word-break: keep-all;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-brand-badge .badge-phrase-1,
.hero-brand-badge .badge-phrase-2 {
  display: inline;
}

@media (max-width: 600px) {
  .hero-brand-header {
    gap: 14px;
    margin-bottom: 22px;
  }
  .hero-brand-logo {
    width: 84px;
  }
  .hero-brand-badge {
    display: flex;
    flex-direction: column;
    padding: 10px 18px;
    font-size: 1.02rem;
    border-radius: 20px;
    line-height: 1.4;
    gap: 2px;
  }
  .hero-brand-badge .badge-phrase-1,
  .hero-brand-badge .badge-phrase-2 {
    display: block;
  }
}

.detail-viewport.mobile-mode .hero-brand-header {
  gap: 14px;
  margin-bottom: 22px;
}
.detail-viewport.mobile-mode .hero-brand-logo {
  width: 84px;
}
.detail-viewport.mobile-mode .hero-brand-badge {
  display: flex;
  flex-direction: column;
  padding: 10px 18px;
  font-size: 1.02rem;
  border-radius: 20px;
  line-height: 1.4;
  gap: 2px;
}
.detail-viewport.mobile-mode .hero-brand-badge .badge-phrase-1,
.detail-viewport.mobile-mode .hero-brand-badge .badge-phrase-2 {
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 680px) {
  .hero-core-phrase {
    font-size: 1.38rem !important;
    line-height: 1.5 !important;
  }
  .detail-section {
    padding: 42px 18px;
  }
  .section-title {
    font-size: 2.05rem;
    line-height: 1.3;
  }
  .section-subtitle {
    font-size: 1.18rem;
    line-height: 1.75;
  }
  .urgency-banner-grid, .six-industry-container, .ripening-step-container, .water-cert-grid, .packaging-steps {
    grid-template-columns: 1fr;
  }
  .control-header {
    padding: 10px 14px;
  }
  .homepage-bridge-card, .cs-phone-banner {
    flex-direction: column;
    text-align: center;
  }
  .comparison-table th, .comparison-table td {
    padding: 12px 8px;
    font-size: 0.98rem;
    line-height: 1.5;
  }
}
