/* ==========================================
   REMONARY 리모나리 가맹 유치 사이트
   Color System: Deep Forest Green + Ivory
   ========================================== */

:root {
  --green-900: #1a2e1a;
  --green-800: #1f3a1f;
  --green-700: #254525;
  --green-600: #2d5a2d;
  --green-500: #3a7a3a;
  --green-400: #4a9a4a;
  --green-300: #6ab96a;
  --green-100: #e8f5e8;
  --green-50:  #f4faf4;
  --ivory:     #faf8f3;
  --ivory-dark:#f0ece2;
  --cream:     #f7f4ee;
  --gold:      #c8a84b;
  --gold-light:#e8d27a;
  --charcoal:  #2a2a2a;
  --gray-700:  #444;
  --gray-500:  #666;
  --gray-300:  #aaa;
  --white:     #ffffff;

  --font-serif: 'Noto Serif KR', serif;
  --font-sans:  'Noto Sans KR', sans-serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --radius:     12px;
  --radius-lg:  20px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 100px 0; }

/* ===== SECTION LABELS ===== */
.section-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green-500);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.section-badge.light {
  color: var(--gold-light);
  background: rgba(200,168,75,.08);
  border-color: rgba(200,168,75,.2);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.3;
  margin-bottom: 20px;
  word-break: keep-all;
}
.section-title.light { color: var(--white); }
.section-title.center-text { text-align: center; }
.section-sub {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 56px;
}
.section-sub.light { color: rgba(255,255,255,.65); }
.br-mobile { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: .92rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-900);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,168,75,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--white);
}
.btn-primary-green {
  background: var(--gold);
  color: var(--green-900);
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-primary-green:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-white-green {
  background: var(--white);
  color: var(--green-800);
}
.btn-white-green:hover {
  background: var(--gold);
  color: var(--green-900);
  transform: translateY(-2px);
}
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--green-800);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-submit:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-100);
  color: var(--green-500);
  font-size: .85rem;
  text-align: center;
  padding: 40px;
  border-radius: var(--radius);
  min-height: 200px;
}
.img-placeholder i { font-size: 2rem; }

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  transition: var(--transition);
}
.nav-header.scrolled {
  background: rgba(250,248,243,.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.nav-header.scrolled .nav-inner { padding: 14px 24px; }
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-en {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--green-800);
}
.logo-kr {
  font-size: .65rem;
  color: var(--gray-500);
  letter-spacing: .12em;
}
.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-800);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-menu a:hover {
  color: var(--green-500);
  background: var(--green-50);
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  color: var(--green-800);
  font-size: 1.1rem;
  transition: var(--transition);
}
.nav-toggle:hover { background: var(--green-50); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-900);
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.45;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(74,154,74,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,46,26,.82) 0%,
    rgba(31,58,31,.65) 50%,
    rgba(26,46,26,.85) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.3);
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 28px;
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-title-question {
  display: block;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  color: rgba(255,255,255,.5);
  font-weight: 500;
  letter-spacing: .02em;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-title-answer {
  display: block;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.2;
  font-weight: 800;
}
.hero-title-accent {
  color: var(--gold);
  position: relative;
}
.hero-title-accent::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold);
  opacity: .5;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  padding: 11px 18px;
  border-radius: 99px;
  white-space: nowrap;
  flex: 1;
}
.pill i { color: var(--green-300); font-size: .85rem; flex-shrink: 0; }
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===== RECRUIT BANNER ===== */
.recruit-banner {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 60%, #2a4a2a 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.recruit-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(200,168,75,.06);
  pointer-events: none;
}
.recruit-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(200,168,75,.35);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 99px;
}
.recruit-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
  word-break: keep-all;
}
.recruit-title em {
  font-style: normal;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.recruit-desc {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 48px;
  line-height: 1.8;
}
.recruit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recruit-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,168,75,.18);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow .3s ease, transform .3s ease, background .3s ease;
}
.recruit-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
}
.recruit-card-icon {
  width: 48px; height: 48px;
  background: rgba(200,168,75,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.recruit-card-main {
  font-size: .98rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 10px;
  word-break: keep-all;
}
.recruit-card-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .recruit-cards { grid-template-columns: 1fr; gap: 16px; }
  .recruit-title { margin-bottom: 32px; }
}

/* ===== BRAND INTRO ===== */
.brand-intro { background: var(--ivory); }
.brand-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.brand-point {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 36px;
}
.brand-point:last-child { margin-bottom: 0; }
.brand-point-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--green-100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
  font-size: 1.1rem;
}
.brand-point h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
}
.brand-point p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.brand-image-block { display: flex; flex-direction: column; gap: 16px; }
.brand-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
}
.brand-image-main img { width: 100%; height: 100%; object-fit: cover; }
.brand-image-sub {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.brand-stat {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.brand-stat strong {
  display: block;
  font-size: 1.3rem; font-weight: 900;
  color: var(--green-700);
  font-family: var(--font-serif);
  margin-bottom: 6px;
}
.brand-stat span {
  font-size: .72rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ===== PRODUCTS ===== */
.products { background: var(--cream); }
.prod-tabs {
  display: flex; gap: 12px;
  margin-bottom: 40px;
}
.prod-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 99px;
  font-size: .9rem; font-weight: 700;
  border: 2px solid var(--ivory-dark);
  color: var(--gray-500);
  background: var(--white);
  transition: var(--transition);
}
.prod-tab.active, .prod-tab:hover {
  border-color: var(--green-600);
  color: var(--green-700);
  background: var(--green-50);
}
.prod-panel { display: none; }
.prod-panel.active { display: block; }
.prod-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.prod-layout > .prod-info {
  padding-left: 32px;
}
.prod-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  background: var(--ivory-dark);
}
.prod-main-img img { width: 100%; height: 100%; object-fit: contain; background: var(--ivory-dark); }
.prod-thumbs {
  display: flex; gap: 10px;
  margin-top: 12px; flex-wrap: wrap;
}
.prod-thumb {
  width: 72px; height: 72px;
  border-radius: 10px;
  object-fit: contain;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  background: var(--ivory-dark);
}
.prod-thumb.active, .prod-thumb:hover {
  border-color: var(--green-500);
}
.prod-category {
  font-size: .72rem; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 10px;
}
.prod-name {
  font-family: var(--font-serif);
  font-size: 1.9rem; font-weight: 800;
  color: var(--green-900);
  line-height: 1.15;
  margin-bottom: 8px;
}
.prod-eng {
  font-size: .8rem;
  color: var(--gray-300);
  letter-spacing: .05em;
  margin-bottom: 20px;
}
.prod-divider {
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}
.prod-desc {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
}
.prod-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 8px;
}
.prod-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: var(--gray-700);
}
.prod-features li i {
  color: var(--green-500); font-size: .75rem;
  width: 18px; height: 18px; min-width: 18px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===== GALLERY ===== */
.gallery { background: var(--ivory); }
.gallery-grid {
  display: grid; gap: 24px;
  margin-bottom: 20px;
}
.gallery-grid-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-grid-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.gallery-card img { width: 100%; height: 420px; object-fit: cover; object-position: center top; }
.gallery-caption {
  padding: 16px 20px;
  font-size: .88rem; font-weight: 600;
  color: var(--green-800);
  text-align: center;
}
.gallery-notice {
  font-size: .78rem;
  color: var(--gray-300);
  text-align: center;
  margin-top: 12px;
}

/* ===== CHECKLIST ===== */
.checklist-section {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 100%);
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
}
.checklist-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(200,168,75,.3);
}
.check-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.check-content { flex: 1; }
.check-content h4 {
  font-size: .95rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.check-content p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.check-badge {
  width: 30px; height: 30px; min-width: 30px;
  background: var(--green-700);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-300);
  font-size: .75rem;
}
.checklist-result {
  text-align: center;
  padding: 48px 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
}
.checklist-result-text {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 16px;
}
.checklist-result-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 32px;
}

