:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3f8;
  --text: #17202c;
  --muted: #637184;
  --line: #d9e2ec;
  --accent: #0e6fc5;
  --accent-strong: #095593;
  --amber: #f3b426;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(23, 32, 44, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 72px;
  padding: 0 44px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 29px;
  height: 29px;
  border: 7px solid var(--accent);
  border-right-color: var(--amber);
  border-radius: 7px;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  color: #415064;
  font-size: 14px;
  font-weight: 720;
}

.main-nav a {
  padding: 25px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

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

.header-mail {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.button,
.modern-page .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.button:hover,
.modern-page .btn-link:hover {
  color: #fff;
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--text);
  background: #fff;
  border-color: var(--line);
}

.button.secondary:hover {
  color: var(--accent);
  background: #fff;
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.site-main {
  min-height: 70vh;
  overflow-x: hidden;
}

.site-main .row,
.site-main [class^="col-"],
.site-main [class*=" col-"] {
  min-width: 0;
}

.modern-page,
.site-main > .row,
.site-main > .content,
.site-main > .main,
.site-main > .col-md-12 {
  max-width: 1240px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.modern-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 46px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 76px 48px 56px;
  background: linear-gradient(180deg, #fff 0%, #f7fafd 100%);
}

.modern-hero > *,
.modern-section > *,
.catalog-card,
.hero-visual,
.hero-facts > div {
  min-width: 0;
}

.modern-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 850;
  line-height: 0.97;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.modern-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 620px;
  margin: 46px 0 0;
}

.hero-facts div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-facts dt {
  margin: 0;
  font-size: 21px;
  font-weight: 850;
  overflow-wrap: normal;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-self: stretch;
  min-height: 560px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual-main {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background:
    linear-gradient(135deg, rgba(14, 111, 197, 0.08), rgba(243, 180, 38, 0.08)),
    #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.hero-visual-main img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: 68% center;
}

.hero-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: var(--surface-soft);
  border-radius: 6px;
}

.hero-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.hero-note span {
  color: var(--muted);
  font-size: 14px;
}

.hero-note a {
  color: var(--accent);
  font-weight: 850;
}

.modern-section {
  padding: 86px 48px;
}

.modern-section + .modern-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 830;
  line-height: 1;
}

.section-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.catalog-card {
  display: grid;
  grid-template-rows: 210px auto auto;
  min-height: 430px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #edf2f7;
  transition: transform 220ms ease;
}

.catalog-image-link {
  display: block;
  width: 100%;
  height: 210px;
  margin: 0;
  overflow: hidden;
  background: #edf2f7;
  border-bottom: 1px solid var(--line);
}

.catalog-image-link:hover img,
.catalog-image-link:focus-visible img {
  transform: scale(1.065);
}

.catalog-image-link:focus-visible {
  outline: 3px solid rgba(14, 111, 197, 0.28);
  outline-offset: -3px;
}

.catalog-card div {
  padding: 24px 24px 10px;
}

.catalog-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 830;
}

.catalog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.catalog-card > a:not(.catalog-image-link) {
  align-self: end;
  width: fit-content;
  margin: 0 24px 24px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  border-bottom: 2px solid var(--amber);
}

.dark-band {
  max-width: none;
  color: #fff;
  background: #17202c;
}

.dark-band > * {
  max-width: 1144px;
  margin-right: auto;
  margin-left: auto;
}

.dark-band .section-heading p,
.dark-band .process-card p {
  color: #bdc8d4;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.process-card {
  min-height: 210px;
  padding: 28px;
  background: #202c3a;
}

.process-card span {
  color: var(--amber);
  font-size: 14px;
  font-weight: 850;
}

