/* roulang page: index */
/* ===== CSS Variables & Reset ===== */
:root {
  --color-primary: #F05A28;
  --color-secondary: #D4A24C;
  --bg-dark: #171310;
  --bg-surface: #221B15;
  --text-warm: #F7F1E7;
  --text-muted: rgba(247, 241, 231, 0.6);
  --border-warm: rgba(247, 241, 231, 0.08);
  --radius-card: 24px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25);
  --shadow-card-hover: 0 12px 40px rgba(240, 90, 40, 0.25);
  --shadow-cta: 0 6px 20px rgba(240, 90, 40, 0.4);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Noto Sans SC', system-ui, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-warm);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

/* ===== Utility Text Classes ===== */
.font-display { font-family: 'Barlow Condensed', 'Noto Sans SC', sans-serif; }
.section-tag {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D4A24C, #B97E2E);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-warm);
  letter-spacing: 0.5px;
}
.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #F05A28, #E03C1A);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-cta);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  line-height: 1.4;
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(240, 90, 40, 0.5);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(240, 90, 40, 0.4); }
.btn-primary:focus-visible, .btn-outline:focus-visible, .btn-sm-primary:focus-visible, .btn-sm-outline:focus-visible {
  outline: none;
  ring: 2px solid #F05A28;
  ring-offset: 2px;
  ring-offset-color: #171310;
}
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #F05A28, #E03C1A);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 999px;
  box-shadow: var(--shadow-cta);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary-lg:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(240, 90, 40, 0.5); }
