/* ══════════════════════════════════════
   Orange Marketing — Style
   ══════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0D0D0D; background: #f2f2f2; line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Colors ── */
:root {
  --primary: #F2B6A0;
  --primary-light: #F2DBCE;
  --primary-bg: #FFF5ED;
  --dark: #1a1a1a;
  --gray: #888;
  --light-gray: #f5f5f5;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-label { font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: 3px; text-transform: uppercase; text-align: center; margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; text-align: center; margin-bottom: 16px; color: var(--dark); }
.section-desc { font-size: 17px; color: #666; text-align: center; margin-bottom: 50px; line-height: 1.8; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgb(242, 182, 160);
  padding: 0 40px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 2px; }
.header-nav { display: flex; gap: 28px; }
.header-nav a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85);
  transition: color .2s; position: relative;
}
.header-nav a:hover, .header-nav a.active { color: #fff; }
.header-nav a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: #fff; border-radius: 1px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F2DBCE 0%, #fff 50%, #F2DBCE 100%);
  text-align: center; padding-top: 60px;
}
.hero-badge {
  display: inline-block; background: #F2C0A2; color: #fff;
  padding: 8px 24px; border-radius: 50px; font-size: 14px; font-weight: 600;
  margin-bottom: 32px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 72px; font-weight: 700; line-height: 1.3; color: #0D0D0D;
  margin-bottom: 8px;
}
.hero-title span { color: #F2B6A0; font-weight: 700; }
.hero-subtitle { font-size: 20px; color: #555; margin-bottom: 40px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border-radius: 50px; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all .3s; font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #e0a490; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(242,182,160,.3); }
.btn-outline { background: #fff; color: var(--dark); border: 1.5px solid #ddd; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ── About ── */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text h3 { font-size: 29px; font-weight: 700; line-height: 1.5; margin-bottom: 20px; color: var(--dark); }
.about-text p { font-size: 16px; color: #666; line-height: 1.5; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 30px; }
.stat-card {
  background: #f2f2f2; border-radius: 15px; padding: 24px;
  text-align: center;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 14px; color: #666; margin-top: 6px; }
.ceo-card {
  background: var(--primary-bg); border-radius: 30px; padding: 48px;
}
.ceo-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.ceo-card h4 span { font-size: 14px; font-weight: 500; color: var(--gray); margin-right: 8px; }
.ceo-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 16px; }
.ceo-list { display: flex; flex-direction: column; gap: 10px; }
.ceo-list li { font-size: 14px; color: #555; display: flex; align-items: center; gap: 8px; }
.ceo-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* ── Services ── */
.services { background: #F2DBCE; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: #fff; border-radius: 25px; padding: 40px;
}
.service-num {
  display: inline-flex; width: 40px; height: 40px; border-radius: 12px;
  background: var(--primary); color: #fff; font-size: 14px; font-weight: 800;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.service-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 13px; color: #555; background: var(--light-gray);
  padding: 6px 14px; border-radius: 20px; border: 1px solid #eee;
}

/* ── Portfolio ── */
.portfolio { background: #fff; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.portfolio-card {
  background: #f2f2f2; border-radius: 20px; padding: 32px;
  text-align: center; transition: transform .3s;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.portfolio-badge {
  display: inline-block; padding: 5px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 700; color: #fff; background: #F2C0A2;
  margin-bottom: 16px;
}
.portfolio-badge.award { background: #F2C0A2; }
.portfolio-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.portfolio-card p { font-size: 13px; color: var(--gray); }

/* ── Pricing ── */
.pricing { background: #F2DBCE; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.pricing-card {
  background: #fff; border-radius: 25px; padding: 40px;
}
.pricing-card h3 { font-size: 20px; font-weight: 700; text-align: center; margin-bottom: 8px; }
.pricing-price { font-family: 'Playfair Display', serif; text-align: center; font-size: 40px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.pricing-vat { text-align: center; font-size: 12px; color: var(--gray); margin-bottom: 20px; }
.pricing-list { display: flex; flex-direction: column; gap: 10px; }
.pricing-list li { font-size: 13px; color: #555; padding-bottom: 10px; border-bottom: 1px solid #f0f0f0; }
.pricing-notice { text-align: center; font-size: 15px; color: var(--primary); font-weight: 600; margin-top: -30px; margin-bottom: 40px; }

/* ── Process ── */
.process { background: #fff; }
.process-bar {
  background: var(--primary); color: #fff; text-align: center;
  padding: 13px 32px; border-radius: 10px; font-size: 21px; font-weight: 700;
  margin-bottom: 24px;
}
.process-steps { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.process-step {
  background: #f2f2f2; border-radius: 10px;
  padding: 16px 24px; text-align: center; font-size: 14px; font-weight: 400;
  color: var(--dark); flex: 0 0 120px;
}
.process-step.last { background: var(--primary); color: #fff; }
.process-arrow { color: var(--primary); font-size: 20px; font-weight: 800; }
.step-branch { display: flex; flex-direction: column; gap: 8px; }
.branch-top { background: var(--primary); color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 13px; text-align: center; }
.branch-bottom { background: #f2f2f2; color: var(--dark); padding: 8px 16px; border-radius: 8px; font-size: 13px; text-align: center; }
.process-note { text-align: right; font-size: 14px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.process-notices {
  margin-top: 40px; background: #f2f2f2; border-radius: 12px; padding: 24px 32px;
}
.process-notices p { font-size: 14px; color: #666; line-height: 2; }

/* ── FAQ ── */
.faq { background: #F2DBCE; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #f2f2f2; border-radius: 15px; padding: 24px 32px;
  font-size: 16px; font-weight: 400; color: var(--dark);
  cursor: pointer; transition: box-shadow .2s;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.faq-icon { color: var(--primary); font-size: 20px; }

/* ── Contact ── */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: #555; }
.contact-cta {
  background: var(--primary-bg); border-radius: 20px; padding: 48px 36px; text-align: center;
}
.contact-cta h3 { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.contact-cta p { font-size: 14px; color: #666; margin-bottom: 28px; line-height: 1.8; }
.btn-kakao {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; padding: 16px 40px;
  border-radius: 50px; font-size: 16px; font-weight: 700;
  border: none; cursor: pointer; transition: all .3s; font-family: inherit;
}
.btn-kakao:hover { background: #e0a490; transform: translateY(-2px); }

/* ── Footer ── */
.footer { background: #0D0D0D; color: rgba(255,255,255,.7); padding: 64px 32px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer p { font-size: 13px; line-height: 1.8; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center;
  justify-content: center; font-size: 18px; font-weight: 700; color: #fff;
  transition: background .2s;
}
.footer-social a:hover { background: var(--primary); }
.footer-divider { height: 1px; background: rgba(255,255,255,.1); margin: 30px 0; }
.footer-biz { text-align: center; font-size: 12px; color: rgba(255,255,255,.4); line-height: 2; }
.footer-copy { text-align: center; font-size: 12px; color: rgba(255,255,255,.3); margin-top: 20px; }
.footer-credit { text-align: center; font-size: 11px; color: rgba(255,255,255,.25); margin-top: 8px; }

/* ── Mobile Menu Button ── */
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: all .3s;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .header { padding: 0 16px; }
  .header-nav {
    display: none; position: absolute; top: 60px; left: 0; right: 0;
    background: rgb(242, 182, 160); flex-direction: column;
    padding: 16px 0; gap: 0;
  }
  .header-nav.active { display: flex; }
  .header-nav a { padding: 12px 24px; font-size: 15px; }
  .mobile-menu-btn { display: flex; }
  .hero-title { font-size: 32px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
}
