:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-alt: #edf3fb;
  --ink: #0f172a;
  --ink-soft: #475569;
  --line: #d7e3f5;
  --brand: #0a66ff;
  --brand-strong: #0048c8;
  --brand-soft: #dce9ff;
  --success: #0f766e;
  --shadow-lg: 0 24px 50px rgba(10, 37, 64, 0.12);
  --shadow-md: 0 14px 30px rgba(10, 37, 64, 0.1);
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 100% -5%, rgba(10, 102, 255, 0.16), transparent 55%),
    radial-gradient(900px 450px at -10% 20%, rgba(74, 144, 226, 0.12), transparent 58%),
    var(--bg);
  line-height: 1.7;
  min-height: 100vh;
}

main {
  display: block;
  padding-top: 5.3rem;
}

a {
  color: var(--brand-strong);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

p,
li {
  color: var(--ink-soft);
  margin-top: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.mbr-section-title,
.mbr-card-title,
.card-title,
.item-title,
.panel-title-edit,
.display-2,
.display-5,
.navbar-caption {
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: 0;
}

h1,
.display-2 {
  font-size: clamp(2rem, 4.5vw, 3.45rem);
}

h2,
.display-5,
h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
}

h4,
h5,
h6 {
  font-size: 1.15rem;
}

.display-7,
.mbr-text,
.card-text {
  font-size: 1rem;
}

.text-black,
.text-primary,
.text-white,
.nav-link,
.navbar-caption,
.link {
  color: inherit;
}

.container,
.container-fluid {
  width: min(1200px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.container-fluid {
  width: min(1280px, calc(100% - 2.4rem));
}

section {
  position: relative;
  padding: clamp(2.6rem, 5vw, 4.9rem) 0;
}

section[class*="header"],
.arya-hero,
.hero {
  padding-top: clamp(6.8rem, 10vw, 9.2rem);
  padding-bottom: clamp(3.4rem, 6vw, 5.2rem);
}

.row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

[class*="col-"] {
  grid-column: span 12;
}

.col-12,
.col-md-12,
.col-lg-12,
.col-lg {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .col-md-4 {
    grid-column: span 4;
  }

  .col-md-6 {
    grid-column: span 6;
  }

  .col-md-12 {
    grid-column: span 12;
  }
}

@media (min-width: 1024px) {
  .col-lg-3 {
    grid-column: span 3;
  }

  .col-lg-4 {
    grid-column: span 4;
  }

  .col-lg-5 {
    grid-column: span 5;
  }

  .col-lg-6 {
    grid-column: span 6;
  }

  .col-lg-7 {
    grid-column: span 7;
  }

  .col-lg-8 {
    grid-column: span 8;
  }

  .col-lg-10 {
    grid-column: span 10;
  }
}

.g-3 {
  gap: 1rem;
}

.g-4 {
  gap: 1.35rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.35rem;
}

.mb-2 {
  margin-bottom: 0.65rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.35rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.35rem;
}

.mt-2 {
  margin-top: 0.65rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.35rem;
}

.mt-5 {
  margin-top: 2rem;
}

.m-auto {
  margin-inline: auto;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: 0.65rem;
}

.align-center,
.text-center,
.center {
  text-align: center;
}

.align-left,
.start {
  text-align: left;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.w-100 {
  width: 100%;
}

.bg-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(237, 243, 251, 0.95) 100%);
}

.badge-lite,
.badge-service,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #c4d7fb;
  background: var(--brand-soft);
  color: #103c84;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.menu,
.menu2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem 0;
  pointer-events: none;
}

.menu .navbar {
  width: min(1220px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(195, 212, 241, 0.9);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  pointer-events: all;
}

.menu .container {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.navbar-logo img {
  width: auto;
  height: 3.15rem;
}

.navbar-caption {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1f44;
}

.navbar-nav,
.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  margin: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.48rem 0.72rem;
  font-size: 0.92rem;
  font-weight: 650;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-strong);
  background: rgba(10, 102, 255, 0.1);
  text-decoration: none;
}

.nav-link.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #0a66ff 0%, #0052e8 100%);
  box-shadow: 0 6px 18px rgba(10, 102, 255, 0.35);
}

