/* ==========================================================================
   Maharix Technology — Design System
   Deep Navy #0B1220 · Electric Cyan #19C7FF · Royal Blue #4169E1
   ========================================================================== */

:root {
  --ink: #0B1220;
  --ink-soft: #111827;
  --cyan: #19C7FF;
  --royal: #4169E1;
  --bg-light: #F7F9FC;
  --white: #FFFFFF;
  --text: #0B1220;
  --text-soft: #667085;
  --border: #E5E7EB;
  --border-dark: rgba(255, 255, 255, 0.12);

  --font-display: 'Manrope', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-soft: 0 1px 2px rgba(11, 18, 32, 0.04), 0 8px 24px -8px rgba(11, 18, 32, 0.08);
  --shadow-lifted: 0 4px 16px rgba(11, 18, 32, 0.06), 0 24px 48px -16px rgba(11, 18, 32, 0.16);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  color: var(--text-soft);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* Focus states — accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 13px 26px;
  border-radius: 8px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  min-height: 48px;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lifted);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-accent {
  background: var(--cyan);
  color: var(--ink);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(25, 199, 255, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.btn-outline-light:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-ghost {
  color: var(--ink);
  padding: 13px 8px;
}

.btn-ghost:hover {
  color: var(--royal);
}

.btn-sm {
  padding: 10px 18px;
  min-height: 40px;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px -12px rgba(11, 18, 32, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  transition: padding 0.25s ease;
}

.site-header.is-scrolled .header-inner {
  padding: 13px 0;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-glyph {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.brand-glyph-img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  display: block;
  transition: height 0.25s ease, transform 0.35s var(--ease);
  will-change: transform;
}

.brand-mark:hover .brand-glyph-img {
  transform: scale(1.06) rotate(-2deg);
}

.site-header.is-scrolled .brand-glyph-img {
  height: 42px;
}

.footer-brand .brand-glyph-img {
  height: 48px;
}

.mobile-menu-top .brand-glyph-img {
  height: 40px;
}

.footer-brand .brand-glyph-img {
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--royal);
  background: rgba(65, 105, 225, 0.06);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.nav-item.open .nav-link svg {
  transform: rotate(180deg);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--royal), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 340px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lifted);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 50;
}

.nav-item.open .mega-dropdown,
.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-dropdown a.drop-link {
  display: flex;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  transition: background 0.15s ease;
  align-items: flex-start;
}

.mega-dropdown a.drop-link:hover {
  background: var(--bg-light);
}

.drop-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(25, 199, 255, 0.14), rgba(65, 105, 225, 0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
}

.drop-icon svg {
  width: 17px;
  height: 17px;
}

.drop-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.drop-text span {
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-contact-group {
  display: none;
}

@media (min-width: 1240px) {
  .header-contact-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 2px;
  }

  .header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink-soft);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
    flex-shrink: 0;
  }

  .header-icon-btn svg {
    width: 16px;
    height: 16px;
  }

  .header-icon-btn.is-call {
    color: var(--royal);
    border-color: rgba(65, 105, 225, 0.22);
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.08), rgba(25, 199, 255, 0.05));
  }

  .header-icon-btn.is-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(65, 105, 225, 0.45);
    border-color: rgba(65, 105, 225, 0.4);
  }

  .header-icon-btn.is-whatsapp {
    color: #22C55E;
    border-color: rgba(34, 197, 94, 0.22);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.03));
  }

  .header-icon-btn.is-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(34, 197, 94, 0.45);
    border-color: rgba(34, 197, 94, 0.4);
  }

  .header-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    margin-right: 4px;
  }

  .header-phone-text a {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.01em;
  }

  .header-phone-text a:hover {
    color: var(--royal);
  }

  .header-phone-text span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-icon-btn {
    transition: none;
  }
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

@media (max-width: 1023px) {

  .main-nav,
  .header-contact-group {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-body {
  padding: 12px 20px 40px;
  flex: 1;
}

.mobile-acc {
  border-bottom: 1px solid var(--border);
}

.mobile-acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
}

.mobile-acc-trigger svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
  color: var(--text-soft);
}

.mobile-acc.open .mobile-acc-trigger svg {
  transform: rotate(180deg);
}

.mobile-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.mobile-acc.open .mobile-acc-panel {
  max-height: 900px;
}

.mobile-acc-panel a {
  display: block;
  padding: 11px 4px 11px 14px;
  border-left: 2px solid var(--border);
  margin-left: 4px;
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.mobile-acc-panel a:hover {
  color: var(--royal);
  border-color: var(--cyan);
}

.mobile-simple-link {
  display: block;
  padding: 17px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-cta {
  padding: 22px 4px 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------------------------------------------------------------------- */
/* Sticky mobile CTA bar                                                   */
/* ---------------------------------------------------------------------- */

.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px -8px rgba(11, 18, 32, 0.12);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}

@media (max-width: 767px) {
  .sticky-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 4px;
  }
}

.sticky-cta-bar .btn {
  flex: 1;
  font-size: 0.875rem;
  padding: 12px 10px;
}

/* ---------------------------------------------------------------------- */
/* Section utilities                                                       */
/* ---------------------------------------------------------------------- */

.section {
  padding: 110px 0;
}

.section-tight {
  padding: 72px 0;
}

@media (max-width: 767px) {
  .section {
    padding: 68px 0;
  }

  .section-tight {
    padding: 52px 0;
  }
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h1 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.section-light-alt {
  background: var(--bg-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--royal);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

.section-dark .eyebrow {
  color: var(--cyan);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head.wide {
  max-width: 760px;
}

.section-head p {
  font-size: 1.0625rem;
  margin-top: 16px;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.section-head-row .section-head {
  margin-bottom: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-soft);
  padding: 18px 0;
}

.breadcrumbs a:hover {
  color: var(--royal);
}

.breadcrumbs .sep {
  color: var(--border);
}

.breadcrumbs .current {
  color: var(--ink);
  font-weight: 500;
}

/* Page hero (interior pages) — premium photo banner */
.page-hero {
  position: relative;
  padding: 88px 0 76px;
  background: var(--ink);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.88) 0%, rgba(11, 18, 32, 0.82) 45%, rgba(11, 18, 32, 0.94) 100%),
    radial-gradient(900px 400px at 85% 0%, rgba(25, 199, 255, 0.16), transparent 60%);
}

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

.page-hero h1 {
  max-width: 780px;
  color: var(--white);
}

.page-hero .lede {
  font-size: 1.125rem;
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero .eyebrow {
  color: var(--cyan);
}

.page-hero .eyebrow::before {
  background: var(--cyan);
}

.page-hero-breadcrumbs {
  position: relative;
  z-index: 1;
  padding: 18px 0 0;
}

.page-hero-breadcrumbs .breadcrumbs {
  color: rgba(255, 255, 255, 0.55);
  padding: 0;
}

.page-hero-breadcrumbs .breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero-breadcrumbs .breadcrumbs a:hover {
  color: var(--cyan);
}

.page-hero-breadcrumbs .breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.25);
}

.page-hero-breadcrumbs .breadcrumbs .current {
  color: var(--white);
}

@media (max-width: 767px) {
  .page-hero {
    padding: 64px 0 44px;
    min-height: 240px;
  }
}

/* ---------------------------------------------------------------------- */
/* Grid & layout helpers                                                   */
/* ---------------------------------------------------------------------- */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 76px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(25, 199, 255, 0.10), transparent 60%),
    radial-gradient(700px 500px at -5% 30%, rgba(65, 105, 225, 0.06), transparent 60%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 22px;
}

.hero-copy .lede {
  font-size: 1.1875rem;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
  font-size: 0.875rem;
  color: var(--text-soft);
}

.hero-trust .dot {
  color: var(--border);
  margin: 0 12px;
}

/* Hero interface visual */
.hero-visual {
  position: relative;
}

.browser-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lifted);
  overflow: hidden;
  transform: rotate(-1deg);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: #F2F4F8;
  border-bottom: 1px solid var(--border);
}

.browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D8DEE9;
}

.browser-url {
  flex: 1;
  margin-left: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.browser-body {
  padding: 22px;
  background: linear-gradient(180deg, #FBFCFE, #F3F6FA);
}

.browser-body img {
  border-radius: 8px;
  margin-bottom: 16px;
}

.hero-slider {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
  animation: heroFade 0.6s var(--ease);
}

.hero-slide img {
  border-radius: 8px;
  margin-bottom: 0;
  width: 100%;
  height: auto;
  display: block;
}

@keyframes heroFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(11, 18, 32, 0.15);
  transition: background 0.2s ease, width 0.25s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--cyan);
  width: 20px;
  border-radius: 4px;
  border-color: transparent;
}

.diagnostic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.diag-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}

.diag-chip .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pulse-good {
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.pulse-warn {
  background: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.pulse-accent {
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(25, 199, 255, 0.2);
}

.float-badge {
  position: absolute;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lifted);
  font-size: 0.8125rem;
}

.float-badge strong {
  display: block;
  font-size: 1.375rem;
  font-family: var(--font-display);
  color: var(--cyan);
}

.float-badge-1 {
  top: -22px;
  right: -14px;
}

.float-badge-2 {
  bottom: -24px;
  left: -18px;
}

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

  .float-badge {
    display: none;
  }

  .browser-card {
    transform: none;
  }
}

/* ---------------------------------------------------------------------- */
/* Trust / value strip                                                     */
/* ---------------------------------------------------------------------- */

.value-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}

.value-strip-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.value-item svg {
  width: 18px;
  height: 18px;
  color: var(--royal);
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* Problem section — editorial split                                       */
/* ---------------------------------------------------------------------- */

.problem-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.problem-list {
  display: flex;
  flex-direction: column;
}

.problem-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}

.problem-row:first-child {
  border-top: 1px solid var(--border);
}

.problem-row .p-num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--border);
  width: 22px;
  flex-shrink: 0;
}

.problem-row .p-text {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.975rem;
}

.problem-visual {
  background: var(--ink);
  border-radius: 18px;
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.problem-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at 90% 10%, rgba(25, 199, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.problem-visual h3 {
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.problem-visual p {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 26px;
  position: relative;
  max-width: 420px;
}

.fix-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  margin-bottom: 30px;
}

.fix-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fix-item svg {
  width: 19px;
  height: 19px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 1px;
}

.fix-item span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 900px) {
  .problem-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------- */
/* Services — interactive selector                                        */
/* ---------------------------------------------------------------------- */

.service-explorer {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-explorer-compact {
  min-height: 0;
}

.service-explorer-compact .service-tablist {
  max-height: 480px;
}

.service-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 40px;
  color: var(--text-soft);
}

.service-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--border);
  margin-bottom: 18px;
}

.service-placeholder h4 {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.service-placeholder p {
  font-size: 0.9rem;
  max-width: 280px;
}

.service-placeholder.hidden {
  display: none;
}

.service-tablist {
  background: var(--bg-light);
  border-right: 1px solid var(--border);
  padding: 10px;
  max-height: 640px;
  overflow-y: auto;
}

.service-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 15px 16px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.18s ease, color 0.18s ease;
}

.service-tab:hover {
  background: rgba(65, 105, 225, 0.06);
}

.service-tab.active {
  background: var(--ink);
  color: var(--white);
}

.service-tab.active svg {
  color: var(--cyan);
}

.service-tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

.service-detail {
  padding: 44px;
}

.service-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.service-detail h3 {
  margin-bottom: 12px;
}

.service-detail>p.lead {
  font-size: 1.0625rem;
  margin-bottom: 30px;
  max-width: 560px;
}

.service-price-tag {
  flex-shrink: 0;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: right;
}

.service-price-tag .from {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-soft);
}

.service-price-tag .amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--ink);
}

