/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOGMOOD WEBSITE STYLES
   잘 팔리는 브랜드를 만드는 디자인 에이전시
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━━━━━━━━━━
   1. DESIGN TOKENS
   ━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  /* Colors */
  --purple: #693ef5;
  --lime: #d3fd51;
  --orange: #ff6b3d;
  --black: #000000;
  --white: #ffffff;
  
  --purple-80: rgba(105, 62, 245, 0.8);
  --lime-20: rgba(211, 247, 81, 0.2);
  --black-10: rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-display: 'Archivo Black', sans-serif;
  --font-title-en: 'Bebas Neue', sans-serif;
  --font-title-kr: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Font Sizes */
  --text-hero: 120px;
  --text-display: 80px;
  --text-h1: 64px;
  --text-h2: 48px;
  --text-h3: 32px;
  --text-large: 24px;
  --text-body: 18px;
  --text-small: 16px;
  --text-caption: 14px;
  
  /* Line Heights */
  --lh-tight: 1.1;
  --lh-normal: 1.5;
  --lh-loose: 1.7;
  
  /* Letter Spacing */
  --ls-tight: -0.03em;
  --ls-normal: -0.01em;
  --ls-wide: 0.05em;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 80px;
  --space-3xl: 120px;
  
  /* Layout */
  --container-max: 1400px;
  --container-wide: 1200px;
  --container-narrow: 900px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   2. RESET & BASE
   ━━━━━━━━━━━━━━━━━━━━━━━ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lh-loose);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   3. UTILITY CLASSES
   ━━━━━━━━━━━━━━━━━━━━━━━ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: var(--container-wide);
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   4. HEADER
   ━━━━━━━━━━━━━━━━━━━━━━━ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 4px solid var(--black);
  z-index: 1000;
  padding: 20px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: var(--ls-tight);
  color: var(--purple);
  transition: color 0.3s;
}

.logo a:hover {
  color: var(--orange);
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav > a {
  font-weight: 600;
  font-size: var(--text-small);
  transition: color 0.3s;
}

.nav > a:hover {
  color: var(--purple);
}

.nav .btn-primary.small {
  padding: 12px 30px;
  font-size: var(--text-small);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   5. HERO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-title-kr);
  font-size: var(--text-h1);
  font-weight: 900;
  line-height: var(--lh-normal);
  margin-bottom: 30px;
}

.hero .highlight {
  color: var(--purple);
  font-weight: 900;
}

.hero .subtitle {
  font-size: var(--text-large);
  line-height: var(--lh-loose);
  margin-bottom: 30px;
  color: var(--black);
}

.hero .subtitle strong {
  font-weight: 700;
}

.hero .tags {
  margin-bottom: 50px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .tags span {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 24px;
  font-size: var(--text-caption);
  font-weight: 700;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
}

.scroll-indicator span {
  font-family: var(--font-title-en);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--black);
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   6. POINT SECTIONS ⭐
   ━━━━━━━━━━━━━━━━━━━━━━━ */

.point-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
}

.purple-bg {
  background: var(--purple);
}

.black-bg {
  background: var(--black);
}

.display-text {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}

.display-text.lime {
  color: var(--lime);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.display-text.orange {
  color: var(--orange);
  text-shadow: 4px 4px 0 rgba(255, 255, 255, 0.1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   7. BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━ */

.btn-primary {
  display: inline-block;
  padding: 20px 50px;
  background: var(--orange);
  color: var(--white);
  font-size: var(--text-body);
  font-weight: 700;
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--black);
}

.btn-primary:active {
  transform: translate(0, 0);
  box-shadow: 4px 4px 0 var(--black);
}

.btn-primary.huge {
  padding: 30px 70px;
  font-size: var(--text-large);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btn-primary.huge small {
  font-size: var(--text-caption);
  font-weight: 400;
  opacity: 0.9;
}

.btn-secondary {
  background: var(--purple);
  color: var(--white);
  display: inline-block;
  padding: 20px 50px;
  font-size: var(--text-body);
  font-weight: 700;
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--black);
  background: var(--purple-80);
}

.btn-outline {
  background: var(--white);
  color: var(--black);
  display: inline-block;
  padding: 20px 50px;
  font-size: var(--text-body);
  font-weight: 700;
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--lime);
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--black);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   8. SERVICES SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━ */

.services {
  padding: 120px 20px;
  background: var(--white);
}

.section-title-en {
  font-family: var(--font-title-en);
  font-size: var(--text-h1);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  color: var(--black);
}

.section-subtitle {
  font-family: var(--font-title-kr);
  font-size: var(--text-h3);
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  color: var(--black);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--black);
}

.service-card.lime-border {
  border-color: var(--lime);
  box-shadow: 8px 8px 0 var(--lime);
}

.service-card.lime-border:hover {
  box-shadow: 12px 12px 0 var(--lime);
}

.service-card.orange-border {
  border-color: var(--orange);
  box-shadow: 8px 8px 0 var(--orange);
}

.service-card.orange-border:hover {
  box-shadow: 12px 12px 0 var(--orange);
}

.service-card.purple-border {
  border-color: var(--purple);
  box-shadow: 8px 8px 0 var(--purple);
}

.service-card.purple-border:hover {
  box-shadow: 12px 12px 0 var(--purple);
}

.card-icon {
  width: 80px;
  height: 80px;
  font-family: var(--font-display);
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--black);
  background: var(--white);
  margin: 0 auto 20px;
}

.service-card h3 {
  font-family: var(--font-title-kr);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--black);
}

.service-card p {
  font-size: var(--text-small);
  line-height: var(--lh-loose);
  margin-bottom: 20px;
  color: var(--black);
}

.service-card .price {
  display: block;
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--orange);
}

.package-banner {
  background: var(--black);
  color: var(--white);
  padding: 40px;
  text-align: center;
  border: 4px solid var(--black);
  max-width: 800px;
  margin: 60px auto 0;
}

.package-banner p {
  font-size: var(--text-large);
  margin-bottom: 20px;
}

.package-banner strong {
  color: var(--lime);
  font-weight: 700;
}

.package-banner .btn-outline {
  margin-top: 10px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   9. PORTFOLIO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━ */

.portfolio {
  padding: 120px 20px;
  background: var(--white);
}

.portfolio .section-title {
  font-family: var(--font-title-kr);
  font-size: var(--text-h2);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 80px;
  color: var(--black);
}

.portfolio .highlight {
  color: var(--purple);
  font-weight: 900;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: var(--container-wide);
  margin: 0 auto 60px;
}

.portfolio-item {
  background: var(--white);
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--black);
}

.item-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title-kr);
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
}

.placeholder-text {
  position: relative;
  z-index: 1;
}

.cafe-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
}

.fashion-bg {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: var(--white);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: 700;
  border: 3px solid var(--black);
  z-index: 2;
}

.badge.hot {
  background: var(--orange);
  color: var(--white);
}

.badge.new {
  background: var(--lime);
  color: var(--black);
}

.item-info {
  padding: 40px;
}

.item-info h3 {
  font-family: var(--font-title-kr);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--black);
}

.item-info .category {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
}

.results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.result-badge {
  background: var(--lime-20);
  border: 3px solid var(--lime);
  padding: 20px;
  text-align: center;
}

.result-badge strong {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.result-badge p {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--purple);
  line-height: 1.4;
}

blockquote {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lh-loose);
  padding: 20px;
  background: var(--black-10);
  border-left: 4px solid var(--purple);
  margin: 0;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: var(--text-caption);
  font-style: normal;
  color: rgba(0, 0, 0, 0.6);
}

.portfolio-cta {
  text-align: center;
  margin-top: 60px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   10. WHY US SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━ */

.why-us {
  padding: 120px 20px;
  background: var(--white);
}

.why-us .section-subtitle {
  font-size: var(--text-h3);
  line-height: 1.5;
}

.why-us .highlight {
  color: var(--purple);
  font-weight: 900;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.usp-card {
  background: var(--white);
  padding: 40px;
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.usp-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--black);
}

.card-visual {
  margin-bottom: 30px;
}

.visual-icon {
  font-size: 64px;
  text-align: center;
}

.usp-card h3 {
  font-family: var(--font-title-kr);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--black);
}

.usp-card h3 strong {
  color: var(--purple);
  font-weight: 900;
}

.usp-card p {
  font-size: var(--text-small);
  line-height: var(--lh-loose);
  color: var(--black);
  margin-bottom: 20px;
}

.usp-card .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.usp-card .tags span {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   11. TESTIMONIALS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━ */

.testimonials {
  padding: 120px 20px;
  background: var(--white);
}

.testimonials .section-title {
  font-family: var(--font-title-kr);
  font-size: var(--text-h2);
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  color: var(--black);
}

.section-subtitle-large {
  font-family: var(--font-title-kr);
  font-size: var(--text-h3);
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.5;
  color: var(--black);
}

.section-subtitle-large .highlight {
  color: var(--purple);
  font-weight: 900;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--black);
}