.process-card h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.spec-list {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spec-list div {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list span {
  color: var(--muted);
}

.spec-list strong {
  text-align: right;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.contact-panel p {
  color: var(--muted);
  font-size: 17px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  width: fit-content;
  color: var(--accent);
  font-weight: 850;
}

.quick-form {
  display: grid;
  gap: 14px;
}

.quick-form label {
  display: grid;
  gap: 7px;
  color: #344257;
  font-size: 14px;
  font-weight: 760;
}

.quick-form .consent-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.consent-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0 !important;
  accent-color: var(--accent);
}

.consent-field a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quick-form input,
.quick-form textarea,
.quick-form select,
.site-main input,
.site-main textarea,
.site-main select {
  width: 100%;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.quick-form textarea,
.site-main textarea {
  min-height: 116px;
  resize: vertical;
}

.quick-form button,
.site-main button:not(.nav-toggle):not(.scroll-top) {
  min-height: 44px;
  padding: 0 20px;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-weight: 800;
}

.captcha-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.captcha-row img {
  min-height: 44px;
  padding: 6px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.form-message {
  min-height: 22px;
  margin-bottom: 14px;
  font-weight: 760;
}

.form-message.success {
  padding: 14px 16px;
  color: #0f5132;
  background: #dff4e8;
  border: 1px solid #b7e4ca;
  border-radius: var(--radius);
}

.form-message.error {
  color: #9f1d1d;
}

.legal-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 20px;
}

.legal-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.legal-links a {
  width: fit-content;
  color: var(--accent);
  font-weight: 850;
}

.hidden {
  display: none !important;
}

.site-main > .row,
.site-main > .content {
  padding-right: 48px;
  padding-left: 48px;
}

.site-main .main h1,
.site-main > .row .main h1,
.site-main h1 {
  color: var(--text);
  font-family: inherit;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: 0;
  background: none;
  box-shadow: none;
}

.site-main .content {
  margin-top: 24px;
  margin-bottom: 38px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: var(--text) !important;
  background: #fff !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-main .content p,
.site-main .content li {
  color: var(--muted);
  font-size: 17px;
}

#breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 24px auto 0;
  padding: 0 48px;
  color: var(--muted);
  list-style: none;
  font-size: 14px;
  font-weight: 720;
}

#breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#breadcrumb li::after {
  content: "/";
  color: #9aa8b8;
}

#breadcrumb li:last-child::after {
  display: none;
}

#breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

#breadcrumb a:hover,
#breadcrumb a:focus {
  color: var(--accent);
  border-color: var(--accent);
}

#breadcrumb .current a,
#breadcrumb .current {
  color: var(--text);
  font-weight: 850;
}

