*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body.mi-hub {
  --mi-navy: #071b49;
  --mi-navy-soft: #0e275f;
  --mi-blue: #0b66ff;
  --mi-blue-dark: #0a53d1;
  --mi-cyan: #18b7ff;
  --mi-green: #16a34a;
  --mi-orange: #f59e0b;
  --mi-purple: #7c3aed;
  --mi-bg: #f5f7fb;
  --mi-surface: #ffffff;
  --mi-text: #1e293b;
  --mi-muted: #64748b;
  --mi-border: #dbe5f2;
  --mi-shadow: 0 18px 45px rgba(7, 27, 73, 0.08);
  --mi-radius: 16px;
  --mi-font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mi-display: 'Space Grotesk', 'Plus Jakarta Sans', system-ui, sans-serif;
  margin: 0;
  background: var(--mi-bg);
  color: var(--mi-text);
  font-family: var(--mi-font);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.mi-hub h1,
body.mi-hub h2,
body.mi-hub h3,
body.mi-hub h4 {
  margin: 0;
  font-family: var(--mi-display);
  line-height: 1.15;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.mi-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--mi-navy);
  box-shadow: 0 10px 30px rgba(2, 11, 33, 0.18);
  overflow: visible;
}

.mi-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.mi-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(340px, 48vw);
  line-height: 0;
}

.mi-brand-badge,
.mi-footer-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 20px rgba(2, 11, 33, 0.15);
}

.mi-brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.mi-brand-logo-full {
  display: block;
  width: auto;
  height: 44px;
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
  margin: 0;
}

.mi-brand-text {
  display: flex;
  flex-direction: column;
}

.mi-brand-text strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.mi-brand-text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mi-nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
  min-width: 0;
  flex: 1 1 auto;
}

.mi-nav-backdrop,
.mi-nav-panel-top,
.mi-nav-close {
  display: none;
}

.mi-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
  min-width: 0;
}

.mi-nav a {
  padding: 9px 11px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.mi-nav a:hover,
.mi-nav a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mi-nav-cta {
  flex: 0 0 auto;
}

.mi-nav-cta .btn-mi {
  white-space: nowrap;
}

.mi-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
}

.mi-menu-icon-close {
  display: none;
}

.mi-menu-btn.is-open .mi-menu-icon-open {
  display: none;
}

.mi-menu-btn.is-open .mi-menu-icon-close {
  display: inline-flex;
}

.btn-mi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-mi:hover {
  transform: translateY(-1px);
}

.btn-mi-sm {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

.btn-mi-primary {
  background: var(--mi-blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 102, 255, 0.22);
}

.btn-mi-primary:hover {
  background: var(--mi-blue-dark);
}

.btn-mi-secondary {
  background: #fff;
  color: var(--mi-navy);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-mi-secondary:hover {
  background: #eef4ff;
}

.btn-mi-white {
  background: #fff;
  color: var(--mi-navy);
}

.btn-mi-success {
  background: var(--mi-green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.2);
}

.mi-btn-full {
  width: 100%;
}

.mi-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mi-label-blue,
.mi-label-cyan,
.mi-label-purple,
.mi-label-orange {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mi-section {
  padding: 72px 0;
}

.mi-section-follow {
  padding-top: 64px;
}

.mi-section-light {
  background: #fff;
}

.mi-section-muted {
  background: var(--mi-bg);
}

.mi-section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.mi-section-head h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: var(--mi-navy);
  margin-bottom: 12px;
}

.mi-section-head p {
  margin: 0;
  color: var(--mi-muted);
  font-size: 1rem;
}

.mi-section-button {
  margin-top: 28px;
  text-align: center;
}

.mi-section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.mi-hero {
  padding: 86px 0 108px;
  background: linear-gradient(180deg, var(--mi-navy) 0%, var(--mi-navy-soft) 100%);
  color: #fff;
}

.mi-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 50px;
  align-items: center;
}

.mi-hero-title {
  font-size: clamp(2.5rem, 4vw, 3.9rem);
  margin-bottom: 18px;
  color: #fff;
}

.mi-hero-lead {
  max-width: 580px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.mi-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.mi-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
}

.mi-hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  border-radius: 28px;
}

