/* Cyber Essentials Brochure Sites — "Edinburgh Basalt" */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --obsidian: #0d0f12;
  --basalt: #161920;
  --slate: #1e222b;
  --stone: #2a2f3a;
  --ash: #8891a0;
  --silver: #b4bcc9;
  --chalk: #e4e8ee;
  --white: #f5f6f8;
  --ember: #e85d3a;
  --ember-glow: #ff7a55;
  --ember-deep: #c4432a;
  --teal: #2dd4a8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--chalk);
  background: var(--obsidian);
  line-height: 1.65;
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; }
a { color: var(--ember); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--ember-glow); }

::selection {
  background: var(--ember);
  color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ======== ANIMATIONS ======== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,93,58,0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(232,93,58,0.15); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======== HEADER ======== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
header.scrolled {
  background: rgba(13,15,18,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.logo:hover { color: var(--ember); }
.logo .accent { color: var(--ember); }

nav { display: flex; gap: 32px; align-items: center; }
nav a {
  color: var(--silver);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}
nav a:hover { color: var(--white); }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* CTA button in nav */
.nav-cta {
  padding: 10px 24px !important;
  background: var(--ember) !important;
  color: var(--white) !important;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--ember-glow) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

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

/* Diagonal accent line */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: 10%;
  width: 1px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, var(--ember) 30%, var(--ember) 70%, transparent);
  opacity: 0.15;
  transform: rotate(15deg);
}

/* Mesh gradient */
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(232,93,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  animation: slideInLeft 1s var(--ease-out-expo);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--ember);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--ember);
}

.hero-text {
  font-size: 1.15rem;
  color: var(--silver);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-visual {
  position: relative;
  animation: scaleIn 1s 0.3s var(--ease-out-expo) both;
}

/* Shield graphic */
.shield-graphic {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}
.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,93,58,0.15);
  animation: pulseGlow 4s ease-in-out infinite;
}
.shield-ring:nth-child(1) { inset: 0; }
.shield-ring:nth-child(2) { inset: 12%; border-color: rgba(232,93,58,0.1); animation-delay: 1s; }
.shield-ring:nth-child(3) { inset: 24%; border-color: rgba(232,93,58,0.2); animation-delay: 2s; }
.shield-core {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--stone) 0%, var(--basalt) 100%);
  border: 1px solid rgba(232,93,58,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield-icon {
  font-size: 2.5rem;
  opacity: 0.9;
}

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: fadeUp 1s 0.6s var(--ease-out-expo) both;
}
.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ======== BUTTONS ======== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--ember);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--ember-glow);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,93,58,0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--chalk);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid var(--stone);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: var(--ember);
  color: var(--ember);
  background: rgba(232,93,58,0.05);
}

/* ======== TRUST BAR ======== */
.trust-section {
  padding: 48px 0;
  background: var(--basalt);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-inner img {
  height: auto;
  max-height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s;
  filter: brightness(1.2);
}
.trust-inner img:hover { opacity: 1; }

/* ======== SECTIONS (shared) ======== */
section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ember);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--ash);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: clamp(48px, 6vw, 72px);
}

/* ======== SERVICES ======== */
.services-section {
  background: var(--obsidian);
  padding: clamp(80px, 12vw, 160px) 0;
}
.services-section .section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
}
.services-section .section-subtitle {
  font-size: 1.15rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}

.service-card {
  background: var(--obsidian);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.service-card:hover {
  background: var(--basalt);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.service-card:hover .service-number {
  color: rgba(232,93,58,0.15);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--ash);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ======== WHY US ======== */
.why-section {
  background: var(--basalt);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0;
}
.why-section .section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
}
.why-section .section-subtitle {
  font-size: 1.15rem;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.04);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.why-list { list-style: none; }
.why-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.why-item:last-child { border-bottom: none; }

.why-marker {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ember);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.why-item:hover .why-marker {
  background: var(--ember);
  color: var(--white);
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-item p {
  color: var(--ash);
  font-size: 1rem;
  line-height: 1.7;
}

/* ======== ABOUT ======== */
.about-section {
  background: var(--obsidian);
  padding: clamp(80px, 12vw, 160px) 0;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
}
.about-text .section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 32px;
}
.about-text p {
  color: var(--silver);
  margin-bottom: 24px;
  font-size: 1.15rem;
  line-height: 1.8;
}
.about-text p:last-child { margin-bottom: 0; }

.about-aside {
  background: var(--basalt);
  border: 1px solid rgba(255,255,255,0.06);
  padding: clamp(40px, 5vw, 60px);
  position: relative;
}
.about-aside::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--ember);
}
.about-aside blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-style: italic;
  color: var(--chalk);
  line-height: 1.55;
  margin-bottom: 24px;
}
.about-aside cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ash);
  display: block;
  line-height: 1.6;
}
.about-aside cite strong { color: var(--white); font-size: 1rem; }

/* ======== FAQ ======== */
.faq-section {
  background: var(--obsidian);
  padding: clamp(80px, 12vw, 160px) 0;
}
.faq-section .section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.faq-list { list-style: none; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item summary {
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--ember);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.faq-item summary:hover h3 { color: var(--ember); }
.faq-item p {
  padding: 0 0 24px;
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; }
}

/* ======== CONTACT ======== */
.contact-section {
  background: var(--basalt);
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(56px, 8vw, 120px);
}

.contact-info { padding-top: 8px; }
.contact-info .section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 28px;
}
.contact-info p {
  color: var(--silver);
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-detail {
  margin-bottom: 28px;
}
.contact-detail .detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}
.contact-detail a, .contact-detail p {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0;
}

.contact-form {
  background: var(--obsidian);
  border: 1px solid rgba(255,255,255,0.06);
  padding: clamp(36px, 5vw, 56px);
}

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

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  background: var(--basalt);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ash);
  opacity: 0.6;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(232,93,58,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%238891a0'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option {
  background: var(--basalt);
  color: var(--white);
}

.cf-turnstile { margin-bottom: 20px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--ember);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--ember-glow);
  box-shadow: 0 8px 32px rgba(232,93,58,0.3);
}

.form-status { text-align: center; margin-top: 16px; font-weight: 600; font-size: 0.9rem; }
.form-status.success { color: var(--teal); }
.form-status.error { color: var(--ember); }

/* ======== FOOTER ======== */
footer {
  background: var(--obsidian);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--ash);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.65;
}

footer h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer li a {
  color: var(--ash);
  font-size: 0.9rem;
  transition: color 0.3s;
}
footer li a:hover { color: var(--ember); }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--ash);
}
.footer-bottom a {
  color: var(--ash);
}
.footer-bottom a:hover {
  color: var(--ember);
}

/* ======== MOBILE ======== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; }
  .why-section::before { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,15,18,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }
  nav.open { display: flex; }
  nav a {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
  }
  .nav-cta { font-size: 1rem !important; padding: 14px 36px !important; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { text-align: center; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
