:root{--build-id:"4a30fb9a-9404-4ded-b3d9-2f8700b0b8dd";}
@charset "UTF-8";

/* ========================================
   CSS Variables (C24 Color Palette)
   ======================================== */
:root {
  --primary: #db2777;
  --bg: #fce7f3;
  --text: #9f1239;
  --accent: #ec4899;
  --heading: var(--text);
  --link: var(--text);
  --white: #ffffff;
  --gray-light: #f3f4f6;
  --gray-medium: #d1d5db;
  --gray-dark: #6b7280;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* ========================================
   Typography (H13 + F4)
   ======================================== */
h1 {
  font-size: clamp(1.90rem, 2.4vw + 1rem, 2.90rem);
  font-weight: 660;
  line-height: 1.22;
  letter-spacing: -0.008em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.43rem, 1.8vw + 0.75rem, 2.18rem);
  font-weight: 660;
  line-height: 1.27;
  letter-spacing: -0.008em;
  color: var(--heading);
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}

h3 {
  font-size: clamp(1.14rem, 1.44vw + 0.6rem, 1.74rem);
  font-weight: 560;
  line-height: 1.32;
  letter-spacing: -0.008em;
  color: var(--heading);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1.25rem;
}

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

a:hover {
  opacity: 0.8;
}

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

/* ========================================
   Skip Link (Accessibility)
   ======================================== */
.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;
}

/* ========================================
   Container & Spacing (S11)
   ======================================== */
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5.75rem 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  section {
    padding: 3.5rem 0;
  }
}

/* ========================================
   Header & Navigation (N10)
   ======================================== */
header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.slogan {
  font-size: 0.875rem;
  color: var(--gray-dark);
  font-weight: 400;
}

.menu-checkbox {
  display: none;
}

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

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--primary);
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
  }

  .slogan {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .menu-checkbox:checked ~ nav {
    max-height: 500px;
  }

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

  nav li {
    border-bottom: 1px solid var(--gray-light);
  }

  nav a {
    display: block;
    padding: 1rem 2rem;
  }
}

/* ========================================
   Hero Section (L12)
   ======================================== */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--white);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

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

/* ========================================
   Buttons (B08)
   ======================================== */
.cta-button {
  display: inline-block;
  border-radius: 0;
  padding: 0.875rem 2rem;
  font-weight: 500;
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.text-link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}

/* ========================================
   Features Grid (4 columns)
   ======================================== */
.features-section {
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.75rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
}

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

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   Case Study Section
   ======================================== */
.case-study-section {
  background-color: var(--gray-light);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
  margin-top: 3rem;
}

.case-item {
  background-color: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
}

.case-item h3 {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   Benefits Preview Section
   ======================================== */
.benefits-preview-section {
  background-color: var(--white);
  text-align: center;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

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

.cta-content {
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--white);
}

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

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

.page-subtitle {
  font-size: 1.125rem;
  color: var(--gray-dark);
  margin-bottom: 0;
}

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

.content-section h2:first-of-type {
  margin-top: 0;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

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

.contact-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.contact-desc {
  font-size: 0.9375rem;
  color: var(--gray-dark);
  margin-bottom: 0;
}

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

.contact-notice li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.contact-notice li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

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

/* ========================================
   FAQ Page
   ======================================== */
.faq-list {
  margin-top: 3rem;
}

.faq-item {
  background-color: var(--gray-light);
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.faq-item h3 {
  margin-top: 0;
  color: var(--primary);
}

.faq-item p {
  margin-bottom: 0;
}

/* ========================================
   Reviews Page
   ======================================== */
.review-list {
  margin-top: 3rem;
}

.review-card {
  background-color: var(--gray-light);
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-medium);
}

.review-header strong {
  font-size: 1.125rem;
  color: var(--primary);
}

.review-date {
  font-size: 0.875rem;
  color: var(--gray-dark);
}

.review-card p {
  margin-bottom: 0;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand strong {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  margin-bottom: 0;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--white);
  opacity: 0.9;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.875rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   Privacy & Terms Pages
   ======================================== */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--white);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.doc-container p {
  margin-bottom: 1.5rem;
}

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