:root {
  --c-black: #0a0a0a;
  --c-black-soft: #141414;
  --c-white: #ffffff;
  --c-off: #f4f3f0;
  --c-line: #e6e4df;
  --c-line-dark: rgba(255, 255, 255, .1);
  --c-orange: #ff5a1f;
  --c-orange-dark: #d9490f;
  --c-gray: #6b6b68;
  --ff-head: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;
  --radius: 6px;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--c-black);
  background: var(--c-white);
  line-height: 1.65;
}

h1,
h2,
h3 {
  font-family: var(--ff-head);
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--c-gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #ff5a1f;
}

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

/* Section Styles */
section {
  overflow: hidden;
  padding: 80px 0;
}

::selection {
  background: var(--c-orange);
  color: #fff;
}

.bg-white {
  background: #ffffff;
}

.bg-light {
  background: #f4f3f0;
}

.text-black {
  color: #0a0a0a;
}

.text-orange {
  color: #ff5a1f;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 640px;
}

.section-sub {
  max-width: 560px;
  margin-top: 15px;
}

.container-xl {
  max-width: 1260px;
}

.eyebrow {
  font-family: var(--ff-mono);
  font-size: .8rem;
  color: var(--c-orange-dark);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--c-orange);
  border-radius: 2px;
  display: inline-block;
}

/* Button Styles */

.btn {
  font-family: var(--ff-head);
  font-weight: 600;
  border-radius: var(--radius);
  padding: .75rem 1.6rem;
  border: 2px solid transparent;
  transition: all 0.5s ease;
}

.btn-orange {
  background: var(--c-orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--c-orange-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-black {
  border-color: var(--c-black);
  color: var(--c-black);
  background: transparent;
}

.btn-outline-black:hover {
  background: var(--c-black);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  background: transparent;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--c-black);
  transform: translateY(-2px);
}

.btn-sm-pad {
  padding: .55rem 1.2rem;
  font-size: .9rem;
}

.read-more {
  color: var(--c-orange-dark);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .9rem;
  transition: all 0.3s ease-in-out;
}

.read-more:hover {
  text-decoration: underline;
}

/* Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}


.brand-mark img {
  height: 75px;
}

.brand-mark .bracket {
  color: var(--c-orange);
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin: 0 auto;
}

.nav-links a {
  font-family: var(--ff-head);
  font-size: .92rem;
  font-weight: 500;
  color: var(--c-black);
  position: relative;
  padding: .3rem 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--c-orange-dark);
}

.call-now-btn {
  font-family: var(--ff-mono);
  font-size: .85rem;
  background: var(--c-black);
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
}

.call-now-btn:hover {
  background: var(--c-orange);
  color: #fff;
}

.call-now-btn .dot {
  width: 7px;
  height: 7px;
  background: #3ddc7a;
  border-radius: 50%;
  animation: pulse-dot 1.6s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.navbar-toggler {
  border: 1px solid var(--c-line);
}


/* Hero sections */
.hero {
  position: relative;
  background: var(--c-black);
  color: #fff;
  padding: 6.5rem 0 5rem;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, .97) 0%, rgba(10, 10, 10, .9) 40%, rgba(10, 10, 10, .55) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero .container-xl {
  position: relative;
  z-index: 2;
}

.hero p.lead {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stats .stat-num {
  font-family: var(--ff-head);
  font-size: 2rem;
  color: var(--c-orange);
  font-weight: 700;
}

.hero-stats .stat-label {
  font-family: var(--ff-mono);
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
}

.page-hero {
  background: var(--c-black);
  color: #fff;
  padding: 4.2rem 0 3.4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, .96) 0%, rgba(10, 10, 10, .88) 45%, rgba(10, 10, 10, .55) 100%);
  z-index: 1;
  pointer-events: none;
}

.page-hero .container-xl {
  position: relative;
  z-index: 2;
}


/* Cards */
.svc-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  background: #fff;
  transition: border-color .25s ease, transform .25s ease;
  height: 100%;
}

.svc-card:hover {
  border-color: var(--c-orange);
  transform: translateY(-4px);
}

.svc-card .num {
  font-family: var(--ff-mono);
  color: var(--c-orange);
  font-size: .85rem;
}

.svc-card h3 {
  margin: 1rem 0 .6rem;
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--c-black);
  color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

/* Portfolio */
.project-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease, box-shadow .25s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(10, 10, 10, .1);
}

.project-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-black);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.06);
}

.project-thumb .tag {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: var(--c-orange);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: .72rem;
  padding: .25rem .6rem;
  border-radius: 4px;
}

