/* =============================================
   Biz Guild — style.css
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --navy:        #1A2B5E;
  --navy-dark:   #111E45;
  --navy-light:  #2A3F7A;
  --gold:        #C8A850;
  --gold-light:  #E2C97E;
  --gold-pale:   #F9F3E3;
  --white:       #FFFFFF;
  --bg:          #F7F8FC;
  --bg-section:  #F2F4F9;
  --text:        #1A1C2E;
  --text-sub:    #5A6175;
  --text-light:  #8A90A8;
  --border:      #E2E6F0;
  --card-shadow: 0 4px 24px rgba(26, 43, 94, 0.10);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  0.25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography Utilities ---------- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 64px 0; }
section.bg-section { background: var(--bg-section); }

/* ---------- Global Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 2px 16px rgba(26,43,94,0.10); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 20px;
  max-width: 780px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 24px;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }
.nav-cta svg { flex-shrink: 0; }

/* ---------- Hero ---------- */
#hero {
  padding-top: 56px;
  min-height: 100svh;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(200,168,80,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(42,63,122,0.6) 0%, transparent 70%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,168,80,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,80,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 40px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,80,0.15);
  border: 1px solid rgba(200,168,80,0.35);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 24px;
  margin-bottom: 20px;
  width: fit-content;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(30px, 8vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--gold-light); }

.hero-sub {
  margin-top: 16px;
  font-size: clamp(13px, 3.5vw, 16px);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 480px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 32px;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(200,168,80,0.35);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,168,80,0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 32px;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(200,168,80,0.22);
  background: rgba(0,0,0,0.14);
  width: 100%;
}

.hero-stat {
  flex: 1;
  padding: 24px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat--accent {
  background: rgba(200,168,80,0.06);
}

.stat-title {
  display: block;
  font-size: clamp(13px, 3.2vw, 16px);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.45;
  letter-spacing: 0.08em;
}
.hero-stat--accent .stat-title {
  font-weight: 900;
  letter-spacing: 0.1em;
}
.stat-desc {
  display: block;
  font-size: clamp(10px, 2.4vw, 11px);
  color: rgba(255,255,255,0.58);
  margin-top: 10px;
  letter-spacing: 0.05em;
  line-height: 1.65;
}

/* ---------- Section Header ---------- */
.section-header { margin-bottom: 28px; }

.section-lead {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
}

/* ---------- Events Section ---------- */
#events { background: var(--bg); }

.events-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- Event Card ---------- */
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(26,43,94,0.14); }

.event-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.event-card:hover .event-card-img img { transform: scale(1.03); }

.event-header-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 32px;
  background:
    radial-gradient(ellipse 85% 70% at 15% 25%, rgba(200,168,80,0.14) 0%, transparent 58%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 48%, var(--navy-light) 100%);
}

.event-header-fallback-inner {
  width: 100%;
  max-width: 100%;
}

.event-header-eyebrow {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 184, 106, 0.88);
}

.event-header-accent {
  width: 52px;
  height: 2px;
  margin-bottom: 16px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.event-header-title {
  margin: 0;
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.event-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.badge-upcoming {
  background: rgba(200,168,80,0.92);
  color: var(--navy-dark);
}
.badge-soldout {
  background: rgba(200,80,80,0.88);
  color: white;
}

.event-card-body { padding: 20px; }

.event-card-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.event-card-title {
  font-size: clamp(16px, 4.5vw, 19px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-sub);
}
.meta-item svg { flex-shrink: 0; margin-top: 2px; }
.meta-item strong { color: var(--text); font-weight: 600; }

.event-card-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 18px;
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.event-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}
.event-price span { font-size: 11px; font-weight: 500; color: var(--text-sub); }

.btn-entry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 24px;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-entry:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-entry:active { transform: translateY(0); }
.btn-entry.disabled {
  background: var(--border);
  color: var(--text-light);
  pointer-events: none;
}

.events-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-sub);
  font-size: 14px;
}

/* ---------- Concept Section ---------- */
#about {
  background: var(--white);
  padding-bottom: 40px;
}

.about-card {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,80,0.15), transparent 70%);
}

.about-card-title {
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
  position: relative;
}
.about-card-title .gold { color: var(--gold-light); }

.about-philosophy {
  margin-top: 20px;
  padding: 20px 16px;
  border: 1px solid rgba(200,168,80,0.28);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  position: relative;
}
.about-philosophy-heading {
  font-size: clamp(16px, 4.2vw, 18px);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.about-philosophy-lead {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.about-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(200,168,80,0.14);
}
.about-step-card {
  flex: 1;
  padding: 16px 14px 18px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,168,80,0.16);
  border-radius: var(--radius-sm);
}
.about-step-card--goal {
  border-color: rgba(200,168,80,0.38);
  background: rgba(200,168,80,0.07);
}
.about-step-num {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 11px;
}
.about-step-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.about-step-card--goal .about-step-title {
  color: var(--gold-light);
  font-weight: 900;
}
.about-step-desc {
  margin-top: 9px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  letter-spacing: 0.03em;
}
.about-step-card--goal .about-step-desc {
  color: rgba(255,255,255,0.75);
}

.about-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  flex-shrink: 0;
  color: rgba(200,168,80,0.45);
  font-size: 11px;
}
.about-step-connector::after {
  content: '↓';
  line-height: 1;
  font-weight: 300;
}

