:root {
  --navy: #071b33;
  --navy-2: #0b2949;
  --red: #e6382f;
  --orange: #f47932;
  --ice: #f3f7fa;
  --white: #fff;
  --text: #18314a;
  --muted: #637489;
  --line: #dfe7ee;
  --shadow: 0 18px 50px rgba(7, 27, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  letter-spacing: .02em;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-group { display: flex; align-items: center; gap: 24px; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: #fff; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(7,27,51,.08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s;
}

.header.scrolled { box-shadow: 0 10px 30px rgba(7,27,51,.1); }

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  height: 62px;
  max-width: min(280px, 48vw);
  object-fit: contain;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: #2f4358;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  transition: color .2s;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.nav-cta {
  padding: 12px 18px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 10px 22px rgba(230,56,47,.22);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(230,56,47,.28);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: var(--ice);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 21px;
  height: 2px;
  display: block;
  background: var(--navy);
  transition: .25s;
}

.menu-toggle span { margin: 5px 0; }

.page-hero {
  min-height: 500px;
  display: flex;
  align-items: stretch;
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3,19,37,.97), rgba(6,28,51,.83), rgba(6,28,51,.58)),
    var(--hero-img, linear-gradient(135deg, var(--navy), var(--navy-2))) center/cover;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255,255,255,.025);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 82px 0 88px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.page-hero .eyebrow {
  display: flex;
  width: fit-content;
  max-width: 100%;
  color: #ff9c64;
}

h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  line-height: 1.16;
}

h1 {
  max-width: 880px;
  margin-top: 16px;
  color: #fff;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-top: 13px;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  font-size: 19px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.75;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
  max-width: 690px;
}

.button {
  min-height: 52px;
  padding: 0 23px;
  font-size: 14px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 26px rgba(230,56,47,.27);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.section { padding: 92px 0; }
.section.alt { background: var(--ice); }
.section-header { max-width: 720px; margin-bottom: 36px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header p,
.lead {
  margin: 16px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.visual-panel {
  min-height: 430px;
  position: relative;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(7,27,51,.05), rgba(7,27,51,.5)),
    var(--panel-img, linear-gradient(135deg, #eef4f7, #dce7ee)) center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 17px;
}

.panel-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(230px, calc(100% - 48px));
  padding: 18px;
  color: var(--navy);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 15px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 34px rgba(7,27,51,.18);
  backdrop-filter: blur(12px);
  z-index: 1;
}

.panel-badge strong {
  display: block;
  color: var(--red);
  font: 800 32px/1 "Montserrat", sans-serif;
}

.panel-badge span {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 700;
}

.card-grid,
.solution-grid,
.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.industry-detail-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.info-card,
.solution-card,
.industry-detail,
.contact-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7,27,51,.07);
  overflow: hidden;
}

.info-card::before,
.solution-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--orange));
}

.info-card p,
.solution-card p,
.industry-detail p,
.contact-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.mini-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  color: #fff;
  border-radius: 20px;
  background: var(--navy);
  overflow: hidden;
}

.metric {
  min-height: 135px;
  padding: 24px;
  display: grid;
  align-content: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}

.metric:last-child { border-right: 0; }
.metric strong {
  display: block;
  font: 800 34px/1 "Montserrat", sans-serif;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-references {
  background: #fff;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
}

.reference-card {
  grid-column: span 2;
  min-height: 158px;
  padding: 20px 16px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,252,.96)),
    #fff;
  box-shadow: 0 12px 28px rgba(7,27,51,.07);
}

.reference-card:nth-last-child(3) { grid-column: 2 / span 2; }

.reference-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  color: var(--navy);
  border: 1px solid rgba(230,56,47,.18);
  border-radius: 17px;
  background: linear-gradient(145deg, #fff5f2, #ffe7df);
  font: 900 17px/1 "Montserrat", sans-serif;
  letter-spacing: 0;
}

.reference-card strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
}

.reference-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.solution-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.solution-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--red);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff2ef, #ffe2dc);
  font-weight: 900;
}

.solution-meta {
  margin-top: auto;
  padding-top: 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.industry-detail {
  min-height: 310px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7,27,51,.03), rgba(7,27,51,.88)),
    var(--card-img) center/cover;
}

.industry-detail h3 { color: #fff; }
.industry-detail p { color: rgba(255,255,255,.72); }

.workflow-list {
  display: grid;
  gap: 26px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.workflow-list::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 30px;
  width: 2px;
  background: linear-gradient(180deg, rgba(230,56,47,.15), rgba(230,56,47,.65), rgba(244,121,50,.2));
}

.workflow-step {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 24px;
  position: relative;
}

.workflow-number {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  color: var(--red);
  border: 1px solid #fac8c4;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px #fff, 0 14px 30px rgba(7,27,51,.08);
  font-weight: 900;
}

.workflow-body {
  padding: 2px 0 0;
}

.workflow-body p {
  margin: 9px 0 0;
  color: var(--muted);
}

.deliverable-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.deliverable-row span {
  padding: 7px 10px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-stack { display: grid; gap: 16px; }
.contact-card a { color: var(--red); font-weight: 800; }

.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  outline: 0;
  transition: border-color .2s, box-shadow .2s;
}

.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(230,56,47,.45);
  box-shadow: 0 0 0 4px rgba(230,56,47,.08);
}

.full { grid-column: 1 / -1; }

