/* ===== 오티비 크루 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: #111111;
  --bg-card: #161616;
  --border: #333333;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --radius: 12px;
  --transition: all 0.3s ease;
}

* { 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(28px,4vw,42px);
  text-align:center;
  margin-bottom:60px;
  color:var(--text-primary);
  line-height: 1.4;
  word-break: keep-all;
}

/* ===== 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:100vh;
  display:flex; flex-direction:column;
  justify-content:center; align-items:center;
  text-align:center; padding:80px 20px;
  position:relative;
  background:linear-gradient(rgba(10,10,10,0.7),rgba(10,10,10,0.85)),url('img_01.jpg') center/cover;
  background-attachment:fixed;
}
.hero h1 {
  font-size:clamp(32px,5vw,60px);
  line-height:1.15; margin-bottom:30px; color:#fff;
}
.hero h1 .highlight { color:var(--brand); }
.hero .sub-copy {
  font-size:clamp(16px,2vw,22px);
  color:#bbb; margin-bottom:50px;
  word-break:keep-all; line-height:1.7;
}

/* ===== CTA Buttons ===== */
.cta-button {
  display:inline-block; padding:18px 50px;
  background:var(--brand); color:#000;
  font-size:20px; font-weight:900;
  text-decoration:none; border-radius:50px;
  transition:var(--transition); border:3px solid var(--brand);
}
.cta-button:hover {
  background:#fff; color:#000;
  transform:translateY(-3px);
  box-shadow:0 10px 30px var(--brand-glow);
}

/* ===== 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); }
}

/* ===== 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:30px 20px;
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius);
  transition:var(--transition);
}
.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); border:2px solid var(--border);
  border-radius:16px; padding:40px 30px;
  text-align:left; transition:var(--transition);
}
.problem-card:hover { border-color:var(--brand); transform:translateY(-10px); }
.problem-card img {
  width:100%; height:220px; object-fit:cover;
  border-radius:12px; margin-bottom:25px;
}
.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; }

/* ===== 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); border-left:4px solid var(--brand);
  padding:40px; margin-bottom:30px; border-radius:8px;
}
.solution-item h3 { font-size:26px; color:var(--brand); margin-bottom:15px; }
.solution-item p {
  font-size:18px; color:#ddd; 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; }

/* ===== 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); padding:40px; border-radius:16px;
  border:1px solid var(--border); box-shadow:0 10px 30px rgba(0,0,0,0.5);
}
.form-row { display:flex; gap:20px; }
.form-row .form-group { flex:1; }
.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:15px; background:var(--bg-primary);
  border:1px solid var(--border); border-radius:8px;
  color:#fff; font-size:16px; font-family:inherit;
  transition:var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline:none; border-color:var(--brand);
}
.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(7, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}
.v-type-card {
  background: var(--bg-card);
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 25px 10px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.v-type-card:hover {
  background: rgba(255, 99, 15, 0.05); /* subtle brand glow */
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 99, 15, 0.15);
}
.v-type-card .num {
  font-size: 14px;
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 12px;
}
.v-type-card .name {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  word-break: keep-all;
  line-height: 1.4;
}

/* ===== 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: 20px;
  margin: 60px auto 0;
  max-width: 1200px; /* Full width for landscape cards */
}
.field-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2; /* Landscape ratio to show people on sides */
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--bg-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.field-photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  border-color: var(--brand);
}
.field-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.field-photo-card:hover img {
  transform: scale(1.08); /* Reduced for more refined effect */
}
.photo-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.field-photo-card:hover .photo-overlay {
  opacity: 1;
}
.photo-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  background: var(--brand);
  padding: 6px 16px;
  border-radius: 4px;
  box-shadow: 0 4px 15px var(--brand-glow);
}

/* ===== Video Types Grid ===== */
.video-types-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 공통 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;
  }
}

/* ===== 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);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--brand); }
.faq-item.open { border-color: var(--brand); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  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: 12px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--brand);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.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);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: #000;
  width: 90%;
  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);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #666;
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
}
.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;
}
.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);
}
.modal-confirm:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .modal-box { padding: 30px 24px; }
  .modal-header h2 { font-size: 20px; }
  .modal-body p { font-size: 15px; }
  .modal-footer { flex-direction: column; align-items: flex-start; }
  .modal-confirm { width: 100%; margin-top: 10px; }
}

