@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  --green: #2D6A4F;
  --green-light: #40916C;
  --green-dark: #1B4332;
  --orange: #FF8C42;
  --orange-dark: #E67A2E;
  --ivory: #F9F7F4;
  --ivory-dark: #F0EDE8;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --border: #E0DBD5;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ─── Layout ─────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* ─── Typography ──────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(45,106,79,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

h1, h2, h3 {
  line-height: 1.3;
  word-break: keep-all;
}

h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

h2 em {
  font-style: normal;
  color: var(--green);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ─── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.3);
}

.btn-orange {
  background: var(--orange);
  color: white;
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,140,66,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: white;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}

/* ─── HERO ────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  opacity: 0.35;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,67,50,0.85) 0%,
    rgba(27,67,50,0.7) 50%,
    rgba(27,67,50,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 100px;
}

.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-badge span {
  background: var(--orange);
  color: white;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: #74C69D;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-pain {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
}

.hero-pain-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

.hero-pain-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
  color: white;
}

.hero-stat-card strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #74C69D;
  margin-bottom: 4px;
}

.hero-stat-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.hero-problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.problem-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  color: white;
}

.problem-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.problem-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.problem-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ─── Section 1: 업종 선택 ─────────────────── */
#business-select {
  background: var(--white);
  padding: 72px 0;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.business-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 3px solid transparent;
  transition: all 0.25s;
  box-shadow: var(--shadow);
}

.business-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.business-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.business-card-overlay h3 {
  color: white;
  font-size: 18px;
  font-weight: 800;
}

.business-card-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

.business-card.active {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green), var(--shadow-lg);
}

.business-card.active .business-card-overlay {
  background: linear-gradient(to top, rgba(45,106,79,0.85) 0%, transparent 60%);
}

.business-card .check-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
}

.business-card.active .check-badge {
  opacity: 1;
  transform: scale(1);
}

/* ─── Dynamic content panels ──────────────── */
.dynamic-panel {
  display: none;
}
.dynamic-panel.active {
  display: block;
}

/* ─── Section 2: STEP 1 공급 ──────────────── */
#supply {
  background: var(--ivory);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.supply-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.supply-card .supply-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.supply-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
}

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

.supply-card ul li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.supply-card ul li:last-child {
  border-bottom: none;
}

.supply-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}

/* ─── Section 3: STEP 2 신선도 ────────────── */
#freshness {
  background: var(--white);
}

.freshness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.freshness-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.freshness-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
}

.freshness-card .card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.freshness-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.freshness-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.freshness-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

.freshness-card ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.freshness-result {
  margin-top: 40px;
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  color: white;
}

.freshness-result h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.freshness-result p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
}

/* ─── Section 4: STEP 3 파트너 인증 ───────── */
#partner {
  background: var(--ivory);
}

.partner-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.partner-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: flex-start;
}

.partner-step-num {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.partner-step h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.partner-step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.partner-step .tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag {
  background: rgba(45,106,79,0.1);
  color: var(--green-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.tag-orange {
  background: rgba(255,140,66,0.12);
  color: var(--orange-dark);
}

.cycle-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: var(--radius);
  padding: 40px;
  color: white;
}

.cycle-banner h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
}

.cycle-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cycle-item {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  min-width: 110px;
}

.cycle-arrow {
  color: rgba(255,255,255,0.5);
  font-size: 20px;
}

.cycle-result {
  margin-top: 24px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.cycle-result strong {
  font-size: 22px;
  color: #74C69D;
}

/* ─── Section 5: STEP 4 YamPick ───────────── */
#yampick {
  background: var(--white);
}

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

.yampick-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  text-align: center;
}

.yampick-card .yp-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.yampick-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
}

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

.yampick-flow {
  margin-top: 40px;
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
}

.yampick-flow p {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
}

/* ─── Section 6: 단가표 ───────────────────── */
#pricing {
  background: var(--ivory);
}

.pricing-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 40px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.pricing-tab {
  padding: 12px 20px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.pricing-tab:hover {
  color: var(--green);
}

.pricing-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
  background: var(--white);
}

.pricing-content {
  display: none;
}

