/* ============================================
   BASE & RESET
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201,168,76,0.15);
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-4: #222222;
  --border: rgba(255,255,255,0.08);
  --text: #F0F0F0;
  --text-muted: #888888;
  --text-dim: #555555;
  --green: #3ECF8E;
  --green-dim: rgba(62,207,142,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3 { line-height: 1.2; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  width: 100%;
  justify-content: center;
}
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); }

.btn-large { padding: 18px 36px; font-size: 16px; }

/* ============================================
   NAVBAR
============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-logo .arrow { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark-2);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mob-link {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mob-link:hover { color: #fff; }
.mob-cta {
  background: var(--gold);
  color: #000 !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px !important;
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-muted);
}

.highlight {
  color: var(--gold);
  position: relative;
}

.hero-sub {
  display: block;
  color: var(--text-muted);
  font-size: 0.65em;
  margin-top: 8px;
}

.strike {
  text-decoration: line-through;
  color: var(--text-dim);
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-num sup { font-size: 20px; vertical-align: super; }

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  font-size: 32px;
  color: var(--gold);
  font-weight: 300;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   PROBLEM
============================================ */
.problem {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.problem-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.problem-text em { color: #fff; font-style: normal; font-weight: 600; }

.problem-bold {
  color: #fff !important;
  font-weight: 600;
  font-size: 17px !important;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-top: 24px !important;
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.prob-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.prob-icon {
  font-size: 18px;
  color: #ff4444;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.prob-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.prob-card-green {
  border-color: rgba(62,207,142,0.3);
  background: var(--green-dim);
  grid-column: span 2;
}
.prob-card-green p { color: var(--text); }
.prob-icon-green { color: var(--green) !important; }

/* ============================================
   STORY / TIMELINE
============================================ */
.story {
  padding: 100px 0;
}

.timeline {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding-bottom: 48px;
}

.tl-item:last-child { padding-bottom: 0; }

.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}

.tl-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
}

.tl-dot-gold {
  width: 18px;
  height: 18px;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.8);
}

.tl-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-top: 8px;
  opacity: 0.3;
}

.tl-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.tl-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.tl-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.tl-content strong { color: #fff; }

.tl-score {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.score-chip {
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.score-mid { background: rgba(62,207,142,0.1); border-color: rgba(62,207,142,0.3); color: var(--green); }
.score-total { background: var(--dark-4); border-color: var(--border); color: var(--text); }
.score-gold { background: var(--gold-dim); border-color: rgba(201,168,76,0.4); color: var(--gold); font-weight: 700; }

.tl-quote {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--dark-3);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   WHAT WORKED
============================================ */
.whatworked {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pillar {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.pillar:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

.pillar-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.pillar p em { color: #fff; font-style: normal; font-weight: 600; }

/* ============================================
   COURSE
============================================ */
.course {
  padding: 100px 0;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.module-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-2px);
}

.module-bonus {
  border-color: rgba(201,168,76,0.3);
  background: var(--gold-dim);
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.mod-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.mod-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}

.bonus-tag {
  font-size: 11px !important;
  font-weight: 800;
  background: var(--gold);
  color: #000;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.08em;
}

.mod-week {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.module-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.module-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.module-card ul li:last-child { border-bottom: none; }

.module-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ============================================
   PACKAGES / PRICING
============================================ */
.packages {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}

.price-featured {
  background: linear-gradient(160deg, #1C1800 0%, var(--dark-3) 100%);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.2);
}

.price-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-header { margin-bottom: 8px; }

.price-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.price-sub {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 20px 0 16px;
}

.price-featured .price-amount { color: var(--gold); }

.price-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-features {
  margin-bottom: 32px;
}

.price-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.price-featured .btn-outline {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.price-featured .btn-outline:hover {
  background: var(--gold-light);
}

/* Sprint card */
.sprint-card {
  margin-top: 32px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sprint-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}

.sprint-left h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.sprint-left p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
}

.sprint-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.sprint-price {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  padding: 100px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testi-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testi-placeholder {
  opacity: 0.5;
  border-style: dashed;
}

.testi-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-quote {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-dim);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.testi-author span {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================
   FAQ
============================================ */
.faq {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }

.faq-list { margin-top: 56px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-q:hover { color: var(--gold); }

.faq-q span {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item.open .faq-q span { transform: rotate(45deg); }

.faq-a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ============================================
   CONTACT
============================================ */
.contact {
  padding: 100px 0;
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.contact-inner h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.contact-inner > p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #fff;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.contact-form .btn-large {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-inner p {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-small { font-size: 12px !important; color: var(--text-dim) !important; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-cards { grid-template-columns: 1fr 1fr; }

  .pillars-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .module-bonus { grid-column: span 2; display: block; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; }

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

  .sprint-card { flex-direction: column; text-align: center; align-items: center; }
  .sprint-right { align-items: center; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 36px; }
  .modules-grid { grid-template-columns: 1fr; }
  .module-bonus { grid-column: span 1; }
  .problem-cards { grid-template-columns: 1fr; }
  .prob-card-green { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
