/* ===== 오티비 크루 Landing — Master CSS ===== */
html { scroll-behavior: smooth; }
:root {
  --brand: #FF630F;
  --brand-light: #ff8844;
  --brand-glow: rgba(255,99,15,0.25);
  --bg-primary: #0a0a0a;
  --bg-section: #0d0d0d;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --text-muted: #666666;
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --glass: blur(12px);
}

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

body {
  font-family:'Pretendard',-apple-system,BlinkMacSystemFont,sans-serif;
  background:var(--bg-section);
  color:#eee;
  line-height:1.6;
  overflow-x:hidden;
}

.container { max-width:1200px; margin:0 auto; padding:0 20px; }

h1,h2,h3 { font-family:'Noto Sans KR',sans-serif; font-weight:900; }

section { padding:100px 20px; }

.section-title {
  font-size:clamp(32px,5vw,48px);
  text-align:center;
  margin-bottom:70px;
  color:var(--text-primary);
  line-height: 1.25;
  word-break: keep-all;
  letter-spacing: -0.03em;
}
.section-title span { color: var(--brand); }

/* Common Premium Card Style */
.premium-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.premium-card:hover {
  border-color: var(--brand);
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ===== Navigation Bar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo img {
  height: 60px; /* Increased from 48px */
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--brand);
}
.nav-links .nav-cta {
  background: var(--brand);
  color: #000;
  padding: 8px 24px;
  border-radius: 50px;
}
.nav-links .nav-cta:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 15px var(--brand-glow);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
  border-radius: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Progress Bar ===== */