.site-main .img-thumbnail,
.site-main .img-rounded {
  padding: 10px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.site-main .zoomed,
.site-main .img-thumbnail {
  overflow: hidden;
}

.site-main .zoomed img,
.site-main a > .img-thumbnail,
.site-main a > img.img-thumbnail {
  transition: transform 220ms ease;
}

.site-main .zoomed:hover img,
.site-main a:hover > .img-thumbnail,
.site-main a:focus > .img-thumbnail,
.site-main a:hover > img.img-thumbnail,
.site-main a:focus > img.img-thumbnail {
  transform: scale(1.045);
}

.site-main figure {
  display: grid;
  grid-template-rows: 220px auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(23, 32, 44, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-main figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #edf2f7;
  transition: transform 220ms ease;
}

.site-main figure:hover,
.site-main figure:focus-within {
  border-color: rgba(14, 111, 197, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.site-main figure:hover img,
.site-main figure:focus-within img {
  transform: scale(1.055);
}

.site-main figcaption {
  position: static !important;
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  min-height: 230px;
  padding: 22px 24px 24px;
  color: var(--text);
  background: #fff !important;
  opacity: 1 !important;
  transform: none !important;
}

.site-main figcaption::before,
.site-main figcaption::after,
.site-main figure::before,
.site-main figure::after {
  display: none !important;
}

.site-main figcaption h2 {
  max-width: 100%;
  min-width: 0;
  margin: 0;
  color: var(--text);
  font-size: 23px;
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.site-main figcaption h2 span {
  color: var(--accent);
}

.site-main figcaption p {
  max-width: 100%;
  min-width: 0;
  margin: 0;
  color: var(--muted) !important;
  font-size: 15px !important;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.site-main figcaption a {
  align-self: end;
  width: fit-content;
  margin-top: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  border-bottom: 2px solid var(--amber);
}

.site-main figcaption a:hover,
.site-main figcaption a:focus {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.legacy-card-image-link {
  display: block;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
}

.site-main .button--naira,
.site-main .button--rayen,
.site-main .thebutton,
.site-main .buttonline .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px !important;
  color: #fff !important;
  background: var(--accent) !important;
  border: 1px solid var(--accent) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

.site-main .button--naira:hover,
.site-main .button--naira:focus,
.site-main .button--rayen:hover,
.site-main .button--rayen:focus,
.site-main .thebutton:hover,
.site-main .thebutton:focus {
  color: #fff !important;
  background: var(--accent-strong) !important;
  border-color: var(--accent-strong) !important;
}

.site-main .button span,
.site-main .button i {
  color: inherit !important;
}

.par_img,
.yeah,
.animated[data-effect],
#animate {
  display: none !important;
}

.site-main [data-parallax] {
  transform: none !important;
}

.site-main .pull-left,
.site-main .pull-right {
  margin-bottom: 18px;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1240px;
  margin: 24px auto 0;
  padding: 0 48px;
}

.category-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #425064;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: none;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(23, 32, 44, 0.2);
}

.scroll-top.is-visible {
  display: block;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.8fr) minmax(260px, 0.8fr);
  gap: 36px;
  padding: 42px 48px;
  color: #c3ccd8;
  background: #17202c;
}

.site-footer .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 470px;
  margin: 18px 0 0;
}

.footer-nav,
.footer-contacts {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-nav a,
.footer-contacts a {
  color: #fff;
  font-weight: 760;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 16px;
    padding: 14px 26px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .main-nav {
    display: none;
    justify-content: flex-start;
    padding-top: 8px;
    overflow-x: auto;
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .site-header.is-open .header-actions {
    display: flex;
  }

  .modern-hero,
  .split-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .modern-hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  html,
  body,
  .site-main {
    width: 100%;
    max-width: 100%;
  }

  .site-header {
    width: 100%;
    max-width: 100vw;
    padding: 14px 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .modern-hero,
  .modern-section {
    width: 100vw;
    max-width: 100vw;
    padding: 48px 18px;
  }

  .site-main .row {
    max-width: 100vw;
    margin-right: 0;
    margin-left: 0;
  }

  .site-main .main h1,
  .site-main > .row h1 {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: 32px;
    line-height: 1.1;
    overflow-wrap: break-word;
  }

  .modern-page {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
  }

  .site-main [class^="col-"],
  .site-main [class*=" col-"] {
    max-width: 100%;
  }

  .modern-hero,
  .split-section,
  .contact-panel {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .modern-hero > div:first-child,
  .hero-facts,
  .hero-actions {
    max-width: 320px;
  }

  .modern-hero h1 {
    max-width: 320px;
    font-size: 31px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .modern-hero p,
  .hero-facts dd,
  .catalog-card p {
    max-width: 320px;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero-facts,
  .catalog-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
    padding: 16px;
  }

  .hero-visual-main,
  .hero-visual-main img {
    min-height: 300px;
  }

  .hero-note,
  .section-heading {
    display: grid;
  }

  .contact-panel {
    padding: 22px;
  }

  .category-strip,
  #breadcrumb,
  .site-main > .row,
  .site-main > .content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .category-strip {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    width: min(260px, calc(100vw - 36px));
    max-width: min(260px, calc(100vw - 36px));
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
  }

  .category-strip a {
    justify-content: center;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
    white-space: normal;
  }

  #breadcrumb {
    margin-top: 18px;
    font-size: 13px;
  }

  #breadcrumb a {
    min-height: 32px;
    padding: 0 9px;
  }

  .site-main figure {
    grid-template-rows: 190px auto;
  }

  .site-main figure img {
    height: 190px;
  }

  .site-main figcaption {
    width: 100%;
    max-width: 100%;
    padding-right: 64px;
  }

  .site-main figcaption h2,
  .site-main figcaption p,
  .site-main figcaption a {
    max-width: calc(100vw - 116px);
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 18px;
  }
}
