/* ============================================================
   Mercor Realis — Main Stylesheet
   Brand: Blue #0E67B4 | Cream #F7F3E8 | Orange #E87121
          Dark #1A1A2E | Mid #4A4A6A
   Fonts: Lato (body) | Abhaya Libre (display accents)
   ============================================================ */

:root {
  --blue:   #0E67B4;
  --blue-d: #0a4f8a;
  --blue-l: #e8f2fb;
  --cream:  #F7F3E8;
  --orange: #E87121;
  --orange-d: #c55e18;
  --dark:   #1A1A2E;
  --mid:    #4A4A6A;
  --light:  #f5f7fa;
  --white:  #ffffff;
  --border: #dde3ec;
  --shadow: 0 4px 24px rgba(14,103,180,.10);
  --shadow-lg: 0 8px 40px rgba(14,103,180,.16);
  --radius: 8px;
  --radius-lg: 14px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

.display-font {
  font-family: 'Abhaya Libre', serif;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
.text-center { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 28px;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-d);
  border-color: var(--orange-d);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,113,33,.35);
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-secondary:hover {
  background: var(--blue-d);
  border-color: var(--blue-d);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  max-width: 1160px;
  margin: 0 auto;
  height: 72px;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
}
.header-phone a {
  color: rgba(255,255,255,.9);
}
.header-phone a:hover { color: var(--orange); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
  display: block;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14,103,180,.85) 0%,
    rgba(26,26,46,.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 24px;
  margin: 0 auto 0 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  color: var(--cream);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--orange); }

.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.15);
  position: relative;
  z-index: 2;
}

.hero-stat {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero-stat:last-child { border-right: none; }

.hero-stat strong {
  display: block;
  color: var(--orange);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}
.hero-stat span {
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 4px;
  display: block;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid #e8e4d8;
  padding: 16px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--mid);
}
.trust-item svg { color: var(--blue); flex-shrink: 0; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-l);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
}
.card-icon svg { width: 26px; height: 26px; }

.card h3 { font-size: 1.15rem; margin-bottom: .5rem; color: var(--dark); }
.card p { font-size: .9rem; color: var(--mid); line-height: 1.6; }

/* ── Grid Utilities ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Services Section ─────────────────────────────────────── */
.services-section { background: var(--light); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .875rem;
  color: var(--mid);
  flex: 1;
  margin-bottom: 1rem;
}
.service-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: var(--orange); }

/* ── Why Us (feature blocks) ──────────────────────────────── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.feature-content .section-label { margin-bottom: .5rem; }
.feature-list {
  list-style: none;
  margin-top: 1.25rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--mid);
  margin-bottom: .75rem;
}
.feature-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ── Stats Banner ─────────────────────────────────────────── */
.stats-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-block {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-block:last-child { border-right: none; }

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Service Areas ────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  transition: all .2s;
  text-decoration: none;
  display: block;
}
.area-card:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(14,103,180,.25);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--cream); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-size: 4rem;
  color: var(--blue);
  opacity: .2;
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-top: 1rem;
}
.testimonial-author {
  font-weight: 700;
  font-size: .875rem;
  color: var(--dark);
}
.testimonial-stars { color: #f59e0b; margin-bottom: .5rem; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
  color: var(--white);
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-d) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 6px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--white);
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  transition: background .2s;
  gap: 12px;
}
.faq-question:hover { background: var(--blue-l); }
.faq-question.open { background: var(--blue); color: var(--white); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 18px 22px;
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.faq-answer.open { display: block; }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

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

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: .9rem;
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,103,180,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: .78rem;
  color: var(--mid);
  margin-top: 12px;
}

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.2rem; }

.info-block {
  display: flex;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.info-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.info-value {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}
.info-value a { color: var(--orange); }

.response-badge {
  background: rgba(232,113,33,.15);
  border: 1px solid rgba(232,113,33,.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .85rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 1.5rem;
}

/* ── Notification (form) ──────────────────────────────────── */
.form-notification {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 18px;
  display: none;
}
.form-notification.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  display: block;
}
.form-notification.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  display: block;
}

/* ── About page ───────────────────────────────────────────── */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.credential-badge {
  background: var(--white);
  border: 2px solid var(--blue-l);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.credential-badge .icon { font-size: 2rem; margin-bottom: .5rem; }
.credential-badge strong { display: block; color: var(--dark); font-size: .95rem; margin-bottom: .25rem; }
.credential-badge span { font-size: .8rem; color: var(--mid); }

/* ── Services page ────────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-icon {
  background: var(--blue-l);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.service-detail-icon .emoji { font-size: 3rem; }
.service-detail-icon h3 { margin-top: .75rem; font-size: 1.1rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.65; }
.footer-phone {
  display: block;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: .75rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* ── Alert banner for status messages ────────────────────── */
.alert { padding: 12px 20px; border-radius: var(--radius); font-size: .9rem; margin-bottom: 16px; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Mobile nav */
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    gap: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 24px; border-radius: 0; font-size: 1rem; }
  .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .site-header { position: relative; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