.btn-primary-lg:active { transform: translateY(0); }
.btn-primary-lg:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--text-warm);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(247, 241, 231, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(247, 241, 231, 0.1); border-color: rgba(247, 241, 231, 0.6); transform: translateY(-1px); }
.btn-outline:active { transform: translateY(0); }
.btn-sm-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F05A28, #E03C1A);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(240, 90, 40, 0.3);
  cursor: pointer;
  border: none;
}
.btn-sm-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-sm-primary:active { transform: translateY(0); }
.btn-sm-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-warm);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(247, 241, 231, 0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-sm-outline:hover { background: rgba(247, 241, 231, 0.08); border-color: rgba(247, 241, 231, 0.5); }
.btn-sm-outline:active { transform: scale(0.98); }

/* ===== Navigation ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(23, 19, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-warm);
  height: 64px;
}
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F05A28, #E03C1A);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 900; color: #fff;
  box-shadow: 0 3px 10px rgba(240, 90, 40, 0.4);
}
.brand-text { font-size: 17px; font-weight: 800; color: var(--text-warm); letter-spacing: 0.3px; }
.brand-badge {
  font-size: 10px; font-weight: 700;
  background: linear-gradient(135deg, #D4A24C, #B97E2E);
  color: #fff; padding: 2px 8px; border-radius: 999px;
  letter-spacing: 0.5px;
}
.nav-link {
  position: relative;
  color: rgba(247, 241, 231, 0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 2px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(135deg, #F05A28, #E03C1A);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-link:hover { color: var(--text-warm); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--text-warm); font-weight: 700; }
.nav-link.active::after { width: 100%; }

/* ===== Mobile Tab Bar ===== */
.mobile-tab-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  height: 60px;
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(23, 19, 16, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-warm);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.mobile-tab-bar .tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: rgba(247, 241, 231, 0.5);
  font-size: 11px;
  font-weight: 500;
  transition: color 0.2s;
  padding: 6px 10px;
  border-radius: 12px;
}
.mobile-tab-bar .tab-item svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.mobile-tab-bar .tab-item:hover { color: rgba(247, 241, 231, 0.8); }
.mobile-tab-bar .tab-item.active { color: #F05A28; font-weight: 700; }
.mobile-tab-bar .tab-item.active svg { stroke: url(#gradient); }
@media (min-width: 768px) { .mobile-tab-bar { display: none; } }

/* ===== Hero ===== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(23, 19, 16, 0.55) 0%, #171310 92%);
  z-index: 1;
}
.hero-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 5%, rgba(240, 90, 40, 0.3), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
  color: var(--text-warm);
  margin-bottom: 16px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #F05A28, #D4A24C);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(247, 241, 231, 0.75);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-data-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-warm);
}
.hero-data-item { display: flex; flex-direction: column; gap: 2px; }
.hero-data-num {
  font-family: 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text-warm);
  line-height: 1;
}
.hero-data-label { font-size: 12px; color: var(--text-muted); }
.hero-data-divider { width: 1px; height: 32px; background: var(--border-warm); }

/* ===== Bento Cards ===== */
.bento-card {
  background: linear-gradient(160deg, #221B15, #1A1611);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}
.bento-card:hover { border-color: rgba(240, 90, 40, 0.3); transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.bento-card-highlight { border-color: rgba(212, 162, 76, 0.25); }
.tag-gold {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(212, 162, 76, 0.15);
  color: #D4A24C;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid rgba(212, 162, 76, 0.2);
}
.tag-gold:hover { background: rgba(212, 162, 76, 0.25); border-color: rgba(212, 162, 76, 0.4); color: #e8b960; }
.recommend-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #D4A24C, #B97E2E);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.score-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #4CAF7D;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
}

/* ===== Statistics ===== */
.stat-card {
  background: linear-gradient(160deg, #221B15, #171310);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-card);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 4px;
  background: linear-gradient(135deg, #F05A28, #D4A24C);
  border-radius: 0 0 4px 0;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: rgba(240, 90, 40, 0.3); }
.stat-icon { font-size: 24px; margin-bottom: 12px; }
.stat-number {
  font-family: 'Barlow Condensed', 'Noto Sans SC', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--text-warm);
  transition: all 0.3s;
}
.stat-card:hover .stat-number {
  background: linear-gradient(135deg, #D4A24C, #F05A28);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-name { font-size: 15px; font-weight: 700; color: var(--text-warm); margin-top: 8px; }
.stat-desc { font-size: 12px; color: var(--text-muted); margin-top: 4px; line-height: 1.5; }

/* ===== Studio Cards ===== */
.studio-card {
  background: linear-gradient(160deg, #221B15, #171310);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-card);
  min-width: 280px;
  flex-shrink: 0;
}
.studio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(240, 90, 40, 0.3);
  border-color: rgba(240, 90, 40, 0.5);
}
.studio-cover { position: relative; overflow: hidden; height: 180px; }
.studio-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.studio-card:hover .studio-cover img { transform: scale(1.05); }
.studio-area-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D4A24C, #B97E2E);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}
.studio-score {
  position: absolute;
  top: 12px; right: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(76, 175, 125, 0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}
.studio-body { padding: 18px; }
.studio-body h3 { font-size: 20px; font-weight: 800; color: var(--text-warm); }
.studio-name-sub { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.studio-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.studio-tags span {
  font-size: 12px;
  color: rgba(247, 241, 231, 0.8);
  background: rgba(247, 241, 231, 0.06);
  border: 1px solid rgba(247, 241, 231, 0.1);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.studio-actions { display: flex; gap: 10px; margin-top: 16px; }

/* ===== Compare Section ===== */
.compare-card {
  background: linear-gradient(160deg, #221B15, #171310);
  border: 1px solid var(--border-warm);
  border-radius: 32px;
  padding: 28px 20px;
  box-shadow: var(--shadow-card);
}
.compare-header { display: flex; align-items: center; margin-bottom: 24px; }
.compare-side-label {
  flex: 1;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-warm);
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(247, 241, 231, 0.04);
}
.compare-middle-spacer { width: 100px; flex-shrink: 0; text-align: center; font-size: 13px; color: var(--text-muted); }
.compare-row { display: flex; align-items: center; margin-bottom: 14px; }
.compare-bar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-bar-wrap.left { flex-direction: row; justify-content: flex-end; }
.compare-bar-wrap.right { flex-direction: row; }
.compare-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(247, 241, 231, 0.06);
  overflow: hidden;
  flex: 1;
  max-width: 160px;
}
.compare-bar .bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.6s ease;
}
.bar-primary { background: linear-gradient(90deg, #F05A28, #E03C1A); }
.bar-gold { background: linear-gradient(90deg, #D4A24C, #B97E2E); }
.compare-bar-value { font-size: 12px; font-weight: 700; color: rgba(247, 241, 231, 0.7); font-family: 'Barlow Condensed', sans-serif; min-width: 30px; }
.compare-label-center {
  width: 100px;
  flex-shrink: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(247, 241, 231, 0.6);
  letter-spacing: 0.5px;
}
.compare-cta {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #F05A28, #E03C1A);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.compare-cta p { color: #fff; font-size: 16px; font-weight: 700; }
.compare-cta .btn-white {
  background: #fff;
  color: #F05A28;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
  transition: all 0.2s;
}
.compare-cta .btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); }
.compare-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240, 90, 40, 0.2), rgba(212, 162, 76, 0.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 8px;
  border: 1px solid rgba(240, 90, 40, 0.2);
}

/* ===== FAQ ===== */
.faq-item {
  background: #221B15;
  border: 1px solid rgba(247, 241, 231, 0.1);
  border-radius: 20px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.faq-item[open] {
  background: linear-gradient(160deg, #2A211A, #201913);
  border-color: rgba(240, 90, 40, 0.3);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-question { font-size: 16px; font-weight: 700; color: var(--text-warm); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(240, 90, 40, 0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 18px;
  color: #F05A28;
  font-weight: 700;
  line-height: 1;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: rgba(240, 90, 40, 0.3); }
.faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(247, 241, 231, 0.08);
  padding-top: 14px;
}
.faq-answer p {
  font-size: 15px;
  color: rgba(247, 241, 231, 0.75);
  line-height: 1.75;
}

/* ===== Form ===== */
.form-section { position: relative; }
.form-card {
  background: linear-gradient(160deg, #221B15, #171310);
  border: 1px solid var(--border-warm);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 860px;
  margin: 0 auto;
}
.form-top-bar { height: 4px; background: linear-gradient(90deg, #F05A28, #D4A24C); }
.form-header { padding: 28px 28px 8px; text-align: center; }
.form-header h2 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; color: var(--text-warm); }
.form-header p { color: var(--text-muted); font-size: 14px; margin-top: 6px; }
.form-grid {
  padding: 20px 28px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: rgba(247, 241, 231, 0.7); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  background: #FAF6EF;
  border: 1px solid rgba(23, 19, 16, 0.12);
  font-size: 14px;
  color: #171310;
  transition: all 0.25s;
}
.form-group textarea { height: auto; padding: 12px 16px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F05A28;
  box-shadow: 0 0 0 3px rgba(240, 90, 40, 0.2);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23171310' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(23, 19, 16, 0.35); }
.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.privacy-note { font-size: 12px; color: rgba(247, 241, 231, 0.5); }
.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(76, 175, 125, 0.15);
  color: #4CAF7D;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}
.form-success.show { display: flex; }
.form-success svg { width: 18px; height: 18px; }

/* ===== Footer ===== */
.site-footer {
  background: #171310;
  border-top: 1px solid var(--border-warm);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 24px; }
}
.footer-brand-desc { color: var(--text-muted); font-size: 14px; margin-top: 12px; line-height: 1.7; }
.footer-title { font-size: 14px; font-weight: 700; color: var(--text-warm); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #F05A28; }
.footer-area-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-area-tags span {
  font-size: 12px;
  color: rgba(247, 241, 231, 0.6);
  background: rgba(247, 241, 231, 0.04);
  border: 1px solid rgba(247, 241, 231, 0.08);
  padding: 2px 10px;
  border-radius: 999px;
}
.footer-bottom {
  border-top: 1px solid var(--border-warm);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer-bottom .copyright { font-size: 13px; color: rgba(247, 241, 231, 0.5); }
.footer-bottom .keywords { font-size: 12px; color: rgba(247, 241, 231, 0.35); }

/* ===== Section Padding ===== */
.section-pad { padding: 80px 0; }
@media (min-width: 768px) { .section-pad { padding: 110px 0; } }

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  .hero-title { font-size: clamp(2.2rem, 5.5vw, 3.5rem); }
  .compare-row { flex-wrap: nowrap; }
  .compare-label-center { width: 80px; font-size: 12px; }
}
@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
  .hero-data-row { gap: 14px; }
  .hero-data-num { font-size: 1.6rem; }
  .compare-card { padding: 20px 12px; }
  .compare-header { flex-direction: column; gap: 10px; }
  .compare-middle-spacer { display: none; }
  .compare-label-center { width: 70px; font-size: 11px; }
  .compare-side-label { font-size: 15px; }
  .form-grid { padding: 16px 16px 24px; }
  .form-header { padding: 20px 16px 4px; }
  .bento-card { padding: 16px; }
  .studio-card { min-width: 260px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-subtitle { font-size: 14px; }
  .btn-primary-lg, .btn-outline { padding: 12px 20px; font-size: 14px; }
  .section-title { font-size: 1.6rem; }
}