.project-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card h3{
  margin: 1rem 0 .6rem;
}

.project-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Pricing */
.price-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 2.4rem 1.8rem;
  height: 100%;
  background: #fff;
  position: relative;
}

.price-card.featured {
  background: var(--c-black);
  color: #fff;
  border-color: var(--c-black);
  transform: scale(1.03);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, .7);
}

.price-card.featured h3 {
  color: #fff;
}

.price-card .note {
  font-size: .78rem;
  color: var(--c-gray);
}

.price-card .badge-pop {
  position: absolute;
  top: -13px;
  right: 1.6rem;
  background: var(--c-orange);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: .72rem;
  padding: .3rem .7rem;
  border-radius: 4px;
}

.price-amount {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  font-weight: 700;
  margin: 1rem 0;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-gray);
}

.price-card.featured .price-amount span {
  color: rgba(255, 255, 255, .6);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0;
}

.price-list li {
  padding: .5rem 0;
  border-bottom: 1px dashed var(--c-line);
  font-size: .92rem;
  display: flex;
  gap: .6rem;
}

.price-card.featured .price-list li {
  border-color: rgba(255, 255, 255, .15);
}

.price-list li i {
  color: var(--c-orange);
}

.price-section .svc-card {
  height: auto;
}


/* Testimonials */

.review-track {
  overflow: hidden;
}

#reviewSlideRow {
  display: flex;
  transition: transform .4s ease;
}

.review-item {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 .5rem;
  display: flex;
}

.review-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.8rem;
  background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--c-orange);
  font-size: .9rem;
  margin-bottom: .8rem;
}

.review-card p.quote {
  font-size: .95rem;
  color: var(--c-black-soft);
  margin-bottom: 1.2rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: auto;
}

.reviewer .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer .name {
  font-family: var(--ff-head);
  font-size: .92rem;
  font-weight: 600;
}

.reviewer .role {
  font-family: var(--ff-mono);
  font-size: .75rem;
  color: var(--c-gray);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .review-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .review-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .review-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* Blog */
.blog-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: transform .25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-body {
  padding: 1.3rem 1.4rem;
}

.blog-meta {
  font-family: var(--ff-mono);
  font-size: .75rem;
  color: var(--c-orange-dark);
  margin-bottom: .6rem;
}

.blog-body h3 {
  font-size: 1.05rem;
}

.blog-body p {
  font-size: .9rem;
}

/* CTA band */
.cta-band {
  background: var(--c-black);
  color: #fff;
  border-radius: var(--radius);
  padding: 3.2rem 2.2rem;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
}

.cta-band::before {
  content: "</>";
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-family: var(--ff-mono);
  font-size: 9rem;
  color: rgba(238, 166, 50, 0.04);
  font-weight: 700;
}

/* Forms */
.form-control,
.form-select {
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  padding: .75rem .9rem;
  font-size: .95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .15);
}

.form-label {
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.field-error {
  color: #d92b2b;
  font-size: .8rem;
  margin-top: .3rem;
  display: none;
  font-family: var(--ff-mono);
}

.is-invalid~.field-error {
  display: block;
}

.is-invalid {
  border-color: #d92b2b !important;
}

#formSuccess {
  display: none;
  background: #0a0a0a;
  color: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
  align-items: center;
  gap: 1rem;
}

#formSuccess .chk {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Utility / misc pages */
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.2rem;
  margin-bottom: .8rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--c-gray);
  font-size: .96rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.article-meta-row {
  font-family: var(--ff-mono);
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}

.article-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid var(--c-line);
}

.article-content h2 {
  font-size: 1.35rem;
  margin-top: 2.4rem;
  margin-bottom: .9rem;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  font-size: 1.1rem;
  margin-top: 1.8rem;
  margin-bottom: .7rem;
}

.article-content p {
  font-size: 1rem;
  color: var(--c-black-soft);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.3rem;
  margin-bottom: 1.3rem;
}

.article-content li {
  font-size: 1rem;
  color: var(--c-black-soft);
  margin-bottom: .5rem;
  line-height: 1.65;
}

.article-pullquote {
  border-left: 3px solid var(--c-orange);
  padding: .3rem 0 .3rem 1.4rem;
  margin: 2rem 0;
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-black);
}

.author-box {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 3rem;
}

.author-box .avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.author-box h3 {
  font-size: 1rem;
  margin-bottom: .2rem;
}

.author-box p {
  font-size: .88rem;
  margin-bottom: 0;
  color: var(--c-gray);
}

.related-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: transform .25s ease;
}

