:root,
[data-theme="light"] {
  --bg: #f7f6f4;
  --card: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --ink: #1a1214;
  --muted: #6d6164;
  --line: rgba(26, 18, 20, 0.08);
  --crimson: #8f1620;
  --crimson-2: #b42330;
  --gold: #c9a24a;
  --gold-2: #d4b36a;
  --band: #14090b;
  --soft: #f1eef0;
  --input: #fbfaf8;
  --featured: linear-gradient(180deg, #fff8ef, #fff);
  --radius: 20px;
  --nav-h: 76px;
  --font: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 40px rgba(20, 9, 11, 0.08);
}

[data-theme="dark"] {
  --bg: #0b0809;
  --card: #161011;
  --nav-bg: rgba(11, 8, 9, 0.88);
  --ink: #f6f1ea;
  --muted: #b3a59a;
  --line: rgba(232, 201, 160, 0.16);
  --band: #10090b;
  --soft: #241416;
  --input: #0e0b0c;
  --featured: linear-gradient(180deg, #24160f, #161011);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

[data-theme="dark"] {
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
}

[id] {
  scroll-margin-top: 92px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.wrap,
.section,
.footer,
.hero-inner {
  width: min(1120px, 90vw);
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.logo em {
  font-style: normal;
  color: var(--crimson-2);
}

.mark {
  width: 52px;
  height: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  position: relative;
}

.lang-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: 190px;
  z-index: 50;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.lang-menu a:hover,
.lang-menu a[aria-current="true"] {
  background: var(--soft);
}

[dir="rtl"] body {
  font-family: "Noto Sans Arabic", "Outfit", system-ui, sans-serif;
}

[dir="rtl"] .logo {
  letter-spacing: 0;
}

.theme-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  display: grid;
  place-items: center;
}

.theme-btn svg {
  width: 18px;
  height: 18px;
}

[data-theme="light"] .icon-sun,
[data-theme="dark"] .icon-moon {
  display: none;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--crimson);
  transition: transform 0.25s var(--ease);
}

.nav.open .menu-btn span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav.open .menu-btn span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--crimson-2);
  color: #fff;
}

.btn-light {
  background: #f4d9c8;
  color: var(--crimson);
}

.btn-soft {
  background: var(--soft);
  color: var(--ink);
  width: 100%;
}

.btn-accent {
  background: linear-gradient(180deg, var(--gold-2), #b8892e);
  color: #2a1a08;
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(180, 35, 48, 0.55), transparent 55%),
    radial-gradient(800px 480px at 80% 80%, rgba(201, 162, 74, 0.28), transparent 50%),
    radial-gradient(700px 500px at 50% 40%, rgba(20, 9, 11, 0.2), transparent 60%),
    linear-gradient(160deg, #6a141c, #14090b 58%, #1a0b0e);
}

.hero-mark {
  position: absolute;
  width: min(560px, 70vw);
  opacity: 0.12;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
}

.hero-brand {
  margin: 0 0 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f4d9c8;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: #f4d9c8;
}

.lead {
  max-width: 46ch;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.82);
}

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

.stats dt {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.stats dd {
  margin: 4px 0 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.section-head h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-head p,
.about-copy p,
.contact-copy p {
  margin: 0 auto;
  max-width: 54ch;
  color: var(--muted);
}

.section-head em,
.about-copy em,
.contact-copy em,
.band h2 em {
  font-style: normal;
  color: var(--crimson-2);
}

.section-head.light h2,
.section-head.light p {
  color: #fff;
}

.section-head.light em {
  color: var(--gold-2);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.package {
  background: var(--card);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.package.featured {
  background: var(--featured);
  transform: translateY(-12px);
  box-shadow: 0 24px 50px rgba(143, 22, 32, 0.12);
}

.package h3 {
  margin: 0;
  font-size: 1.35rem;
}

.package-who,
.package-price {
  color: var(--muted);
  margin: 6px 0 0;
}

.package-tag {
  margin: 14px 0 4px;
  color: var(--crimson-2);
  font-weight: 700;
}

.package ul {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  flex: 1;
}

.package li {
  padding-left: 22px;
  position: relative;
}

.package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--crimson-2);
  font-weight: 700;
}

.package-note {
  text-align: center;
  color: var(--muted);
  margin: 28px 0 0;
}

.band {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--band);
  background-size: 44px 44px, 44px 44px, auto;
  color: #fff;
  padding: 88px 0;
}

.solution-grid,
.why-grid {
  display: grid;
  gap: 16px;
}

.solution-grid {
  grid-template-columns: repeat(3, 1fr);
}

.solution,
.why-grid article {
  border-radius: 18px;
  padding: 24px;
}

.solution {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: inherit;
  display: block;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.solution:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 217, 200, 0.28);
}

.solution-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f4d9c8;
}

.solution svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  stroke: #f4d9c8;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution h3,
.why-grid h3,
.steps h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.solution p,
.why-grid p,
.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.band-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.band-cta .btn-accent,
.process .btn {
  width: auto;
}

.section.techs {
  width: 100%;
  overflow: hidden;
}

.techs .section-head {
  width: min(1120px, 90vw);
  margin-inline: auto;
  margin-bottom: 28px;
}

.projects .section-head {
  width: min(1120px, 90vw);
  margin-inline: auto;
}

.project-grid {
  width: min(1120px, 90vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.project:hover {
  transform: translateY(-8px);
  border-color: rgba(143, 22, 32, 0.28);
}

.project-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 74, 0.22), transparent 42%),
    linear-gradient(160deg, #2a1216, #8f1620);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.02);
  transition: transform 0.45s var(--ease);
}