.progress-bar {
  position:fixed; top:0; left:0; width:0%;
  height:3px; background:var(--brand); z-index:1001;
  transition:width 0.1s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(255, 99, 15, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(255, 99, 15, 0.05) 0%, transparent 40%),
              url('img_01.jpg') no-repeat center center / cover;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
  background: linear-gradient(to bottom, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 99, 15, 0.1);
  border: 1px solid rgba(255, 99, 15, 0.3);
  color: var(--brand);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.hero-title .hook {
  display: block;
  opacity: 0.8;
  font-size: 0.6em;
  margin-bottom: 12px;
  color: var(--text-primary);
  background: none; -webkit-text-fill-color: initial; filter: none;
}

.hero-title .vision {
  display: block;
  background: linear-gradient(135deg, #fff 30%, var(--brand) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 99, 15, 0.3));
}

.sub-copy {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  word-break: keep-all;
  padding: 0; backdrop-filter: none; background: none;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1.2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
  border-color: rgba(255, 99, 15, 0.2);
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, var(--brand-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

.card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item { padding-left: 10px; border-left: 2px solid var(--brand); }
.stat-item .val { font-size: 42px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 5px; display: block; }
.stat-item .lab { font-size: 14px; color: var(--text-secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

@media (max-width: 1024px) {
  .hero { text-align: center; padding: 140px 0 80px; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .sub-copy { margin-left: auto; margin-right: auto; }
  .hero-visual { display: none; }
}

.cta-button {
  display:inline-block; padding:20px 55px;
  background: var(--brand); color:#000;
  font-size:20px; font-weight:900;
  text-decoration:none; border-radius:50px;
  transition:var(--transition); border:none;
  box-shadow: 0 0 20px rgba(255, 99, 15, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-button::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
}
.cta-button:hover::after {
  left: 100%;
}
.cta-button:hover {
  background:#fff; color:#000;
  transform:translateY(-5px) scale(1.05);
  box-shadow:0 15px 40px rgba(255, 99, 15, 0.5);
}

/* ===== Floating CTA ===== */
.floating-cta {
  position:fixed; bottom:30px; right:30px; z-index:9998;
  opacity:0; pointer-events:none;
  transition:opacity 0.3s ease;
  animation:float 3s ease-in-out infinite;
}
.floating-cta.visible { opacity:1; pointer-events:auto; }
.floating-btn {
  display:flex; align-items:center; justify-content:center;
  padding:18px 35px; background:#FEE500; color:#3C1E1E;
  font-size:18px; font-weight:900; text-decoration:none;
  border-radius:50px;
  box-shadow:0 8px 25px rgba(254,229,0,0.35);
  transition:var(--transition); white-space:nowrap; gap:8px;
}
.floating-btn:hover {
  background:#fff; transform:scale(1.1);
  box-shadow:0 12px 35px rgba(254,229,0,0.5);
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-10px); }
}

/* 모바일 플로팅 CTA — 중앙 정렬 + 좌우 여백 확보 */
@media (max-width: 768px) {
  .floating-cta {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: calc(100% - 32px);
    max-width: 420px;
  }
  .floating-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 50px;
    justify-content: center;
  }
  @keyframes float {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
  }
}

/* ===== Trust Stats ===== */
.trust-stats {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px; max-width:800px; margin:0 auto 50px;
}
.trust-stat {
  text-align:center; padding:40px 20px;
  background: var(--bg-card);
  backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.trust-stat:hover { 
  border-color: var(--brand); 
  transform: translateY(-5px); 
  background: rgba(255, 99, 15, 0.05);
}
.trust-stat:hover { border-color:var(--brand); transform:translateY(-5px); }
.trust-stat .number-group {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.trust-stat .number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--brand);
}
.trust-stat .symbol {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  color: var(--brand);
}
.trust-stat .label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.trust-body {
  text-align:center; max-width:700px; margin:0 auto;
  font-size:18px; color:var(--text-secondary);
  line-height:1.8; word-break:keep-all;
}
.trust-body strong { color:var(--brand); }

/* ===== Logo Marquee ===== */
.marquee-container {
  overflow:hidden; position:relative; width:100%;
  margin:50px auto 0; max-width:1200px;
  -webkit-mask-image:linear-gradient(to right,transparent,black 15%,black 85%,transparent);
  mask-image:linear-gradient(to right,transparent,black 15%,black 85%,transparent);
}
.logo-marquee-wrapper { overflow:hidden; margin-bottom:24px; }
.logo-marquee-track {
  display:flex; gap:32px; width:max-content;
  animation:scroll-marquee 40s linear infinite;
}
.logo-marquee-track--reverse {
  animation:scroll-marquee-reverse 45s linear infinite;
}
.logo-marquee-track img {
  height:72px; object-fit:contain;
  background:#fff; padding:12px 24px; border-radius:10px;
  filter:grayscale(60%) brightness(0.85);
  transition:filter 0.3s ease,transform 0.3s ease;
}
.logo-marquee-track img:hover {
  filter:grayscale(0%) brightness(1);
  transform:scale(1.05);
}
@keyframes scroll-marquee {
  0% { transform:translateX(0); }
  100% { transform:translateX(calc(-50% - 16px)); }
}
@keyframes scroll-marquee-reverse {
  0% { transform:translateX(calc(-50% - 16px)); }
  100% { transform:translateX(0); }
}

/* ===== Problem Cards ===== */
.problem-cards {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px; margin-bottom:60px;
}
.problem-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px; 
  padding: 40px 30px;
  text-align:left; transition:var(--transition);
  overflow: hidden;
}
.problem-card:hover { 
  border-color:var(--brand); 
  transform:translateY(-10px); 
  background: rgba(255, 255, 255, 0.05);
}
.problem-card img {
  width:100%; height:220px; object-fit:cover;
  border-radius:12px; margin-bottom:25px;
  filter: grayscale(100%);
  transition: var(--transition);
}
.problem-card:hover img { filter: grayscale(0%); }
.problem-card h3 { font-size:22px; color:var(--brand); margin-bottom:20px; line-height:1.4; }
.problem-card p { font-size:16px; color:var(--text-secondary); line-height:1.8; word-break:keep-all; }

/* ===== Value Hook (Hero Stats) ===== */
.value-hook-section {
  background:var(--bg-primary);
  padding:40px 20px 80px;
  margin-top:-60px; /* Hero와 살짝 겹치게 배치하여 연결성 강화 */
  position:relative;
  z-index:10;
}
.value-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  max-width:1100px;
  margin:0 auto;
}
.value-card {
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  padding:40px 30px;
  border-radius:20px;
  text-align:center;
  transition:all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter:blur(10px);
}
.value-card:hover {
  transform:translateY(-10px);
  background:rgba(255,255,255,0.06);
  border-color:var(--brand);
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}
.value-icon {
  font-size:48px;
  margin-bottom:24px;
  display:inline-block;
}
.value-card h3 {
  font-size:22px;
  color:#fff;
  margin-bottom:16px;
  font-weight:800;
}
.value-card p {
  font-size:16px;
  color:var(--text-secondary);
  line-height:1.7;
  word-break:keep-all;
}

@media (max-width:1024px) {
  .value-grid { gap:16px; }
  .value-card { padding:30px 20px; }
}

@media (max-width:768px) {
  .value-hook-section { margin-top:-40px; padding-bottom:60px; }
  .value-grid { grid-template-columns:1fr; gap:20px; }
  .value-card { padding:40px 20px; }
}

/* ===== Empathy Split ===== */
.empathy-split {
  display:grid; grid-template-columns:1fr 1fr;
  gap:50px; align-items:center; max-width:900px; margin:0 auto;
}
.empathy-split .text-side h3 {
  font-size:clamp(22px,3vw,28px); color:#fff; margin-bottom:20px;
}
.empathy-split .text-side p {
  font-size:18px; color:var(--text-secondary); line-height:1.8; word-break:keep-all;
}
.empathy-split .text-side strong { color:var(--brand); }
.empathy-split .photo-side img {
  width:100%; height:auto; border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,0.5); object-fit:cover;
}
.ceo-tag {
  margin-top:16px; padding:14px 20px;
  background:var(--bg-card); border-radius:var(--radius);
  border:1px solid var(--border);
}
.ceo-tag .name { font-weight:700; color:#fff; font-size:16px; }
.ceo-tag .title { font-size:13px; color:var(--brand); margin-top:4px; }

/* ===== Solution Items ===== */
.solution-item {
  background: var(--bg-card);
  backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
  padding: 40px; margin-bottom:30px; border-radius:12px;
  transition: var(--transition);
}
.solution-item:hover {
  transform: translateX(10px);
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.05);
}
.solution-item h3 { font-size:26px; color:var(--brand); margin-bottom:15px; }
.solution-item p {
  font-size:18px; color:var(--text-secondary); line-height:1.8; word-break:keep-all;
}
.solution-item strong { color:var(--brand); }

/* ===== Salary Table ===== */
.salary-table {
  width:100%; max-width:800px; margin:0 auto 40px;
  border-collapse:collapse; background:var(--bg-card);
  border-radius:12px; overflow:hidden;
}
.salary-table th,.salary-table td {
  padding:20px; text-align:center;
  border-bottom:1px solid var(--border);
}
.salary-table th {
  background:var(--brand); color:#000;
  font-weight:900; font-size:18px;
}
.salary-table td { font-size:18px; color:#eee; }
.salary-table tr:last-child td { border-bottom:none; }

.highlight-box {
  background:var(--brand); padding:30px; border-radius:12px;
  text-align:center; margin:40px auto; max-width:600px;
}
.highlight-box h3 {
  font-size:clamp(24px,3vw,32px); color:#000;
  font-weight:900; margin-bottom:10px;
}
.highlight-box p { font-size:18px; color:#000; font-weight:700; }

/* ===== Comparison Section (Before/After) ===== */
.comparison-section {
  max-width:900px;
  margin:0 auto 60px;
}
.comparison-header {
  display:grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  margin-bottom: 20px;
  text-align: center;
}
.comp-label {
  font-size: 18px;
  font-weight: 800;
  padding: 15px;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-before {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-bottom: none;
}
.comp-after {
  background: rgba(255, 99, 15, 0.1);
  color: var(--brand);
  border: 1px solid var(--brand);
  border-bottom: none;
}
.comp-arrow-spacer { width: 40px; }
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  margin-bottom: 15px;
  align-items: stretch;
}
.comp-item {
  padding: 30px;
  background: var(--bg-card);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.comp-bad {
  opacity: 0.6;
  border-radius: 12px;
}
.comp-good {
  border-color: rgba(255, 99, 15, 0.3);
  background: rgba(255, 99, 15, 0.05);
  border-radius: 12px;
}
.comp-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255, 99, 15, 0.5);
}

@media (max-width:768px) {
  .comparison-header {
    grid-template-columns:1fr;
    gap:8px;
  }
  .comparison-header .comp-arrow-spacer { display:none; }
  .comp-label {
    border-radius:var(--radius);
    border-bottom:1px solid;
  }
  .comparison-row {
    grid-template-columns:1fr;
    gap:8px;
  }
  .comp-arrow {
    transform:rotate(90deg);
    padding:4px 0;
    font-size:16px;
  }
  .comp-item {
    padding:16px;
  }
}

/* ===== Proof Stat ===== */
.proof-stat {
  text-align:center; margin-top:50px; padding:30px;
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius); max-width:500px; margin-left:auto; margin-right:auto;
}
.proof-stat .number { font-size:32px; font-weight:900; color:var(--brand); }
.proof-stat .desc { font-size:16px; color:var(--text-secondary); margin-top:8px; }

/* ===== Evidence Image ===== */
.evidence-image-wrap {
  max-width:900px; margin:50px auto 0; text-align:center;
}
.evidence-image-wrap img {
  width:100%; height:auto; border-radius:var(--radius);
  border:1px solid var(--border); box-shadow:0 10px 40px rgba(0,0,0,0.5);
  transition:var(--transition);
}
.evidence-image-wrap img:hover {
  transform:scale(1.02); border-color:var(--brand);
}
.evidence-caption { color:var(--brand); font-size:14px; font-weight:700; margin-top:15px; }


/* ===== Want Section ===== */
.want-list {
  max-width:700px; margin:0 auto 30px;
  list-style:none; text-align:center;
}
.want-list li {
  font-size:clamp(18px,2.5vw,24px); color:#fff;
  padding:16px 0; border-bottom:1px solid rgba(255,255,255,0.08);
  font-weight:700;
}
.want-list li::before { content:'· '; color:var(--brand); }
.want-sub {
  text-align:center; font-size:16px;
  color:var(--text-muted); margin-bottom:40px;
}

/* ===== Accordion ===== */
.accordion { max-width:800px; margin:0 auto; }
.accordion-trigger {
  display: block;
  text-align:center;
  margin: 30px auto;
  padding: 15px 30px;
  background: var(--bg-card);
  border: 1px solid var(--brand);
  border-radius: 50px;
  font-size:16px; color:var(--brand);
  cursor:pointer; font-weight:700;
  transition:var(--transition);
  max-width: 400px;
}
.accordion-trigger:hover { 
  background: var(--brand); 
  color: #000;
  box-shadow: 0 4px 15px var(--brand-glow);
}
.accordion-content {
  max-height:0; overflow:hidden;
  transition:max-height 0.5s ease;
}
.accordion-content.open { max-height:1000px; }
.checklist-item {
  background:var(--bg-card); padding:25px 30px;
  margin-bottom:15px; border-radius:8px;
  border-left:4px solid var(--brand);
  font-size:17px; color:#eee; word-break:keep-all;
}
.checklist-item strong { color:var(--brand); }

/* ===== Honest Section ===== */
.honest-box {
  max-width:800px; margin:0 auto; text-align:center;
}
.honest-box h2 {
  font-size:clamp(26px,3.5vw,36px); color:#fff; margin-bottom:30px;
}
.honest-box p {
  font-size:18px; color:var(--text-secondary);
  line-height:1.8; word-break:keep-all;
}
.honest-box strong { color:var(--brand); }

/* ===== Roadmap ===== */
.roadmap-container {
  display:flex; flex-direction:column; gap:25px;
  max-width:1000px; margin:0 auto;
}
@media (min-width:768px) {
  .roadmap-container { flex-direction:row; }
}
.roadmap-step {
  flex:1; background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius); padding:40px 30px; text-align:left;
  transition:var(--transition); position:relative;
}
.roadmap-step:hover {
  border-color:var(--brand); transform:translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.roadmap-step .step-num {
  display:inline-block; padding:4px 12px; background:var(--brand);
  color:#000; font-weight:900; font-size:12px; border-radius:4px;
  margin-bottom:20px;
}
.roadmap-step h3 { font-size:22px; margin-bottom:15px; color:var(--text-primary); font-weight:900; }
.roadmap-step p { font-size:16px; color:var(--text-secondary); line-height:1.7; word-break:keep-all;}
.roadmap-step strong { color:var(--brand); font-size:1.1em; }

/* Desktop Arrow Connectors */
@media (min-width:1024px) {
  .roadmap-step:not(:last-child)::after {
    content:'→'; position:absolute; right:-25px; top:50%; transform:translateY(-50%);
    color:var(--brand); font-size:24px; font-weight:900; opacity:0.5;
  }
}

/* ===== CTA Final & Application Form ===== */
.cta-final {
  max-width:800px; margin:0 auto; text-align:center;
}
.application-form-container {
  max-width:700px; margin: 0 auto 50px; text-align:left;
  background: var(--bg-card);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  padding: 50px; border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.form-row { display:flex; gap:20px; }
.form-row .form-group { flex:1; }
@media (max-width: 600px) {
  .form-row { flex-direction: column; gap: 0; }
  .application-form-container { padding: 30px 20px; }
}
.form-group { margin-bottom:20px; }
.form-group label {
  display:block; font-size:15px; color:var(--text-secondary);
  font-weight:700; margin-bottom:8px;
}
.form-group input, .form-group textarea, .form-group select {
  width:100%; padding:18px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 12px;
  color:#fff; font-size:16px; font-family:inherit;
  transition:var(--transition);
}
.form-group select {
  background-color: #1a1a1a !important;
}
.form-group select option {
  background-color: #1a1a1a;
  color: #fff;
}
.form-group input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  margin: 0;
  cursor: pointer;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline:none; border-color:var(--brand);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 15px var(--brand-glow);
}
.form-actions {
  display:flex; flex-direction:column; gap:15px; margin-top:30px;
}
.cta-kakao-btn {
  width:100%; padding:20px; background:#FEE500; color:#3C1E1E;
  font-size:18px; font-weight:900; text-align:center;
  border:none; border-radius:8px; cursor:pointer;
  transition:var(--transition); display:flex; align-items:center; justify-content:center; gap:8px;
}
.cta-kakao-btn:hover { background:#fff; transform:translateY(-2px); box-shadow:0 5px 15px rgba(254,229,0,0.3); }
.cta-email-btn {
  width:100%; padding:20px; background:var(--bg-primary); color:#fff;
  font-size:18px; font-weight:700; text-align:center;
  border:1px solid var(--border); border-radius:8px; cursor:pointer;
  transition:var(--transition); display:flex; align-items:center; justify-content:center; gap:8px;
}
.cta-email-btn:hover { border-color:var(--brand); color:var(--brand); }
/* ===== Crew Profiles ===== */
.crew-profiles-wrap {
  margin: 60px auto;
  text-align: center;
  max-width: 900px;
}
.crew-badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 40px;
}
.crew-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.crew-card {
  background: var(--bg-card);
  width: calc(100% / 4 - 15px);
  max-width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.crew-row:not(.bottom-row) .crew-card {
  max-width: 210px;
}
.crew-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #333333;
}
.crew-card .crew-role {
  font-size: 13px;
  color: var(--brand);
  font-weight: 700;
  margin-top: 15px;
}
.crew-card .crew-name {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 5px;
}

/* ===== Video Types Grid ===== */
.video-types-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.v-type-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 35px 20px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.v-type-card:hover {
  border-color: var(--brand);
  background: rgba(255, 99, 15, 0.08);
  transform: scale(1.05);
  box-shadow: 0 10px 25px var(--brand-glow);
  z-index: 2;
}
.v-type-card .num {
  font-size: 15px;
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 12px;
}
.v-type-card .name {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  word-break: keep-all;
  line-height: 1.5;
}

/* ===== Work Conditions ===== */
.work-conditions {
  margin-top:50px; padding:30px;
  background:var(--bg-card); border-radius:var(--radius);
  max-width:600px; margin-left:auto; margin-right:auto;
}
.work-conditions h4 { color:var(--brand); font-size:20px; font-weight:700; margin-bottom:15px; }
.work-conditions p { font-size:18px; color:var(--text-secondary); line-height:2; }

/* ===== Footer ===== */
footer {
  background:var(--bg-primary); padding:40px 20px;
  text-align:center; border-top:1px solid var(--border);
  margin-top:80px;
}
footer h3 { color:#fff; font-size:20px; margin-bottom:20px; }
footer p { color:var(--text-muted); font-size:14px; line-height:1.8; margin-bottom:10px; }
footer a { color:var(--text-muted); text-decoration:none; transition: var(--transition); }
footer a:hover { color: #fff; text-decoration:underline; }
.copyright { color:#666; font-size:12px; margin-top:20px; }

/* ===== Mobile ===== */
@media (max-width:768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 66px; 
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .hero { background-attachment:scroll; }
  .trust-stats { grid-template-columns:1fr; gap:12px; }
  .empathy-split { grid-template-columns:1fr; gap:30px; }
  .empathy-split .photo-side { order:-1; }
  .logo-marquee-track img { height:48px; padding:8px 16px; }
  .logo-marquee-track { gap:16px; animation-duration:30s; }
  .logo-marquee-track--reverse { animation-duration:35s; }
  .marquee-container {
    -webkit-mask-image:linear-gradient(to right,transparent,black 5%,black 95%,transparent);
    mask-image:linear-gradient(to right,transparent,black 5%,black 95%,transparent);
  }
}

/* ===== Field Photo Mobile Override ===== */
@media (max-width: 768px) {
  .field-photos-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
  }
  .field-photo-card {
    aspect-ratio: 16 / 9; /* Landscape for mobile better view */
  }
}
.field-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px auto 0;
  max-width: 1200px;
}
.field-photo-card {
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2; /* Landscape ratio */
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--bg-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.img-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  border-color: var(--brand);
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.img-wrap:hover img {
  transform: scale(1.08);
}
.field-photo-caption {
  margin-top: 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1.5;
  word-break: keep-all;
  transition: color 0.3s ease;
}
.field-photo-card:hover .field-photo-caption {
  color: var(--brand);
}



/* 공통 p 간격 */
.solution-item p,
.empathy-split p,
.honest-box p,
.problem-card p,
.trust-body p {
  margin-bottom: 0.75em;
  line-height: 1.9;
}
.solution-item p:last-child,
.honest-box p:last-child,
.trust-body p:last-child {
  margin-bottom: 0;
}

/* 모바일 최적화 */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 30px;
    line-height: 1.5;
  }
  .hero .sub-copy {
    font-size: 16px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .problem-card {
    padding: 24px 20px;
  }
  .problem-card h3 {
    font-size: 18px;
  }
  .problem-card p {
    font-size: 15px;
    line-height: 1.85;
  }

  .empathy-split {
    flex-direction: column;
  }
  .photo-side {
    margin-top: 32px;
    width: 100%;
  }
  .photo-side img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
  .text-side h3 {
    font-size: 22px;
  }
  .text-side p {
    font-size: 16px;
    line-height: 1.9;
  }

  .solution-item h3 {
    font-size: 22px;
  }
  .solution-item p {
    font-size: 16px;
  }

  .salary-table {
    font-size: 14px;
  }
  .salary-table th,
  .salary-table td {
    padding: 10px 8px;
  }

  .roadmap-container {
    flex-direction: column;
    gap: 20px;
  }
  .roadmap-step {
    width: 100%;
  }

  .video-types-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .v-type-card {
    padding: 12px 8px;
    font-size: 12px;
  }

  .crew-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .crew-card {
    width: calc(50% - 8px);
  }

  .honest-box {
    padding: 28px 20px;
  }
  .honest-box h2 {
    font-size: 22px;
  }
  .honest-box p {
    font-size: 16px;
    line-height: 1.9;
  }

  .form-row {
    flex-direction: column;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }
  .cta-email-btn,
  .cta-kakao-btn {
    font-size: 15px;
    padding: 16px 20px;
    width: 100%;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
  }
  .trust-stat .number {
    font-size: 42px;
  }

  .nav-links {
    font-size: 16px;
  }

  /* 동반성장 스토리 2열 → 1열 전환 */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ===== Form Success State ===== */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 30px;
  animation: fadeInUp 0.6s ease;
}
.form-success .success-icon {
  font-size: 64px;
  margin-bottom: 24px;
  animation: bounceIn 0.8s ease;
}
.form-success h3 {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--brand);
  margin-bottom: 16px;
  font-weight: 900;
}
.form-success p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.form-success .success-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Loading Button State */
.cta-email-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== FAQ Section ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(255, 99, 15, 0.4);
  background: rgba(255, 255, 255, 0.05);
}
.faq-item.open {
  border-color: var(--brand);
  background: rgba(255, 99, 15, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
  gap: 16px;
}
.faq-q:hover { color: var(--brand); }
.faq-arrow {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--brand);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0 30px;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 30px 24px;
}
.faq-a p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .faq-q {
    font-size: 15px;
    padding: 16px 18px;
  }
  .faq-a p {
    font-size: 15px;
  }
}

