/* ===========================================================
   Balenieproduktov.sk — spoločné štýly (TMAVÁ TÉMA)
   =========================================================== */

/* Self-hosted Inter (latin + latin-ext) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('Assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('Assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('Assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('Assets/fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('Assets/fonts/inter-800.woff2') format('woff2');
}

:root {
  --color-primary: #2bd4cc;        /* svieža tyrkysová (akcent na tmavom) */
  --color-primary-dark: #14a39b;
  --color-accent: #3be0d8;
  --color-accent-soft: rgba(43, 212, 204, 0.12);  /* jemné akcentové pozadie */
  --color-heading: #f2f8f8;        /* nadpisy – takmer biele */
  --color-text: #c2d2d4;           /* hlavný text – svetlosivá */
  --color-muted: #8597a0;          /* tlmený text */
  --color-bg: #0b1316;             /* hlavné pozadie */
  --color-bg-soft: #0f1c20;        /* jemne odlíšené pozadie sekcie */
  --color-card: #13242a;           /* pozadie kariet */
  --color-card-hover: #182d34;
  --color-input: #0c1a1e;          /* pozadie polí formulára */
  --color-footer: #070f12;         /* pozadie pätičky */
  --color-border: #21353c;         /* okraje */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 26px 64px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 14px 40px rgba(43, 212, 204, 0.22);
  --max-width: 1160px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  color: var(--color-heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { color: var(--color-text); }

a { color: var(--color-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-accent); }

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section-soft { background: var(--color-bg-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--color-muted); margin-top: 14px; font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-dark) 100%);
  color: #04211f;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(43, 212, 204, 0.34); color: #04211f; }
.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-heading);
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: #0a3d3a;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #0a3d3a; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 19, 22, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.15rem; color: var(--color-heading); }
.logo:hover { color: var(--color-heading); }
.logo-img { display: block; width: auto; }
.site-header .logo-img { height: 66px; }
.footer-brand .logo-img { height: 92px; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a { color: var(--color-text); font-weight: 500; font-size: 0.98rem; }
.nav-links a:hover { color: var(--color-primary); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-weight: 700; color: var(--color-heading); white-space: nowrap; }
.nav-phone:hover { color: var(--color-primary); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--color-heading); border-radius: 2px; transition: .3s; }

/* ---------- Hero (celoplošný, fotka ako pozadie vpravo) ---------- */
.hero {
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: stretch;
}
/* fotka – celá viditeľná, umiestnená vpravo */
.hero-bg {
  position: absolute; top: 0; bottom: 0; right: 0;
  width: 58%;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}
/* prelínanie fotky do tmavej vľavo + jemné stmavenie celej fotky, aby ladila s témou */
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg,
      var(--color-bg) 0%,
      var(--color-bg) 30%,
      rgba(11,19,22,0.85) 42%,
      rgba(11,19,22,0.30) 58%,
      rgba(11,19,22,0.10) 100%),
    radial-gradient(900px 500px at 90% 0%, rgba(43,212,204,0.12), transparent 60%),
    linear-gradient(0deg, rgba(7,15,18,0.45) 0%, transparent 30%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 96px 24px 120px;
}
.hero-content { max-width: 600px; }
.hero-content h1 { margin: 16px 0 22px; font-size: clamp(2.4rem, 5.2vw, 4rem); line-height: 1.08; }
.hero-content h1 .accent { color: var(--color-primary); }
.hero-content .lead { font-size: 1.18rem; color: var(--color-text); margin-bottom: 34px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* spodný pruh s odrážkami */
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(7, 13, 16, 0.66);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border);
}
.hero-strip-inner {
  display: flex; flex-wrap: wrap; gap: 14px 36px;
  align-items: center; justify-content: flex-start;
  padding-top: 18px; padding-bottom: 18px;
}
.hs-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.95rem; font-weight: 600; color: var(--color-heading);
  white-space: nowrap;
}
.hs-item svg { width: 17px; height: 17px; stroke: var(--color-accent); flex-shrink: 0; }

/* ---------- Feature cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--color-primary-dark); }
.feature-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--color-accent-soft);
  display: grid; place-items: center; margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--color-primary); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--color-muted); font-size: 0.98rem; }

/* ---------- Use cases ---------- */
.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.use-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s ease, transform .25s ease;
}
.use-card:hover { border-color: var(--color-primary); transform: translateY(-4px); }
.use-emoji {
  font-size: 1.6rem; width: 52px; height: 52px; border-radius: 14px;
  background: var(--color-accent-soft);
  display: grid; place-items: center; margin-bottom: 18px;
}
.use-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.use-card ul { list-style: none; display: grid; gap: 8px; }
.use-card li { position: relative; padding-left: 22px; color: var(--color-muted); font-size: 0.96rem; }
.use-card li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-primary);
}