.mi-hero-image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  background: transparent;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.35));
}

.mi-stats-strip {
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.mi-stats-strip-plain {
  margin-top: 0;
  padding: 0 0 20px;
}

.mi-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mi-stat-box {
  padding: 22px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--mi-border);
  box-shadow: var(--mi-shadow);
  text-align: center;
}

.mi-stat-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mi-navy);
  font-size: 1.7rem;
}

.mi-stat-box span {
  display: block;
  color: var(--mi-muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mi-card-grid,
.projects-grid,
.mi-blog-grid,
.mi-skills-cards {
  display: grid;
  gap: 22px;
}

.mi-card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mi-card-grid-3,
.projects-grid,
.mi-blog-grid,
.mi-skills-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mi-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mi-card-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mi-feature-card,
.mi-product-card,
.mi-product-feature,
.project-card,
.mi-process-card,
.mi-value-card,
.mi-mini-panel,
.mi-skill-card,
.mi-team-card,
.mi-blog-card {
  background: #fff;
  border: 1px solid var(--mi-border);
  border-radius: var(--mi-radius);
  box-shadow: var(--mi-shadow);
}

.mi-feature-card,
.mi-process-card,
.mi-value-card,
.mi-mini-panel,
.mi-skill-card,
.mi-blog-card {
  padding: 24px;
}

.mi-feature-card {
  border-top: 4px solid var(--mi-blue);
}

.mi-feature-card-cyan {
  border-top-color: var(--mi-cyan);
}

.mi-feature-card-purple {
  border-top-color: var(--mi-purple);
}

.mi-feature-card-orange {
  border-top-color: var(--mi-orange);
}

.mi-feature-icon,
.mi-process-icon,
.mi-value-card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf1ff;
  color: var(--mi-blue);
  font-size: 1.15rem;
}

.mi-process-band-wrap {
  background: #fff;
}

.mi-process-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #092253 0%, #071b49 100%);
  box-shadow: 0 22px 44px rgba(7, 27, 73, 0.16);
}

.mi-process-band .mi-process-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 24px 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.mi-process-band .mi-process-card + .mi-process-card {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mi-process-band .mi-process-card h3 {
  color: #fff;
  font-size: 1rem;
}

.mi-process-band .mi-process-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.mi-process-band .mi-process-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.mi-feature-card h3,
.mi-product-card h3,
.mi-product-feature h3,
.project-card h3,
.mi-process-card h3,
.mi-value-card h3,
.mi-mini-panel h3,
.mi-team-card h3,
.mi-blog-card h3 {
  margin-bottom: 10px;
  color: var(--mi-navy);
  font-size: 1.08rem;
}

.mi-feature-card p,
.mi-product-card p,
.mi-product-feature p,
.project-card p,
.mi-process-card p,
.mi-value-card p,
.mi-mini-panel p,
.mi-skill-card p,
.mi-team-card p,
.mi-blog-card p {
  margin: 0;
  color: var(--mi-muted);
  font-size: 0.92rem;
}

.mi-inline-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--mi-blue);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.mi-meta-chip,
.tech-tag,
.mi-blog-cat {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--mi-blue);
  font-size: 0.75rem;
  font-weight: 700;
}

.mi-product-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mi-product-card:hover,
.mi-product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(7, 27, 73, 0.14);
  outline: none;
}

.mi-product-thumb {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  background: #0b1630;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.mi-product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 16px 16px 0 0;
  transition: transform 0.35s ease;
}

.mi-product-card:hover .mi-product-thumb img {
  transform: scale(1.03);
}

.mi-product-body {
  padding: 18px;
}

.mi-product-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--mi-blue);
  font-size: 0.86rem;
  font-weight: 700;
}

.mi-product-view i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.mi-product-card:hover .mi-product-view i,
.mi-product-row:hover .mi-product-view i {
  transform: translateX(4px);
}

.mi-product-row {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mi-product-row:hover,
.mi-product-row:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(7, 27, 73, 0.12);
  outline: none;
}

.mi-product-feature {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  overflow: hidden;
}

.mi-product-list {
  display: grid;
  gap: 18px;
}

