:root{--build-id:"f12f1144-e427-4312-b11c-0f17613b8b1e";}
/* 스윙핏 공통 스타일시트 */

:root {
  --bg: #fafafa;
  --text: #171717;
  --muted: #f4f4f5;
  --border: #e4e4e7;
  --primary: #262626;
  --accent: #525252;
  --radius: 20px;
  --shadow: none;
  --container: 1040px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fafafa;
  color: #171717;
  font-family: "Segoe UI Variable", "Segoe UI", system-ui, "Noto Sans KR", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: #262626;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
}

.card {
  background: var(--bg);
  border: none;
  border-radius: 20px;
  box-shadow: none;
  padding: 16px;
}

header {
  position: sticky;
  top: 0;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  z-index: 100;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
}

nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

nav a {
  padding: 8px 10px;
  border-radius: 8px;
}

nav a.active {
  background: var(--primary);
  color: #fff;
}

main {
  padding: 24px 0;
}

section {
  margin: 24px 0;
}

footer {
  margin-top: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: #666;
}

.hero {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 40px 0;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #525252;
}

.btn,
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #262626;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 12px;
}

.btn:hover,
.cta-button:hover {
  background: #171717;
  text-decoration: none;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.equipment-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
}

.price-table,
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.price-table th,
.price-table td,
table th,
table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th,
table th {
  background: #f4f4f5;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.feature-list li:before {
  content: "✓";
  color: #22c55e;
  font-weight: bold;
  margin-right: 8px;
}

.testimonial {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
}

.rating {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.testimonial-author {
  margin-top: 12px;
  font-weight: 600;
  color: #525252;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.stat-card {
  background: #f9f9f9;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #262626;
  margin-bottom: 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.product-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.highlight {
  background: #fef3c7;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0f14;
    --text: #e5e7eb;
    --muted: #0f172a;
    --border: #1f2937;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }
}