.navbar-toggler {
  display: none;
  border: 1px solid #c5d6f4;
  background: #f8fbff;
  border-radius: 12px;
  width: 2.85rem;
  height: 2.65rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.hamburger {
  width: 1.2rem;
  height: 1rem;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 6px;
  background: #183d78;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 0.44rem;
}

.hamburger span:nth-child(4) {
  top: 0.88rem;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1),
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(4) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}

.navbar-collapse {
  display: flex;
  align-items: center;
}

@media (max-width: 1080px) {
  .navbar-toggler {
    display: inline-flex;
  }

  .navbar-collapse {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #ceddf8;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
  }

  .navbar-collapse.is-open {
    max-height: 80vh;
    opacity: 1;
    overflow: auto;
    pointer-events: all;
    padding: 0.65rem;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .nav-link {
    justify-content: flex-start;
    width: 100%;
    padding: 0.7rem 0.8rem;
  }
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #0a66ff 0%, #0055ea 100%);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(10, 102, 255, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(10, 102, 255, 0.42);
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-success-outline,
.btn-outline-light {
  background: rgba(255, 255, 255, 0.84);
  border-color: #c2d6f8;
  color: #133f8b;
}

.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.btn-success-outline:hover,
.btn-outline-light:hover {
  background: #e5efff;
  color: #0d3171;
}

.btn-light {
  background: #ffffff;
  color: #0f3f90;
  border-color: #ffffff;
}

.card,
.card-box,
.card-wrapper,
.card-lite,
.service-card,
.card-article,
.card-news,
.faq-item,
.case-card,
.source,
.item-wrapper,
.table-lite,
.kpi {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 255, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.card,
.card-box,
.card-wrapper,
.card-lite,
.service-card,
.card-article,
.card-news,
.faq-item,
.case-card,
.source,
.item-wrapper,
.kpi {
  padding: 1.3rem;
}

.features-without-image,
.features-image,
.item,
.box {
  height: 100%;
}

.item-wrapper,
.card-article,
.card-news,
.service-card,
.case-card,
.faq-item,
.source {
  height: 100%;
}

.item-wrapper p:last-child,
.card-lite p:last-child,
.card-news p:last-child,
.card-article p:last-child,
.service-card p:last-child,
.faq-item p:last-child {
  margin-bottom: 0;
}

.thumb,
.cover,
.item-img img,
.image-wrapper img,
.item-img,
.item-img .w-100 {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d8e4f7;
  object-fit: cover;
}

.thumb,
.item-img img {
  min-height: 180px;
  max-height: 240px;
}

.table-lite {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.table-lite th,
.table-lite td {
  border-bottom: 1px solid #d7e2f4;
  padding: 0.72rem 0.9rem;
  text-align: left;
}

.table-lite th {
  background: #edf3ff;
  color: #11356f;
  font-weight: 700;
}

.list-check,
.grid-check {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-check li,
.grid-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
}

.list-check li::before,
.grid-check li::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--brand);
  position: absolute;
  left: 0.42rem;
  top: 0.62rem;
  box-shadow: 0 0 0 4px rgba(10, 102, 255, 0.16);
}

.hero,
.arya-hero,
.header6,
.header12 {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(240, 246, 255, 0.95) 100%);
  border-bottom: 1px solid #d8e4f7;
}

.article12,
.features03,
.features032,
.article2,
.list1,
.list05,
.contacts01 {
  background: transparent;
}

.content-head {
  grid-column: span 12;
}

.content,
.text-wrapper,
.item-content {
  position: relative;
}

.mbr-overlay {
  display: none;
}

.accordion .card {
  padding: 0;
  overflow: hidden;
}

.card-header {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.25rem;
  color: #0f2f66;
  text-decoration: none;
}

.panel-title:hover,
.panel-title:focus {
  text-decoration: none;
  background: #eff5ff;
}

.panel-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.panel-collapse.is-open {
  max-height: 1800px;
}

.panel-body {
  padding: 1rem 1.25rem 1.3rem;
}

.sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: #e8f0ff;
  color: #17458f;
  border: 1px solid #c5d7f6;
  flex: 0 0 auto;
}