.mi-product-row {
  display: grid;
  grid-template-columns: minmax(180px, 38%) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--mi-border);
  border-radius: 16px;
  box-shadow: var(--mi-shadow);
}

.mi-product-row-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.mi-product-row .mi-product-feature-thumb {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
}

.mi-product-points {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.mi-product-points li {
  position: relative;
  padding-left: 14px;
  color: var(--mi-muted);
  font-size: 0.86rem;
}

.mi-product-points li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mi-blue);
}

.mi-product-feature-thumb {
  background: #0b1630;
  border-radius: 12px;
  overflow: hidden;
}

.mi-product-feature-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 12px;
}

.mi-product-feature-body {
  padding: 24px;
}

.mi-product-feature-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.mi-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 26px;
}

.filter-btn-v2 {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--mi-border);
  background: #fff;
  color: var(--mi-muted);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn-v2:hover,
.filter-btn-v2.active {
  background: var(--mi-blue);
  border-color: var(--mi-blue);
  color: #fff;
}

.project-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover,
.mi-feature-card:hover,
.mi-product-card:hover,
.mi-product-feature:hover,
.mi-process-card:hover,
.mi-value-card:hover,
.mi-team-card:hover,
.mi-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(7, 27, 73, 0.12);
}

.project-card .thumb-wrap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b1630;
}

.project-card .thumb-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.project-card .cat-badge,
.project-card .rating-badge {
  position: absolute;
  top: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.project-card .cat-badge {
  left: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--mi-navy);
}

.project-card .rating-badge {
  right: 14px;
  background: #fff7db;
  color: #946200;
}

.project-card .card-body {
  padding: 20px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.project-card .view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--mi-blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.mi-tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.mi-tech-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mi-tech-group {
  padding: 22px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--mi-border);
  box-shadow: var(--mi-shadow);
  text-align: center;
}

.mi-tech-group h3 {
  margin-bottom: 14px;
  color: var(--mi-navy);
  font-size: 1rem;
}

.mi-tech-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mi-tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f4f7fc;
  color: var(--mi-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.mi-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--mi-border);
  box-shadow: var(--mi-shadow);
  color: var(--mi-navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.mi-tech-pill i {
  color: var(--mi-blue);
}

.skill-bar {
  height: 8px;
  margin-top: 14px;
  background: #e8eef7;
  border-radius: 999px;
  overflow: hidden;
}

.skill-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--mi-blue), var(--mi-cyan));
  border-radius: inherit;
  transition: width 1s ease;
}

.mi-skill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--mi-navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.mi-about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 30px;
  align-items: start;
}

.mi-about-story-copy h2 {
  margin-bottom: 16px;
  color: var(--mi-navy);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.mi-about-story-copy > p {
  margin: 0 0 14px;
  color: var(--mi-muted);
}

.mi-about-logo-wrap {
  padding: 32px 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #071b49 0%, #0b66ff 52%, #18b7ff 100%);
  border: 1px solid rgba(24, 183, 255, 0.28);
  box-shadow: 0 24px 54px rgba(7, 27, 73, 0.18);
  text-align: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.mi-about-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%);
  pointer-events: none;
}

.mi-about-logo-wrap img {
  margin: 0 auto;
  width: min(100%, 320px);
  max-width: 320px;
  max-height: 120px;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 24px rgba(2, 11, 33, 0.22));
}

.mi-about-logo-wrap-light {
  background: linear-gradient(135deg, #071b49 0%, #0b66ff 52%, #18b7ff 100%);
}

.mi-page-hero {
  padding: 78px 0 84px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, var(--mi-navy) 0%, var(--mi-navy-soft) 100%);
}

.mi-page-hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.mi-page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

.mi-page-hero-line {
  width: 110px;
  height: 4px;
  margin: 28px auto 0;
  border-radius: 999px;
  background: #2ca8ff;
}

.mi-section-contact {
  background: #fff;
}

.mi-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.mi-contact-info {
  padding: 34px;
  border-radius: 18px;
  background: #f7f9fd;
  border: 1px solid var(--mi-border);
}

.mi-contact-info h2 {
  margin: 14px 0 12px;
  color: var(--mi-navy);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.mi-contact-info > p {
  margin: 0 0 22px;
  color: var(--mi-muted);
}

.mi-contact-list {
  display: grid;
  gap: 12px;
}

.mi-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--mi-text);
  text-decoration: none;
  font-weight: 600;
}

.mi-contact-line i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf1ff;
  color: var(--mi-blue);
}

.mi-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mi-contact-form {
  padding: 34px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--mi-border);
  box-shadow: var(--mi-shadow);
}

.mi-contact-form h3 {
  margin-bottom: 18px;
  color: var(--mi-navy);
}

.mi-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.mi-form-row-single {
  grid-template-columns: 1fr;
}

.mi-contact-form input,
.mi-contact-form select,
.mi-contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--mi-border);
  border-radius: 12px;
  background: #fff;
  color: var(--mi-text);
  appearance: none;
}

.mi-contact-form textarea {
  min-height: 150px;
  margin-bottom: 16px;
  resize: vertical;
}

.mi-contact-form input:focus,
.mi-contact-form select:focus,
.mi-contact-form textarea:focus {
  outline: none;
  border-color: var(--mi-blue);
  box-shadow: 0 0 0 3px rgba(11, 102, 255, 0.12);
}

.mi-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.mi-alert-success {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

.mi-alert-error {
  background: rgba(239, 68, 68, 0.12);
  color: #991b1b;
}

.mi-team-showcase {
  position: relative;
  overflow: hidden;
}

.mi-team-showcase .container {
  position: relative;
}

.mi-team-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 32px;
  border: 1px solid rgba(11, 102, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(24, 183, 255, 0.16), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(11, 102, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.95) 0%, rgba(240, 246, 255, 0.92) 100%);
  box-shadow: 0 32px 70px rgba(7, 27, 73, 0.14);
  backdrop-filter: blur(18px);
}

.mi-team-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  pointer-events: none;
}

.mi-team-glow-1 {
  top: -30px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: rgba(24, 183, 255, 0.16);
}

.mi-team-glow-2 {
  right: 4%;
  bottom: 18%;
  width: 220px;
  height: 220px;
  background: rgba(11, 102, 255, 0.12);
}

.mi-team-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.mi-team-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 102, 255, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--mi-blue);
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mi-team-head h2,
.mi-team-card h3 {
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
}

.mi-team-head p,
.mi-team-card p,
.mi-team-tags .tech-tag,
.mi-team-links a {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
}

.mi-team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mi-team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 34px 28px 28px;
  overflow: hidden;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(246, 250, 255, 0.76) 100%);
  box-shadow: 0 24px 54px rgba(7, 27, 73, 0.1);
  backdrop-filter: blur(16px);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.mi-team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.mi-team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 102, 255, 0.2);
  box-shadow: 0 34px 68px rgba(7, 27, 73, 0.16);
}

.mi-team-photo-wrap,
.mi-team-body {
  position: relative;
  z-index: 1;
}

.mi-team-photo-wrap {
  margin-bottom: 22px;
}

.mi-team-photo {
  width: 216px;
  height: 216px;
  padding: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #071b49 0%, #0b66ff 58%, #18b7ff 100%);
  box-shadow:
    0 18px 40px rgba(7, 27, 73, 0.16),
    0 0 0 10px rgba(255, 255, 255, 0.42);
}

.mi-team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 5px solid rgba(255, 255, 255, 0.95);
  background: #eef4fb;
}

.mi-team-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.mi-team-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mi-team-role {
  margin: 0 0 14px;
  color: var(--mi-blue) !important;
  font-size: 1rem !important;
  font-weight: 700;
}

.mi-team-bio {
  max-width: 44ch;
  font-size: 0.98rem !important;
  line-height: 1.78;
  color: #54657f !important;
}

.mi-team-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.mi-team-tags .tech-tag {
  padding: 8px 13px;
  border: 1px solid rgba(11, 102, 255, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--mi-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(7, 27, 73, 0.06);
}

.mi-team-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  flex-wrap: wrap;
}

.mi-team-links a {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.76);
  color: var(--mi-blue);
  text-decoration: none;
  border: 1px solid rgba(11, 102, 255, 0.12);
  box-shadow: 0 16px 28px rgba(7, 27, 73, 0.08);
  transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease, color 300ms ease;
}

.mi-team-links a:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #0b66ff 0%, #18b7ff 100%);
  color: #fff;
  box-shadow: 0 20px 34px rgba(11, 102, 255, 0.24);
}

.mi-team-links a svg {
  width: 18px;
  height: 18px;
}

.mi-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mi-team-note {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(11, 102, 255, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 20px 44px rgba(7, 27, 73, 0.08);
  text-align: center;
  color: #4d617d;
  font-weight: 600;
  backdrop-filter: blur(14px);
}

.mi-blog-cat {
  margin-bottom: 12px;
}

.mi-cta-panel {
  padding: 38px 40px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--mi-navy) 0%, var(--mi-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mi-cta-content {
  color: #fff;
}

.mi-cta-content h2 {
  margin: 12px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.mi-cta-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}

.mi-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mi-footer {
  background: #051533;
  color: rgba(255, 255, 255, 0.74);
}

.mi-footer-main {
  padding: 62px 0 36px;
}

.mi-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 28px;
}

.mi-footer-brand-col,
.mi-footer-col {
  min-width: 0;
}

.mi-footer-brand-col {
  position: relative;
}

.mi-footer-brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 19px;

  margin-left: 12px;
 
  text-decoration: none;
  line-height: 0;
}

.mi-footer-brand img {
  width: 134px;
  height: 34px;
  object-fit: contain;
}

.mi-footer-logo-full {
  width: auto;
  height: 72px;
  max-width: 420px;
  object-fit: contain;
  object-position: left center;
  margin: 0;
}

.mi-footer-brand strong {
  display: block;
  color: #fff;
}

.mi-footer-brand span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mi-footer-desc {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
  line-height: 1.8;
}

.mi-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mi-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.mi-footer-col h4 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.95rem;
}

.mi-footer-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: default;
  list-style: none;
}

.mi-footer-toggle::-webkit-details-marker {
  display: none;
}

.mi-footer-toggle i {
  display: none;
}

.mi-footer-panel {
  margin-top: 16px;
}

.mi-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mi-footer-col a,
.mi-footer-col span {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  line-height: 1.6;
  word-break: break-word;
}

.mi-footer-col a:hover {
  color: #fff;
}

.mi-footer-contact i {
  width: 16px;
  flex: 0 0 16px;
  text-align: center;
  margin-top: 4px;
}

.mi-footer-cta {
  margin-top: 18px;
}

.mi-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.mi-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.mi-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mi-footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.mi-wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 20px 30px rgba(37, 211, 102, 0.28);
  z-index: 900;
}

.mi-wa-float svg {
  width: 28px;
  height: 28px;
}

.mi-empty-state {
  text-align: center;
  color: var(--mi-muted);
  padding: 24px 0;
}

.modal-v2 {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 21, 51, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1100;
}

.modal-v2.show {
  opacity: 1;
  visibility: visible;
}

.modal-v2 .modal-box {
  position: relative;
  width: min(900px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 18px;
  background: #fff;
}

.modal-v2 .modal-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}

.modal-v2 .modal-img.is-product {
  max-height: 420px;
  object-fit: contain;
  background: #07122a;
}

.modal-v2 .modal-content {
  padding: 24px;
}

.modal-v2 .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  font-size: 1.3rem;
}

.modal-v2 .modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.modal-v2 .modal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--mi-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.star-rating {
  color: var(--mi-orange);
}

.star-rating small {
  color: var(--mi-muted);
}