/* ===== DIFFERENCE ===== */
.difference { background: var(--ivory); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.diff-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
  transform: translateY(-4px);
}
.diff-num {
  font-size: 3rem; font-weight: 900;
  color: var(--green-100);
  font-family: var(--font-serif);
  position: absolute; top: 20px; right: 24px;
  line-height: 1;
}
.diff-icon {
  font-size: 1.8rem;
  color: var(--green-500);
  margin-bottom: 16px;
}
.diff-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--green-800);
  margin-bottom: 12px;
  line-height: 1.4;
}
.diff-card p {
  font-size: .87rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== BENEFITS ===== */
.benefits {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 100%);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.benefit-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}
.benefit-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(200,168,75,.3);
  transform: translateY(-4px);
}
.benefit-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(200,168,75,.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: .95rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}
.benefit-card p {
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 16px;
}
.benefit-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold);
  border: 1px solid rgba(200,168,75,.3);
  padding: 3px 12px;
  border-radius: 99px;
}

/* ===== WHY ===== */
.why { background: var(--ivory); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.why-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 36px; }
.why-item { padding-left: 20px; border-left: 3px solid var(--green-100); }
.why-item-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 10px;
}
.why-num {
  font-size: .75rem; font-weight: 800;
  letter-spacing: .1em;
  color: var(--gold);
  background: rgba(200,168,75,.08);
  padding: 4px 10px; border-radius: 99px;
  min-width: 36px; text-align: center;
}
.why-item h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--green-800);
  line-height: 1.35;
}
.why-item p {
  font-size: .87rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== EDUCATION GALLERY ===== */
.edu-gallery {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 100%);
}
.edu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.edu-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--green-700);
  height: 240px;
}
.edu-card.large {
  grid-column: span 1;
  height: 240px;
}
.edu-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.edu-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white);
  font-size: .82rem; font-weight: 600;
}