.related-card:hover {
  transform: translateY(-4px);
}

.related-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card .related-body {
  padding: 1.1rem 1.2rem;
}

.related-card h3 {
  font-size: .98rem;
  margin-bottom: 0;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2.2rem;
}

.process-step .step-index {
  font-family: var(--ff-mono);
  color: var(--c-orange);
  font-size: 1.4rem;
  min-width: 50px;
}

/* Faq Section */
.custom-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--c-line);
  border-radius: 0;
  background: transparent;
}

.custom-accordion .accordion-button {
  position: relative;
  padding: 1.3rem 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.custom-accordion .accordion-button::after {
  display: none;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .faq-icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.custom-accordion .faq-icon::before,
.custom-accordion .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--c-orange);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.custom-accordion .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.custom-accordion .accordion-button:not(.collapsed) .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.custom-accordion .accordion-body {
  padding: 0 40px .9rem 0;
  color: var(--c-gray);
  font-size: .92rem;
  line-height: 1.7;
}

@media (max-width: 575.98px) {
  .custom-accordion .accordion-button {
    padding: 1.1rem 0;
    font-size: .95rem;
  }

  .custom-accordion .accordion-body {
    padding-right: 25px;
    font-size: .9rem;
  }
}

.counter-box {
  text-align: center;
}

.counter-box .num {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--c-black);
}

.counter-box .num span {
  color: var(--c-orange);
}

.counter-box .lbl {
  font-family: var(--ff-mono);
  font-size: .8rem;
  color: var(--c-gray);
}

.filter-btn {
  font-family: var(--ff-mono);
  font-size: .85rem;
  border: 1px solid var(--c-line);
  background: #fff;
  padding: .5rem 1.1rem;
  border-radius: 30px;
  margin: .25rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--c-black);
  color: #fff;
  border-color: var(--c-black);
}

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--c-orange);
  color: #fff;
}

.about-teaser-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
}

.about-teaser-img .exp-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: var(--c-black);
  color: #fff;
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
  font-family: var(--ff-mono);
  font-size: .72rem;
}

.about-teaser-img .exp-badge .num {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-orange);
  line-height: 1;
}

.about-teaser-img .exp-badge .lbl {
  color: rgba(255, 255, 255, .65);
  margin-top: 0;
  font-family: var(--ff-mono);
  font-size: .72rem;
}

.skill-bar {
  margin-bottom: 1.5rem;
}

.skill-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .5rem;
}

.skill-bar-head span:first-child {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
}

.skill-bar-head span.pct {
  font-family: var(--ff-mono);
  font-size: .82rem;
  color: var(--c-orange-dark);
}

.skill-bar-track {
  height: 8px;
  border-radius: 20px;
  background: var(--c-line);
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--c-orange-dark), var(--c-orange));
  transition: width 1.1s ease;
}

.edu-item {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  background: #fff;
}

.edu-item .edu-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.edu-item h3 {
  font-size: 1.05rem;
  margin-bottom: .2rem;
}

.edu-item .edu-meta {
  font-family: var(--ff-mono);
  font-size: .78rem;
  color: var(--c-orange-dark);
  margin-bottom: .4rem;
  display: block;
}

.edu-item p {
  font-size: .92rem;
  margin-bottom: 0;
}

.marketplace-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
}

.marketplace-strip .stack-pill {
  background: var(--c-black);
  color: #fff;
  border-color: var(--c-black);
}

/* Reviews Page */
.reviews-stats-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.reviews-stats-banner .statsAvgNumber {
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-orange);
  line-height: 1;
}

.reviews-stats-banner .statsAvgStars {
  color: var(--c-orange);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.reviews-stats-banner .statsReviewCount {
  font-family: var(--ff-mono);
  font-size: .95rem;
  color: var(--c-gray);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-grid-item {
  display: flex;
}

.review-grid-item .review-card {
  height: 100%;
}

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

@media (max-width: 575px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--c-black);
  color: rgba(255, 255, 255, .65);
  padding: 4rem 0 1.6rem;
}

.site-footer .brand-mark{
  background: #f4f3f0;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #ff5a1f;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, .65);
}

.site-footer a:hover {
  color: var(--c-orange);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: .6rem;
  font-size: .92rem;
}

.social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
}

.social-row a:hover {
  border-color: var(--c-orange);
  background: var(--c-orange);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 3rem;
  padding-top: 1.4rem;
  font-size: .82rem;
}


@media(max-width: 991.9px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 30px 0;
  }

  .hero-stats {
    gap: 1.6rem;
  }

  .price-card.featured {
    transform: none;
  }

}