:root{--build-id:"7a58ee2f-32aa-4e70-9797-f0704925f395";}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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: #7c2d12;
  background-color: #ffedd5;
}

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

/* Focus Styles */
a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid #ea580c;
  outline-offset: 2px;
}

/* Container */
.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - N13: 상단 투명 + 좌측 메뉴 + 중앙 로고 + 우측 CTA */
header {
  background: rgba(255, 237, 213, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(234, 88, 12, 0.1);
}

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

.nav-left {
  flex: 1;
}

.logo {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ea580c;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

header nav a {
  color: #7c2d12;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover,
header nav a[aria-current="page"] {
  color: #ea580c;
}

.cta-link {
  background: #ea580c;
  color: #ffedd5;
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid #ea580c;
  font-weight: 700;
  transition: all 0.3s;
}

.cta-link:hover {
  background: #7c2d12;
  border-color: #7c2d12;
  color: #ffedd5;
}

/* Mobile Menu */
.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: #ea580c;
  background: none;
  border: none;
  padding: 0.5rem;
}

.mobile-nav {
  display: none;
}

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

  .menu-toggle {
    display: block;
  }

  .menu-checkbox:checked ~ .mobile-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffedd5;
    border-top: 1px solid rgba(234, 88, 12, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .mobile-nav li {
    width: 100%;
  }

  .mobile-nav a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(234, 88, 12, 0.05);
  }
}

/* Typography */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ea580c;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.625rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ea580c;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(1.125rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 1.3;
  color: #7c2d12;
  margin-bottom: 1rem;
}

/* Sections - S09: 6.5rem padding, 4.5rem gap */
section {
  padding: 6.5rem 0;
}

.alt-bg {
  background: #fff7ed;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #ffedd5 0%, #fff7ed 100%);
  padding: 8rem 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 3rem;
  color: #7c2d12;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #ea580c;
}

.feature-icon {
  font-size: 1.25rem;
}

.hero-visual {
  max-width: 400px;
  margin: 3rem auto 0;
}

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

/* Intro Section */
.intro-content {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-content > p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 3rem;
  text-align: center;
}

.intro-tabs {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.tab-item {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
}

.tab-item h3 {
  color: #ea580c;
  margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
  transition: transform 0.3s;
}

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

.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

/* Benefits Section */
.benefits-list {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}

.benefits-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.list-marker {
  color: #ea580c;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefits-list strong {
  display: block;
  font-size: 1.125rem;
  color: #ea580c;
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #ffedd5;
  text-align: center;
}

.cta-section h2 {
  color: #ffedd5;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: #ffedd5;
  color: #ea580c;
  padding: 1.125rem 2.25rem;
  border-radius: 0.75rem;
  border: 2px solid #ffedd5;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.125rem;
}

.cta-button:hover {
  background: transparent;
  color: #ffedd5;
  border-color: #ffedd5;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #ffedd5 0%, #fff7ed 100%);
  padding: 5rem 0 3rem;
  text-align: center;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #7c2d12;
  margin-top: 1rem;
}

/* Content Section */
.content-block {
  max-width: 1000px;
  margin: 0 auto;
}

.content-block > p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Philosophy Points */
.philosophy-points {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.point-item {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
}

.step-number {
  display: inline-block;
  background: #ea580c;
  color: #ffedd5;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Quality List */
.quality-list {
  list-style: none;
  margin-top: 2rem;
}

.quality-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.list-icon {
  color: #ea580c;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.quality-list strong {
  display: block;
  font-size: 1.0625rem;
  color: #ea580c;
  margin-bottom: 0.5rem;
}

/* Promise Grid */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.promise-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
}

/* Benefit Cards */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

/* Detailed List */
.detailed-list {
  list-style: none;
  margin-top: 2rem;
}

.detailed-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.list-number {
  background: #ea580c;
  color: #ffedd5;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.detailed-list strong {
  display: block;
  font-size: 1.0625rem;
  color: #ea580c;
  margin-bottom: 0.5rem;
}

/* Situation Grid */
.situation-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.situation-item {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
}

.situation-item h3 {
  color: #ea580c;
  margin-bottom: 1rem;
}

/* Longterm Benefits */
.longterm-benefits {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.longterm-item {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
}

.longterm-item h3 {
  color: #ea580c;
  margin-bottom: 1rem;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reviewer-tag {
  font-size: 0.875rem;
  color: #7c2d12;
  opacity: 0.7;
}

.review-rating {
  color: #ea580c;
  font-size: 1.125rem;
}

.review-text {
  line-height: 1.75;
}

/* Experience Item */
.experience-item {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
  margin-bottom: 2rem;
}

.experience-item h3 {
  color: #ea580c;
  margin-bottom: 0.5rem;
}

.experience-author {
  font-size: 0.9375rem;
  color: #7c2d12;
  opacity: 0.7;
  margin-bottom: 1rem;
}

/* Advantages List */
.advantages-list {
  list-style: none;
  margin-top: 2rem;
}

.advantages-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.advantage-icon {
  color: #ea580c;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.advantages-list strong {
  display: block;
  font-size: 1.0625rem;
  color: #ea580c;
  margin-bottom: 0.5rem;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
  margin-bottom: 2rem;
}

.faq-question {
  color: #ea580c;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.faq-answer {
  line-height: 1.75;
}

/* Additional Info */
.additional-info {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 2px solid #ea580c;
}

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

.additional-info p {
  margin-bottom: 2rem;
  line-height: 1.75;
}

.info-link {
  color: #ea580c;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.3s;
}

.info-link:hover {
  color: #7c2d12;
}

/* Contact */
.contact-content {
  display: grid;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.contact-info > p {
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
}

.contact-icon {
  font-size: 2rem;
  color: #ea580c;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 1.125rem;
  color: #ea580c;
  margin-bottom: 0.5rem;
}

.contact-guide {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
}

.guide-list {
  list-style: none;
  margin-top: 1.5rem;
}

.guide-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.guide-marker {
  color: #ea580c;
  font-weight: 700;
  flex-shrink: 0;
}

/* Inquiry Types */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.type-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ea580c;
}

.type-card h3 {
  color: #ea580c;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: #7c2d12;
  color: #ffedd5;
  padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
  color: #ffedd5;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.9;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: #ffedd5;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

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

.footer-contact p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 237, 213, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #ffedd5;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

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

/* Doc 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.75;
  margin-bottom: 1.5rem;
}

.doc-container a {
  color: #ea580c;
  font-weight: 600;
  text-decoration: none;
}

.doc-container a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero-section {
    padding: 5rem 0;
  }

  .features-grid,
  .benefit-cards,
  .process-steps,
  .promise-grid,
  .reviews-grid,
  .types-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}