.service-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.service-meta-grid h4 {
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.service-meta-grid ul li {
  display: flex;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 9px;
  align-items: flex-start;
}

.service-meta-grid ul li svg {
  width: 15px;
  height: 15px;
  color: var(--royal);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tech-tag {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(65, 105, 225, 0.08);
  color: var(--royal);
}

.service-detail-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.service-timeline {
  font-size: 0.875rem;
  color: var(--text-soft);
}

.service-timeline strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .service-explorer {
    grid-template-columns: 1fr;
  }

  .service-tablist {
    display: flex;
    overflow-x: auto;
    max-height: none;
    gap: 8px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .service-detail {
    padding: 28px 22px;
  }

  .service-meta-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ---------------------------------------------------------------------- */
/* Technology section — category switch                                   */
/* ---------------------------------------------------------------------- */

.tech-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tech-cat-btn {
  padding: 11px 20px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.tech-cat-btn.active {
  background: var(--cyan);
  color: var(--ink);
  border-color: var(--cyan);
}

.tech-cat-btn:not(.active):hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.tech-panel {
  display: none;
}

.tech-panel.active {
  display: block;
  animation: fadeIn 0.4s var(--ease);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 150px;
}

.tech-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.tech-item span {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
}

/* ---------------------------------------------------------------------- */
/* Why section — editorial magazine layout                                 */
/* ---------------------------------------------------------------------- */

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.why-row:nth-child(even) {
  direction: rtl;
}

.why-row:nth-child(even)>* {
  direction: ltr;
}

.why-cell {
  padding: 44px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-cell.image-cell {
  padding: 0;
  overflow: hidden;
  min-height: 220px;
  position: relative;
}

.why-cell.image-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.why-cell.image-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 18, 32, 0.25));
}

.why-index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--royal);
  margin-bottom: 14px;
}

.why-cell h3 {
  margin-bottom: 12px;
}

.why-cell p {
  font-size: 0.975rem;
}

@media (max-width: 860px) {

  .why-row,
  .why-row:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .why-cell.image-cell {
    min-height: 180px;
    order: -1;
  }

  .why-cell {
    padding: 34px 26px;
  }
}

/* ---------------------------------------------------------------------- */
/* Process — compact                                                       */
/* ---------------------------------------------------------------------- */

.process-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.process-step {
  background: var(--white);
  padding: 30px 22px;
}

.process-step .p-idx {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--border);
  margin-bottom: 16px;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .process-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .process-strip {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------- */
/* Pricing                                                                 */
/* ---------------------------------------------------------------------- */

.pricing-table-wrap {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.6fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 32px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover {
  background: var(--bg-light);
}

.pricing-row.featured {
  background: linear-gradient(90deg, rgba(25, 199, 255, 0.05), transparent);
  position: relative;
}

.pricing-row.featured::before {
  content: 'Most Chosen';
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--ink);
  color: var(--cyan);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
}

.pricing-name h4 {
  margin-bottom: 4px;
}

.pricing-name span {
  font-size: 0.8125rem;
  color: var(--text-soft);
}

.pricing-price {
  font-family: var(--font-display);
}

.pricing-price .amt {
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--ink);
}

.pricing-price .unit {
  font-size: 0.8125rem;
  color: var(--text-soft);
  font-weight: 500;
  font-family: var(--font-body);
}

.pricing-price .from-label {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-soft);
  font-family: var(--font-body);
  text-transform: none;
  margin-bottom: 2px;
}

.pricing-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
}

.pricing-includes span {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-includes span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--royal);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .pricing-row {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 14px;
    padding: 24px;
  }

  .pricing-row.featured::before {
    top: 0;
    right: 0;
    border-radius: 0 0 0 8px;
  }
}

.pricing-note {
  text-align: center;
  margin-top: 34px;
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.pricing-note a {
  color: var(--royal);
  font-weight: 600;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------------------- */
/* Portfolio                                                               */
/* ---------------------------------------------------------------------- */

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.work-filter-btn {
  padding: 9px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: all 0.2s ease;
}

.work-filter-btn.active,
.work-filter-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.work-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.work-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--white);
  gap: 0;
}

.work-item-img {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.work-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.work-item:hover .work-item-img img {
  transform: scale(1.04);
}

.demo-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 18, 32, 0.82);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.work-item-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-item-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.work-item-tags span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--royal);
  background: rgba(65, 105, 225, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
}

.work-item-body h3 {
  margin-bottom: 14px;
}

.work-pattern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 14px;
}

.work-pattern div h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.work-pattern div p {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .work-item {
    grid-template-columns: 1fr;
  }

  .work-item-img {
    min-height: 200px;
  }

  .work-item-body {
    padding: 28px 24px;
  }

  .work-pattern {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---------------------------------------------------------------------- */
/* FAQ accordion                                                          */
/* ---------------------------------------------------------------------- */

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-q svg {
  width: 20px;
  height: 20px;
  color: var(--text-soft);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
  color: var(--royal);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-a-inner {
  padding: 0 4px 26px;
  max-width: 700px;
}

.faq-a-inner p {
  font-size: 0.975rem;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

/* Premium FAQ — dark photo-background split layout (homepage) */
.faq-premium {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.faq-premium-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}

.faq-premium-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 18, 32, 0.98) 30%, rgba(11, 18, 32, 0.75) 100%);
}

.faq-premium .container {
  position: relative;
  z-index: 1;
}

.faq-premium-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.faq-premium-copy h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.faq-premium-copy p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.0625rem;
  margin-bottom: 30px;
}

.faq-still-box {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-still-box h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}

.faq-still-box p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.faq-premium-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-premium-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-premium-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 2px;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s ease;
}

.faq-premium-item:hover .faq-premium-q {
  color: var(--cyan);
}

.faq-premium-q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s var(--ease);
}

.faq-premium-q-icon svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s var(--ease);
}

.faq-premium-item.open .faq-premium-q-icon {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
}

.faq-premium-item.open .faq-premium-q-icon svg {
  transform: rotate(45deg);
}

.faq-premium-item.open .faq-premium-q {
  color: var(--cyan);
}

.faq-premium-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-premium-a-inner {
  padding: 0 2px 28px;
  max-width: 620px;
}

.faq-premium-a-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.faq-premium-item.open .faq-premium-a {
  max-height: 300px;
}

@media (max-width: 900px) {
  .faq-premium-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ---------------------------------------------------------------------- */
/* Lead magnet / audit form                                                */
/* ---------------------------------------------------------------------- */

.audit-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  border-radius: 22px;
  overflow: hidden;
}

.audit-copy {
  padding: 56px;
  color: var(--white);
}

.audit-copy h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.audit-copy p {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 28px;
}

.audit-check {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audit-check div {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.audit-check svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.audit-check span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.audit-form-wrap {
  background: var(--white);
  padding: 56px 48px;
}

/* ---------------------------------------------------------------------- */
/* Forms                                                                   */
/* ---------------------------------------------------------------------- */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 4px rgba(65, 105, 225, 0.1);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  font-size: 0.8125rem;
  color: #DC2626;
  margin-top: 6px;
  display: none;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: #DC2626;
}

.form-group.invalid .form-error {
  display: block;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-icon svg {
  width: 30px;
  height: 30px;
}

/* ---------------------------------------------------------------------- */
/* Contact page                                                            */
/* ---------------------------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 34px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(65, 105, 225, 0.08);
  color: var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item .ci-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item h4 {
  margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 0.9375rem;
}

.contact-info-item a:hover {
  color: var(--royal);
}

.contact-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------- */
/* Final CTA                                                               */
/* ---------------------------------------------------------------------- */

.final-cta {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 50% 0%, rgba(25, 199, 255, 0.14), transparent 65%);
}

.final-cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.0625rem;
  margin-bottom: 36px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.site-footer {
  position: relative;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1800&q=70');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.16;
  z-index: 0;
}

.footer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(11, 18, 32, 0.92) 30%, var(--ink) 90%),
    radial-gradient(700px 360px at 15% 0%, rgba(25, 199, 255, 0.10), transparent 65%);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 52px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-strip h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.footer-cta-strip p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
}

.footer-cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--cyan);
  margin: 16px 0 6px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 18px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: var(--royal);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 26px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-bottom-links a:hover {
  color: var(--cyan);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0 34px;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-cta-strip-actions {
    width: 100%;
  }

  .footer-cta-strip-actions .btn {
    flex: 1;
  }
}

/* ---------------------------------------------------------------------- */
/* Misc / blog / audit / about page components                            */
/* ---------------------------------------------------------------------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

.article-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.article-card:hover {
  box-shadow: var(--shadow-lifted);
  transform: translateY(-3px);
}

.article-card img {
  height: 190px;
  object-fit: cover;
  width: 100%;
}

.article-card-body {
  padding: 22px;
}

.article-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--royal);
  margin-bottom: 10px;
  display: block;
}

.article-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.article-card p {
  font-size: 0.875rem;
}

.article-meta {
  display: flex;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}

.about-stat {
  background: var(--white);
  padding: 32px 24px;
}

.about-stat p.stat-label {
  font-size: 0.875rem;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .about-stat-row {
    grid-template-columns: 1fr;
  }
}

.timeline-simple {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.timeline-simple>div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.timeline-simple>div:last-child {
  border-bottom: 1px solid var(--border);
}

.timeline-simple .t-year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--royal);
}

@media (max-width: 560px) {
  .timeline-simple>div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 7px 14px;
  border-radius: 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
}

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

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

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

.location-chip {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.location-chip:hover {
  border-color: var(--royal);
  background: var(--bg-light);
}

.location-chip h4 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.location-chip span {
  font-size: 0.8125rem;
  color: var(--text-soft);
}

/* Blog article single page */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body h2 {
  margin: 44px 0 16px;
  font-size: 1.6rem;
}

.article-body h3 {
  margin: 32px 0 12px;
  font-size: 1.2rem;
}

.article-body p {
  font-size: 1.0625rem;
  margin-bottom: 20px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.article-body ul {
  margin: 0 0 20px 0;
}

.article-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1.0625rem;
  color: var(--ink-soft);
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--royal);
}

.article-header-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-soft);
  margin: 20px 0 34px;
}

.article-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.article-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.article-cta-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin: 48px 0;
}

.article-cta-box h3 {
  margin-bottom: 10px;
}

.article-cta-box p {
  margin-bottom: 20px;
}

.related-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

@media (max-width: 640px) {
  .related-posts {
    grid-template-columns: 1fr;
  }
}

/* Legal pages */
.legal-body h2 {
  margin: 36px 0 14px;
  font-size: 1.3rem;
}

.legal-body p,
.legal-body li {
  font-size: 0.975rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.legal-body ul {
  padding-left: 4px;
  margin-bottom: 16px;
}

.legal-body li {
  position: relative;
  padding-left: 20px;
}

.legal-body li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-soft);
}

/* Custom quote / discuss project box */
.enterprise-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 44px;
  margin-top: 40px;
}

@media (max-width: 800px) {
  .enterprise-box {
    grid-template-columns: 1fr;
  }
}

.enterprise-box ul li {
  display: flex;
  gap: 9px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
  align-items: flex-start;
}

.enterprise-box ul li svg {
  width: 15px;
  height: 15px;
  color: var(--royal);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Reveal on scroll (single orchestrated pattern, used sparingly) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Gentle cascade for card/grid children inside a revealed section — subtle, not showy */
.reveal.in-view [class*="-grid"]>*,
.reveal.in-view [class*="-card"],
.reveal.in-view .work-item,
.reveal.in-view .drop-link {
  animation: revealChild 0.6s var(--ease) both;
}

.reveal.in-view [class*="-grid"]>*:nth-child(1) {
  animation-delay: 0.02s;
}

.reveal.in-view [class*="-grid"]>*:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal.in-view [class*="-grid"]>*:nth-child(3) {
  animation-delay: 0.14s;
}

.reveal.in-view [class*="-grid"]>*:nth-child(4) {
  animation-delay: 0.20s;
}

.reveal.in-view [class*="-grid"]>*:nth-child(5) {
  animation-delay: 0.26s;
}

.reveal.in-view [class*="-grid"]>*:nth-child(6) {
  animation-delay: 0.32s;
}

.reveal.in-view [class*="-grid"]>*:nth-child(n+7) {
  animation-delay: 0.36s;
}

@keyframes revealChild {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .reveal.in-view [class*="-grid"]>*,
  .reveal.in-view [class*="-card"],
  .reveal.in-view .work-item,
  .reveal.in-view .drop-link {
    animation: none;
  }
}

/* Responsive: hero/grid-2 tuning already handled; extra small screens */
@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 56px 0 70px;
  }

  .audit-copy,
  .audit-form-wrap {
    padding: 34px 26px;
  }

  .audit-panel {
    grid-template-columns: 1fr;
  }

  .work-item-body {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   HOMEPAGE V2 — reference-matched design system
   ========================================================================== */

/* ---- Hero v2 ---- */
.hero-v2 {
  position: relative;
  background: var(--ink);
  padding: 64px 0 84px;
  overflow: hidden;
}

.hero-v2-bg-fx {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 88% -8%, rgba(25, 199, 255, 0.14), transparent 60%),
    radial-gradient(700px 500px at -5% 40%, rgba(65, 105, 225, 0.10), transparent 60%);
  pointer-events: none;
}

