:root{--build-id:"ec398440-ab5b-4f7b-bcfd-b321cf291f18";}
/* CSS Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #db2777;
  --bg: #fce7f3;
  --text: #9f1239;
  --accent: #ec4899;
  --heading: var(--text);
  --link: var(--text);
  --white: #ffffff;
  --light-gray: #f3f4f6;
  --border: #e5e7eb;
}

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 */
h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.875rem, 3.75vw, 3.188rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.406rem, 2.813vw, 2.391rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--heading);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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 */
.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 */
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  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 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.5rem;
}

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

nav a {
  font-weight: 500;
  padding: 0.5rem 0;
}

nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    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 2rem;
  }

  nav a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
}

/* Sections */
section {
  padding: 5.75rem 0;
}

.bg-light {
  background: var(--white);
}

/* Hero Minimal */
.hero-minimal {
  text-align: center;
  padding: 7rem 0 5.75rem;
}

.hero-desc {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

.page-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Section */
.content-section {
  padding: 5.75rem 0;
}

.single-column {
  max-width: 900px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3.75rem;
  margin-top: 3rem;
}

.icon-item {
  text-align: center;
}

.icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.icon-grid h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Cards */
.card {
  background: var(--light-gray);
  border-radius: 0;
  padding: 2rem;
  height: 100%;
}

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

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

.card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.reviewer {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0;
}

/* Contact Info */
.contact-info {
  max-width: 900px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.75rem;
  margin-top: 2.5rem;
}

.info-item {
  text-align: center;
}

.info-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

/* CTA Section */
.cta-section {
  text-align: center;
  background: var(--white);
}

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

.cta-section p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Footer */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

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

.footer-brand p {
  color: var(--text);
  font-size: 0.875rem;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--text);
}

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

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

  .hero-minimal {
    padding: 5rem 0 4rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .grid-5 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .feature-cards,
  .review-cards,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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