/* ===== Surge Popup Modal ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
  padding: 16px;
  box-sizing: border-box;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: #000;
  width: 100%;
  max-width: 480px;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  border: 1px solid #222;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #666;
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}
.modal-close:hover { color: #fff; }
.modal-accent {
  width: 40px;
  height: 4px;
  background: var(--brand);
  margin-bottom: 24px;
  border-radius: 2px;
}
.modal-header h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
  word-break: keep-all;
}
.modal-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  word-break: keep-all;
}
.modal-highlight {
  color: var(--brand) !important;
  font-weight: 700;
  margin-top: 24px;
}
.modal-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.noshow-today {
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.noshow-today input {
  accent-color: var(--brand);
}
.modal-confirm {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.modal-confirm:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 16px;
    align-items: center;
  }
  .modal-box {
    padding: 28px 20px;
    max-width: calc(100% - 32px);
    border-radius: 16px;
  }
  .modal-header h2 { font-size: 20px; }
  .modal-body p { font-size: 14px; line-height: 1.7; }
  .modal-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }
  .noshow-today { justify-content: center; }
  .modal-confirm { width: 100%; text-align: center; padding: 14px 20px; }
  .modal-highlight { font-size: 14px; }
  .modal-accent { margin-bottom: 16px; }
}

/* ===== Global Animations & Utilities ===== */
@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(255, 99, 15, 0.2); }
  50% { box-shadow: 0 0 20px rgba(255, 99, 15, 0.5); }
  100% { box-shadow: 0 0 5px rgba(255, 99, 15, 0.2); }
}

