:root {
  --bg-primary: #fbfbfd;
  --bg-secondary: #f5f5f7;
  --bg-dark: #1d1d1f;
  --bg-darker: #161617;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --text-on-dark: #f5f5f7;
  --text-on-dark-secondary: #a1a1a6;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);
  --accent: #b8842a;
  --accent-light: #d4a554;
  --accent-bg: #faf4e8;
  --success: #2d8a4f;
  --danger: #c73e3e;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.011em;
}

img, svg { display: block; max-width: 100%; }

button { font-family: inherit; cursor: pointer; border: none; background: none; 
    min-height: unset;
    line-height: unset;
    margin: 0;
}

a { color: inherit; text-decoration: none; }


/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 32px 120px;
  background: var(--bg-primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(184, 132, 42, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(29, 29, 31, 0.04), transparent 50%);
}
.hero-piano {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 260px;
  opacity: 0.18;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0.5) 65%, transparent 100%);
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0.5) 65%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--text-primary);
}
.hero h1 .accent {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 44px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--text-primary);
  color: white;
  box-shadow: 0 10px 30px rgba(29, 29, 31, 0.25), 0 2px 6px rgba(29, 29, 31, 0.12);
}
.btn-primary:hover { color: #fff; background: #2d2d30; transform: translateY(-1px); box-shadow: 0 14px 36px rgba(29, 29, 31, 0.3), 0 3px 8px rgba(29, 29, 31, 0.15); }
.btn-secondary {
  background: white;
  color: var(--text-primary);
  box-shadow: inset 0 0 0 1px var(--border-strong), 0 6px 20px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
}
.btn-secondary:hover { background: #fafafa; transform: translateY(-1px); box-shadow: inset 0 0 0 1px var(--text-primary), 0 8px 24px rgba(0, 0, 0, 0.08); }
.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover { background: #a47323; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 18px;
  font-size: 14px;
}
.btn-ghost:hover { background: rgba(0,0,0,0.04); }

/* ============ SECTION ============ */
.section-retail {
  padding: 120px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-tight { padding: 80px 32px; }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  max-width: none;
  margin: 0;
}
.section-dark-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-light-bg {
  background: var(--bg-secondary);
  max-width: none;
  margin: 0;
}
.section-light-bg-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 32px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-dark .eyebrow { color: var(--accent-light); }

.section-title-2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.section-title-2 .accent {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--accent);
}
.section-sub {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 64px;
}
.section-dark .section-sub { color: var(--text-on-dark-secondary); }

.section-head-center { text-align: center; }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* ============ RETAIL SERVICES ============ */
.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
  background: white;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.service-card:nth-child(even) {
  grid-template-columns: 0.85fr 1fr;
}
.service-card:nth-child(even) .service-text { order: 2; }
.service-card:nth-child(even) .service-visual { order: 1; }
.service-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.service-name {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.service-prices {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
}
.service-price-item {
  display: flex;
  flex-direction: column;
}
.service-price-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}
.service-price-value {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.service-price-value .currency {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-tertiary);
  margin-left: 2px;
}
.service-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.service-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #f5f5f7 0%, #ebebef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-visual.dark {
  background: linear-gradient(135deg, #2a2a2c 0%, #1d1d1f 100%);
}
.service-visual.warm {
  background: linear-gradient(135deg, #faf4e8 0%, #f0e3c8 100%);
}
.service-visual.cool {
  background: linear-gradient(135deg, #eff4f8 0%, #d8e3ec 100%);
}

.service-extra {
  margin-top: 40px;
  padding: 44px 52px;
  background: linear-gradient(135deg, #faf4e8 0%, #f5ead2 100%);
  border: 0.5px solid rgba(184, 132, 42, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.service-extra::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}
.service-extra-text {
  text-align: left;
  flex: 1;
}
.service-extra-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.service-extra-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.service-extra-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 520px;
}

/* ============ MEMBERSHIP ============ */
.member-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.member-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.member-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
}
.member-stat-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: 56px;
  line-height: 1;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.member-stat-label {
  font-size: 14px;
  color: var(--text-on-dark-secondary);
  line-height: 1.4;
}

/* Toggle năm */
.toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}
.toggle-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.section-dark .toggle-label { color: var(--text-on-dark-secondary); }
.toggle-2 {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  padding: 5px;
  position: relative;
  
}
.section-dark .toggle-2 { background: rgba(255, 255, 255, 0.06); }
.toggle-2 button {
  position: relative;
  z-index: 2;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 999px;
  transition: color 0.25s;

}
.section-dark .toggle-2 button { color: var(--text-on-dark-secondary); }
.toggle-2 button.active { color: var(--text-primary); }
.section-dark .toggle-2 button.active { color: var(--text-primary); }
.toggle-pill {
  position: absolute;
  top: 5px;
  bottom: 5px;
  background: white;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
.toggle-badge {
  position: absolute;
  top: -10px;
  right: -8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: white;
  padding: 3px 8px;
  border-radius: 999px;
  pointer-events: none;
}

/* Membership cards */
.member-section {
  margin-bottom: 80px;
}
.member-section:last-child { margin-bottom: 0; }
.member-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}
.member-section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  width: auto;
}
.member-section-title .light {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--accent-light);
}
.member-section-meta {
  font-size: 14px;
  color: var(--text-on-dark-secondary);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, background 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
.card.featured {
  background: linear-gradient(180deg, rgba(184, 132, 42, 0.18) 0%, rgba(184, 132, 42, 0.04) 100%);
  border-color: rgba(212, 165, 84, 0.4);
}
.card.featured:hover { border-color: rgba(212, 165, 84, 0.6); }
.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.card-tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.card-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.card-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-on-dark-secondary);
  line-height: 1.5;
  margin-bottom: 28px;
  min-height: 42px;
}
.card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.card-price-num {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.card-price-currency {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-on-dark-secondary);
}
.card-price-period {
  font-size: 14px;
  color: var(--text-on-dark-secondary);
  margin-left: 2px;
}
.card-price-original {
  font-size: 14px;
  color: var(--text-on-dark-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
}
.card-price-strike {
  text-decoration: line-through;
  opacity: 0.6;
}
.card-savings {
  color: var(--accent-light);
  font-weight: 500;
}
.card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-on-dark-secondary);
  padding: 10px 0;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-meta-item svg { width: 14px; height: 14px; opacity: 0.7; }