.client-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title-kr);
  font-size: 24px;
  font-weight: 900;
  border: 4px solid var(--black);
  flex-shrink: 0;
}

.client-info h4 {
  font-family: var(--font-title-kr);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--black);
}

.client-info p {
  font-size: var(--text-caption);
  color: rgba(0, 0, 0, 0.6);
}

.testimonial-card blockquote {
  font-size: var(--text-small);
  line-height: var(--lh-loose);
  padding: 20px;
  background: var(--black-10);
  border-left: 4px solid var(--purple);
  margin-bottom: 25px;
}

.testimonial-card blockquote cite {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  font-style: normal;
  color: rgba(0, 0, 0, 0.6);
}

.results-inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.result-item {
  background: var(--lime-20);
  border: 3px solid var(--lime);
  padding: 15px;
  text-align: center;
}

.result-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--black);
}

.result-item p {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.3;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   12. CTA SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━ */

.cta {
  padding: 120px 20px;
  background: var(--white);
  text-align: center;
}

.cta-title {
  font-family: var(--font-title-kr);
  font-size: var(--text-h1);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 40px;
  color: var(--black);
}

.cta-title .highlight {
  color: var(--purple);
  font-weight: 900;
}

.cta-promise {
  font-size: var(--text-large);
  line-height: var(--lh-loose);
  margin-bottom: 50px;
  color: var(--black);
}

.cta-promise .time {
  color: var(--orange);
  font-weight: 700;
}

.cta-buttons-large {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.contact-channels {
  max-width: 800px;
  margin: 0 auto 60px;
}

.channels-title {
  font-size: var(--text-large);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--black);
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.channel-item {
  background: var(--white);
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.channel-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--black);
  background: var(--lime-20);
}

.channel-item .icon {
  font-size: 48px;
}

.channel-item .text {
  font-size: var(--text-small);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  color: var(--black);
}

.channel-item .text small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 5px;
}

.urgency {
  font-size: var(--text-large);
  line-height: var(--lh-loose);
  padding: 30px;
  background: var(--black-10);
  border: 4px solid var(--orange);
  max-width: 700px;
  margin: 0 auto;
}

.urgency strong {
  color: var(--orange);
  font-weight: 700;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   13. FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━ */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 20px 40px;
  border-top: 4px solid var(--black);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto 60px;
}

.footer-logo .logo-text {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: var(--ls-tight);
  color: var(--lime);
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--lh-loose);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-title-kr);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col a {
  display: block;
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   14. RESPONSIVE DESIGN
   ━━━━━━━━━━━━━━━━━━━━━━━ */

/* Tablet (1024px 이하) */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet (768px 이하) */
@media (max-width: 768px) {
  :root {
    --text-hero: 80px;
    --text-h1: 48px;
    --text-h2: 36px;
    --text-h3: 24px;
    --text-large: 20px;
  }
  
  .header {
    padding: 15px 0;
  }
  
  .logo a {
    font-size: 24px;
  }
  
  .nav {
    gap: 20px;
  }
  
  .nav > a {
    font-size: 14px;
  }
  
  .nav .btn-primary.small {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero {
    padding: 120px 20px 60px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .channel-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .cta-buttons,
  .cta-buttons-large {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
  
  .results {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile (480px 이하) */
@media (max-width: 480px) {
  :root {
    --text-hero: 60px;
    --text-h1: 36px;
    --text-h2: 28px;
    --text-h3: 20px;
    --text-large: 18px;
    --text-body: 16px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .header {
    padding: 12px 0;
  }
  
  .logo a {
    font-size: 20px;
  }
  
  .nav {
    gap: 12px;
  }
  
  .nav > a:not(.btn-primary) {
    display: none;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .tags {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .portfolio-item,
  .usp-card,
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
  
  .point-section {
    min-height: 40vh;
    padding: 80px 20px;
  }
  
  .display-text {
    font-size: 48px;
  }
  
  .section-title-en {
    font-size: 40px;
  }
  
  .btn-primary.huge {
    padding: 25px 40px;
    font-size: 20px;
  }
  
  .package-banner {
    padding: 30px 20px;
  }
  
  .results-inline {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* Extra Small (360px 이하) */
@media (max-width: 360px) {
  :root {
    --text-hero: 48px;
    --text-h1: 28px;
    --text-h2: 24px;
  }
  
  .display-text {
    font-size: 40px;
  }
}