.glow-effect {
  animation: glow 3s infinite ease-in-out;
}

[data-aos] {
  transition-property: transform, opacity;
}

/* Section Spacing & Depth */
section {
  position: relative;
  z-index: 1;
}

section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 99, 15, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ===== Recruitment Checklist Section ===== */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.checklist-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: var(--transition);
}
.checklist-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--brand);
}
.box-match { border-top: 4px solid var(--brand); }
.box-mismatch { border-top: 4px solid #444; }
.check-item {
  margin-bottom: 16px;
  line-height: 2.2;
  color: var(--text-secondary);
  font-size: 17px !important;
  word-break: keep-all;
}
.check-item:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .checklist-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .video-types-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .video-types-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Narrative Section (Emotional Hook) ===== */
.narrative-section {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 99, 15, 0.05) 0%, var(--bg-primary) 80%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.narrative-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.narrative-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  color: #fff;
  margin-bottom: 60px;
  line-height: 1.4;
}
.narrative-title span { color: var(--brand); }

.pain-quote-block {
  border-left: 3px solid #333;
  padding-left: 30px;
  margin-bottom: 50px;
}
.pain-quote-block p {
  font-size: 19px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.8;
}

.contrast-highlight {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand);
  margin: 60px 0 40px;
  text-align: center;
  position: relative;
}
.contrast-highlight::before,
.contrast-highlight::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brand);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.contrast-highlight::before { left: calc(50% - 140px); }
.contrast-highlight::after { right: calc(50% - 140px); }