.card-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.card-features li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-on-dark);
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}
.card-features li:last-child { border-bottom: none; }
.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23d4a554' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.card-cta {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  background: white;
  color: var(--text-primary);
  border-radius: 999px;
  transition: all 0.25s;
}
.card-cta:hover { background: var(--bg-secondary); transform: translateY(-1px); }
.card.featured .card-cta { background: var(--accent); color: white; }
.card.featured .card-cta:hover { background: #a47323; }

/* ============ COMPARISON + FAQ ============ */
.compare-table {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 96px;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 0.5px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head {
  background: var(--bg-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.compare-row.head .featured-col {
  color: var(--accent);
}
.compare-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15.5px;
}
.compare-cell.center {
  justify-content: center;
}
.compare-cell.featured-col {
  font-weight: 500;
}
.compare-row:not(.head) .featured-col {
  background: linear-gradient(180deg, rgba(184, 132, 42, 0.05), rgba(184, 132, 42, 0.02));
  margin: -22px 0;
  padding: 22px 0;
}
.compare-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.compare-icon.yes { background: var(--accent-bg); color: var(--accent); }
.compare-icon.no { background: #f0f0f2; color: var(--text-tertiary); }
.compare-icon svg { width: 12px; height: 12px; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}
.faq-side h3 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.faq-side h3 .accent {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--accent);
}
.faq-side p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}
.faq-contact-card {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.faq-contact-card .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.faq-contact-card .phone {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: block;
  color: var(--text-primary);
}
.faq-contact-card .phone:hover { color: var(--accent); }
.faq-contact-card .hours {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 0.5px solid var(--border);
}
.faq-item:first-child { border-top: 0.5px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-icon svg { width: 14px; height: 14px; transition: transform 0.3s; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-item.open .faq-icon { background: var(--accent-bg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-a-inner {
  padding: 0 0 24px 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 700px;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ============ CTA FOOTER ============ */
.cta-footer {
  text-align: center;
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.cta-footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184, 132, 42, 0.1), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(29, 29, 31, 0.05), transparent 60%);
  pointer-events: none;
}
.cta-footer-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.cta-footer h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.cta-footer h2 .accent {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--accent);
}
.cta-footer p {
  font-size: 19px;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.5;
}
.cta-footer-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

footer.foot {
  background: var(--bg-dark);
  color: var(--text-on-dark-secondary);
  padding: 48px 32px;
  font-size: 13px;
  text-align: center;
}

/* ============ MODAL ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal-backdrop.show .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}
.modal-close:hover { background: #ebebef; }
.modal-close svg { width: 14px; height: 14px; }
.modal-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.modal-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.modal-section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}
.modal-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.modal-year-btn {
  padding: 14px 12px;
  background: white;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.modal-year-btn:hover { border-color: var(--text-primary); }
.modal-year-btn.active {
  border-color: var(--accent);
  background: var(--accent-bg);
}
.modal-year-num {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.modal-year-price {
  font-size: 13px;
  color: var(--text-secondary);
}
.modal-year-btn.active .modal-year-price { color: var(--accent); }
.modal-year-btn .badge {
  position: absolute;
  top: -8px;
  right: -6px;
  font-size: 10px;
  font-weight: 700;
  background: var(--accent);
  color: white;
  padding: 2px 7px;
  border-radius: 999px;
	height: unset;
}
.modal-summary {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 14px;
}
.modal-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}
.modal-summary-row.total {
  font-size: 16px;
  font-weight: 600;
  border-top: 0.5px solid var(--border);
  margin-top: 6px;
  padding-top: 12px;
}
.modal-summary-row .label { color: var(--text-secondary); }
.modal-summary-row.savings { color: var(--accent); }
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.modal-form input,
.modal-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.modal-form input:focus,
.modal-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.modal-form textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.modal-submit {
  width: 100%;
  padding: 15px 20px;
  background: var(--text-primary);
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.25s;
}
.modal-submit:hover { background: #2d2d30; transform: translateY(-1px); }

/* ============ MOBILE ============ */
@media (max-width: 900px) {
	.member-section-title span.light {
		display: block;
	}
    .service-price-value {
        font-size: 20px;
    }
    .service-visual,
    .service-visual.warm {
        order: -1;
    }
    .service-extra {
        padding: 30px 20px;
    }
	.modal-year-price {
		font-size: 10px;
	}
  .nav-links { display: none; }
  .section { padding: 80px 24px; }
  .section-light-bg-inner { padding: 80px 24px; }
  .hero { padding: 60px 24px 80px; min-height: 80vh; }
  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 32px;
  }
  .service-card:nth-child(even) .service-text { order: 2; }
  .service-card:nth-child(even) .service-visual { order: 1; }
  .service-name { font-size: 28px; }
  .service-extra {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .service-extra-text { text-align: left; }
  .member-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cards { grid-template-columns: 1fr; gap: 16px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-side h3 { font-size: 28px; }
  .compare-row { padding: 16px 20px; font-size: 14px; }
  .compare-row { grid-template-columns: 1.2fr 0.9fr 0.9fr; }
  .modal { padding: 32px 20px;  overflow-x: hidden;}
  .member-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }