:root {
  --bg: #050812;
  --bg-2: #08111f;
  --panel: rgba(15, 22, 38, .72);
  --panel-2: rgba(20, 27, 48, .9);
  --line: rgba(160, 132, 255, .24);
  --text: #f7f8ff;
  --muted: #a8afc5;
  --purple: #8b4dff;
  --blue: #3777ff;
  --violet: #b35cff;
  --green: #36d17d;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(36, 20, 92, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(90, 49, 210, .26), transparent 34rem),
    radial-gradient(circle at 12% 28%, rgba(41, 90, 255, .16), transparent 28rem),
    linear-gradient(180deg, #03060d 0%, var(--bg) 45%, #03070e 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--muted); line-height: 1.75; }
h1, h2, h3, h4, h5, h6, strong, b {
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 4vw, 3.3rem); }
h2 { font-size: clamp(2.1rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(2rem, 2.9vw, 2.4rem); }
h4 { font-size: 2.1rem; }
h5 { font-size: 2rem; }
h6 { font-size: 1.84rem; }

.section { padding: 86px 0; }
.section-sm { padding: 58px 0; }
.container { max-width: 1180px; }
.text-gradient {
  background: linear-gradient(135deg, var(--violet), #6a7cff 55%, #24c7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  color: #b77bff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  gap: .45rem;
  align-items: center;
}
.eyebrow::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border: 2px solid var(--violet);
  border-radius: 50%;
}
.display-title {
  font-size: clamp(1.6rem, 4vw, 3.3rem);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: 0;
}
.page-title {
  font-size: clamp(1.5rem, 2.7vw, 2.7rem);
  line-height: 1.08;
  font-weight: 700;
}

.navbar {
  background: rgba(3, 7, 15, .72);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  border-radius: 0 0 18px 18px;
}
.navbar-brand { font-weight: 700; font-size: 1.5rem; }
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  outline: 0;
  border-color: rgba(179, 92, 255, .55) !important;
  box-shadow: 0 0 0 .2rem rgba(139, 77, 255, .18);
}
.navbar-toggler {
  min-width: 54px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .45rem .55rem;
  line-height: 1;
}
.navbar-toggler .bi,
.navbar-toggler i {
  font-size: 2.85rem !important;
  line-height: 1;
}
.navbar-toggler:not(:focus-visible) {
  box-shadow: none;
}
.site-logo {
  display: block;
  width: clamp(138px, 14vw, 190px);
  height: auto;
}
.footer .site-logo {
  width: clamp(150px, 16vw, 210px);
  margin-bottom: .75rem;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  clip-path: polygon(50% 0, 100% 92%, 72% 92%, 50% 48%, 28% 92%, 0 92%);
}
.nav-link {
  color: #edf0ff !important;
  font-weight: 700;
  font-size: .94rem;
  position: relative;
}
.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--blue));
}