.about-philosophy-close {
  margin-top: 22px;
  padding: 16px 14px;
  border-top: 1px solid rgba(200,168,80,0.25);
  text-align: center;
}
.about-philosophy-close p {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.9;
  letter-spacing: 0.03em;
}
.about-philosophy-close p + p { margin-top: 8px; }
.about-philosophy-close .gold { color: var(--gold-light); font-weight: 800; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  position: relative;
}
.about-tag {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(200,168,80,0.30);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ---------- Flat Icons ---------- */
.flat-icon {
  display: block;
  line-height: 0;
}
.flat-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- Benefits Section ---------- */
#benefits {
  background: var(--bg-section);
  padding-top: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: var(--card-shadow); }

.benefit-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  padding: 0;
  border-radius: 10px;
  background: var(--gold-pale);
  border: 1px solid rgba(200,168,80,0.22);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon .flat-icon {
  width: 20px;
  height: 20px;
}
.benefit-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 6px;
}
.benefit-desc {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ---------- Voices Section ---------- */
#voices { background: var(--bg-section); }

.voices-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(26,39,68,0.04);
}
.voice-attr {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 10px;
}
.voice-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.voices-facebook-action {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.btn-voices-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(200, 168, 80, 0.35);
  border-radius: 32px;
  letter-spacing: 0.05em;
  text-align: center;
  box-shadow: 0 4px 16px rgba(26, 39, 68, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.btn-voices-facebook:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 168, 80, 0.55);
  box-shadow: 0 6px 22px rgba(26, 39, 68, 0.18);
}

/* ---------- Organizer Section ---------- */
#organizer { background: var(--bg-section); }

.organizer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.organizer-profile {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.organizer-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.organizer-stat-card {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
  border: 1px solid rgba(200,168,80,0.28);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
}
.organizer-stat-title {
  display: block;
  font-size: clamp(11px, 3vw, 12px);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.organizer-stat-desc {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.organizer-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.organizer-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
}
.organizer-avatar-placeholder .flat-icon {
  width: 32px;
  height: 32px;
}

.organizer-meta { flex: 1; }
.organizer-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}
.organizer-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.organizer-bio {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.85;
}
.organizer-bio p + p { margin-top: 12px; }

.organizer-facts--subtle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.organizer-fact-mini {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  padding: 8px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.5;
}
.organizer-fact-mini-label {
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.organizer-fact-mini-label::after { content: "："; }
.organizer-fact-mini-value {
  color: var(--text-light);
  font-weight: 500;
}

.organizer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: border-color var(--transition), color var(--transition);
}
.social-btn:hover { border-color: var(--navy); color: var(--navy); }
.social-btn.line { border-color: #06C755; color: #06C755; }
.social-btn.line:hover { background: #06C755; color: white; }

/* ---------- FAQ Section ---------- */
#faq { background: var(--white); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  background: var(--white);
  user-select: none;
  -webkit-user-select: none;
}
.faq-q:hover { background: var(--gold-pale); }

.faq-q-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}
.faq-q-text::before {
  content: 'Q';
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); }
.faq-icon svg { transition: stroke var(--transition); }
.faq-item.open .faq-icon svg { stroke: white; }

.faq-a {
  display: none;
  padding: 0 18px 16px;
}
.faq-item.open .faq-a { display: block; }

.faq-a-inner {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  padding-top: 2px;
}
.faq-a-inner::before {
  content: 'A';
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,168,80,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,80,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-banner-inner { position: relative; max-width: 480px; margin: 0 auto; }

.cta-banner-title {
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.cta-banner-title .gold { color: var(--gold-light); }

.cta-banner-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #06C755;
  color: white;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 32px;
  width: 100%;
  max-width: 320px;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(6,199,85,0.35);
}
.btn-line:hover { background: #05b04b; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(6,199,85,0.4); }

.btn-events-link {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.btn-events-link:hover { color: rgba(255,255,255,0.85); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-dark);
  padding: 36px 20px 24px;
}
.footer-inner {
  max-width: 780px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 24px;
}
.footer-nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.04em;
}

/* ---------- Scroll Top Button ---------- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,43,94,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 90;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--navy-light); }

/* ---------- Loading Animation ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease both; }
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.4s; }

/* ---------- Responsive: tablet+ ---------- */
@media (min-width: 900px) {
  .hero-inner {
    max-width: 1080px;
    padding: 0 48px;
  }
  .hero-content {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
    padding: 56px 0 36px;
  }
  .hero-stats {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }
  .hero-sub {
    max-width: none;
  }
}

@media (min-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-actions { flex-wrap: nowrap; }
  .organizer-highlights { gap: 12px; }
  .organizer-stat-card { padding: 16px 12px; }
  .organizer-facts--subtle { flex-direction: row; flex-wrap: wrap; }
  .organizer-fact-mini { flex: 1 1 calc(33.333% - 8px); min-width: 140px; }
}

@media (min-width: 720px) {
  .voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (min-width: 520px) {
  .about-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .about-step-connector { display: none; }
  .about-step-card { padding: 18px 12px; }
}

@media (min-width: 880px) {
  .about-steps {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
  .about-step-connector {
    display: flex;
    width: 20px;
    height: auto;
    align-self: center;
  }
  .about-step-connector::after {
    content: '→';
    font-size: 12px;
  }
  .about-step-card {
    padding: 18px 10px 20px;
  }
}

@media (min-width: 640px) {
  .cta-banner-actions { flex-direction: row; justify-content: center; }
  .btn-line { width: auto; }
}

@media (min-width: 780px) {
  .event-card-img { aspect-ratio: 16/6; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