.cta-strip {
  padding: 50px 0;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(7,27,51,.98), rgba(10,42,72,.9)),
    url("https://images.unsplash.com/photo-1564069114553-7215e1ff1890?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 { color: #fff; margin: 0; }
.cta-inner p { margin: 10px 0 0; color: rgba(255,255,255,.68); }

footer {
  color: rgba(255,255,255,.64);
  background: #05172b;
}

.footer-main {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 1.55fr .75fr .8fr 1fr;
  gap: 55px;
}

footer .brand {
  width: fit-content;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
}

footer .brand-logo {
  height: 74px;
  max-width: min(270px, 100%);
}

.footer-about p { max-width: 340px; margin: 20px 0; font-size: 13px; }
.socials { display: flex; gap: 9px; }
.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 9px;
  color: #fff;
  transition: background .2s, border-color .2s, transform .2s;
}

.socials a::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: var(--social-icon) center / contain no-repeat;
  mask: var(--social-icon) center / contain no-repeat;
}

.socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.social-facebook { --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.2 8.2V6.7c0-.7.5-.9 1-.9h1.8V3.1L14.5 3c-2.8 0-4.3 1.7-4.3 4.7v.5H7.4v3.1h2.8V21h3.5v-9.7h2.7l.5-3.1h-3Z'/%3E%3C/svg%3E"); }
.social-instagram { --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M7.2 3h9.6A4.2 4.2 0 0 1 21 7.2v9.6a4.2 4.2 0 0 1-4.2 4.2H7.2A4.2 4.2 0 0 1 3 16.8V7.2A4.2 4.2 0 0 1 7.2 3Zm0 2A2.2 2.2 0 0 0 5 7.2v9.6A2.2 2.2 0 0 0 7.2 19h9.6a2.2 2.2 0 0 0 2.2-2.2V7.2A2.2 2.2 0 0 0 16.8 5H7.2ZM12 8a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm4.9-2.8a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E"); }
.footer-col h3 { color: #fff; font-size: 15px; margin-bottom: 19px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 13px; transition: color .2s, transform .2s; }
.footer-links a:hover { color: #fff; transform: translateX(3px); }
.contact-line { display: flex; gap: 10px; margin-bottom: 13px; font-size: 12px; }
.contact-line b { color: #ff715f; }

.footer-bottom {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
}

.footer-legal { display: flex; gap: 22px; }
.footer-credit {
  font-size: 14px;
  font-weight: 700;
}
.footer-credit a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s;
}
.footer-credit a:hover { color: #ff9c64; }

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(230,56,47,.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .25s;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    padding: 25px 20px 35px;
    display: grid;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(7,27,51,.12);
    transform: translateY(-130%);
    opacity: 0;
    transition: .3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a { padding: 13px 5px; }
  .nav-cta { margin-top: 8px; }
  .menu-toggle { display: block; }
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .card-grid,
  .solution-grid,
  .industry-detail-grid { grid-template-columns: 1fr 1fr; }
  .reference-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reference-card,
  .reference-card:nth-last-child(3) { grid-column: auto; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .page-hero { min-height: 480px; }
  .page-hero .container { padding: 72px 0 76px; }
  h1 { font-size: 50px; max-width: 760px; }
  h2 { font-size: 38px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar { display: none; }
  .nav { height: 70px; gap: 12px; }
  .nav-links { top: 70px; }
  .brand { min-width: 0; }
  .brand-logo {
    height: 52px;
    max-width: calc(100vw - 108px);
  }
  .menu-toggle { flex: 0 0 44px; }
  .page-hero { min-height: auto; }
  .page-hero .container {
    min-height: 430px;
    padding: 54px 0 60px;
  }
  .breadcrumb {
    width: 100%;
    margin-bottom: 14px;
    font-size: 11px;
  }
  .page-hero .eyebrow {
    width: 100%;
    gap: 8px;
    font-size: 10.5px;
    letter-spacing: .12em;
  }
  .page-hero .eyebrow::before { width: 22px; flex: 0 0 22px; }
  h1 {
    max-width: 100%;
    margin-top: 12px;
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: 0;
  }
  h2 {
    font-size: 32px;
    letter-spacing: 0;
  }
  .hero-copy {
    max-width: 100%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
  }
  .page-actions {
    width: 100%;
    gap: 10px;
    margin-top: 24px;
  }
  .page-actions .button { width: 100%; }
  .section { padding: 76px 0; }
  .section-header { margin-bottom: 30px; }
  .visual-panel { min-height: 390px; }
  .panel-badge { left: 20px; bottom: 20px; width: 170px; padding: 15px; }
  .panel-badge strong { font-size: 28px; }
  .card-grid,
  .solution-grid,
  .industry-detail-grid { grid-template-columns: 1fr; }
  .metric-strip { grid-template-columns: 1fr 1fr; }
  .metric { min-height: 126px; padding: 20px 12px; }
  .metric strong {
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    font-weight: 700;
  }
  .reference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .reference-card {
    min-height: 132px;
    padding: 14px 10px;
    border-radius: 14px;
  }
  .reference-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .reference-mark {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    border-radius: 13px;
    font-size: 13px;
  }
  .reference-card strong { font-size: 11.5px; line-height: 1.25; }
  .reference-card span { margin-top: 4px; font-size: 10px; }
  .industry-detail { min-height: 230px; }
  .workflow-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
  }
  .workflow-list::before { left: 24px; }
  .workflow-number {
    width: 48px;
    height: 48px;
    box-shadow: 0 0 0 7px #fff, 0 10px 22px rgba(7,27,51,.08);
    font-size: 12px;
  }
  .field-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .cta-inner { display: block; }
  .cta-inner .button { width: 100%; margin-top: 25px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-main .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom {
    padding: 20px 0;
    display: grid;
    justify-content: center;
    text-align: center;
  }
  .footer-legal { justify-content: center; }
}