.reveal-v2 {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-v2.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .mi-header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .mi-brand {
    max-width: min(280px, 40vw);
  }

  .mi-brand-logo-full {
    height: 40px;
    max-height: 40px;
  }

  .mi-nav-panel {
    gap: 10px;
  }

  .mi-nav a {
    padding: 8px 9px;
    font-size: 0.82rem;
  }

  .mi-nav-cta .btn-mi-sm {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .mi-card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mi-card-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mi-hero-inner,
  .mi-about-story,
  .mi-contact-grid {
    grid-template-columns: 1fr;
  }

  .mi-hero-showcase {
    min-height: 0;
  }

  .mi-hero-image {
    max-width: 480px;
  }

  .mi-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mi-tech-groups,
  .mi-process-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    background: transparent;
    box-shadow: none;
  }

  .mi-process-band .mi-process-card {
    border-radius: 16px;
    background: linear-gradient(180deg, #092253 0%, #071b49 100%);
    box-shadow: 0 18px 30px rgba(7, 27, 73, 0.12);
  }

  .mi-process-band .mi-process-card + .mi-process-card {
    border-left: 0;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 84px;
  }

  .mi-header-inner {
    min-height: 64px;
  }

  .mi-brand {
    max-width: calc(100% - 64px);
  }

  .mi-brand-logo-full {
    height: 38px;
    max-height: 38px;
  }

  .mi-nav-panel {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 86vw);
    margin-left: 0;
    padding: 68px 14px 16px;
    border-radius: 0;
    background: #071b49;
    box-shadow: -18px 0 36px rgba(2, 11, 33, 0.34);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    z-index: 1200;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }

  .mi-nav-panel.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mi-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(2, 11, 33, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1100;
    transition: opacity 0.24s ease, visibility 0.24s ease;
  }

  .mi-nav-backdrop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mi-nav-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
  }

  .mi-nav-panel-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mi-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mi-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .mi-nav a {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    -webkit-tap-highlight-color: transparent;
  }

  .mi-nav-cta,
  .mi-nav-cta .btn-mi {
    width: 100%;
  }

  .mi-nav-cta .btn-mi {
    justify-content: center;
  }

  .mi-menu-btn {
    display: inline-flex;
    position: relative;
    z-index: 1250;
    -webkit-tap-highlight-color: transparent;
  }

  body.mi-hub.nav-open {
    overflow: hidden;
  }

  .mi-hero {
    padding: 56px 0 72px;
  }

  .mi-hero-showcase {
    min-height: 0;
    overflow: visible;
  }

  .mi-hero-image {
    max-width: 420px;
    width: 100%;
    height: auto;
  }

  .mi-stats-strip {
    margin-top: -28px;
  }

  .mi-stats-grid,
  .mi-card-grid-3,
  .mi-card-grid-4,
  .projects-grid,
  .mi-blog-grid,
  .mi-skills-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mi-product-feature {
    grid-template-columns: 1fr;
  }

  .mi-product-feature-thumb,
  .mi-product-row .mi-product-feature-thumb {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .mi-product-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mi-product-thumb,
  .mi-product-feature-thumb,
  .project-card .thumb-wrap {
    aspect-ratio: 16 / 10;
  }

  .mi-product-thumb img,
  .mi-product-feature-thumb img,
  .project-card .thumb-wrap img,
  .mi-hero-image {
    object-fit: contain;
  }

  .mi-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .mi-hero-actions .btn-mi,
  .mi-section-button .btn-mi,
  .mi-product-actions .btn-mi {
    min-height: 44px;
  }

  .mi-team-shell {
    padding: 26px;
    border-radius: 28px;
  }

  .mi-team-grid {
    grid-template-columns: 1fr;
  }

  .mi-team-card {
    padding: 30px 24px 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1180px, 92%);
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .mi-header-inner {
    min-height: 60px;
    gap: 10px;
  }

  .mi-brand {
    max-width: calc(100% - 56px);
  }

  .mi-brand-text span {
    display: none;
  }

  .mi-brand-logo-full {
    width: auto;
    height: 34px;
    max-height: 34px;
    max-width: min(240px, 68vw);
    margin: 0;
  }

  .mi-footer-logo-full {
    height: 168px;
    max-height: none;
    max-width: none;
    margin: -58px 0 -42px -12px;
  }

  .mi-team-shell {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .mi-team-head {
    margin-bottom: 22px;
  }

  .mi-team-eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .mi-team-card {
    padding: 26px 18px 22px;
    border-radius: 22px;
  }

  .mi-team-photo {
    width: 184px;
    height: 184px;
    box-shadow:
      0 16px 30px rgba(7, 27, 73, 0.14),
      0 0 0 8px rgba(255, 255, 255, 0.42);
  }

  .mi-team-card h3 {
    font-size: 1.26rem;
  }

  .mi-team-role {
    font-size: 0.94rem !important;
  }

  .mi-team-bio {
    font-size: 0.94rem !important;
    line-height: 1.7;
  }

  .mi-team-links {
    gap: 10px;
    padding-top: 18px;
  }

  .mi-team-links a {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .mi-section {
    padding: 44px 0;
  }

  .mi-section-head {
    margin-bottom: 22px;
  }

  .mi-section-head h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .mi-section-head p {
    font-size: 0.95rem;
  }

  .mi-page-hero {
    padding: 52px 0 48px;
  }

  .mi-page-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .mi-hero {
    padding: 48px 0 64px;
    overflow: hidden;
  }

  .mi-hero-inner {
    gap: 28px;
  }

  .mi-hero-title {
    font-size: clamp(1.85rem, 8vw, 2.2rem);
    line-height: 1.15;
  }

  .mi-hero-lead {
    font-size: 0.98rem;
    margin-bottom: 20px;
  }

  .mi-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mi-hero-actions .btn-mi {
    width: 100%;
    justify-content: center;
  }

  .mi-hero-showcase {
    min-height: 0;
    border-radius: 20px;
  }

  .mi-hero-image {
    max-width: 100%;
    border-radius: 20px;
  }

  .mi-trust-row {
    gap: 10px 14px;
    font-size: 0.8rem;
  }

  .mi-trust-row,
  .mi-contact-actions,
  .mi-product-actions,
  .mi-cta-actions {
    gap: 10px;
  }

  .mi-stats-strip {
    margin-top: -20px;
  }

  .mi-stats-grid,
  .mi-card-grid-2,
  .mi-card-grid-3,
  .mi-card-grid-4,
  .mi-card-grid-5,
  .mi-tech-groups,
  .mi-process-band,
  .projects-grid,
  .mi-blog-grid,
  .mi-skills-cards,
  .mi-grid-2-mobile {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mi-grid-2-mobile > * {
    max-width: 100%;
  }

  #products .mi-card-grid-4,
  #projects .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #products .mi-product-body,
  #projects .project-card .card-body {
    padding: 12px;
  }

  #products .mi-product-card h3,
  #projects .project-card h3 {
    font-size: 0.98rem;
    line-height: 1.3;
  }

  #products .mi-product-card p,
  #projects .project-card p {
    font-size: 0.83rem;
    line-height: 1.55;
  }

  #products .tech-tags,
  #projects .tech-tags {
    gap: 6px;
    margin-top: 10px;
  }

  #products .tech-tag,
  #projects .tech-tag {
    padding: 4px 8px;
    font-size: 0.68rem;
  }

  #products .mi-product-view,
  #projects .view-btn {
    margin-top: 12px;
    font-size: 0.82rem;
  }

  .mi-stat-box {
    padding: 18px 16px;
  }

  .mi-product-card,
  .mi-product-row,
  .project-card,
  .mi-feature-card {
    border-radius: 16px;
  }

  .mi-product-thumb {
    aspect-ratio: 16 / 11;
    border-radius: 16px 16px 0 0;
  }

  .mi-product-thumb img {
    border-radius: 16px 16px 0 0;
    object-fit: contain;
  }

  .mi-product-body,
  .project-card .card-body {
    padding: 16px;
  }

  .mi-product-row {
    padding: 14px;
    gap: 12px;
  }

  .mi-product-row .mi-product-feature-thumb,
  .mi-product-feature-thumb {
    aspect-ratio: 16 / 11;
    border-radius: 14px;
  }

  .mi-product-feature-thumb img {
    border-radius: 14px;
    object-fit: contain;
  }

  .project-card .thumb-wrap {
    aspect-ratio: 16 / 11;
  }

  .project-card .thumb-wrap img {
    object-fit: contain;
  }

  .mi-product-actions {
    flex-wrap: wrap;
  }

  .mi-product-actions .btn-mi {
    flex: 1 1 auto;
    justify-content: center;
    min-width: min(100%, 140px);
  }

  .tech-tags {
    gap: 6px;
  }

  .tech-tag {
    font-size: 0.72rem;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }

  .mi-contact-form,
  .mi-contact-info,
  .mi-feature-card,
  .mi-process-card,
  .mi-value-card,
  .mi-mini-panel,
  .mi-skill-card,
  .mi-blog-card {
    padding: 18px;
  }

  .mi-form-row {
    grid-template-columns: 1fr;
  }

  .mi-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mi-footer-main {
    padding: 28px 0 90px;
  }

  .mi-footer-brand-col {
    padding: 20px 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
    overflow: visible;
  }

  .mi-footer-logo-full {
    height: 240px;
    max-height: none;
    max-width: none;
    margin: -76px 0 -54px -18px;
  }

  .mi-footer-desc {
    max-width: none;
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .mi-footer-social {
    gap: 12px;
  }

  .mi-footer-col {
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
  }

  .mi-footer-toggle {
    padding: 18px 18px;
    cursor: pointer;
  }

  .mi-footer-toggle i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    transition: transform 0.24s ease, background 0.24s ease;
  }

  .mi-footer-accordion[open] .mi-footer-toggle i {
    transform: rotate(180deg);
    background: rgba(11, 102, 255, 0.28);
  }

  .mi-footer-panel {
    margin-top: 0;
    padding: 0 18px 18px;
  }

  .mi-footer-accordion:not([open]) .mi-footer-panel {
    display: none;
  }

  .mi-footer-col ul {
    gap: 12px;
  }

  .mi-footer-cta {
    width: 100%;
    justify-content: center;
  }

  .mi-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .mi-footer-legal {
    justify-content: center;
  }

  .mi-wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .mi-section-button {
    margin-top: 22px;
  }

  .mi-section-button .btn-mi {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .modal-v2 {
    padding: 0;
    align-items: flex-end;
  }

  .modal-v2 .modal-box {
    width: 100%;
    max-height: 92vh;
    overflow: auto;
    border-radius: 18px 18px 0 0;
  }

  .modal-v2 .modal-img,
  .modal-v2 .modal-img.is-product {
    max-height: min(46vh, 280px);
    object-fit: contain;
    background: #07122a;
  }

  .modal-v2 .modal-content {
    padding: 18px 16px 24px;
  }

  .modal-v2 .modal-close {
    top: 8px;
    right: 8px;
    z-index: 2;
  }

  .mi-product-card:hover,
  .mi-product-card:focus-visible,
  .mi-product-row:hover,
  .mi-product-row:focus-visible,
  .project-card:hover,
  .mi-feature-card:hover,
  .mi-product-feature:hover,
  .mi-process-card:hover,
  .mi-value-card:hover,
  .mi-team-card:hover,
  .mi-blog-card:hover {
    transform: none;
  }

  .mi-product-card:hover .mi-product-thumb img {
    transform: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: 94%;
  }

  .mi-hero-title {
    font-size: 1.7rem;
  }

  .mi-product-thumb,
  .mi-product-row .mi-product-feature-thumb,
  .mi-product-feature-thumb,
  .project-card .thumb-wrap {
    aspect-ratio: 4 / 3;
  }

  .mi-stat-box strong {
    font-size: 1.35rem;
  }

  .mi-brand-logo-full {
    height: 30px;
    max-height: 30px;
    max-width: min(210px, 70vw);
  }

  .mi-brand-logo-full {
    margin-top: 0;
    margin-bottom: 0;
  }

  .mi-footer-main {
    padding: 36px 0 80px;
  }

  .mi-footer-logo-full {
    height: 150px;
    max-height: none;
    max-width: none;
    margin: -42px 0 -30px -10px;
  }

  .mi-footer-col a,
  .mi-footer-col span,
  .mi-footer-desc {
    font-size: 0.95rem;
  }

  .mi-footer-toggle {
    padding: 16px;
  }

  .mi-footer-panel {
    padding: 0 16px 16px;
  }
}

@media (hover: none) {
  .mi-product-card:hover,
  .mi-product-row:hover,
  .project-card:hover,
  .mi-feature-card:hover {
    transform: none;
  }
}