.hero-v2-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-v2-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--cyan);
  background: rgba(25, 199, 255, 0.1);
  border: 1px solid rgba(25, 199, 255, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 22px;
}

.hero-v2-title {
  color: var(--white);
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  margin-bottom: 20px;
}

.hero-v2-title span {
  color: var(--cyan);
}

.hero-v2-lede {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.125rem;
  max-width: 500px;
  margin-bottom: 30px;
}

.hero-v2-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
}

.hero-v2-icons span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.hero-v2-icons svg {
  width: 15px;
  height: 15px;
  color: var(--cyan);
  flex-shrink: 0;
}

.hero-v2-visual {
  position: relative;
}

.hero-v2-laptop {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lifted);
}

.hero-v2-laptop img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-v2-laptop-screen {
  position: absolute;
  inset: 0;
  display: none;
}

.hero-v2-screen-label {
  display: none;
}

.hero-v2-thumbs {
  position: absolute;
  top: 20px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 18, 32, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-v2-thumb-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-v2-thumb-stack img {
  width: 64px;
  height: 46px;
  object-fit: cover;
  border-radius: 6px;
}

.hero-v2-thumb-nav {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-v2-thumb-nav svg {
  width: 12px;
  height: 12px;
}

.hero-v2-thumb-nav:hover {
  background: var(--cyan);
  color: var(--ink);
}

.hero-v2-stat-card {
  position: absolute;
  bottom: -22px;
  left: 16px;
  right: 16px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  box-shadow: var(--shadow-lifted);
}

.hero-v2-stat-card div {
  text-align: center;
}

.hero-v2-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cyan);
}

.hero-v2-stat-card span {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .hero-v2-grid {
    grid-template-columns: 1fr;
  }

  .hero-v2-thumbs {
    display: none;
  }

  .hero-v2-stat-card {
    position: static;
    margin-top: 20px;
  }
}

/* ---- Hero v3 visual (composed card + side devices) ---- */
.hero-v3-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-v3-side {
  position: absolute;
  top: 50%;
  width: 190px;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lifted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.hero-v3-side-left {
  left: -10px;
  transform: translateY(-58%) rotate(-6deg);
}

.hero-v3-side-right {
  right: -10px;
  transform: translateY(-42%) rotate(6deg);
}

.hero-v3-card-main {
  position: relative;
  z-index: 2;
  width: 310px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lifted);
  padding: 18px 18px 26px;
}

.hero-v3-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hero-v3-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.hero-v3-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-soft);
}

.hero-v3-card-main h3 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.hero-v3-card-main img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}

.hero-v3-slider {
  position: relative;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}

.hero-v3-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  margin-bottom: 0;
  border-radius: 0;
}

.hero-v3-slide.active {
  opacity: 1;
}

.hero-v3-slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.hero-v3-dot-btn {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(11, 18, 32, 0.15);
  padding: 0;
  transition: background 0.2s ease, width 0.25s ease;
}

.hero-v3-dot-btn.active {
  background: var(--cyan);
  width: 16px;
  border-radius: 3px;
  border-color: transparent;
}

.hero-v3-card-btn {
  width: 100%;
}

.hero-v3-score {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lifted);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero-v3-score-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--ink);
  flex-shrink: 0;
}

.hero-v3-score-ring span {
  display: none;
}

.hero-v3-score strong {
  display: block;
  font-size: 0.75rem;
  color: var(--ink);
}

.hero-v3-score-up {
  font-size: 0.6875rem;
  color: #16A34A;
  font-weight: 600;
}

.hero-v3-checklist {
  position: absolute;
  top: 8%;
  right: -6px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-v3-checklist div {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(11, 18, 32, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 6px 12px;
}

.hero-v3-checklist svg {
  width: 13px;
  height: 13px;
  color: #22C55E;
  flex-shrink: 0;
}

.hero-v3-checklist span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.hero-v3-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.hero-v3-nav svg {
  width: 16px;
  height: 16px;
}

.hero-v3-nav:hover {
  background: var(--cyan);
  color: var(--ink);
  border-color: var(--cyan);
}

.hero-v3-nav.prev {
  left: -6px;
}

.hero-v3-nav.next {
  right: -6px;
}

.hero-v3-trustline {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 46px;
}

.hero-v3-trustline span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .hero-v3-visual {
    min-height: 320px;
    margin-top: 20px;
  }

  .hero-v3-side {
    width: 130px;
    height: 240px;
  }

  .hero-v3-side-left {
    left: -4px;
  }

  .hero-v3-side-right {
    right: -4px;
  }

  .hero-v3-card-main {
    width: 240px;
    padding: 14px 14px 20px;
  }

  .hero-v3-card-main img {
    height: 110px;
  }

  .hero-v3-slider {
    height: 110px;
  }

  .hero-v3-checklist {
    display: none;
  }

  .hero-v3-score {
    right: -8px;
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .hero-v3-side {
    display: none;
  }
}

/* ---- Trust strip v2 ---- */
.trust-strip-v2 {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.trust-strip-v2-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.trust-strip-v2-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 180px;
}

.trust-strip-v2-item .ts-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(65, 105, 225, 0.08);
  color: var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-strip-v2-item .ts-icon svg {
  width: 19px;
  height: 19px;
}

.trust-strip-v2-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--ink);
}

.trust-strip-v2-item span {
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* ---- Problem v2 ---- */
.problem-v2-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  margin-top: 18px;
}

.problem-v2-copy h2 {
  margin-bottom: 14px;
}

.problem-v2-copy>p {
  max-width: 520px;
  margin-bottom: 30px;
}

.problem-v2-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 30px;
  margin-bottom: 32px;
}

.problem-v2-list>div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.problem-v2-list .p-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--royal);
}

.problem-v2-list span:last-child {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.problem-v2-visual {
  position: relative;
}

.problem-v2-visual img {
  width: 100%;
  border-radius: 16px;
  height: 420px;
  object-fit: cover;
}

.problem-v2-float-card {
  position: absolute;
  bottom: -28px;
  left: -30px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lifted);
  padding: 22px 24px;
  width: 240px;
}

.problem-v2-float-card h5 {
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.problem-v2-float-card div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.problem-v2-float-card svg {
  width: 15px;
  height: 15px;
  color: var(--royal);
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-v2-float-card span {
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .problem-v2-layout {
    grid-template-columns: 1fr;
  }

  .problem-v2-float-card {
    position: static;
    width: auto;
    margin-top: -40px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .problem-v2-visual img {
    height: 300px;
  }
}

@media (max-width: 560px) {
  .problem-v2-list {
    grid-template-columns: 1fr;
  }
}

/* ---- Services v2 ---- */
.services-v2-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.services-v2-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 26px 20px;
  transition: border-color 0.2s ease, transform 0.25s var(--ease), background 0.2s ease;
}

.services-v2-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.sv2-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--royal));
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

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

.services-v2-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.services-v2-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.sv2-price {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
}

@media (max-width: 1024px) {
  .services-v2-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .services-v2-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .services-v2-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Why v2 ---- */
.why-v2-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-top: 18px;
}

.why-v2-copy h2 {
  margin-bottom: 12px;
}

.why-v2-copy>p {
  max-width: 480px;
  margin-bottom: 34px;
}

.why-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px 26px;
}

.wv2-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(65, 105, 225, 0.08);
  color: var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.wv2-icon svg {
  width: 18px;
  height: 18px;
}

.why-v2-item h4 {
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.why-v2-item p {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.why-v2-visual {
  border-radius: 18px;
  overflow: hidden;
}

.why-v2-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .why-v2-layout {
    grid-template-columns: 1fr;
  }

  .why-v2-visual img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .why-v2-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 440px) {
  .why-v2-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Technology v2 ---- */
.tech-v2-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.tech-v2-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
}

.tv2-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(25, 199, 255, 0.1);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.8125rem;
  margin-bottom: 12px;
}

.tech-v2-item h5 {
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.tech-v2-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .tech-v2-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .tech-v2-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Featured work v2 ---- */
.featured-v2-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.7fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 18px;
}

.featured-v2-mockup,
.featured-v2-side-img {
  border-radius: 16px;
  overflow: hidden;
}

.featured-v2-mockup img,
.featured-v2-side-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.featured-v2-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-v2-card h3 {
  margin-bottom: 12px;
}

.featured-v2-stats {
  display: flex;
  gap: 24px;
  margin: 20px 0;
}

.featured-v2-stats div {
  text-align: left;
}

.featured-v2-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--royal);
}

.featured-v2-stats span {
  font-size: 0.75rem;
  color: var(--text-soft);
}

@media (max-width: 1024px) {
  .featured-v2-layout {
    grid-template-columns: 1fr;
  }

  .featured-v2-mockup img,
  .featured-v2-side-img img {
    min-height: 220px;
  }
}

/* ---- Process v2 (timeline redesign) ---- */
.process-v2 {
  position: relative;
  overflow: hidden;
}

.process-v2-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.process-v2-line {
  position: absolute;
  top: 23px;
  left: calc((100% / 12));
  right: calc((100% / 12));
  height: 2px;
  background: linear-gradient(90deg, rgba(65, 105, 225, 0.14), rgba(25, 199, 255, 0.35), rgba(65, 105, 225, 0.14));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease);
}

.process-v2-row.in-view .process-v2-line {
  transform: scaleX(1);
}

.process-v2-step {
  position: relative;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 16px 20px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-v2-row.in-view .process-v2-step {
  opacity: 1;
  transform: translateY(0);
}

.process-v2-step:nth-child(1) {
  transition-delay: 0.05s;
}

.process-v2-step:nth-child(2) {
  transition-delay: 0.15s;
}

.process-v2-step:nth-child(3) {
  transition-delay: 0.25s;
}

.process-v2-step:nth-child(4) {
  transition-delay: 0.35s;
}

.process-v2-step:nth-child(5) {
  transition-delay: 0.45s;
}

.process-v2-step:nth-child(6) {
  transition-delay: 0.55s;
}

.process-v2-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lifted);
  border-color: rgba(65, 105, 225, 0.25);
}

.pv2-circle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--cyan));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px -8px rgba(65, 105, 225, 0.55);
  transition: transform 0.35s var(--ease);
}

.process-v2-step:hover .pv2-circle {
  transform: scale(1.1) rotate(-4deg);
}

.process-v2-step h4 {
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.process-v2-step p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .process-v2-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 16px;
  }

  .process-v2-line {
    display: none;
  }
}

@media (max-width: 500px) {
  .process-v2-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Pricing v2 ---- */
.pricing-v2-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-v2-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
}

.pricing-v2-card.featured {
  background: rgba(25, 199, 255, 0.06);
  border-color: var(--cyan);
}

.pv2-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--ink);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-v2-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.pricing-v2-card>p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  margin-bottom: 16px;
}

.pv2-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 4px;
}

.pv2-price span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.pv2-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  display: block;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .pricing-v2-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .pricing-v2-row {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   MAHARIX TECHNOLOGY — PREMIUM ABOUT PAGE
   Version: Premium Corporate / Founder-Led
   Scope: .maharix-about-page
========================================================= */

.maharix-about-page {
  --mt-ink: #0B1220;
  --mt-ink-2: #111827;
  --mt-cyan: #19C7FF;
  --mt-blue: #4169E1;
  --mt-white: #FFFFFF;
  --mt-bg: #F7F9FC;
  --mt-bg-2: #EEF3F8;
  --mt-text: #0B1220;
  --mt-muted: #667085;
  --mt-line: #E4E9F0;
  --mt-line-dark: rgba(255, 255, 255, .13);

  --mt-display: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mt-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --mt-container: 1240px;

  --mt-radius-sm: 8px;
  --mt-radius-md: 14px;
  --mt-radius-lg: 22px;

  --mt-ease: cubic-bezier(.16, 1, .3, 1);

  position: relative;
  overflow: hidden;
  background: var(--mt-white);
  color: var(--mt-text);
  font-family: var(--mt-body);
}


/* =========================================================
   GLOBAL
========================================================= */

.maharix-about-page *,
.maharix-about-page *::before,
.maharix-about-page *::after {
  box-sizing: border-box;
}

.maharix-about-page img {
  display: block;
  max-width: 100%;
}

.maharix-about-page .container {
  width: min(var(--mt-container), calc(100% - 48px));
  margin-inline: auto;
}

.maharix-about-page .section {
  position: relative;
  padding: 125px 0;
}

.maharix-about-page .section-light-alt {
  background:
    linear-gradient(180deg,
      #F8FAFC 0%,
      #F3F6FA 100%);
}

.maharix-about-page p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mt-muted);
}

.maharix-about-page h1,
.maharix-about-page h2,
.maharix-about-page h3,
.maharix-about-page h4 {
  font-family: var(--mt-display);
  letter-spacing: -0.035em;
}

.maharix-about-page a {
  text-decoration: none;
}

.maharix-about-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;

  font-family: var(--mt-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;

  color: var(--mt-blue);
}

.maharix-about-page .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--mt-cyan);
}


/* =========================================================
   BUTTON SYSTEM
========================================================= */

.maharix-about-page .btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 0 25px;

  border-radius: 7px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;

  transition:
    transform .35s var(--mt-ease),
    background .35s var(--mt-ease),
    border-color .35s var(--mt-ease),
    color .35s var(--mt-ease),
    box-shadow .35s var(--mt-ease);

  overflow: hidden;
}

.maharix-about-page .btn:hover {
  transform: translateY(-3px);
}

.maharix-about-page .btn-accent {
  color: #07111E;
  background: var(--mt-cyan);
  border: 1px solid var(--mt-cyan);
  box-shadow: 0 12px 30px rgba(25, 199, 255, .20);
}

.maharix-about-page .btn-accent:hover {
  background: #53D5FF;
  box-shadow: 0 18px 38px rgba(25, 199, 255, .28);
}

.maharix-about-page .btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .30);
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(10px);
}

.maharix-about-page .btn-outline-light:hover {
  border-color: rgba(25, 199, 255, .75);
  background: rgba(25, 199, 255, .08);
  color: #fff;
}


/* =========================================================
   01 — HERO
========================================================= */

.maharix-about-page .mt-about-hero {
  position: relative;
  min-height: 780px;

  display: flex;
  align-items: center;

  background: var(--mt-ink);
  color: #fff;

  isolation: isolate;
  overflow: hidden;
}

.maharix-about-page .mt-about-hero-bg {
  position: absolute;
  inset: 0;

  background-position: center;
  background-size: cover;

  opacity: .52;

  transform: scale(1.02);
}

.maharix-about-page .mt-about-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(5, 11, 22, .97) 0%,
      rgba(5, 11, 22, .89) 38%,
      rgba(5, 11, 22, .58) 68%,
      rgba(5, 11, 22, .72) 100%);

  z-index: 1;
}

/* cyan atmospheric glow */

.maharix-about-page .mt-about-hero::after {
  content: "";
  position: absolute;

  width: 520px;
  height: 520px;

  right: -180px;
  bottom: -250px;

  border-radius: 50%;

  background: rgba(25, 199, 255, .14);

  filter: blur(80px);

  z-index: 2;
  pointer-events: none;
}

.maharix-about-page .mt-about-hero-content {
  position: relative;
  z-index: 4;

  padding-top: 95px;
  padding-bottom: 85px;
}

/* technical grid */

.maharix-about-page .mt-about-hero-content::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  width: 45%;
  height: 100%;

  opacity: .14;

  background-image:
    linear-gradient(rgba(255, 255, 255, .16) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, .16) 1px,
      transparent 1px);

  background-size: 60px 60px;

  mask-image: linear-gradient(90deg,
      transparent,
      #000);

  pointer-events: none;
}

.maharix-about-page .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 82px;

  font-size: 13px;
  color: rgba(255, 255, 255, .58);
}

.maharix-about-page .breadcrumbs a {
  color: rgba(255, 255, 255, .65);
  transition: color .25s ease;
}

.maharix-about-page .breadcrumbs a:hover {
  color: var(--mt-cyan);
}

.maharix-about-page .breadcrumbs .sep {
  color: rgba(255, 255, 255, .25);
}

.maharix-about-page .breadcrumbs .current {
  color: rgba(255, 255, 255, .90);
}

.maharix-about-page .mt-about-hero-copy {
  max-width: 850px;
}

.maharix-about-page .mt-about-hero-copy .eyebrow {
  color: rgba(255, 255, 255, .72);
}

.maharix-about-page .mt-about-hero-copy h1 {
  max-width: 900px;

  margin: 0 0 30px;

  font-size: clamp(52px, 6.3vw, 88px);
  line-height: .98;

  font-weight: 650;
  letter-spacing: -.055em;

  color: #fff;
}

.maharix-about-page .mt-about-hero-copy h1 span {
  display: block;

  background:
    linear-gradient(90deg,
      #fff 0%,
      #19C7FF 65%,
      #4169E1 100%);

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.maharix-about-page .mt-about-hero-lede {
  max-width: 710px;

  margin: 0 0 40px;

  color: rgba(255, 255, 255, .70);

  font-size: 18px;
  line-height: 1.8;
}

.maharix-about-page .mt-about-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;

  flex-wrap: wrap;
}

.maharix-about-page .mt-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));

  max-width: 850px;

  margin-top: 92px;

  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.maharix-about-page .mt-hero-trust>div {
  min-height: 105px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 20px 30px;

  border-right: 1px solid rgba(255, 255, 255, .10);
}

.maharix-about-page .mt-hero-trust>div:first-child {
  padding-left: 0;
}

.maharix-about-page .mt-hero-trust>div:last-child {
  border-right: 0;
}

.maharix-about-page .mt-hero-trust strong {
  display: block;

  margin-bottom: 5px;

  font-family: var(--mt-display);
  font-size: 27px;
  font-weight: 750;

  color: #fff;
}

.maharix-about-page .mt-hero-trust span {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .50);
}


/* =========================================================
   02 — FOUNDER STORY
========================================================= */

.maharix-about-page .mt-founder-story {
  padding-top: 145px;
  padding-bottom: 150px;

  background: #fff;
}

.maharix-about-page .mt-founder-grid {
  display: grid;
  grid-template-columns: minmax(400px, .92fr) minmax(0, 1.08fr);

  gap: clamp(60px, 8vw, 125px);

  align-items: center;
}

.maharix-about-page .mt-founder-visual {
  position: relative;
}

.maharix-about-page .mt-founder-image-wrap {
  position: relative;

  width: min(100%, 500px);

  margin-left: auto;
}

.maharix-about-page .mt-founder-image-wrap::before {
  content: "";

  position: absolute;

  top: -18px;
  left: -18px;

  width: 110px;
  height: 110px;

  border-left: 1px solid var(--mt-cyan);
  border-top: 1px solid var(--mt-cyan);

  z-index: 3;
}

.maharix-about-page .mt-founder-image-wrap::after {
  content: "";

  position: absolute;

  right: -18px;
  bottom: -18px;

  width: 120px;
  height: 120px;

  border-right: 1px solid var(--mt-blue);
  border-bottom: 1px solid var(--mt-blue);

  z-index: 3;
}

.maharix-about-page .mt-founder-image-wrap img {
  width: 100%;
  height: 610px;

  object-fit: cover;

  border-radius: 4px;

  filter: saturate(.82) contrast(1.04);

  box-shadow:
    0 25px 60px rgba(11, 18, 32, .16);
}

.maharix-about-page .mt-founder-experience {
  position: absolute;

  left: -38px;
  bottom: 42px;

  width: 175px;
  min-height: 155px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 24px;

  background: var(--mt-ink);

  border: 1px solid rgba(255, 255, 255, .10);

  box-shadow: 0 22px 50px rgba(11, 18, 32, .22);

  z-index: 5;
}

.maharix-about-page .mt-founder-experience strong {
  display: block;

  font-family: var(--mt-display);
  font-size: 44px;
  line-height: 1;

  color: var(--mt-cyan);
}

.maharix-about-page .mt-founder-experience span {
  display: block;

  margin-top: 10px;

  font-size: 11px;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .08em;

  color: rgba(255, 255, 255, .62);
}

.maharix-about-page .mt-founder-line {
  position: absolute;

  left: -85px;
  top: 32%;

  width: 55px;
  height: 1px;

  background: var(--mt-line);
}

.maharix-about-page .mt-founder-content {
  max-width: 650px;
}

.maharix-about-page .mt-founder-content h2 {
  margin: 0 0 16px;

  font-size: clamp(42px, 4.3vw, 65px);
  line-height: 1.02;

  font-weight: 650;
}

.maharix-about-page .mt-founder-role {
  display: flex;
  align-items: center;
  gap: 15px;

  margin: 0 0 27px;

  font-size: 14px;
}

.maharix-about-page .mt-founder-role strong {
  color: var(--mt-text);
}

.maharix-about-page .mt-founder-role span {
  padding-left: 15px;
  border-left: 1px solid var(--mt-line);
  color: var(--mt-muted);
}

.maharix-about-page .mt-founder-qualification {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin: 0 0 30px;
}

.maharix-about-page .mt-founder-qualification strong,
.maharix-about-page .mt-founder-qualification span {
  padding: 9px 13px;

  border: 1px solid var(--mt-line);

  border-radius: 5px;

  font-size: 12px;
}

.maharix-about-page .mt-founder-qualification strong {
  background: var(--mt-ink);
  color: #fff;
  border-color: var(--mt-ink);
}

.maharix-about-page .mt-founder-content .mt-lead {
  font-size: 19px;
  line-height: 1.8;
  color: #344054;
}

.maharix-about-page .mt-founder-content p {
  margin-bottom: 21px;
}

.maharix-about-page .mt-founder-signature {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-top: 35px;
  padding-top: 25px;

  border-top: 1px solid var(--mt-line);
}

.maharix-about-page .mt-signature-mark {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--mt-ink);

  font-family: var(--mt-display);
  font-size: 15px;
  font-weight: 800;

  color: var(--mt-cyan);
}

.maharix-about-page .mt-founder-signature strong,
.maharix-about-page .mt-founder-signature span {
  display: block;
}

.maharix-about-page .mt-founder-signature strong {
  font-size: 14px;
}

.maharix-about-page .mt-founder-signature span {
  margin-top: 4px;
  font-size: 12px;
  color: var(--mt-muted);
}


/* =========================================================
   SECTION INTRO
========================================================= */

.maharix-about-page .mt-section-intro {
  display: grid;
  grid-template-columns: 1fr .72fr;

  gap: 80px;

  align-items: end;

  margin-bottom: 70px;
}

.maharix-about-page .mt-section-intro h2 {
  max-width: 650px;

  margin: 0;

  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.03;

  font-weight: 650;
}

.maharix-about-page .mt-section-intro>p {
  max-width: 500px;
  margin: 0;
}


/* =========================================================
   03 — JOURNEY
========================================================= */

.maharix-about-page .mt-journey-section {
  overflow: hidden;
}

.maharix-about-page .mt-journey {
  position: relative;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid var(--mt-line);
}

.maharix-about-page .mt-journey::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;
  left: 50%;

  width: 1px;

  background: var(--mt-line);
}

.maharix-about-page .mt-journey-item {
  position: relative;

  display: grid;
  grid-template-columns: 65px 1fr;

  gap: 25px;

  min-height: 250px;

  padding: 45px 55px;

  border-bottom: 1px solid var(--mt-line);

  transition:
    background .35s var(--mt-ease),
    transform .35s var(--mt-ease);
}

.maharix-about-page .mt-journey-item:nth-child(odd) {
  border-right: 1px solid var(--mt-line);
  padding-left: 0;
}

.maharix-about-page .mt-journey-item:nth-child(even) {
  padding-right: 0;
}

.maharix-about-page .mt-journey-item:hover {
  background: rgba(255, 255, 255, .7);
}

.maharix-about-page .mt-journey-number {
  font-family: var(--mt-display);
  font-size: 13px;
  font-weight: 800;

  color: var(--mt-cyan);
}

.maharix-about-page .mt-journey-item h3 {
  margin: 0 0 13px;

  font-size: 22px;
  line-height: 1.25;

  font-weight: 700;
}

.maharix-about-page .mt-journey-item p {
  max-width: 470px;
  margin: 0;
}


/* =========================================================
   04 — CAPABILITIES
========================================================= */

.maharix-about-page .mt-capability-section {
  background: #fff;
}

.maharix-about-page .mt-capability-list {
  border-top: 1px solid var(--mt-line);
}

.maharix-about-page .mt-capability-row {
  position: relative;

  display: grid;
  grid-template-columns: 65px minmax(0, 1fr) auto;

  gap: 35px;
  align-items: center;

  padding: 36px 0;

  border-bottom: 1px solid var(--mt-line);

  transition:
    padding .4s var(--mt-ease),
    background .4s var(--mt-ease);
}

.maharix-about-page .mt-capability-row::before {
  content: "";

  position: absolute;

  left: -30px;
  right: -30px;
  top: 0;
  bottom: 0;

  background: var(--mt-ink);

  opacity: 0;

  transform: scaleY(.65);

  transition:
    opacity .35s var(--mt-ease),
    transform .35s var(--mt-ease);

  z-index: 0;
}

.maharix-about-page .mt-capability-row:hover {
  padding-left: 30px;
  padding-right: 30px;
}

.maharix-about-page .mt-capability-row:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.maharix-about-page .mt-capability-row>* {
  position: relative;
  z-index: 1;
}

.maharix-about-page .mt-capability-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--mt-blue);
}

.maharix-about-page .mt-capability-row h3 {
  margin: 0 0 7px;

  font-size: 23px;
  line-height: 1.3;

  font-weight: 700;

  transition: color .3s ease;
}

.maharix-about-page .mt-capability-row p {
  max-width: 720px;

  margin: 0;

  font-size: 14px;
  line-height: 1.7;

  transition: color .3s ease;
}

.maharix-about-page .mt-capability-row>a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding-bottom: 5px;

  border-bottom: 1px solid var(--mt-line);

  font-size: 12px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .09em;

  color: var(--mt-text);

  transition:
    color .3s ease,
    border-color .3s ease;
}

.maharix-about-page .mt-capability-row>a::after {
  content: "↗";
  font-size: 15px;
}

.maharix-about-page .mt-capability-row:hover h3,
.maharix-about-page .mt-capability-row:hover p,
.maharix-about-page .mt-capability-row:hover>a,
.maharix-about-page .mt-capability-row:hover .mt-capability-number {
  color: #fff;
}

.maharix-about-page .mt-capability-row:hover p {
  color: rgba(255, 255, 255, .62);
}

.maharix-about-page .mt-capability-row:hover>a {
  border-color: rgba(255, 255, 255, .35);
}


/* =========================================================
   05 — TECHNOLOGY
========================================================= */

.maharix-about-page .mt-tech-section {
  background: #F4F7FA;
}

.maharix-about-page .mt-tech-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;

  gap: 100px;

  align-items: start;
}

.maharix-about-page .mt-tech-grid h2 {
  max-width: 500px;

  margin: 0 0 25px;

  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.02;

  font-weight: 650;
}

.maharix-about-page .mt-tech-grid>div:first-child p {
  max-width: 500px;
}

.maharix-about-page .mt-tech-stack {
  border-top: 1px solid var(--mt-line);
}

.maharix-about-page .mt-tech-stack>div {
  display: grid;
  grid-template-columns: 145px 1fr;

  gap: 25px;

  padding: 25px 0;

  border-bottom: 1px solid var(--mt-line);
}

.maharix-about-page .mt-tech-stack strong {
  font-size: 13px;
  font-weight: 800;
  color: var(--mt-text);
}

.maharix-about-page .mt-tech-stack span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mt-muted);
}


/* =========================================================
   06 — HOW WE WORK
========================================================= */

.maharix-about-page .mt-approach-section {
  background: var(--mt-ink);
  color: #fff;
}

.maharix-about-page .mt-approach-section .eyebrow {
  color: rgba(255, 255, 255, .65);
}

.maharix-about-page .mt-approach-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;

  gap: 110px;

  align-items: start;
}

.maharix-about-page .mt-approach-heading {
  position: sticky;
  top: 100px;
}

.maharix-about-page .mt-approach-heading h2 {
  max-width: 530px;

  margin: 0 0 28px;

  font-size: clamp(45px, 5vw, 68px);
  line-height: 1;

  font-weight: 650;
}

.maharix-about-page .mt-approach-heading p {
  max-width: 500px;

  color: rgba(255, 255, 255, .58);
}

.maharix-about-page .mt-approach-timeline {
  position: relative;

  border-top: 1px solid var(--mt-line-dark);
}

.maharix-about-page .mt-approach-item {
  display: grid;
  grid-template-columns: 65px 1fr;

  gap: 25px;

  padding: 34px 0;

  border-bottom: 1px solid var(--mt-line-dark);
}

.maharix-about-page .mt-approach-item>span {
  font-size: 12px;
  font-weight: 800;
  color: var(--mt-cyan);
}

.maharix-about-page .mt-approach-item h3 {
  margin: 0 0 8px;

  font-size: 21px;
  font-weight: 700;

  color: #fff;
}

.maharix-about-page .mt-approach-item p {
  max-width: 520px;

  margin: 0;

  font-size: 14px;
  line-height: 1.75;

  color: rgba(255, 255, 255, .52);
}


/* =========================================================
   07 — DIFFERENCE
========================================================= */

.maharix-about-page .mt-difference {
  background: #fff;
}

.maharix-about-page .mt-section-head-centered {
  max-width: 850px;

  margin: 0 auto 75px;

  text-align: center;
}

.maharix-about-page .mt-section-head-centered .eyebrow {
  justify-content: center;
}

.maharix-about-page .mt-section-head-centered h2 {
  margin: 0 0 20px;

  font-size: clamp(42px, 5vw, 65px);
  line-height: 1.02;

  font-weight: 650;
}

.maharix-about-page .mt-section-head-centered p {
  max-width: 680px;
  margin: 0 auto;
}

.maharix-about-page .mt-difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--mt-line);
  border-bottom: 1px solid var(--mt-line);
}

.maharix-about-page .mt-difference-item {
  min-height: 320px;

  padding: 42px 30px;

  border-right: 1px solid var(--mt-line);
}

.maharix-about-page .mt-difference-item:first-child {
  padding-left: 0;
}

.maharix-about-page .mt-difference-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.maharix-about-page .mt-difference-icon {
  display: block;

  margin-bottom: 80px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;

  color: var(--mt-cyan);
}

.maharix-about-page .mt-difference-item h3 {
  margin: 0 0 12px;

  font-size: 20px;
  line-height: 1.3;
}

.maharix-about-page .mt-difference-item p {
  margin: 0;

  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   08 — LOCATION
========================================================= */

.maharix-about-page .mt-location-section {
  background: #F6F8FB;
}

.maharix-about-page .mt-location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;

  gap: 100px;

  align-items: center;
}

.maharix-about-page .mt-location-grid h2 {
  max-width: 600px;

  margin: 0 0 25px;

  font-size: clamp(42px, 4.7vw, 63px);
  line-height: 1.02;

  font-weight: 650;
}

.maharix-about-page .mt-location-grid p {
  max-width: 600px;
}

.maharix-about-page .text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-top: 16px;
  padding-bottom: 7px;

  border-bottom: 1px solid var(--mt-ink);

  font-size: 13px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .08em;

  color: var(--mt-ink);

  transition:
    color .25s ease,
    gap .25s ease,
    border-color .25s ease;
}

.maharix-about-page .text-link:hover {
  gap: 21px;
  color: var(--mt-blue);
  border-color: var(--mt-blue);
}

.maharix-about-page .mt-location-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid var(--mt-line);
  border-left: 1px solid var(--mt-line);
}

.maharix-about-page .mt-location-list>div {
  min-height: 145px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 25px 30px;

  border-right: 1px solid var(--mt-line);
  border-bottom: 1px solid var(--mt-line);

  background: rgba(255, 255, 255, .35);

  transition:
    background .3s ease,
    transform .3s ease;
}

.maharix-about-page .mt-location-list>div:hover {
  background: #fff;
  transform: translateY(-3px);
}

.maharix-about-page .mt-location-list strong {
  margin-bottom: 7px;

  font-family: var(--mt-display);
  font-size: 18px;
  font-weight: 750;
}

.maharix-about-page .mt-location-list span {
  font-size: 12px;
  color: var(--mt-muted);
}


/* =========================================================
   09 — FINAL CTA
========================================================= */

.maharix-about-page .mt-about-final {
  position: relative;

  min-height: 570px;

  display: flex;
  align-items: center;

  background: var(--mt-ink);

  overflow: hidden;
  isolation: isolate;
}

.maharix-about-page .mt-about-final-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 80% 30%,
      rgba(65, 105, 225, .30),
      transparent 30%),
    radial-gradient(circle at 20% 100%,
      rgba(25, 199, 255, .16),
      transparent 35%);

  z-index: -1;
}

.maharix-about-page .mt-about-final::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, .05) 1px,
      transparent 1px);

  background-size: 70px 70px;

  mask-image:
    linear-gradient(90deg,
      #000,
      transparent 85%);

  opacity: .35;

  z-index: -1;
}

.maharix-about-page .mt-about-final-content {
  max-width: 900px;

  padding: 110px 0;
}

.maharix-about-page .mt-about-final .eyebrow {
  color: rgba(255, 255, 255, .65);
}

.maharix-about-page .mt-about-final h2 {
  max-width: 850px;

  margin: 0 0 28px;

  font-size: clamp(48px, 6vw, 82px);
  line-height: .98;

  font-weight: 650;
  letter-spacing: -.055em;

  color: #fff;
}

.maharix-about-page .mt-about-final p {
  max-width: 720px;

  margin: 0 0 38px;

  font-size: 17px;
  line-height: 1.8;

  color: rgba(255, 255, 255, .60);
}

.maharix-about-page .mt-about-final-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}


/* =========================================================
   SUBTLE SCROLL / HOVER POLISH
========================================================= */

.maharix-about-page .mt-founder-image-wrap,
.maharix-about-page .mt-difference-item,
.maharix-about-page .mt-location-list>div {
  transition:
    transform .45s var(--mt-ease),
    box-shadow .45s var(--mt-ease);
}

.maharix-about-page .mt-founder-image-wrap:hover {
  transform: translateY(-5px);
}


/* =========================================================
   RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {

  .maharix-about-page .mt-founder-grid {
    grid-template-columns: .85fr 1fr;
    gap: 60px;
  }

  .maharix-about-page .mt-founder-image-wrap img {
    height: 550px;
  }

  .maharix-about-page .mt-tech-grid,
  .maharix-about-page .mt-approach-grid,
  .maharix-about-page .mt-location-grid {
    gap: 60px;
  }

  .maharix-about-page .mt-difference-item {
    padding-left: 22px;
    padding-right: 22px;
  }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

  .maharix-about-page .section {
    padding: 95px 0;
  }

  .maharix-about-page .container {
    width: min(var(--mt-container), calc(100% - 40px));
  }

  .maharix-about-page .mt-about-hero {
    min-height: 700px;
  }

  .maharix-about-page .breadcrumbs {
    margin-bottom: 55px;
  }

  .maharix-about-page .mt-about-hero-copy h1 {
    font-size: clamp(46px, 8vw, 70px);
  }

  .maharix-about-page .mt-founder-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .maharix-about-page .mt-founder-image-wrap {
    margin: 0 auto;
  }

  .maharix-about-page .mt-founder-line {
    display: none;
  }

  .maharix-about-page .mt-founder-content {
    max-width: 750px;
  }

  .maharix-about-page .mt-section-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .maharix-about-page .mt-journey {
    grid-template-columns: 1fr;
  }

  .maharix-about-page .mt-journey::before {
    display: none;
  }

  .maharix-about-page .mt-journey-item,
  .maharix-about-page .mt-journey-item:nth-child(odd),
  .maharix-about-page .mt-journey-item:nth-child(even) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .maharix-about-page .mt-tech-grid,
  .maharix-about-page .mt-approach-grid,
  .maharix-about-page .mt-location-grid {
    grid-template-columns: 1fr;
  }

  .maharix-about-page .mt-approach-heading {
    position: static;
  }

  .maharix-about-page .mt-difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .maharix-about-page .mt-difference-item:nth-child(2) {
    border-right: 0;
  }

  .maharix-about-page .mt-difference-item:nth-child(3),
  .maharix-about-page .mt-difference-item:nth-child(4) {
    border-top: 1px solid var(--mt-line);
  }

  .maharix-about-page .mt-location-list {
    max-width: 700px;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 640px) {

  .maharix-about-page .section {
    padding: 78px 0;
  }

  .maharix-about-page .container {
    width: min(100% - 32px, var(--mt-container));
  }

  .maharix-about-page .mt-about-hero {
    min-height: auto;
  }

  .maharix-about-page .mt-about-hero-content {
    padding-top: 55px;
    padding-bottom: 65px;
  }

  .maharix-about-page .breadcrumbs {
    margin-bottom: 48px;
    font-size: 12px;
  }

  .maharix-about-page .mt-about-hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: .99;
  }

  .maharix-about-page .mt-about-hero-lede {
    font-size: 16px;
    line-height: 1.75;
  }

  .maharix-about-page .mt-about-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .maharix-about-page .mt-about-hero-actions .btn {
    width: 100%;
  }

  .maharix-about-page .mt-hero-trust {
    grid-template-columns: 1fr;

    margin-top: 65px;
  }

  .maharix-about-page .mt-hero-trust>div,
  .maharix-about-page .mt-hero-trust>div:first-child {
    min-height: 85px;

    padding: 18px 0;

    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
  }

  .maharix-about-page .mt-hero-trust>div:last-child {
    border-bottom: 0;
  }

  .maharix-about-page .mt-founder-story {
    padding-top: 85px;
  }

  .maharix-about-page .mt-founder-image-wrap {
    width: calc(100% - 20px);
  }

  .maharix-about-page .mt-founder-image-wrap img {
    height: 470px;
  }

  .maharix-about-page .mt-founder-experience {
    left: -10px;
    bottom: 25px;

    width: 155px;
    min-height: 135px;

    padding: 19px;
  }

  .maharix-about-page .mt-founder-experience strong {
    font-size: 37px;
  }

  .maharix-about-page .mt-founder-content h2,
  .maharix-about-page .mt-tech-grid h2,
  .maharix-about-page .mt-location-grid h2 {
    font-size: 42px;
  }

  .maharix-about-page .mt-founder-role {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .maharix-about-page .mt-founder-role span {
    padding-left: 0;
    border-left: 0;
  }

  .maharix-about-page .mt-founder-qualification {
    flex-direction: column;
    align-items: flex-start;
  }

  .maharix-about-page .mt-founder-content .mt-lead {
    font-size: 17px;
  }

  .maharix-about-page .mt-section-intro {
    margin-bottom: 50px;
  }

  .maharix-about-page .mt-section-intro h2,
  .maharix-about-page .mt-section-head-centered h2 {
    font-size: 42px;
  }

  .maharix-about-page .mt-journey-item {
    grid-template-columns: 45px 1fr;
    gap: 18px;

    min-height: auto;

    padding: 30px 0;
  }

  .maharix-about-page .mt-journey-item h3 {
    font-size: 19px;
  }

  .maharix-about-page .mt-capability-row,
  .maharix-about-page .mt-capability-row:hover {
    grid-template-columns: 38px 1fr;

    gap: 16px;

    padding: 30px 0;
  }

  .maharix-about-page .mt-capability-row::before {
    display: none;
  }

  .maharix-about-page .mt-capability-row>a {
    grid-column: 2;

    justify-self: start;

    margin-top: 5px;
  }

  .maharix-about-page .mt-capability-row h3 {
    font-size: 19px;
  }

  .maharix-about-page .mt-capability-row p {
    font-size: 14px;
  }

  .maharix-about-page .mt-tech-stack>div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .maharix-about-page .mt-tech-stack strong {
    color: var(--mt-blue);
  }

  .maharix-about-page .mt-approach-grid {
    gap: 55px;
  }

  .maharix-about-page .mt-approach-heading h2 {
    font-size: 44px;
  }

  .maharix-about-page .mt-approach-item {
    grid-template-columns: 42px 1fr;
    gap: 15px;
  }

  .maharix-about-page .mt-difference-grid {
    grid-template-columns: 1fr;
  }

  .maharix-about-page .mt-difference-item,
  .maharix-about-page .mt-difference-item:first-child,
  .maharix-about-page .mt-difference-item:last-child {
    min-height: auto;

    padding: 30px 0;

    border-right: 0;
    border-bottom: 1px solid var(--mt-line);
  }

  .maharix-about-page .mt-difference-item:last-child {
    border-bottom: 0;
  }

  .maharix-about-page .mt-difference-item:nth-child(3),
  .maharix-about-page .mt-difference-item:nth-child(4) {
    border-top: 0;
  }

  .maharix-about-page .mt-difference-icon {
    margin-bottom: 35px;
  }

  .maharix-about-page .mt-location-list {
    grid-template-columns: 1fr;
  }

  .maharix-about-page .mt-location-list>div {
    min-height: 110px;
  }

  .maharix-about-page .mt-about-final-content {
    padding: 80px 0;
  }

  .maharix-about-page .mt-about-final h2 {
    font-size: 47px;
  }

  .maharix-about-page .mt-about-final p {
    font-size: 16px;
  }

  .maharix-about-page .mt-about-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .maharix-about-page .mt-about-final-actions .btn {
    width: 100%;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .maharix-about-page .container {
    width: calc(100% - 26px);
  }

  .maharix-about-page .mt-about-hero-copy h1 {
    font-size: 40px;
  }

  .maharix-about-page .mt-section-intro h2,
  .maharix-about-page .mt-section-head-centered h2,
  .maharix-about-page .mt-founder-content h2,
  .maharix-about-page .mt-tech-grid h2,
  .maharix-about-page .mt-location-grid h2 {
    font-size: 37px;
  }

  .maharix-about-page .mt-about-final h2 {
    font-size: 40px;
  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.maharix-about-page a:focus-visible,
.maharix-about-page button:focus-visible {
  outline: 2px solid var(--mt-cyan);
  outline-offset: 4px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .maharix-about-page *,
  .maharix-about-page *::before,
  .maharix-about-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

}

/* =========================================================
   MAHARIX — PREMIUM SKILL + HOW WE WORK MOTION
   CSS ONLY
========================================================= */


/* =========================================================
   01. TECHNOLOGY / SKILL SECTION
========================================================= */

.maharix-about-page .mt-tech-section {
  position: relative;
  overflow: hidden;
}


/* Moving ambient line */

.maharix-about-page .mt-tech-section::before {
  content: "";

  position: absolute;
  top: 0;
  left: -20%;

  width: 140%;
  height: 1px;

  background: linear-gradient(90deg,
      transparent,
      rgba(25, 199, 255, .65),
      rgba(65, 105, 225, .55),
      transparent);

  animation: mtSkillScan 7s linear infinite;

  pointer-events: none;
}


@keyframes mtSkillScan {
  0% {
    transform: translateX(-20%);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    transform: translateX(20%);
    opacity: 0;
  }
}


/* Skill stack */

.maharix-about-page .mt-tech-stack {
  position: relative;
  overflow: hidden;
}


/* Moving vertical light */

.maharix-about-page .mt-tech-stack::before {
  content: "";

  position: absolute;
  top: -100%;
  left: 0;

  width: 1px;
  height: 70%;

  background: linear-gradient(180deg,
      transparent,
      var(--mt-cyan),
      transparent);

  animation: mtTechLight 5s ease-in-out infinite;

  opacity: .75;
}


@keyframes mtTechLight {
  0% {
    top: -70%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 180%;
  }
}


/* Individual skills */

.maharix-about-page .mt-tech-stack>div {
  position: relative;

  transform: translateX(0);

  transition:
    transform .55s cubic-bezier(.16, 1, .3, 1),
    padding-left .55s cubic-bezier(.16, 1, .3, 1),
    background .4s ease;
}


/* Animated left indicator */

.maharix-about-page .mt-tech-stack>div::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;

  width: 0;
  height: 2px;

  background: linear-gradient(90deg,
      var(--mt-cyan),
      var(--mt-blue));

  transform: translateY(-50%);

  transition:
    width .45s cubic-bezier(.16, 1, .3, 1);
}


/* Hover movement */

.maharix-about-page .mt-tech-stack>div:hover {
  transform: translateX(12px);
  padding-left: 18px;

  background:
    linear-gradient(90deg,
      rgba(25, 199, 255, .045),
      transparent);
}


.maharix-about-page .mt-tech-stack>div:hover::before {
  width: 8px;
}


/* Category */

.maharix-about-page .mt-tech-stack>div strong {
  transition:
    color .35s ease,
    transform .35s cubic-bezier(.16, 1, .3, 1);
}


.maharix-about-page .mt-tech-stack>div:hover strong {
  color: var(--mt-blue);
  transform: translateX(4px);
}


/* Technology text */

.maharix-about-page .mt-tech-stack>div span {
  transition:
    color .35s ease,
    transform .45s cubic-bezier(.16, 1, .3, 1);
}


.maharix-about-page .mt-tech-stack>div:hover span {
  color: #344054;
  transform: translateX(4px);
}


/* =========================================================
   SKILL FLOATING MOTION
========================================================= */

.maharix-about-page .mt-tech-stack>div:nth-child(1) {
  animation: mtSkillFloat1 6s ease-in-out infinite;
}

.maharix-about-page .mt-tech-stack>div:nth-child(2) {
  animation: mtSkillFloat2 7s ease-in-out infinite;
  animation-delay: -.8s;
}

.maharix-about-page .mt-tech-stack>div:nth-child(3) {
  animation: mtSkillFloat1 6.5s ease-in-out infinite;
  animation-delay: -1.4s;
}

.maharix-about-page .mt-tech-stack>div:nth-child(4) {
  animation: mtSkillFloat2 7.5s ease-in-out infinite;
  animation-delay: -2s;
}

.maharix-about-page .mt-tech-stack>div:nth-child(5) {
  animation: mtSkillFloat1 6.8s ease-in-out infinite;
  animation-delay: -2.6s;
}

.maharix-about-page .mt-tech-stack>div:nth-child(6) {
  animation: mtSkillFloat2 7.2s ease-in-out infinite;
  animation-delay: -3.2s;
}


@keyframes mtSkillFloat1 {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3px);
  }
}


@keyframes mtSkillFloat2 {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-3px);
  }
}


/* =========================================================
   02. HOW WE WORK — PREMIUM MOTION
========================================================= */

.maharix-about-page .mt-approach-section {
  position: relative;
  overflow: hidden;
}


/* Background moving glow */

.maharix-about-page .mt-approach-section::before {
  content: "";

  position: absolute;

  width: 550px;
  height: 550px;

  top: -280px;
  right: -200px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(25, 199, 255, .12),
      transparent 68%);

  filter: blur(20px);

  animation: mtApproachGlow 9s ease-in-out infinite;

  pointer-events: none;
}


@keyframes mtApproachGlow {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-80px, 80px, 0) scale(1.18);
  }

}


/* Second glow */

.maharix-about-page .mt-approach-section::after {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  left: -230px;
  bottom: -230px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(65, 105, 225, .13),
      transparent 68%);

  filter: blur(25px);

  animation: mtApproachGlow2 11s ease-in-out infinite;

  pointer-events: none;
}


@keyframes mtApproachGlow2 {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(100px, -60px, 0);
  }

}


/* Keep content above glow */

.maharix-about-page .mt-approach-section .container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   TIMELINE
========================================================= */

.maharix-about-page .mt-approach-timeline {
  position: relative;
}


