:root{--build-id:"a2a5f6f4-993c-44db-a8a9-658b04cb0dd3";}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ea580c;
  --bg: #ffedd5;
  --text: #7c2d12;
  --accent: #f97316;
  --heading: #7c2d12;
  --link: #7c2d12;
  --white: #ffffff;
  --light-bg: #fff7ed;
  --border: #f97316;
}

body {
  font-family: system-ui, "Noto Sans KR", "Malgun Gothic", -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background-color: var(--bg);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--heading);
}

h2 {
  font-size: 2.625rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.969rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1rem;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

a:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Header & Navigation */
header {
  background: transparent;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 237, 213, 0.9);
  border-bottom: 2px solid var(--border);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-left {
  display: flex;
}

.nav-left ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-left a {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-right {
  display: flex;
  align-items: center;
}

.cta-button {
  background: var(--primary);
  color: var(--white);
  padding: 1.125rem 2.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .logo {
    position: static;
    transform: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-checkbox:checked ~ .mobile-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--border);
  }

  .mobile-nav ul {
    list-style: none;
    padding: 1rem 2rem;
  }

  .mobile-nav li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .mobile-nav a {
    font-weight: 600;
    text-transform: uppercase;
  }
}

/* Hero Section */
.hero {
  background: var(--light-bg);
  padding: 6rem 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1.125rem 2.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  border: 2px solid;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  opacity: 1;
}

/* Features Section */
.features {
  background: var(--white);
}

.section-intro {
  text-align: center;
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.card {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text);
  line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
  background: var(--light-bg);
}

.content-mixed {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.text-content,
.list-content,
.qa-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
}

.list-content ul {
  list-style: none;
  padding-left: 0;
}

.list-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.list-content li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.qa-item {
  margin-bottom: 1.5rem;
}

.question {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.answer {
  color: var(--text);
  line-height: 1.7;
}

/* Process Section */
.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.process-card {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  text-align: center;
}

.process-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: var(--white);
}

.cta-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background: var(--bg);
  border-color: var(--bg);
}

.cta-section .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-section .btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.cta-visual svg {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .cta-section .container {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  background: var(--text);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--white);
  opacity: 0.8;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-legal a {
  color: var(--white);
  opacity: 0.8;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Page Header */
.page-header {
  background: var(--light-bg);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text);
  margin-top: 1rem;
}

/* Content Section */
.content-section {
  background: var(--white);
}

.intro-text {
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  line-height: 1.7;
  text-align: center;
}

.content-block {
  margin-bottom: 3rem;
}

.content-block h2 {
  margin-bottom: 1.5rem;
}

.content-block p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Values Section */
.values-section {
  background: var(--light-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
  text-align: center;
}

.value-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Method Steps */
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step-item {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 2rem;
  border-left: 4px solid var(--primary);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-number {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.step-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.step-content ul {
  list-style: none;
  padding-left: 0;
}

.step-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.step-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Quality Section */
.quality-section {
  background: var(--light-bg);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.quality-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
  text-align: center;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.benefit-item {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
}

.benefit-item h2 {
  margin-bottom: 1rem;
}

.benefit-item p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Nutrition Section */
.nutrition-section {
  background: var(--light-bg);
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.nutrition-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  border: 2px solid var(--primary);
}

.nutrition-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.nutrition-label {
  font-size: 0.875rem;
  color: var(--text);
}

/* Tips Section */
.tips-section {
  background: var(--white);
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tip-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
}

.tip-card h3 {
  margin-bottom: 0.75rem;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
}

.faq-question {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.faq-answer {
  color: var(--text);
  line-height: 1.7;
}

/* Resource Category */
.resource-category {
  margin-bottom: 4rem;
}

.resource-category h2 {
  margin-bottom: 1.5rem;
}

.resource-content {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
}

.resource-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.resource-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.resource-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.resource-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.resource-content li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary);
}

.contact-details h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.contact-details p {
  margin-bottom: 0.25rem;
  line-height: 1.6;
}

.contact-note {
  font-size: 0.875rem;
  color: rgba(124, 45, 18, 0.7);
  margin-top: 0.5rem;
}

.contact-visual svg {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Link Section */
.faq-link-section {
  background: var(--light-bg);
  text-align: center;
}

.faq-link-section h2 {
  margin-bottom: 1rem;
}

.faq-link-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Document Container */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.doc-container h1 {
  margin-bottom: 2rem;
}

.doc-container p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.doc-container a {
  color: var(--primary);
  text-decoration: underline;
}