.sign::before {
  content: "▾";
  font-size: 0.95rem;
}

.panel-title[aria-expanded="true"] .sign::before {
  content: "▴";
}

.cta {
  background: linear-gradient(135deg, #0a3c92 0%, #0a66ff 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(1.55rem, 3vw, 2.15rem);
  box-shadow: var(--shadow-lg);
}

.cta h2,
.cta h3,
.cta p,
.cta a {
  color: #ffffff;
}

.cta .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.cta .btn-outline-light:hover,
.cta .btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.2);
}

.meta {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 600;
}

.footer2 {
  background: linear-gradient(135deg, #07152e 0%, #0e2a59 100%);
  border-top: 1px solid rgba(155, 188, 241, 0.25);
  margin-top: 2.2rem;
  padding-top: 2.7rem;
  padding-bottom: 2.7rem;
}

.footer2,
.footer2 p,
.footer2 a,
.footer2 .copyright {
  color: rgba(242, 248, 255, 0.96);
}

.row-links-soc {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.row-links-soc-item a {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.row-links-soc-item a:hover,
.row-links-soc-item a:focus {
  background: rgba(255, 255, 255, 0.18);
}

.arya-section-compact {
  padding-top: 0.5rem;
}

@media (max-width: 780px) {
  body {
    line-height: 1.6;
  }

  main {
    padding-top: 5.05rem;
  }

  .menu,
  .menu2 {
    padding-top: 0.55rem;
  }

  .menu .navbar {
    width: calc(100% - 1rem);
    border-radius: 14px;
    padding: 0.62rem 0.75rem;
  }

  .navbar-logo img {
    height: 2.7rem;
  }

  .navbar-caption {
    font-size: 0.95rem;
  }

  .container,
  .container-fluid {
    width: calc(100% - 1.2rem);
  }

  section {
    padding: 2.25rem 0;
  }

  section[class*="header"],
  .arya-hero,
  .hero {
    padding-top: 6.3rem;
    padding-bottom: 2.8rem;
  }

  .card,
  .card-box,
  .card-wrapper,
  .card-lite,
  .service-card,
  .card-article,
  .card-news,
  .faq-item,
  .case-card,
  .source,
  .item-wrapper,
  .kpi {
    padding: 1.05rem;
  }

  .row-links-soc {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Homepage rebuild */
.home-page {
  background: #f6f7f9;
}

.home-page main {
  padding-top: 0;
}

.home-page .menu .navbar {
  background: rgba(255, 255, 255, 0.9);
}

.home-hero {
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  padding: 8.8rem 0 7.2rem;
  overflow: hidden;
  color: #fff;
  background: #101820;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.88) 0%, rgba(4, 12, 24, 0.68) 42%, rgba(4, 12, 24, 0.22) 100%),
    linear-gradient(0deg, rgba(4, 12, 24, 0.78) 0%, rgba(4, 12, 24, 0) 45%),
    url("/assets/images/news-psi.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.home-eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.home-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.home-lead {
  max-width: 760px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  line-height: 1.75;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.home-actions .btn,
.contact-actions .btn {
  min-height: 2.75rem;
}

.home-proof {
  margin-top: -3.25rem;
  padding: 0 0 4.25rem;
  z-index: 2;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.proof-item {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(12, 24, 38, 0.12);
}

.proof-item strong {
  display: block;
  color: #151b24;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.1rem;
}

.proof-item span {
  display: block;
  margin-top: 0.3rem;
  color: #536070;
  line-height: 1.55;
}

.home-section,
.home-content-strip,
.home-faq,
.home-contact,
.home-band {
  padding: 5.4rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading-narrow {
  max-width: 680px;
}

.section-heading h2,
.home-band h2,
.home-faq h2,
.home-contact h2,
.content-card h2 {
  margin: 0.75rem 0 0;
  color: #141922;
  font-size: 2.2rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p,
.home-band p,
.home-faq p,
.home-contact p,
.content-card p {
  margin-top: 0.85rem;
  color: #556273;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-card,
.content-card,
.faq-list-preview article,
.process-grid article,
.home-check-panel {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(21, 31, 44, 0.08);
}

.home-card {
  position: relative;
  min-height: 265px;
  padding: 1.15rem;
  border-top: 4px solid #1f6feb;
}

.home-card h3 {
  margin: 1.3rem 0 0.8rem;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.home-card p {
  margin: 0;
  color: #5a6676;
  font-size: 0.95rem;
}

.card-index {
  color: #8a96a8;
  font-weight: 800;
  font-size: 0.8rem;
}

.service-accent-red {
  border-top-color: #df2a2a;
}

.service-accent-blue {
  border-top-color: #1f6feb;
}

.service-accent-teal {
  border-top-color: #14907d;
}

.service-accent-slate {
  border-top-color: #4b5563;
}

.service-accent-gold {
  border-top-color: #b7791f;
}

.home-band {
  background: #101820;
  color: #fff;
}

.home-band .tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.home-band h2,
.home-band p,
.home-band li,
.home-band h3 {
  color: #fff;
}

.home-band p,
.home-band li {
  color: rgba(255, 255, 255, 0.78);
}

.home-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.home-check-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  padding: 1.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-grid article {
  padding: 1.2rem;
}

.process-grid strong {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf2f7;
  color: #192231;
}

.process-grid h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.process-grid p {
  margin: 0;
}

.home-content-strip {
  background: #fff;
}

.content-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.content-card {
  overflow: hidden;
}

.content-card-image {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.content-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.content-card div {
  padding: 1.5rem;
}

.content-card h2 {
  font-size: 1.45rem;
}

.faq-preview-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.faq-list-preview {
  display: grid;
  gap: 0.8rem;
}

.faq-list-preview article {
  padding: 1.1rem;
}

.faq-list-preview h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.faq-list-preview p {
  margin: 0.45rem 0 0;
}

.home-contact {
  background: #e9edf3;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

@media (max-width: 1120px) {
  .home-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-card-image {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .home-hero {
    min-height: 680px;
    padding: 7.3rem 0 5.2rem;
  }

  .home-hero-media {
    background:
      linear-gradient(90deg, rgba(4, 12, 24, 0.9) 0%, rgba(4, 12, 24, 0.76) 58%, rgba(4, 12, 24, 0.38) 100%),
      linear-gradient(0deg, rgba(4, 12, 24, 0.78) 0%, rgba(4, 12, 24, 0) 45%),
      url("/assets/images/news-psi.jpg") center / cover no-repeat;
  }

  .home-hero h1 {
    font-size: 2.55rem;
  }

  .home-lead {
    font-size: 1rem;
  }

  .home-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .home-proof {
    margin-top: -2rem;
    padding-bottom: 3rem;
  }

  .proof-grid,
  .home-card-grid,
  .process-grid,
  .content-strip-grid,
  .home-band-grid,
  .faq-preview-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-section,
  .home-content-strip,
  .home-faq,
  .home-contact,
  .home-band {
    padding: 3.6rem 0;
  }

  .home-card {
    min-height: auto;
  }

  .content-card-image {
    grid-template-columns: 1fr;
  }

  .content-card img {
    min-height: 210px;
  }

  .section-heading h2,
  .home-band h2,
  .home-faq h2,
  .home-contact h2 {
    font-size: 1.8rem;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}