/* ---------- Tech / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tech-list { list-style: none; display: grid; gap: 16px; margin-top: 26px; }
.tech-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 1.05rem; color: var(--color-text); }
.tech-list .tl-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px;
  background: var(--color-accent-soft); display: grid; place-items: center;
}
.tech-list .tl-icon svg { width: 17px; height: 17px; stroke: var(--color-primary); }
.tech-visual {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 40px;
}
.tech-stat { text-align: center; }
.tech-stat .num { font-size: 3.4rem; font-weight: 800; color: var(--color-primary); line-height: 1; }
.tech-stat .lbl { color: var(--color-muted); margin-top: 8px; font-weight: 600; }
.tech-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; justify-content: center; }
.tech-badge {
  background: var(--color-bg-soft); border: 1px solid var(--color-border); border-radius: 50px;
  padding: 8px 18px; font-size: 0.88rem; font-weight: 600; color: var(--color-primary);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #13343a 0%, #0c2226 100%);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  color: var(--color-heading);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 20% 10%, rgba(43,212,204,0.25), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--color-heading); margin-bottom: 16px; }
.cta-band p { color: var(--color-text); max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }

/* ---------- Reference gallery ---------- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.ref-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  aspect-ratio: 4/3;
}
.ref-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ref-item:hover img { transform: scale(1.06); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.contact-card .ci-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: var(--color-accent-soft); display: grid; place-items: center;
}
.contact-card .ci-icon svg { width: 24px; height: 24px; stroke: var(--color-primary); }
.contact-card .ci-label { font-size: 0.82rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-card .ci-value { font-weight: 700; color: var(--color-heading); font-size: 1.1rem; }
.contact-card .ci-value a { color: var(--color-heading); }
.contact-card .ci-value a:hover { color: var(--color-primary); }

.form-card {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; color: var(--color-heading); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 1rem; color: var(--color-heading);
  transition: border-color .2s ease, box-shadow .2s ease;
  background: var(--color-input);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #5d7077; }
.form-group select { color: var(--color-heading); }
.form-group select option { background: var(--color-card); color: var(--color-heading); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(43,212,204,0.15); background: var(--color-bg);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--color-muted); margin-top: 6px; }
.form-success {
  display: none; background: var(--color-accent-soft); color: var(--color-accent);
  border-radius: var(--radius-sm); padding: 16px 20px; font-weight: 600; margin-bottom: 20px;
  border: 1px solid var(--color-primary-dark);
}
.form-error {
  display: none; background: rgba(255, 99, 99, 0.10); color: #ff9a9a;
  border-radius: var(--radius-sm); padding: 16px 20px; font-weight: 600; margin-bottom: 20px;
  border: 1px solid rgba(255, 99, 99, 0.45);
}
/* anti-spam honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 400px at 90% -20%, rgba(43,212,204,0.14), transparent 60%),
    var(--color-bg-soft);
  padding: 70px 0 56px;
  border-bottom: 1px solid var(--color-border);
}
.page-hero .breadcrumb { font-size: 0.9rem; color: var(--color-muted); margin-bottom: 14px; }
.page-hero .breadcrumb a { color: var(--color-muted); }
.page-hero .breadcrumb a:hover { color: var(--color-primary); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: var(--color-muted); margin-top: 14px; font-size: 1.1rem; max-width: 640px; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.18rem; margin: 28px 0 10px; color: var(--color-heading); }
.prose p { margin-bottom: 16px; color: var(--color-text); }
.prose ul { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; color: var(--color-text); }
.prose table {
  width: 100%; border-collapse: collapse; margin: 18px 0 28px; font-size: 0.95rem;
}
.prose th, .prose td { text-align: left; padding: 12px 14px; border: 1px solid var(--color-border); color: var(--color-text); }
.prose th { background: var(--color-card); font-weight: 700; color: var(--color-heading); }
.prose .updated { color: var(--color-muted); font-size: 0.92rem; margin-bottom: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-footer); color: #94a8af; padding: 64px 0 28px; border-top: 1px solid var(--color-border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: var(--color-heading); font-size: 1rem; margin-bottom: 18px; }
.footer-brand .logo { color: var(--color-heading); margin-bottom: 16px; }
.footer-brand p { color: #7f939b; font-size: 0.95rem; max-width: 320px; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { color: #aebec4; font-size: 0.95rem; }
.footer-links a:hover { color: var(--color-primary); }
.footer-contact { display: grid; gap: 12px; font-size: 0.95rem; }
.footer-contact a { color: #aebec4; }
.footer-contact a:hover { color: var(--color-primary); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
}
.footer-social a:hover { background: var(--color-primary); }
.footer-social a:hover svg { fill: #04211f; }
.footer-social svg { width: 18px; height: 18px; fill: #cdd9de; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.88rem; color: #75898f;
}
.footer-bottom a { color: #75898f; }
.footer-bottom a:hover { color: var(--color-primary); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 1000;
  max-width: 520px; margin: 0 auto;
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 24px 26px;
  transform: translateY(150%); opacity: 0;
  transition: transform .4s cubic-bezier(.16,.84,.44,1), opacity .4s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1.1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.cookie-banner p { font-size: 0.92rem; color: var(--color-muted); margin-bottom: 18px; }
.cookie-banner p a { font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 22px; font-size: 0.92rem; flex: 1; justify-content: center; }
.cookie-actions .btn-small { flex: 1; min-width: 120px; }

/* ---------- Scroll animácie (fade-up) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* postupné nábehy v mriežkach */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.16,.84,.44,1), transform .6s cubic-bezier(.16,.84,.44,1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .00s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .56s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* hero: fotka celá dole, text hore na tmavom */
  .hero { min-height: 640px; }
  .hero-bg {
    top: auto; bottom: 56px; right: 0; left: 0;
    width: 100%; height: 42%;
  }
  .hero-bg img { object-position: center bottom; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11,19,22,0.96) 0%, rgba(11,19,22,0.80) 38%, rgba(11,19,22,0.18) 62%, rgba(11,19,22,0.10) 100%),
      radial-gradient(700px 400px at 90% 0%, rgba(43,212,204,0.12), transparent 60%);
  }
  .hero-inner { padding: 60px 24px 0; align-items: flex-start; }
  .hero-content { max-width: 100%; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--color-card); flex-direction: column; align-items: flex-start;
    padding: 20px 24px; gap: 6px; border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .3s ease; z-index: 90;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; width: 100%; }
  .nav-toggle { display: flex; }
  .nav-phone-desktop { display: none; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 26px; }
  .hero { min-height: 520px; }
  .hero-strip-inner { gap: 10px 22px; padding-top: 14px; padding-bottom: 14px; }
  .hs-item { font-size: 0.86rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