.promise-block p {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 2.0;
  margin-bottom: 24px;
}
.impact-text {
  font-size: 24px !important;
  color: #fff !important;
  font-weight: 800;
  margin-top: 40px;
  line-height: 1.5;
}

.final-hook {
  margin-top: 80px;
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--brand);
  text-shadow: 0 0 30px var(--brand-glow);
  animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0.8; transform: scale(1); }
}

@media (max-width: 768px) {
  .narrative-section { padding: 80px 20px; }
  .pain-quote-block { padding-left: 20px; }
  .pain-quote-block p { font-size: 17px; }
  .contrast-highlight::before, 
  .contrast-highlight::after { display: none; }
  .promise-block p { font-size: 18px; }
}

.consent-group label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer;
}

.consent-group span {
  flex: 1;
  font-size: 14px;
}

/* Philosophy Section */
.philosophy-container {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 60px;
}
.philosophy-container h3 {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.5px;
}
.philosophy-container h3 strong {
  color: #fff;
  font-weight: 700;
}
.philosophy-highlight {
  font-size: clamp(26px, 4vw, 36px);
  color: var(--brand);
  font-weight: 900;
  line-height: 1.4;
  margin-top: 35px;
  letter-spacing: -1px;
}

/* Condition Grid (2x2) */
.condition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.condition-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}
.condition-card:hover {
  background: rgba(255, 99, 15, 0.05);
  border-color: rgba(255, 99, 15, 0.3);
  transform: translateY(-5px);
}
.condition-icon { font-size: 36px; margin-bottom: 15px; }
.condition-card strong {
  font-size: 18px; color: #fff; display: block; margin-bottom: 8px;
}
.condition-card span {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
}

@media (max-width: 600px) {
  .philosophy-container { margin-top: 60px; }
  .philosophy-highlight { font-size: 22px; }
  .condition-grid { grid-template-columns: 1fr; }
}