/* ===== PROCESS ===== */
.process { background: var(--cream); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.step-circle {
  width: 56px; height: 56px;
  background: var(--green-800);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}
.step-circle span {
  font-size: .85rem; font-weight: 900;
  color: var(--gold);
  letter-spacing: .05em;
}
.step-line {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: var(--green-100);
  z-index: 1;
}
.step-icon {
  font-size: 1.4rem;
  color: var(--green-500);
  margin-bottom: 12px;
}
.step h4 {
  font-size: .95rem; font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
}
.step p {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 100%);
}
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 1rem; font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold-light); }
.faq-q-icon {
  color: var(--gold);
  margin-right: 10px;
  font-size: .9rem;
}
.faq-icon {
  min-width: 20px;
  color: var(--green-300);
  transition: transform .3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--gold-light);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 0 22px;
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(200,168,75,.08);
  pointer-events: none;
}
.cta-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.cta-banner-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}
.cta-banner-inner p {
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ===== CONTACT ===== */
.contact { background: var(--ivory); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 56px; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 700;
  color: var(--green-800);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green-100);
}
.contact-info ul { display: flex; flex-direction: column; gap: 20px; }
.contact-info li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .88rem; color: var(--gray-500);
  line-height: 1.6;
}
.contact-info li i {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--green-100);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
  font-size: .9rem;
}
.contact-info a { color: var(--green-600); font-weight: 600; }
.kakao-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: #3C1E1E !important;
  background: #FEE500;
  padding: 5px 12px;
  border-radius: 10px;
  font-size: .82rem; font-weight: 700;
  margin-top: 6px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(254,229,0,.35);
}
.kakao-link:hover {
  background: #f5da00;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(254,229,0,.5);
}

