/* ============================================================
   landing.css — Premium landing page styles for AI Call Center
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html, body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #060614;
}

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --ai-primary:    #6366f1;
  --ai-primary-d:  #4f46e5;
  --ai-accent:     #06b6d4;
  --ai-accent-d:   #0891b2;
  --ai-success:    #10b981;
  --ai-warning:    #f59e0b;
  --ai-danger:     #ef4444;
  --ai-pink:       #ec4899;

  --bg-deep:   #060614;
  --bg-card:   rgba(255,255,255,0.035);
  --border:    rgba(255,255,255,0.08);

  --grad-hero: linear-gradient(135deg, #0a0820 0%, #0d0b2e 40%, #0a1628 100%);
  --grad-main: linear-gradient(135deg, var(--ai-primary-d), var(--ai-accent));
  --grad-text: linear-gradient(90deg, #818cf8, #06b6d4, #a78bfa);
}

/* ── Noise texture overlay ───────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── Navigation ─────────────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 6, 20, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(99,102,241,0.5);
  transition: box-shadow 0.3s, transform 0.3s;
}

.nav-brand:hover .brand-icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 30px rgba(99,102,241,0.7);
}

.brand-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-text span { color: var(--ai-accent); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-nav-login {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  background: transparent;
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-nav-login:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.btn-nav-primary {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: none;
  background: var(--grad-main);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(99,102,241,0.45);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79,70,229,0.6);
  color: #fff;
}

/* ── Hero Section ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

/* Ambient glow blobs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 15% 40%, rgba(99,102,241,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(6,182,212,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 50% 90%, rgba(168,85,247,0.15) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}

/* Animated orbiting circles */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.08);
  box-shadow:
    0 0 0 80px rgba(99,102,241,0.04),
    0 0 0 160px rgba(6,182,212,0.03),
    0 0 0 260px rgba(168,85,247,0.02);
  animation: pulse-ring 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes pulse-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50%       { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

/* ── Hero Content ───────────────────────────────────────── */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.35);
  color: #a5b4fc;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  animation: fadeInUp 0.5s ease both;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  color: var(--ai-warning);
  animation: flicker 1.8s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; transform: scale(0.92); }
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 860px;
  margin-bottom: 1.6rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.8rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-hero-primary {
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  border: none;
  background: var(--grad-main);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(79,70,229,0.5);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79,70,229,0.65);
  color: #fff;
}
.btn-hero-primary:hover::after { opacity: 1; }

.btn-hero-outline {
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-3px);
  color: #fff;
}

/* ── Stats Strip ─────────────────────────────────────────── */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 2rem 1.5rem 3rem;
  animation: fadeInUp 0.9s ease 0.4s both;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 0 3rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ── Features Section ────────────────────────────────────── */
.features {
  background: #08071f;
  padding: 6rem 1.5rem 7rem;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  color: #a5b4fc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-sub {
  color: rgba(255,255,255,0.45);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Feature Cards Grid ──────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

/* Subtle gradient top border on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Inner glow on hover */
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(99,102,241,0.2);
  border-color: rgba(99,102,241,0.2);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after  { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }

.feature-icon.purple { background: rgba(99,102,241,0.15);  color: #818cf8;  box-shadow: 0 0 20px rgba(99,102,241,0.2); }
.feature-icon.cyan   { background: rgba(6,182,212,0.12);   color: #22d3ee;  box-shadow: 0 0 20px rgba(6,182,212,0.18); }
.feature-icon.green  { background: rgba(16,185,129,0.12);  color: #34d399;  box-shadow: 0 0 20px rgba(16,185,129,0.18); }
.feature-icon.amber  { background: rgba(245,158,11,0.12);  color: #fbbf24;  box-shadow: 0 0 20px rgba(245,158,11,0.18); }
.feature-icon.red    { background: rgba(239,68,68,0.12);   color: #f87171;  box-shadow: 0 0 20px rgba(239,68,68,0.18); }
.feature-icon.indigo { background: rgba(167,139,250,0.12); color: #a78bfa;  box-shadow: 0 0 20px rgba(167,139,250,0.18); }

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── How It Works ────────────────────────────────────────── */
.how-it-works {
  background: #060614;
  padding: 6rem 1.5rem 7rem;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.step-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateY(20px);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:nth-child(1) { transition-delay: 0.05s; }
.step-card:nth-child(3) { transition-delay: 0.15s; }
.step-card:nth-child(5) { transition-delay: 0.25s; }

.step-card:hover {
  background: rgba(99,102,241,0.07);
  border-color: rgba(99,102,241,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.step-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ai-primary);
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 1.3rem;
  box-shadow: 0 8px 25px rgba(99,102,241,0.35);
  transition: transform 0.3s;
}
.step-card:hover .step-icon { transform: scale(1.1) rotate(-5deg); }

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.step-connector {
  color: rgba(99,102,241,0.4);
  font-size: 1.2rem;
  padding: 0 1rem;
  flex-shrink: 0;
}

/* ── Integrations ─────────────────────────────────────────── */
.integrations {
  background: #08071f;
  padding: 6rem 1.5rem 7rem;
  position: relative;
  overflow: hidden;
}

.integrations::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.providers-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.provider-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 2rem 2.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  min-width: 140px;
  opacity: 0;
  transform: translateY(16px);
}

.provider-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.provider-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(99,102,241,0.25);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.provider-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s;
}
.provider-card:hover .provider-icon { transform: scale(1.15) rotate(-8deg); }

.provider-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: #060614;
  padding: 5rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.18) 0%, rgba(6,182,212,0.1) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}

.cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────────── */
.landing-footer {
  background: #040412;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.landing-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.6), transparent);
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.footer-tagline {
  color: rgba(255,255,255,0.3);
  font-size: 0.83rem;
  margin-bottom: 0;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 1.5rem auto;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stagger card entrances */
.features-grid .feature-card {
  animation: fadeInUp 0.6s ease both;
}
.features-grid .feature-card:nth-child(1) { animation-delay: 0.05s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.12s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.19s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.26s; }
.features-grid .feature-card:nth-child(5) { animation-delay: 0.33s; }
.features-grid .feature-card:nth-child(6) { animation-delay: 0.40s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .steps-grid {
    flex-direction: column;
    gap: 0.75rem;
  }
  .step-connector { transform: rotate(90deg); padding: 0.25rem 0; }
  .providers-grid { gap: 1rem; }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-item {
    padding: 0 1.5rem;
  }
  .landing-nav {
    padding: 0.9rem 1.25rem;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stats-strip {
    gap: 0;
    flex-direction: column;
    align-items: center;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 2rem;
    width: 100%;
  }
  .stat-item:last-child { border-bottom: none; }
  .btn-hero-primary, .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }
  .provider-card { min-width: 100px; padding: 1.5rem 1.5rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn-hero-primary,
  .cta-actions .btn-hero-outline { width: 100%; justify-content: center; }
}