.btn-gradient {
  border: 0;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: .9rem 1.25rem;
  background: linear-gradient(135deg, #7547ff, #8c40ff 50%, #336dff);
  box-shadow: 0 10px 30px rgba(116, 71, 255, .34);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-gradient:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 42px rgba(124, 73, 255, .52); }
.btn-glass {
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 12px;
  padding: .88rem 1.2rem;
  background: rgba(255,255,255,.03);
}
.btn-glass:hover { border-color: rgba(171, 106, 255, .65); color: #fff; background: rgba(137, 82, 255, .12); }

.hero {
  padding: 120px 0 72px;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-compact {
  padding: 110px 0 58px;
  min-height: 480px;
}
.hero-bg {
  position: relative;
  isolation: isolate;
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-bg > .container {
  position: relative;
  z-index: 1;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-home-bg {
  background-image: url("../images/hero-home.jpg");
  background-position: center right;
}
.hero-home-bg::before {
  background: linear-gradient(90deg, transparent 0 30%, #050812 34%, rgba(5, 8, 18, .72) 37%, transparent 46%);
}
.hero-blog-bg {
  background-image: url("../images/hero-blogpage.png");
  background-position: right;
  background-size: auto 115%;
}
.hero-blog-bg::before {
  background: linear-gradient(90deg, transparent 0 33%, #050812 38%, rgba(5, 8, 18, .72) 41%, transparent 50%);
}
.hero-section-bg {
  background-image: url("../images/section-hero1.png");
  background-position: right;
  background-size: auto 115%;
}
.hero-section-bg::before {
  background: linear-gradient(90deg, transparent 0 33%, #050812 38%, rgba(5, 8, 18, .72) 41%, transparent 50%);
}
.hero-side-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 28px 58px rgba(103, 56, 255, .22));
}
.hero-media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% 3% 0;
  background: radial-gradient(circle, rgba(132, 76, 255, .5), transparent 58%);
  filter: blur(26px);
  opacity: .8;
}
.hero-visual img { position: relative; z-index: 1; filter: drop-shadow(0 38px 64px rgba(103, 56, 255, .35)); }

.glass-card {
  background: linear-gradient(145deg, rgba(18, 25, 42, .82), rgba(8, 13, 25, .68));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.hover-lift:hover {
  transform: translateY(-7px);
  border-color: rgba(159, 91, 255, .62);
  box-shadow: var(--shadow);
}
.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 77, 255, .9), rgba(55, 119, 255, .72));
  font-size: 1.45rem;
}
.soft-divider { border-color: rgba(255,255,255,.1); opacity: 1; }
.logo-row span {
  color: rgba(238,242,255,.72);
  font-weight: 700;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}
.project-img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}
.thumb-img { height: 128px; width: 100%; object-fit: cover; border-radius: 12px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.chip, .filter-btn {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  padding: .72rem 1rem;
  color: #fff;
  background: rgba(255,255,255,.03);
  font-weight: 700;
}
.filter-btn.active, .chip.active { background: linear-gradient(135deg, var(--purple), var(--blue)); border-color: transparent; }
.stat-number { font-size: clamp(1rem, 1.35vw, 1.35rem); color: #a75cff; font-weight: 700; line-height: 1; }
.metric-card { border-left: 1px solid rgba(255,255,255,.11); }
.alphabit-stats-panel {
  display: flex;
  align-items: center;
  min-height: 116px;
}
.alphabit-stats-panel > .row {
  width: 100%;
}
.alphabit-stat-item {
  min-height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.alphabit-stat-item p {
  margin: .45rem 0 0;
  line-height: 1.35;
}
.alphabit-work-stat-item {
  align-items: flex-start;
  text-align: left;
}
.alphabit-work-stat-item h3 {
  margin-bottom: .35rem;
}
.form-control, .form-select {
  background: rgba(7, 12, 23, .78);
  border: 1px solid rgba(255,255,255,.13);
  color: #fff;
  border-radius: 12px;
  padding: .95rem 1rem;
}
.form-control:focus, .form-select:focus {
  background: rgba(10, 16, 29, .92);
  color: #fff;
  border-color: var(--purple);
  box-shadow: 0 0 0 .25rem rgba(139, 77, 255, .18);
}
.form-control::placeholder { color: #7f879c; }
.accordion-item { background: transparent; border-color: rgba(255,255,255,.11); }
.accordion-button, .accordion-button:not(.collapsed) {
  background: rgba(12, 18, 31, .86);
  color: #fff;
  box-shadow: none;
}
.accordion-button::after { filter: invert(1); }

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168, 91, 255, .6);
  background: linear-gradient(135deg, rgba(28, 20, 58, .84), rgba(11, 16, 31, .88));
  border-radius: var(--radius);
}
.cta-band::after {
  content: none;
  position: absolute;
  inset: auto -10% -55% 38%;
  height: 160px;
  transform: rotate(-8deg);
}
.pricing-final-cta {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(220px, 260px);
  align-items: center;
  gap: 1.9rem;
  padding: 1.25rem 1.7rem;
  border-radius: 10px;
}
.pricing-final-cta .cta-icon {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #dfa7ff;
  font-size: 2.15rem;
  background: linear-gradient(135deg, rgba(129, 74, 255, .48), rgba(30, 36, 72, .7));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.pricing-final-cta h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
  margin: .35rem 0 .2rem;
}
.pricing-final-cta p {
  margin: 0;
  color: var(--muted);
}
.pricing-final-cta .btn {
  min-height: 54px;
  justify-content: center;
}
.footer {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 54px 0 24px;
  color: var(--muted);
}
.footer a { color: var(--muted); display: block; margin: .35rem 0; }
.footer a:hover { color: #fff; }
.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: inline-grid;
  place-items: center;
  margin-right: .45rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.floaty { animation: floaty 5.8s ease-in-out infinite; }

.pricing-card.popular { border-color: rgba(151, 93, 255, .7); transform: translateY(-10px); }
.pricing-section-title {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
  margin-bottom: .35rem;
}
.pricing-section {
  padding: 46px 0;
}
.pricing-section-header {
  margin-bottom: 1.75rem;
}
.pricing-section-header .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  font-size: 1.15rem;
}
.pricing-plan h4 {
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  line-height: 1.22;
  margin-bottom: .55rem;
}
.pricing-plan .price {
  font-size: clamp(1.35rem, 1.85vw, 1.75rem);
  line-height: 1.1;
  margin-top: .8rem;
  margin-bottom: .25rem;
}
.pricing-plan p {
  font-size: .82rem;
  line-height: 1.55;
  margin-bottom: .7rem;
}
.pricing-plan {
  padding: 1.35rem !important;
}
.pricing-plan .btn {
  padding: .72rem 1rem;
  margin-top: .75rem !important;
}
.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  padding: .45rem 1rem;
  font-size: .8rem;
  font-weight: 700;
}
.toc { position: sticky; top: 110px; }
.video-frame {
  min-height: 390px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(62, 26, 140, .45), rgba(7, 10, 18, .85)), url("../images/project-video.svg") center/cover;
}
.play-button {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 0 44px rgba(137, 77, 255, .55);
  font-size: 2rem;
}

.services-showcase {
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(8, 14, 26, .42), transparent 42%);
}
.services-showcase .page-title {
  font-size: clamp(1.9rem, 3.1vw, 2.85rem);
  max-width: 100%;
}
.service-lead {
  max-width: 470px;
  margin-left: auto;
  font-size: 1.02rem;
}
.service-schedule {
  min-width: 178px;
}
.service-card-ui {
  position: relative;
  min-height: 292px;
  padding: 28px 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(113, 79, 255, .14), transparent 13rem),
    linear-gradient(145deg, rgba(18, 25, 43, .86), rgba(8, 13, 25, .78));
}
.service-card-ui::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.05), transparent 46%);
  pointer-events: none;
}
.service-copy {
  position: relative;
  z-index: 2;
  width: 58%;
  min-height: 148px;
  display: flex;
  flex-direction: column;
}
.service-card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.service-card-header .service-title,
.service-card-ui h3 {
  flex: 1;
  max-width: none;
  width: auto;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.24;
  font-weight: 700;
  margin: 0;
}
.service-card-ui p {
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.service-link {
  margin-top: auto;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.service-link:hover {
  color: #b98cff;
}
.service-card-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 38px rgba(0,0,0,.24);
}
.service-card-icon.purple { color: #b487ff; background: rgba(125, 72, 255, .25); }
.service-card-icon.blue { color: #73b7ff; background: rgba(47, 137, 255, .25); }
.service-card-icon.orange { color: #ff9d35; background: rgba(255, 134, 37, .22); }
.service-card-icon.green { color: #70f069; background: rgba(73, 212, 65, .2); }
.service-card-icon.gold { color: #ffcd4e; background: rgba(235, 178, 35, .2); }
.service-card-icon.pink { color: #ff6bab; background: rgba(226, 58, 137, .22); }
.service-card-visual {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 38%;
  max-width: 150px;
  height: 174px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: -18px 24px 46px rgba(0,0,0,.35);
  z-index: 1;
}
.home-services {
  padding-top: 72px;
}
.section-header-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .72fr) auto;
  gap: 2.4rem;
  align-items: start;
  margin-bottom: 2.4rem;
}
.section-header-row .section-action {
  justify-self: end;
}
.section-header-row .section-action .btn {
  min-width: 172px;
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.section-header-row .section-copy {
  max-width: 360px;
  font-size: .95rem;
  line-height: 1.65;
  margin: 0;
}
.home-services .page-title {
  max-width: 540px;
  font-size: clamp(2.2rem, 3.45vw, 3rem);
  line-height: 1.08;
}
.home-service-intro {
  max-width: 390px;
  margin-left: auto;
  font-size: .96rem;
  line-height: 1.65;
}
.home-service-card {
  min-height: 250px;
  padding: 28px 26px 24px;
  background:
    radial-gradient(circle at 12% 16%, rgba(132, 73, 255, .18), transparent 9rem),
    linear-gradient(145deg, rgba(18, 25, 44, .84), rgba(9, 14, 27, .78));
}
.home-service-card h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.home-service-card p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.home-service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 42px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 16px 38px rgba(0,0,0,.22);
}
.home-service-icon.purple { color: #bd84ff; background: rgba(132, 73, 255, .28); }
.home-service-icon.blue { color: #63b2ff; background: rgba(40, 117, 255, .28); }
.home-service-icon.teal { color: #36e6c3; background: rgba(23, 180, 163, .24); }
.home-service-link {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.home-service-link:hover {
  color: #b98cff;
}
.review-card {
  display: flex;
  flex-direction: column;
  min-height: 170px;
}
.review-card p {
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  box-shadow: 0 16px 28px rgba(0,0,0,.28);
}
.review-author .text-warning {
  font-size: .8rem;
  letter-spacing: .08rem;
}
.blog-card-title,
.blog-content-card h2,
.blog-content-card h5 {
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.28;
}
.blog-feature-title {
  font-size: clamp(1.25rem, 1.75vw, 1.75rem);
  line-height: 1.24;
}
.alphabit-article-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.alphabit-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .45rem;
}
.alphabit-featured-excerpt {
  -webkit-line-clamp: 2;
}
.alphabit-read-more {
  display: inline;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  margin-left: .15rem;
}
.alphabit-read-more:hover {
  color: #b98cff;
}
.alphabit-blog-meta {
  margin-top: .45rem;
  margin-bottom: 0;
}
.blog-subscribe-card h4 {
  font-size: 1.68rem;
}
.popular-article-link {
  font-size: .8rem;
  line-height: 1.45;
}
.legal-content h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  margin-top: 1.5rem;
  margin-bottom: .85rem;
}
.legal-content h3 {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin-top: 1rem;
}
.legal-content ul {
  color: var(--muted);
  line-height: 1.75;
  padding-left: 1.25rem;
}
.legal-content a {
  color: #fff;
  font-weight: 700;
}
.alphabit-copy-link {
  cursor: pointer;
}
button.chip {
  font: inherit;
}
.alphabit-share-row .copy-label {
  margin-left: .35rem;
}
.alphabit-results-card {
  background:
    radial-gradient(circle at 92% 12%, rgba(139, 77, 255, .16), transparent 15rem),
    linear-gradient(145deg, rgba(18, 25, 42, .82), rgba(8, 13, 25, .68));
}
.alphabit-result-stat {
  padding: 1.25rem .85rem;
  border-left: 1px solid rgba(255,255,255,.11);
}
.alphabit-result-stat p {
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.55;
}
.article-body > h2 {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.28;
  margin-top: 1.65rem;
  margin-bottom: .75rem;
}
.article-body .article-promo-title {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.18;
}
.home-articles-section .page-title {
  font-size: clamp(.75rem, 1.35vw, 1.35rem);
}
.home-article-title {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.3;
}
.about-mission-row {
  align-items: flex-start;
}
.about-value-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
}
.about-value-card .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  font-size: 1.15rem;
  margin: 0;
}
.about-value-card h4 {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: .35rem;
}
.about-value-card p {
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
}
.about-testimonials-row {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.about-testimonials-row h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
}
.about-testimonial-card {
  min-height: 146px;
  padding: 1.6rem;
}
.about-testimonial-card p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.work-project-title {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.28;
  margin-bottom: .65rem;
}
.alphabit-video-card-title,
.alphabit-overview-detail-title {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.alphabit-video-card-heading {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}
.alphabit-video-card-heading .icon-box {
  width: 43px;
  height: 43px;
  min-width: 43px;
  margin-bottom: 0 !important;
  border-radius: 12px;
  font-size: 1.05rem;
}
.alphabit-video-card-heading .alphabit-video-card-title {
  flex: 1;
  font-size: 1.38rem;
  margin-bottom: 0;
}
.faq-card-title {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: .5rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 0;
    overflow: hidden;
  }
  .navbar-collapse.collapsing {
    padding: 0;
    transition: height .24s ease;
  }
  .navbar-collapse.show {
    padding: 0;
  }
  .navbar {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .navbar-toggler {
    width: 62px;
    height: 62px;
    min-width: 62px;
    min-height: 62px;
    padding: .5rem;
    margin-right: -.35rem;
  }
  .navbar-toggler:focus,
  .navbar-toggler:active,
  .navbar-toggler:focus-visible,
  .navbar-toggler[aria-expanded="true"] {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
  }
  .navbar-toggler .bi,
  .navbar-toggler i {
    font-size: 3.1rem !important;
  }
  .navbar-nav {
    gap: .25rem;
    padding: 1.15rem 0 .5rem;
  }
  .navbar .nav-link {
    font-size: 1.08rem;
    padding: .82rem .25rem;
  }
  .navbar .nav-link::after,
  .navbar .nav-link.active::after,
  .navbar .nav-link:hover::after,
  .navbar .nav-link:focus::after,
  .navbar .nav-link:active::after {
    display: none !important;
    content: none !important;
  }
  .navbar-collapse > .btn-gradient {
    display: none !important;
  }
  .hero { padding-top: 106px; min-height: auto; }
  .hero-bg {
    background-size: 92% auto;
    background-position: center bottom;
    padding-bottom: 250px;
  }
  .hero-home-bg::before,
  .hero-blog-bg::before,
  .hero-section-bg::before {
    background: linear-gradient(180deg, transparent 0 46%, #050812 60%, rgba(5, 8, 18, .58) 68%, transparent 82%);
  }
  .hero-visual { min-height: 320px; }
  .hero-media {
    margin-top: 1.5rem;
    justify-content: center;
  }
  .hero-side-img {
    max-height: 300px;
    object-position: center;
  }
  .metric-card { border-left: 0; }
  .service-lead { margin-left: 0; }
  .home-service-intro { margin-left: 0; }
  .section-header-row,
  .about-testimonials-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pricing-final-cta {
    grid-template-columns: 64px 1fr;
    align-items: start;
  }
  .pricing-final-cta .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .section-header-row .section-action {
    justify-self: start;
  }
}
@media (max-width: 575.98px) {
  .section { padding: 62px 0; }
  .hero-bg {
    background-image: none !important;
    padding-bottom: 58px;
  }
  .hero-bg::before { content: none; }
  .hero-media,
  .hero-visual,
  .hero-side-img { display: none !important; }
  .btn-gradient, .btn-glass { width: 100%; justify-content: center; }
  .project-img { height: 190px; }
  .pricing-card.popular { transform: none; }
  .service-card-ui { min-height: 270px; }
  .service-copy { width: 64%; }
  .service-card-visual { width: 31%; right: 14px; height: 150px; }
  .service-card-heading {
    gap: .7rem;
  }
  .service-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.15rem;
  }
  .pricing-final-cta {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .pricing-final-cta .cta-icon {
    width: 62px;
    height: 62px;
    border-radius: 15px;
    font-size: 1.65rem;
  }
}