.pricing-content.active {
  display: block;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-headline {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
  margin-bottom: 20px;
  grid-column: 1 / -1;
}

.pricing-headline p {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.7;
}

.pricing-headline em {
  font-style: normal;
  color: var(--green);
}

.price-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-table-wrap h4 {
  background: var(--green-dark);
  color: white;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
}

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

.price-table th {
  background: var(--ivory);
  padding: 12px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.price-table td {
  padding: 14px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table .item-name {
  font-weight: 600;
}

.price-table .price {
  font-weight: 700;
  color: var(--green-dark);
}

.compare-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table-wrap h4 {
  background: var(--orange);
  color: white;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
}

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

.compare-table th {
  background: var(--ivory);
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.compare-table th:first-child {
  text-align: left;
}

.compare-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}

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

.compare-table .fl-price {
  color: var(--green);
  font-weight: 800;
}

.compare-table .saving {
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
}

.pricing-saving-banner {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(45,106,79,0.08) 0%, rgba(45,106,79,0.03) 100%);
  border: 1px solid rgba(45,106,79,0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.saving-stat {
  text-align: center;
}

.saving-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
}

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

/* ─── Section 7: 신청하기 ────────────────── */
#apply {
  background: var(--green-dark);
  padding: 100px 0;
}

.apply-heading {
  text-align: center;
  margin-bottom: 60px;
  color: white;
}

.apply-heading h2 {
  color: white;
  margin-bottom: 16px;
}

.apply-heading h2 em {
  color: #74C69D;
  font-style: normal;
}

.apply-heading p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
}

.apply-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.apply-option {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}

.apply-option:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.apply-option.selected {
  background: rgba(116,198,157,0.15);
  border-color: #74C69D;
}

.apply-option .option-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.apply-option h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.apply-option .highlight {
  color: #74C69D;
}

.apply-option .option-perks {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apply-option .option-perks li {
  list-style: none;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.apply-option .option-perks li::before {
  content: '✓';
  color: #74C69D;
  font-weight: 800;
}

.apply-form {
  background: white;
  border-radius: var(--radius);
  padding: 48px;
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group label .req {
  color: var(--orange);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: var(--ivory);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: white;
}

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

.time-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.time-btn {
  padding: 12px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-muted);
  transition: all 0.2s;
  text-align: center;
}

.time-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.time-btn.selected {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.time-select-group {
  display: none;
}

.time-select-group.visible {
  display: block;
}

.form-submit {
  margin-top: 32px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  padding: 18px;
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Success state ────────────────────────── */
.apply-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.apply-success.visible {
  display: block;
}

.apply-success .success-icon {
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}

.apply-success h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.apply-success p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.success-detail {
  background: var(--ivory);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-align: left;
  margin-top: 20px;
}

.success-detail p {
  font-size: 15px;
  margin-bottom: 6px;
}

.success-detail strong {
  color: var(--green-dark);
}

/* ─── Footer / Sticky CTA ──────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
}

.sticky-cta-text strong {
  color: #74C69D;
}

.sticky-cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ─── Scroll animation ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ───────────────────────────── */
@media (max-width: 768px) {
  section { padding: 60px 0; }

  .hero-content .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right { display: none; }

  .hero-problem-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

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

  .supply-grid { grid-template-columns: 1fr; }
  .freshness-grid { grid-template-columns: 1fr; }
  .yampick-grid { grid-template-columns: 1fr; }
  .pricing-layout { grid-template-columns: 1fr; }
  .apply-options { grid-template-columns: 1fr; }

  .pricing-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0;
  }

  .apply-form { padding: 28px 20px; }

  .cycle-flow { gap: 6px; }
  .cycle-item { font-size: 12px; min-width: 80px; padding: 10px 8px; }

  .sticky-cta { padding: 12px 16px; }
  .sticky-cta-text { font-size: 13px; }
}

@media (max-width: 480px) {
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-problem-cards { gap: 6px; }
  .problem-card { padding: 14px 10px; }
  .problem-card h4 { font-size: 12px; }
}


/* ══════════════════════════════════════════
   HERO V2 — DUAL PROBLEM LAYOUT
══════════════════════════════════════════ */

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.hero-badge span {
  background: var(--orange);
  border-radius: 4px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 800;
}

.hero-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.hero-title em {
  font-style: normal;
  color: #FFD166;
}

/* ── Dual problem panels ── */
.hero-dual-problems {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-prob-panel {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px 20px;
  color: #fff;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.panel-header .pt {
  font-size: 22px;
}

.panel-header .pd {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.9;
}

.prob-result {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255,100,80,0.25);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #ffc9c0;
}

.hero-prob-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-prob-panel li {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.5;
}

/* ── VS circle ── */
.hero-vs-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto;
}

/* ── Solutions wrap ── */
.hero-solutions-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.sol-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.hero-sol-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-sol-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.sol-num {
  opacity: 0.6;
  margin-right: 4px;
}

.sol-arrow {
  margin-left: 4px;
  opacity: 0.6;
}

/* ── Dual CTA ── */
.hero-dual-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── business card hint ── */
.business-card-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ── Responsive hero v2 ── */
@media (max-width: 768px) {
  .hero-dual-problems {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
  }

  .hero-vs-circle {
    width: 40px;
    height: 40px;
    font-size: 12px;
    justify-self: center;
  }

  .hero-dual-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-dual-cta .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero-sol-grid {
    flex-direction: column;
    align-items: center;
  }
}


/* ── Hero v2 corrections ── */

/* Override pill style — sol-cards are full content cards */
.hero-sol-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 20px 22px;
  color: #fff;
  flex: 1 1 220px;
  min-width: 200px;
  white-space: normal;
  text-align: left;
}

.hero-sol-card h4 {
  font-size: 15px;
  font-weight: 800;
  margin: 8px 0 12px;
  color: #FFD166;
}

.hero-sol-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-sol-card li {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
}

.hero-sol-card li::before {
  content: '✓ ';
  color: #5CDB95;
}

.sol-arrow {
  font-size: 13px;
  font-weight: 700;
  color: #5CDB95;
  margin: 0;
}

.sol-num {
  font-size: 22px;
}

/* Fix .pt and .pd spans inside problem panels */
.hero-prob-panel li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-prob-panel li .pt {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.95;
}

.hero-prob-panel li .pd {
  font-size: 12px;
  opacity: 0.7;
  padding-left: 8px;
}

/* panel-header plain text (emoji + name) */
.panel-header {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 14px;
}


/* ══════════════════════════════════════════
   HERO V3 — CLEAN HOOK LAYOUT
══════════════════════════════════════════ */

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Override v2 dual-problems grid for v3 side-by-side hook panels */
.hero-dual-problems {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  gap: 0;
  margin-bottom: 0;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-hook-panel {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hook-tag {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hook-copy {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

.hook-copy strong {
  color: #FFD166;
}

.hook-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.hero-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.btn-white-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .hero-dual-problems {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1px auto;
  }

  .hero-divider {
    width: 100%;
    height: 1px;
  }

  .hero-hook-panel {
    padding: 28px 22px;
  }
}