/* ===== CONTACT SLIDER ===== */
.contact-slider {
  margin-top: 28px;
  background: var(--green-800);
  border-radius: var(--radius);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
  min-height: 68px;
}
.contact-slide {
  display: none;
  align-items: center; gap: 14px;
  animation: slideIn .5s ease;
}
.contact-slide.active { display: flex; }
.contact-slide i {
  font-size: 1.3rem;
  color: var(--gold);
  min-width: 24px;
}
.contact-slide span {
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.contact-slide strong {
  color: var(--white);
  font-weight: 700;
}
.contact-slider-dots {
  display: flex; gap: 6px;
  justify-content: center;
  margin-top: 12px;
}
.contact-slider-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-300);
  opacity: .3;
  cursor: pointer;
  transition: var(--transition);
}
.contact-slider-dots span.active {
  opacity: 1;
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { margin-bottom: 16px; }
label {
  font-size: .82rem; font-weight: 600;
  color: var(--gray-700);
}
.req { color: var(--green-500); }
input, textarea, select {
  padding: 13px 16px;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition: border-color .2s;
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--green-400);
  background: var(--white);
}
textarea { resize: vertical; min-height: 100px; }
.form-check-group { margin-bottom: 20px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .82rem; color: var(--gray-500);
  cursor: pointer;
}
.checkbox-label input { width: auto; margin-top: 3px; }
.link-underline {
  text-decoration: underline;
  color: var(--green-500);
}
.form-success {
  text-align: center;
  padding: 32px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.form-success i {
  font-size: 2.5rem;
  color: var(--green-500);
}
.form-success p {
  font-size: .95rem;
  color: var(--green-700);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-900);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; flex-wrap: wrap; gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand { max-width: 280px; }
.footer-logo-en {
  display: block;
  font-size: 1.1rem; font-weight: 800;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-kr {
  display: block;
  font-size: .65rem;
  color: var(--green-300);
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center;
}
.footer-links a {
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: space-between;
}
.footer-copy p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--green-800);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 900;
}
.scroll-top.visible {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  right: -100px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 950;
  transition: right .4s cubic-bezier(.4,0,.2,1);
}
.floating-btns.visible { right: 20px; }
.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 56px; height: 56px;
  border-radius: 14px;
  font-size: .62rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}
.float-btn svg, .float-btn i { font-size: 1.1rem; }
.float-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.float-phone {
  background: var(--green-700);
  color: var(--white);
}
.float-kakao {
  background: #FEE500;
  color: #3C1E1E;
}
.float-consult {
  background: var(--green-900);
  color: var(--gold);
  border: 1px solid rgba(200,168,75,.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr 1.5fr; gap: 32px; }
}

@media (max-width: 768px) {
  .br-mobile { display: block; }
  section { padding: 72px 0; }
  .nav-menu {
    display: none;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 16px 0; gap: 0;
    border-top: 1px solid var(--ivory-dark);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 24px; border-radius: 0; }
  .nav-toggle { display: flex; }
  .brand-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .edu-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .edu-card.large { grid-column: span 1; }
  .process-steps { flex-direction: column; gap: 16px; }
  .step-line { display: none; }
  .step { display: flex; flex-direction: row; gap: 16px; text-align: left; padding: 0; }
  .step-circle { margin: 0; }
  .step-icon { margin: 0; font-size: 1.1rem; display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .section-title { font-size: 1.6rem; }
  .prod-layout { grid-template-columns: 1fr; gap: 32px; }
  .prod-main-img { height: 300px; }
  .recruit-cards { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .brand-image-sub { grid-template-columns: repeat(3, 1fr); }
  .edu-grid { grid-template-columns: 1fr; }
  .edu-card.large { grid-column: span 1; }
  .hero-pills { flex-wrap: wrap; }
  .pill { flex: 0 0 calc(50% - 5px); white-space: normal; text-align: center; }
  .gallery-grid-2 { grid-template-columns: 1fr; }
}