/* Animated timeline */

.maharix-about-page .mt-approach-timeline::before {
  content: "";

  position: absolute;

  left: 6px;
  top: 0;

  width: 1px;
  height: 100%;

  background:
    linear-gradient(180deg,
      transparent,
      rgba(25, 199, 255, .8) 15%,
      rgba(25, 199, 255, .8) 85%,
      transparent);

  transform-origin: top;

  animation: mtTimelineFlow 5s ease-in-out infinite;

  opacity: .75;
}


@keyframes mtTimelineFlow {

  0% {
    transform: scaleY(.2);
    opacity: .25;
  }

  50% {
    transform: scaleY(1);
    opacity: .85;
  }

  100% {
    transform: scaleY(.2);
    opacity: .25;
  }

}


/* Timeline items */

.maharix-about-page .mt-approach-item {
  position: relative;

  transform: translateX(0);

  transition:
    transform .55s cubic-bezier(.16, 1, .3, 1),
    background .4s ease;
}


/* Moving step */

.maharix-about-page .mt-approach-item:hover {
  transform: translateX(12px);
}


/* =========================================================
   NUMBER / STEP NODE
========================================================= */

.maharix-about-page .mt-approach-item>span {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  margin-left: -11px;

  border: 1px solid rgba(25, 199, 255, .35);

  border-radius: 50%;

  background: var(--mt-ink);

  z-index: 3;

  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    border-color .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}


.maharix-about-page .mt-approach-item:hover>span {
  transform: scale(1.16);

  border-color: var(--mt-cyan);

  background:
    radial-gradient(circle,
      rgba(25, 199, 255, .22),
      var(--mt-ink) 70%);

  box-shadow:
    0 0 0 7px rgba(25, 199, 255, .05),
    0 0 25px rgba(25, 199, 255, .22);
}


/* =========================================================
   STEP CONTENT
========================================================= */

.maharix-about-page .mt-approach-item h3 {
  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    color .35s ease;
}


.maharix-about-page .mt-approach-item:hover h3 {
  transform: translateX(5px);
  color: var(--mt-cyan);
}


.maharix-about-page .mt-approach-item p {
  transition:
    color .35s ease,
    transform .45s cubic-bezier(.16, 1, .3, 1);
}


.maharix-about-page .mt-approach-item:hover p {
  transform: translateX(5px);
  color: rgba(255, 255, 255, .68);
}


/* =========================================================
   CONTINUOUS ACTIVE NODE ANIMATION
========================================================= */

.maharix-about-page .mt-approach-item:nth-child(1)>span {
  animation: mtNodePulse 3.8s ease-in-out infinite;
}

.maharix-about-page .mt-approach-item:nth-child(2)>span {
  animation: mtNodePulse 3.8s ease-in-out infinite;
  animation-delay: .6s;
}

.maharix-about-page .mt-approach-item:nth-child(3)>span {
  animation: mtNodePulse 3.8s ease-in-out infinite;
  animation-delay: 1.2s;
}

.maharix-about-page .mt-approach-item:nth-child(4)>span {
  animation: mtNodePulse 3.8s ease-in-out infinite;
  animation-delay: 1.8s;
}

.maharix-about-page .mt-approach-item:nth-child(5)>span {
  animation: mtNodePulse 3.8s ease-in-out infinite;
  animation-delay: 2.4s;
}

.maharix-about-page .mt-approach-item:nth-child(6)>span {
  animation: mtNodePulse 3.8s ease-in-out infinite;
  animation-delay: 3s;
}


@keyframes mtNodePulse {

  0%,
  70%,
  100% {
    box-shadow:
      0 0 0 0 rgba(25, 199, 255, 0);
  }

  35% {
    box-shadow:
      0 0 0 7px rgba(25, 199, 255, .06),
      0 0 22px rgba(25, 199, 255, .20);
  }

}


/* =========================================================
   STEP CONNECTING LIGHT
========================================================= */

.maharix-about-page .mt-approach-item::before {
  content: "";

  position: absolute;

  left: 0;
  top: 51px;

  width: 0;
  height: 1px;

  background:
    linear-gradient(90deg,
      var(--mt-cyan),
      transparent);

  transition:
    width .7s cubic-bezier(.16, 1, .3, 1);

  opacity: .7;
}


.maharix-about-page .mt-approach-item:hover::before {
  width: 80px;
}


/* =========================================================
   STAGGERED ENTRY ANIMATION
========================================================= */

.maharix-about-page .mt-approach-item {
  animation: mtApproachEntry .8s cubic-bezier(.16, 1, .3, 1) both;
}

.maharix-about-page .mt-approach-item:nth-child(1) {
  animation-delay: .05s;
}

.maharix-about-page .mt-approach-item:nth-child(2) {
  animation-delay: .15s;
}

.maharix-about-page .mt-approach-item:nth-child(3) {
  animation-delay: .25s;
}

.maharix-about-page .mt-approach-item:nth-child(4) {
  animation-delay: .35s;
}

.maharix-about-page .mt-approach-item:nth-child(5) {
  animation-delay: .45s;
}

.maharix-about-page .mt-approach-item:nth-child(6) {
  animation-delay: .55s;
}


@keyframes mtApproachEntry {

  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }

}


/* =========================================================
   MOBILE OPTIMIZATION
========================================================= */

@media (max-width: 640px) {

  .maharix-about-page .mt-tech-stack>div:nth-child(n) {
    animation-duration: 8s;
  }

  .maharix-about-page .mt-tech-stack>div:hover {
    transform: translateX(6px);
    padding-left: 12px;
  }

  .maharix-about-page .mt-approach-item:hover {
    transform: translateX(5px);
  }

  .maharix-about-page .mt-approach-item::before {
    display: none;
  }

  .maharix-about-page .mt-approach-item>span {
    margin-left: -5px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .maharix-about-page .mt-tech-section::before,
  .maharix-about-page .mt-tech-stack::before,
  .maharix-about-page .mt-tech-stack>div,
  .maharix-about-page .mt-approach-section::before,
  .maharix-about-page .mt-approach-section::after,
  .maharix-about-page .mt-approach-timeline::before,
  .maharix-about-page .mt-approach-item,
  .maharix-about-page .mt-approach-item>span {
    animation: none !important;
    transition: none !important;
  }

}


/* =========================================================
   MAHARIX TECHNOLOGY
   AI + TECHNICAL EXPERTISE
   PREMIUM MOTION SYSTEM
========================================================= */

.maharix-about-page {
  --mt-ai-cyan: #19c7ff;
  --mt-ai-blue: #4169e1;
  --mt-ai-purple: #7357ff;
  --mt-ai-dark: #07111f;
}


/* =========================================================
   01 — TECH SECTION
========================================================= */

.maharix-about-page .mt-tech-section {
  position: relative;
  overflow: hidden;
}

.maharix-about-page .mt-tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(25, 199, 255, .045) 50%,
      transparent 100%);
  animation: mtTechAmbient 9s ease-in-out infinite;
}

@keyframes mtTechAmbient {

  0%,
  100% {
    opacity: .4;
    transform: translateX(-8%);
  }

  50% {
    opacity: 1;
    transform: translateX(8%);
  }
}


/* =========================================================
   TECH INTRO
========================================================= */

.maharix-about-page .mt-tech-intro {
  position: relative;
  z-index: 3;
}

.maharix-about-page .mt-tech-highlight {
  display: inline-block;
  background:
    linear-gradient(90deg,
      var(--mt-ai-blue),
      var(--mt-ai-cyan),
      var(--mt-ai-purple));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: mtGradientMove 5s linear infinite;
}

@keyframes mtGradientMove {
  to {
    background-position: 200% center;
  }
}

.maharix-about-page .mt-tech-lead {
  max-width: 650px;
}


/* =========================================================
   AI STATUS
========================================================= */

.maharix-about-page .mt-ai-status {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0;
  padding: 15px 18px;
  width: fit-content;
  border: 1px solid rgba(25, 199, 255, .16);
  background:
    linear-gradient(100deg,
      rgba(25, 199, 255, .07),
      rgba(65, 105, 225, .035),
      transparent);
  position: relative;
  overflow: hidden;
}

.maharix-about-page .mt-ai-status::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .18),
      transparent);
  animation: mtStatusScan 4s ease-in-out infinite;
}

@keyframes mtStatusScan {

  0%,
  30% {
    transform: translateX(-110%);
  }

  70%,
  100% {
    transform: translateX(110%);
  }

}

.maharix-about-page .mt-ai-status-dot,
.maharix-about-page .mt-live-dot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  border-radius: 50%;
  background: var(--mt-ai-cyan);
  box-shadow:
    0 0 0 5px rgba(25, 199, 255, .08),
    0 0 18px rgba(25, 199, 255, .65);
  animation: mtLivePulse 2s ease-in-out infinite;
}

@keyframes mtLivePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .75;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }

}

.maharix-about-page .mt-ai-status div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.maharix-about-page .mt-ai-status strong {
  font-size: 13px;
  letter-spacing: .04em;
}

.maharix-about-page .mt-ai-status span {
  font-size: 12px;
  opacity: .6;
}


/* =========================================================
   MINI AI CAPABILITY GRID
========================================================= */

.maharix-about-page .mt-tech-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.maharix-about-page .mt-tech-mini-grid>div {
  position: relative;
  padding: 20px;
  border-left: 1px solid rgba(7, 17, 31, .12);
  transition:
    transform .5s cubic-bezier(.16, 1, .3, 1),
    border-color .4s ease,
    background .4s ease;
}

.maharix-about-page .mt-tech-mini-grid>div:hover {
  transform: translateY(-5px);
  border-color: var(--mt-ai-cyan);
  background: rgba(25, 199, 255, .035);
}

.maharix-about-page .mt-mini-number {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--mt-ai-blue);
}

.maharix-about-page .mt-tech-mini-grid strong {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
}

.maharix-about-page .mt-tech-mini-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  opacity: .68;
}


/* =========================================================
   AI CORE
========================================================= */

.maharix-about-page .mt-tech-stack {
  position: relative;
  z-index: 3;
}

.maharix-about-page .mt-ai-core {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 0 auto 42px;
}

.maharix-about-page .mt-ai-core-ring {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(25, 199, 255, .25);
  border-radius: 50%;
}

.maharix-about-page .mt-ai-ring-one {
  animation: mtAiRotate 12s linear infinite;
}

.maharix-about-page .mt-ai-ring-two {
  inset: 40px;
  border-color: rgba(115, 87, 255, .28);
  border-style: dashed;
  animation: mtAiRotateReverse 8s linear infinite;
}

@keyframes mtAiRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mtAiRotateReverse {
  to {
    transform: rotate(-360deg);
  }
}

.maharix-about-page .mt-ai-core-center {
  position: absolute;
  inset: 65px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle,
      rgba(25, 199, 255, .22),
      rgba(7, 17, 31, .97) 70%);
  color: white;
  box-shadow:
    0 0 45px rgba(25, 199, 255, .15);
  z-index: 4;
}

.maharix-about-page .mt-ai-core-center strong {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
}

.maharix-about-page .mt-ai-core-center small {
  margin-top: 5px;
  font-size: 7px;
  letter-spacing: .18em;
  opacity: .65;
}

.maharix-about-page .mt-ai-core-pulse {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(25, 199, 255, .3);
  border-radius: 50%;
  animation: mtCorePulse 2.5s ease-out infinite;
}

@keyframes mtCorePulse {
  0% {
    transform: scale(.8);
    opacity: .7;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}


/* =========================================================
   ORBIT LABELS
========================================================= */

.maharix-about-page .mt-ai-orbit {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--mt-ai-cyan);
  background: #07111f;
  border: 1px solid rgba(25, 199, 255, .28);
  box-shadow: 0 0 18px rgba(25, 199, 255, .08);
}

.maharix-about-page .mt-orbit-one {
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  animation: mtOrbitFloat 4s ease-in-out infinite;
}

.maharix-about-page .mt-orbit-two {
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  animation: mtOrbitFloat 4s ease-in-out infinite -.8s;
}

.maharix-about-page .mt-orbit-three {
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  animation: mtOrbitFloat 4s ease-in-out infinite -1.6s;
}