.project:hover .project-media img {
  transform: scale(1.07);
}

.project-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #f6f1ea;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.project-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.project-tag {
  margin: 0;
  color: var(--crimson-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-body h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.project-body p:last-of-type {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.project-link {
  color: var(--crimson-2);
  font-weight: 600;
  font-size: 0.92rem;
}

.project-link.muted {
  color: var(--muted);
  font-weight: 500;
}

.project-link:not(.muted):hover {
  color: var(--ink);
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 14px;
    font-size: 0.86rem;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-marquee {
  display: grid;
  gap: 14px;
  padding: 18px 0 10px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.tech-track {
  display: flex;
  width: max-content;
  animation: tech-scroll-left 42s linear infinite;
}

.tech-track-right {
  animation-name: tech-scroll-right;
}

.tech-track:hover {
  animation-play-state: paused;
}

.tech-card {
  flex: 0 0 auto;
  width: 250px;
  min-width: 140px;
  margin: 8px 16px;
  padding: 24px 18px;
  text-align: center;
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.tech-card:hover {
  transform: scale(1.1) translateY(-8px);
  box-shadow: 0 24px 48px rgba(20, 9, 11, 0.16);
}

[data-theme="dark"] .tech-card {
  border: 1px solid var(--line);
}

[data-theme="dark"] .tech-card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.tech-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 22px rgba(20, 9, 11, 0.18);
}

.tech-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-card h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.tech-card p,
.why-grid p {
  margin: 0;
  color: var(--muted);
}

.why-grid article {
  background: var(--card);
  text-align: center;
  box-shadow: var(--shadow);
}

@keyframes tech-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes tech-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}

.steps span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--crimson));
  font-size: 1.4rem;
  font-weight: 700;
}

.about {
  display: grid;
  gap: 32px;
}

.about-copy {
  text-align: center;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-copy {
  text-align: left;
}

.contact-copy p {
  margin: 12px 0 18px;
}

.mail {
  color: var(--crimson-2);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 14px;
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--input);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--crimson-2);
}

.form .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-note {
  margin: 0;
  color: var(--crimson);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 960px) {
  .menu-btn {
    display: block;
  }

  .nav-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 6vw 28px;
    background: var(--card);
    border-bottom: 1px solid var(--line);
  }

  .nav.open .nav-panel {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    color: var(--ink);
  }

  .package-grid,
  .solution-grid,
  .project-grid,
  .blog-grid,
  .steps,
  .why-grid,
  .contact,
  .stats {
    grid-template-columns: 1fr;
  }

  .package.featured {
    transform: none;
  }

  .tech-card {
    width: 148px;
    margin: 6px 6px;
    padding: 12px 8px;
    border-radius: 12px;
  }

  .tech-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 10px;
  }

  .tech-icon svg {
    width: 20px;
    height: 20px;
  }

  .tech-card h3 {
    font-size: 0.9rem;
  }

  .tech-card p {
    font-size: 0.75rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-copy {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }

  .tech-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    transform: none;
  }

  .tech-marquee {
    mask-image: none;
  }
}

.page-hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--band);
  background-size: 44px 44px, 44px 44px, auto;
  color: #fff;
  padding: 56px 0 72px;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.crumb a:hover {
  color: #fff;
}

.page-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(244, 217, 200, 0.12);
}

.page-icon svg {
  width: 32px;
  height: 32px;
  stroke: #f4d9c8;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.page-hero .lead {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero h1 em {
  font-style: normal;
  color: #f4d9c8;
}

.page-hero .btn {
  margin-top: 8px;
}

.page-block {
  padding-top: 72px;
  padding-bottom: 24px;
}

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

.page-feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.page-feature h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.page-feature p {
  margin: 0;
  color: var(--muted);
}

.page-feature ul {
  margin: 14px 0 0;
  padding: 0 0 0 18px;
  color: var(--ink);
}

.page-feature li {
  margin: 4px 0;
}

.page-benefits {
  margin-top: 40px;
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.benefit-list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #f4d9c8;
  border-bottom: 2px solid #f4d9c8;
  transform: rotate(-45deg);
}

.page-ready {
  padding-bottom: 24px;
}

.page-related-wrap .solution-grid {
  grid-template-columns: repeat(3, 1fr);
}

.solution-light {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.solution-light:hover {
  background: var(--card);
  border-color: rgba(143, 22, 32, 0.28);
}

.solution-light svg {
  stroke: var(--crimson-2);
}

.solution-light p {
  color: var(--muted);
}

.solution-light .solution-more {
  color: var(--crimson-2);
}

.blog-grid {
  width: min(1120px, 90vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.blog-card h3 a:hover {
  color: var(--crimson-2);
}

.blog-date,
.blog-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-card p:last-of-type {
  flex: 1;
  color: var(--muted);
}

.blog-copy {
  width: min(760px, 90vw);
}

.blog-article h2 {
  margin: 2em 0 0.6em;
  letter-spacing: -0.03em;
}

.blog-article h3 {
  margin: 1.4em 0 0.4em;
}

.blog-article p,
.blog-article li {
  color: var(--ink);
}

.blog-article a:not(.btn) {
  color: var(--crimson-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2em 0 0;
}

.blog-cta .btn {
  width: auto;
  text-decoration: none;
}

.blog-cta .btn-primary {
  color: #fff;
}

.blog-more {
  width: min(1120px, 90vw);
  margin: 28px auto 0;
  text-align: center;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

[hidden] {
  display: none !important;
}

@media (max-width: 960px) {
  .page-feature-grid,
  .benefit-list,
  .page-related-wrap .solution-grid {
    grid-template-columns: 1fr;
  }
}