.maharix-about-page .mt-orbit-four {
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  animation: mtOrbitFloat 4s ease-in-out infinite -2.4s;
}

@keyframes mtOrbitFloat {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -7px;
  }
}


/* =========================================================
   SKILL ROWS
========================================================= */

.maharix-about-page .mt-tech-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(7, 17, 31, .10);
  transition:
    transform .55s cubic-bezier(.16, 1, .3, 1),
    padding-left .5s ease;
}

.maharix-about-page .mt-tech-item::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 0;
  bottom: 0;
  opacity: 0;
  background:
    linear-gradient(90deg,
      rgba(25, 199, 255, .06),
      transparent);
  transition: opacity .4s ease;
  pointer-events: none;
}

.maharix-about-page .mt-tech-item:hover {
  transform: translateX(9px);
}

.maharix-about-page .mt-tech-item:hover::before {
  opacity: 1;
}

.maharix-about-page .mt-tech-item-index {
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--mt-ai-blue);
}

.maharix-about-page .mt-tech-item-content {
  position: relative;
  z-index: 2;
}

.maharix-about-page .mt-tech-item-content strong {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
  transition: color .3s ease;
}

.maharix-about-page .mt-tech-item-content span {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  opacity: .58;
}

.maharix-about-page .mt-tech-item:hover strong {
  color: var(--mt-ai-blue);
}

.maharix-about-page .mt-tech-item-tag {
  position: relative;
  z-index: 2;
  padding: 5px 8px;
  font-size: 8px;
  letter-spacing: .12em;
  border: 1px solid rgba(25, 199, 255, .18);
  color: var(--mt-ai-blue);
  transition:
    background .35s ease,
    color .35s ease,
    border-color .35s ease;
}

.maharix-about-page .mt-tech-item:hover .mt-tech-item-tag {
  background: var(--mt-ai-blue);
  color: white;
  border-color: var(--mt-ai-blue);
}


/* =========================================================
   TECH FOOTER
========================================================= */

.maharix-about-page .mt-tech-stack-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 9px;
  letter-spacing: .16em;
  color: #657083;
}

.maharix-about-page .mt-footer-line {
  flex: 1;
  height: 1px;
  background:
    linear-gradient(90deg,
      transparent,
      rgba(25, 199, 255, .35));
}

.maharix-about-page .mt-tech-stack-footer b {
  color: var(--mt-ai-cyan);
  margin: 0 5px;
}


/* =========================================================
   02 — HOW WE WORK
========================================================= */

.maharix-about-page .mt-approach-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%,
      rgba(25, 199, 255, .08),
      transparent 30%),
    #07111f;
}

.maharix-about-page .mt-approach-section .container {
  position: relative;
  z-index: 5;
}


/* =========================================================
   AI GRID BACKGROUND
========================================================= */

.maharix-about-page .mt-work-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(25, 199, 255, .08) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(25, 199, 255, .08) 1px,
      transparent 1px);
  background-size: 55px 55px;
  mask-image:
    linear-gradient(90deg,
      transparent,
      black 30%,
      black 70%,
      transparent);
  animation: mtGridMove 18s linear infinite;
}

@keyframes mtGridMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 55px 55px;
  }
}


/* =========================================================
   FLOATING PARTICLES
========================================================= */

.maharix-about-page .mt-work-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mt-ai-cyan);
  box-shadow: 0 0 15px var(--mt-ai-cyan);
  opacity: .5;
}

.maharix-about-page .mt-particle-one {
  top: 18%;
  left: 12%;
  animation: mtParticleOne 8s ease-in-out infinite;
}

.maharix-about-page .mt-particle-two {
  top: 70%;
  right: 17%;
  animation: mtParticleTwo 10s ease-in-out infinite;
}

.maharix-about-page .mt-particle-three {
  top: 35%;
  right: 7%;
  animation: mtParticleThree 7s ease-in-out infinite;
}

@keyframes mtParticleOne {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(80px, 45px);
  }
}

@keyframes mtParticleTwo {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-55px, -60px);
  }
}

@keyframes mtParticleThree {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-30px, 70px);
  }
}


/* =========================================================
   LEFT HEADING
========================================================= */

.maharix-about-page .mt-approach-heading {
  position: relative;
  z-index: 4;
}

.maharix-about-page .mt-approach-heading h2 span {
  display: block;
  color: var(--mt-ai-cyan);
}


/* =========================================================
   AI WORKFLOW PANEL
========================================================= */

.maharix-about-page .mt-work-ai-panel {
  margin-top: 35px;
  padding: 20px;
  border: 1px solid rgba(25, 199, 255, .16);
  background:
    linear-gradient(135deg,
      rgba(25, 199, 255, .07),
      rgba(255, 255, 255, .015));
  position: relative;
  overflow: hidden;
}

.maharix-about-page .mt-work-ai-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background:
    linear-gradient(180deg,
      transparent,
      var(--mt-ai-cyan),
      var(--mt-ai-blue),
      transparent);
  animation: mtPanelScan 4s ease-in-out infinite;
}

@keyframes mtPanelScan {

  0%,
  100% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(100%);
  }
}

.maharix-about-page .mt-work-ai-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.maharix-about-page .mt-work-ai-header>div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.maharix-about-page .mt-work-ai-header strong {
  font-size: 11px;
  letter-spacing: .12em;
  color: white;
}

.maharix-about-page .mt-work-ai-header span {
  font-size: 8px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .42);
}

.maharix-about-page .mt-work-ai-header small {
  color: var(--mt-ai-cyan);
  font-size: 9px;
}


/* =========================================================
   AI BARS
========================================================= */

.maharix-about-page .mt-work-ai-bars {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.maharix-about-page .mt-work-ai-bars>div {
  display: grid;
  grid-template-columns: 85px 1fr 30px;
  gap: 10px;
  align-items: center;
}

.maharix-about-page .mt-work-ai-bars span,
.maharix-about-page .mt-work-ai-bars em {
  font-size: 9px;
  color: rgba(255, 255, 255, .5);
  font-style: normal;
}

.maharix-about-page .mt-work-ai-bars i {
  height: 2px;
  background: rgba(255, 255, 255, .09);
  position: relative;
  overflow: hidden;
}

.maharix-about-page .mt-work-ai-bars b {
  display: block;
  height: 100%;
  background:
    linear-gradient(90deg,
      var(--mt-ai-blue),
      var(--mt-ai-cyan));
  position: relative;
}

.maharix-about-page .mt-work-ai-bars b::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mt-ai-cyan);
  box-shadow: 0 0 12px var(--mt-ai-cyan);
}


/* =========================================================
   HOW WE WORK TIMELINE
========================================================= */

.maharix-about-page .mt-approach-timeline {
  position: relative;
}

.maharix-about-page .mt-approach-timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 1px;
  background:
    linear-gradient(180deg,
      transparent,
      rgba(25, 199, 255, .8) 10%,
      rgba(25, 199, 255, .2) 90%,
      transparent);
}

.maharix-about-page .mt-approach-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 28px;
  padding-bottom: 42px;
  opacity: 0;
  animation: mtWorkEntry .8s cubic-bezier(.16, 1, .3, 1) forwards;
}

.maharix-about-page .mt-approach-item:nth-child(1) {
  animation-delay: .1s;
}

.maharix-about-page .mt-approach-item:nth-child(2) {
  animation-delay: .22s;
}

.maharix-about-page .mt-approach-item:nth-child(3) {
  animation-delay: .34s;
}

.maharix-about-page .mt-approach-item:nth-child(4) {
  animation-delay: .46s;
}

.maharix-about-page .mt-approach-item:nth-child(5) {
  animation-delay: .58s;
}

.maharix-about-page .mt-approach-item:nth-child(6) {
  animation-delay: .70s;
}

@keyframes mtWorkEntry {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* =========================================================
   TIMELINE NODE
========================================================= */

.maharix-about-page .mt-approach-item>span {
  position: relative;
  z-index: 5;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(25, 199, 255, .35);
  background: #07111f;
  color: var(--mt-ai-cyan);
  font-size: 9px;
  font-weight: 700;
  box-shadow: 0 0 0 rgba(25, 199, 255, 0);
  transition:
    transform .5s cubic-bezier(.16, 1, .3, 1),
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.maharix-about-page .mt-approach-item:hover>span {
  transform: scale(1.2);
  background: rgba(25, 199, 255, .12);
  border-color: var(--mt-ai-cyan);
  box-shadow:
    0 0 0 8px rgba(25, 199, 255, .035),
    0 0 30px rgba(25, 199, 255, .25);
}


/* =========================================================
   STEP LABEL
========================================================= */

.maharix-about-page .mt-work-step-label {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--mt-ai-cyan);
  font-size: 8px;
  letter-spacing: .18em;
  font-weight: 700;
  opacity: .7;
}

.maharix-about-page .mt-approach-item h3 {
  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    color .35s ease;
}

.maharix-about-page .mt-approach-item:hover h3 {
  transform: translateX(6px);
  color: var(--mt-ai-cyan);
}

.maharix-about-page .mt-approach-item p {
  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    color .35s ease;
}

.maharix-about-page .mt-approach-item:hover p {
  transform: translateX(6px);
  color: rgba(255, 255, 255, .72);
}


/* =========================================================
   CONNECTING LIGHT
========================================================= */

.maharix-about-page .mt-approach-item::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 35px;
  width: 1px;
  height: 0;
  background: var(--mt-ai-cyan);
  box-shadow: 0 0 12px var(--mt-ai-cyan);
  animation: mtConnector 2.8s ease-in-out infinite;
}

@keyframes mtConnector {

  0%,
  100% {
    height: 0;
    opacity: 0;
  }

  40% {
    height: 45px;
    opacity: .8;
  }

  60% {
    height: 75px;
    opacity: .3;
  }

}


/* =========================================================
   WORKFLOW COMPLETE
========================================================= */

.maharix-about-page .mt-work-complete {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: -1px;
  padding: 17px 20px;
  width: fit-content;
  border: 1px solid rgba(25, 199, 255, .16);
  background: rgba(25, 199, 255, .035);
}

.maharix-about-page .mt-complete-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37e6a1;
  box-shadow:
    0 0 0 5px rgba(55, 230, 161, .06),
    0 0 16px rgba(55, 230, 161, .5);
  animation: mtCompletePulse 2s infinite;
}

@keyframes mtCompletePulse {
  50% {
    box-shadow:
      0 0 0 9px rgba(55, 230, 161, .02),
      0 0 24px rgba(55, 230, 161, .7);
  }
}

.maharix-about-page .mt-work-complete div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.maharix-about-page .mt-work-complete strong {
  color: white;
  font-size: 10px;
  letter-spacing: .14em;
}

.maharix-about-page .mt-work-complete span {
  color: rgba(255, 255, 255, .38);
  font-size: 8px;
  letter-spacing: .1em;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

  .maharix-about-page .mt-tech-grid {
    grid-template-columns: 1fr;
  }

  .maharix-about-page .mt-ai-core {
    margin-top: 45px;
  }

  .maharix-about-page .mt-approach-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 640px) {

  .maharix-about-page .mt-tech-mini-grid {
    grid-template-columns: 1fr;
  }

  .maharix-about-page .mt-tech-item {
    grid-template-columns: 34px 1fr auto;
    gap: 12px;
  }

  .maharix-about-page .mt-tech-item-content strong {
    font-size: 14px;
  }

  .maharix-about-page .mt-tech-item-content span {
    font-size: 11px;
  }

  .maharix-about-page .mt-ai-core {
    width: 180px;
    height: 180px;
  }

  .maharix-about-page .mt-ai-core-center {
    inset: 55px;
  }

  .maharix-about-page .mt-approach-item {
    grid-template-columns: 30px 1fr;
    gap: 18px;
  }

  .maharix-about-page .mt-approach-timeline::before {
    left: 14px;
  }

  .maharix-about-page .mt-approach-item>span {
    width: 30px;
    height: 30px;
  }

  .maharix-about-page .mt-work-ai-bars>div {
    grid-template-columns: 72px 1fr 28px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .maharix-about-page .mt-tech-section *,
  .maharix-about-page .mt-approach-section * {
    animation: none !important;
    transition: none !important;
  }

}